1
|
1 // octave.cc -*- C++ -*- |
|
2 /* |
|
3 |
1884
|
4 Copyright (C) 1996 John W. Eaton |
1
|
5 |
|
6 This file is part of Octave. |
|
7 |
|
8 Octave is free software; you can redistribute it and/or modify it |
|
9 under the terms of the GNU General Public License as published by the |
|
10 Free Software Foundation; either version 2, or (at your option) any |
|
11 later version. |
|
12 |
|
13 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
16 for more details. |
|
17 |
|
18 You should have received a copy of the GNU General Public License |
|
19 along with Octave; see the file COPYING. If not, write to the Free |
1315
|
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
1
|
21 |
|
22 */ |
|
23 |
|
24 // Born February 20, 1992. |
|
25 |
240
|
26 #ifdef HAVE_CONFIG_H |
1192
|
27 #include <config.h> |
1
|
28 #endif |
|
29 |
1355
|
30 #include <cassert> |
|
31 #include <csignal> |
|
32 #include <cstdlib> |
|
33 #include <cstring> |
|
34 #include <ctime> |
|
35 |
|
36 #include <fstream.h> |
|
37 #include <iostream.h> |
|
38 #include <strstream.h> |
|
39 |
|
40 #ifdef HAVE_UNISTD_H |
1
|
41 #include <sys/types.h> |
139
|
42 #include <unistd.h> |
|
43 #endif |
1355
|
44 |
1
|
45 #include <pwd.h> |
636
|
46 |
240
|
47 #include "lo-error.h" |
1907
|
48 #include "str-vec.h" |
223
|
49 |
1355
|
50 #include "builtins.h" |
|
51 #include "defaults.h" |
|
52 #include "defun.h" |
703
|
53 #include "dynamic-ld.h" |
1355
|
54 #include "error.h" |
|
55 #include "file-io.h" |
1766
|
56 #include "file-ops.h" |
1355
|
57 #include "help.h" |
1
|
58 #include "input.h" |
|
59 #include "lex.h" |
1742
|
60 #include "oct-hist.h" |
1670
|
61 #include "toplev.h" |
1355
|
62 #include "pager.h" |
1
|
63 #include "parse.h" |
1355
|
64 #include "pathsearch.h" |
562
|
65 #include "procstream.h" |
1817
|
66 #include "prog-args.h" |
1355
|
67 #include "sighandlers.h" |
|
68 #include "sysdep.h" |
1742
|
69 #include "pt-const.h" |
|
70 #include "pt-misc.h" |
|
71 #include "pt-plot.h" |
1
|
72 #include "unwind-prot.h" |
1355
|
73 #include "user-prefs.h" |
|
74 #include "utils.h" |
|
75 #include "variables.h" |
1
|
76 #include "version.h" |
|
77 |
1704
|
78 #if !defined (HAVE_ATEXIT) && defined (HAVE_ON_EXIT) |
|
79 extern "C" int on_exit (); |
|
80 #define atexit on_exit |
|
81 #endif |
|
82 |
1792
|
83 // Don't redefine the variables if glibc already has. |
|
84 #ifndef HAVE_PROGRAM_INVOCATION_NAME |
|
85 char *program_invocation_name; |
|
86 char *program_invocation_short_name; |
|
87 #else |
|
88 extern char *program_invocation_name; |
|
89 extern char *program_invocation_short_name; |
|
90 #endif |
|
91 |
1684
|
92 // This is from readline's paren.c: |
|
93 extern int rl_blink_matching_paren; |
1516
|
94 |
1907
|
95 // The command-line options. |
|
96 static string_vector octave_argv; |
1
|
97 |
|
98 // Nonzero means we read ~/.octaverc and ./.octaverc. |
616
|
99 // (--norc; --ignore-init-file; -f) |
1
|
100 static int read_init_files = 1; |
|
101 |
1358
|
102 // Nonzero means we don't print the usual startup message. |
616
|
103 // (--quiet; --silent; -q) |
1
|
104 static int inhibit_startup_message = 0; |
|
105 |
1410
|
106 // Nonzero means we turn on compatibility options. |
|
107 // (--traditional) |
|
108 static int traditional = 0; |
|
109 |
1825
|
110 // If nonzero, print verbose info in some cases. |
|
111 // (--verbose; -V) |
|
112 static int verbose_flag = 0; |
|
113 |
1
|
114 // Usage message |
139
|
115 static const char *usage_string = |
1613
|
116 "octave [-?Vdfhiqvx] [--debug] [--echo-commands] [--exec-path path]\n\ |
|
117 [--help] [--ignore-init-file] [--info-file file] [--info-program prog]\n\ |
1821
|
118 [--interactive] [--no-line-editing] [-p path] [--path path] [--silent]\n\ |
|
119 [--traditional] [--verbose] [--version] [file]"; |
1
|
120 |
1358
|
121 // This is here so that it's more likely that the usage message and |
1410
|
122 // the real set of options will agree. Note: the `+' must come first |
|
123 // to prevent getopt from permuting arguments! |
|
124 static const char *short_opts = "+?Vdfhip:qvx"; |
139
|
125 |
1103
|
126 // Long options. See the comments in getopt.h for the meanings of the |
|
127 // fields in this structure. |
1613
|
128 #define EXEC_PATH_OPTION 1 |
|
129 #define INFO_FILE_OPTION 2 |
|
130 #define INFO_PROG_OPTION 3 |
1821
|
131 #define NO_LINE_EDITING_OPTION 4 |
|
132 #define TRADITIONAL_OPTION 5 |
1817
|
133 long_options long_opts[] = |
139
|
134 { |
1855
|
135 { "debug", prog_args::no_arg, 0, 'd' }, |
|
136 { "echo-commands", prog_args::no_arg, 0, 'x' }, |
|
137 { "exec-path", prog_args::required_arg, 0, EXEC_PATH_OPTION }, |
|
138 { "help", prog_args::no_arg, 0, 'h' }, |
|
139 { "ignore-init-file", prog_args::no_arg, 0, 'f' }, |
|
140 { "info-file", prog_args::required_arg, 0, INFO_FILE_OPTION }, |
|
141 { "info-program", prog_args::required_arg, 0, INFO_PROG_OPTION }, |
|
142 { "interactive", prog_args::no_arg, 0, 'i' }, |
|
143 { "no-line-editing", prog_args::no_arg, 0, NO_LINE_EDITING_OPTION }, |
|
144 { "norc", prog_args::no_arg, 0, 'f' }, |
|
145 { "path", prog_args::required_arg, 0, 'p' }, |
|
146 { "quiet", prog_args::no_arg, 0, 'q' }, |
|
147 { "silent", prog_args::no_arg, 0, 'q' }, |
|
148 { "traditional", prog_args::no_arg, 0, TRADITIONAL_OPTION }, |
|
149 { "verbose", prog_args::no_arg, 0, 'V' }, |
|
150 { "version", prog_args::no_arg, 0, 'v' }, |
1103
|
151 { 0, 0, 0, 0 } |
139
|
152 }; |
1
|
153 |
1355
|
154 // Store the command-line options for later use. |
|
155 |
|
156 static void |
|
157 intern_argv (int argc, char **argv) |
|
158 { |
|
159 if (argc > 1) |
|
160 { |
1572
|
161 int max_len = 0; |
1355
|
162 for (int i = 1; i < argc; i++) |
1572
|
163 { |
|
164 int tmp_len = strlen (argv[i]); |
|
165 if (tmp_len > max_len) |
|
166 max_len = tmp_len; |
|
167 } |
|
168 |
1907
|
169 octave_argv.resize (argc-1); |
1572
|
170 |
|
171 for (int i = 1; i < argc; i++) |
1907
|
172 octave_argv[i-1] = argv[i]; |
1411
|
173 |
|
174 bind_builtin_variable ("argv", octave_argv, 1, 1, 0); |
1355
|
175 } |
1907
|
176 |
|
177 bind_builtin_variable ("nargin", (double) argc-1, 1, 1, 0); |
1355
|
178 } |
|
179 |
581
|
180 // Initialize some global variables for later use. |
|
181 |
1
|
182 static void |
1755
|
183 initialize_globals (const string& name) |
1
|
184 { |
1792
|
185 // Kpathsea needs this. |
|
186 |
|
187 #ifndef HAVE_PROGRAM_INVOCATION_NAME |
|
188 program_invocation_name = strsave (name.c_str ()); |
|
189 program_invocation_short_name = strrchr (program_invocation_name, '/'); |
|
190 if (! program_invocation_short_name) |
|
191 program_invocation_short_name = program_invocation_name; |
|
192 #endif |
|
193 |
1755
|
194 raw_prog_name = name; |
|
195 size_t pos = raw_prog_name.rfind ('/'); |
|
196 if (pos == NPOS) |
|
197 prog_name = raw_prog_name; |
|
198 else |
|
199 prog_name = raw_prog_name.substr (pos+1); |
1355
|
200 |
1
|
201 struct passwd *entry = getpwuid (getuid ()); |
|
202 if (entry) |
1755
|
203 user_name = entry->pw_name; |
1
|
204 else |
1755
|
205 user_name = "I have no name!"; |
1
|
206 endpwent (); |
|
207 |
|
208 char hostname[256]; |
|
209 if (gethostname (hostname, 255) < 0) |
1755
|
210 host_name = "I have no host!"; |
1
|
211 else |
1755
|
212 host_name = hostname; |
1
|
213 |
|
214 char *hd = getenv ("HOME"); |
1755
|
215 home_directory = hd ? hd : "I have no home!"; |
1
|
216 |
1613
|
217 exec_path = default_exec_path (); |
|
218 |
1
|
219 load_path = default_path (); |
186
|
220 |
|
221 info_file = default_info_file (); |
195
|
222 |
1613
|
223 info_prog = default_info_prog (); |
|
224 |
195
|
225 editor = default_editor (); |
1
|
226 } |
|
227 |
1792
|
228 static void |
|
229 initialize_pathsearch (void) |
|
230 { |
|
231 // This may seem odd, but doing it this way means that we don't have |
|
232 // to modify the kpathsea library... |
|
233 |
|
234 char *odb = getenv ("OCTAVE_DB_DIR"); |
|
235 |
|
236 if (odb) |
|
237 oct_putenv ("TEXMF", odb); |
|
238 else |
|
239 { |
|
240 char *oh = getenv ("OCTAVE_HOME"); |
|
241 |
|
242 if (oh) |
|
243 { |
|
244 int len = strlen (oh) + 12; |
|
245 char *putenv_val = new char [len]; |
|
246 sprintf (putenv_val, "%s/lib/octave", oh); |
|
247 oct_putenv ("TEXMF", putenv_val); |
|
248 } |
|
249 else |
|
250 oct_putenv ("TEXMF", OCTAVE_DATADIR "/octave"); |
|
251 } |
|
252 } |
|
253 |
581
|
254 // Initialize by reading startup files. |
|
255 |
1
|
256 static void |
|
257 execute_startup_files (void) |
|
258 { |
315
|
259 begin_unwind_frame ("execute_startup_files"); |
|
260 |
1651
|
261 // XXX FIXME XXX -- need to make it possible to set this in startup |
|
262 // files. |
1588
|
263 |
1651
|
264 unwind_protect_int (input_from_startup_file); |
|
265 unwind_protect_int (user_pref.echo_executing_commands); |
|
266 |
|
267 input_from_startup_file = 1; |
1588
|
268 user_pref.echo_executing_commands = ECHO_OFF; |
315
|
269 |
793
|
270 int verbose = (verbose_flag && ! inhibit_startup_message); |
578
|
271 |
1477
|
272 // Execute commands from the site-wide configuration file. First |
|
273 // from the file $(prefix)/lib/octave/site/m/octaverc (if it exists), |
|
274 // then from the file $(prefix)/lib/octave/$(version)/m/octaverc (if |
|
275 // it exists). |
|
276 |
1755
|
277 string lsd = get_local_site_defaults (); |
1477
|
278 parse_and_execute (lsd, 0, verbose); |
1
|
279 |
1755
|
280 string sd = get_site_defaults (); |
578
|
281 parse_and_execute (sd, 0, verbose); |
1
|
282 |
1358
|
283 // Try to execute commands from $HOME/.octaverc and ./.octaverc. |
1
|
284 |
1755
|
285 int home_rc_already_executed = 0; |
|
286 string home_rc; |
|
287 if (! home_directory.empty ()) |
1
|
288 { |
1755
|
289 home_rc = home_directory; |
|
290 home_rc.append ("/.octaverc"); |
578
|
291 parse_and_execute (home_rc, 0, verbose); |
1755
|
292 |
|
293 // Names alone are not enough. |
|
294 |
1766
|
295 file_stat fs_home_rc (home_rc); |
1755
|
296 |
1766
|
297 if (fs_home_rc) |
|
298 { |
|
299 file_stat fs_dot_rc ("./.octaverc"); |
1755
|
300 |
1766
|
301 if (fs_dot_rc && fs_home_rc.ino () == fs_dot_rc.ino ()) |
|
302 home_rc_already_executed = 1; |
|
303 } |
1
|
304 } |
|
305 |
1755
|
306 if (! home_rc_already_executed) |
578
|
307 parse_and_execute ("./.octaverc", 0, verbose); |
315
|
308 |
|
309 run_unwind_frame ("execute_startup_files"); |
1
|
310 } |
|
311 |
581
|
312 // Usage message with extra help. |
|
313 |
1
|
314 static void |
|
315 verbose_usage (void) |
|
316 { |
1613
|
317 cout << "\n" OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n\ |
|
318 \n\ |
|
319 Usage: octave [options]\n\ |
|
320 \n\ |
|
321 Options:\n\ |
1119
|
322 \n\ |
1613
|
323 -d, --debug Enter parser debugging mode.\n\ |
|
324 -x, --echo-commands Echo commands as they are executed.\n\ |
|
325 --exec-path PATH Set path for executing subprograms.\n\ |
|
326 -h, -?, --help Print short help message and exit.\n\ |
|
327 -f, --ignore-init-file Don't read any initialization files.\n\ |
|
328 --info-file FILE Use top-level info file FILE.\n\ |
|
329 --info-program PROGRAM Use PROGRAM for reading info files.\n\ |
|
330 -i, --interactive Force interactive behavior.\n\ |
1821
|
331 --no-line-editing Don't use readline for command-line editing\n\ |
1613
|
332 -p PATH, --path PATH Set initial LOADPATH to PATH.\n\ |
|
333 -q, --silent Don't print message at startup.\n\ |
|
334 --traditional Set compatibility variables.\n\ |
|
335 -V, --verbose Enable verbose output in some cases.\n\ |
|
336 -v, --version Print version number and exit.\n\ |
1119
|
337 \n\ |
1613
|
338 FILE Execute commands from FILE.\n\ |
1119
|
339 \n"; |
285
|
340 |
613
|
341 exit (0); |
1
|
342 } |
|
343 |
581
|
344 // Terse usage messsage. |
|
345 |
1
|
346 static void |
|
347 usage (void) |
|
348 { |
613
|
349 cerr << "usage: " << usage_string << "\n"; |
1
|
350 exit (1); |
|
351 } |
|
352 |
|
353 static void |
|
354 print_version_and_exit (void) |
|
355 { |
1107
|
356 cout << OCTAVE_NAME_AND_VERSION << "\n"; |
1
|
357 exit (0); |
|
358 } |
|
359 |
721
|
360 static void |
|
361 initialize_error_handlers () |
|
362 { |
|
363 set_liboctave_error_handler (error); |
|
364 } |
|
365 |
1410
|
366 // What happens on --traditional. |
|
367 |
|
368 static void |
|
369 maximum_braindamage (void) |
|
370 { |
|
371 bind_builtin_variable ("PS1", ">> "); |
|
372 bind_builtin_variable ("PS2", ""); |
1423
|
373 bind_builtin_variable ("beep_on_error", "true"); |
1410
|
374 bind_builtin_variable ("default_save_format", "mat-binary"); |
|
375 bind_builtin_variable ("define_all_return_values", "true"); |
|
376 bind_builtin_variable ("do_fortran_indexing", "true"); |
|
377 bind_builtin_variable ("empty_list_elements_ok", "true"); |
|
378 bind_builtin_variable ("implicit_str_to_num_ok", "true"); |
|
379 bind_builtin_variable ("ok_to_lose_imaginary_part", "true"); |
|
380 bind_builtin_variable ("page_screen_output", "false"); |
|
381 bind_builtin_variable ("prefer_column_vectors", "false"); |
|
382 bind_builtin_variable ("prefer_zero_one_indexing", "true"); |
|
383 bind_builtin_variable ("print_empty_dimensions", "false"); |
|
384 bind_builtin_variable ("treat_neg_dim_as_zero", "true"); |
|
385 bind_builtin_variable ("warn_function_name_clash", "false"); |
|
386 bind_builtin_variable ("whitespace_in_literal_matrix", "traditional"); |
|
387 } |
|
388 |
581
|
389 // You guessed it. |
|
390 |
1
|
391 int |
|
392 main (int argc, char **argv) |
|
393 { |
1588
|
394 int echo_commands = ECHO_OFF; |
|
395 |
1358
|
396 // The order of these calls is important, and initialize_globals |
|
397 // must come before the options are processed because some command |
|
398 // line options override defaults. |
721
|
399 |
|
400 init_user_prefs (); |
|
401 |
|
402 initialize_pager (); |
|
403 |
1
|
404 sysdep_init (); |
|
405 |
721
|
406 initialize_error_handlers (); |
223
|
407 |
1
|
408 initialize_globals (argv[0]); |
|
409 |
1792
|
410 initialize_pathsearch (); |
1744
|
411 |
1817
|
412 prog_args args (argc, argv, short_opts, long_opts); |
|
413 |
139
|
414 int optc; |
1817
|
415 while ((optc = args.getopt ()) != EOF) |
1
|
416 { |
139
|
417 switch (optc) |
1
|
418 { |
793
|
419 case 'V': |
|
420 verbose_flag++; |
|
421 break; |
|
422 |
1
|
423 case 'd': |
|
424 yydebug++; |
|
425 break; |
777
|
426 |
1
|
427 case 'f': |
|
428 read_init_files = 0; |
|
429 break; |
777
|
430 |
1
|
431 case 'h': |
|
432 case '?': |
|
433 verbose_usage (); |
|
434 break; |
777
|
435 |
1
|
436 case 'i': |
|
437 forced_interactive = 1; |
|
438 break; |
777
|
439 |
1
|
440 case 'p': |
1817
|
441 if (args.optarg ()) |
|
442 load_path = string (args.optarg ()); |
1
|
443 break; |
777
|
444 |
1
|
445 case 'q': |
|
446 inhibit_startup_message = 1; |
|
447 break; |
777
|
448 |
1
|
449 case 'x': |
1588
|
450 echo_commands = (ECHO_SCRIPTS | ECHO_FUNCTIONS | ECHO_CMD_LINE); |
1
|
451 break; |
777
|
452 |
1
|
453 case 'v': |
|
454 print_version_and_exit (); |
|
455 break; |
777
|
456 |
1613
|
457 case EXEC_PATH_OPTION: |
1817
|
458 if (args.optarg ()) |
|
459 exec_path = string (args.optarg ()); |
1613
|
460 break; |
|
461 |
186
|
462 case INFO_FILE_OPTION: |
1817
|
463 if (args.optarg ()) |
|
464 info_file = string (args.optarg ()); |
186
|
465 break; |
777
|
466 |
1613
|
467 case INFO_PROG_OPTION: |
1817
|
468 if (args.optarg ()) |
|
469 info_prog = string (args.optarg ()); |
1613
|
470 break; |
|
471 |
1821
|
472 case NO_LINE_EDITING_OPTION: |
|
473 using_readline = 0; |
|
474 break; |
|
475 |
1410
|
476 case TRADITIONAL_OPTION: |
|
477 traditional = 1; |
|
478 break; |
|
479 |
1
|
480 default: |
|
481 usage (); |
|
482 break; |
|
483 } |
|
484 } |
|
485 |
1651
|
486 #if defined (HAVE_ATEXIT) || defined (HAVE_ON_EXIT) |
1358
|
487 // Make sure we clean up when we exit. If we don't have atexit or |
|
488 // on_exit, we're going to leave some junk files around if we exit |
|
489 // abnormally. |
1
|
490 atexit (cleanup_tmp_files); |
318
|
491 #endif |
1
|
492 |
1358
|
493 // These can come after command line args since none of them set any |
|
494 // defaults that might be changed by command line options. |
581
|
495 |
636
|
496 install_signal_handlers (); |
|
497 |
1
|
498 initialize_file_io (); |
|
499 |
581
|
500 initialize_symbol_tables (); |
1
|
501 |
|
502 install_builtins (); |
|
503 |
315
|
504 initialize_readline (); |
|
505 |
721
|
506 init_dynamic_linker (); |
|
507 |
578
|
508 if (! inhibit_startup_message) |
1106
|
509 cout << OCTAVE_STARTUP_MESSAGE "\n" << endl; |
578
|
510 |
1410
|
511 if (traditional) |
|
512 maximum_braindamage (); |
|
513 |
1588
|
514 bind_builtin_variable ("echo_executing_commands", |
|
515 (double) echo_commands); |
|
516 |
1
|
517 if (read_init_files) |
1651
|
518 execute_startup_files (); |
|
519 |
1799
|
520 octave_command_history.read (); |
1
|
521 |
578
|
522 if (! inhibit_startup_message && reading_startup_message_printed) |
|
523 cout << endl; |
|
524 |
1358
|
525 // Avoid counting commands executed from startup files. |
|
526 |
1
|
527 current_command_number = 1; |
|
528 |
1358
|
529 // If there is an extra argument, see if it names a file to read. |
|
530 // Additional arguments are taken as command line options for the |
|
531 // script. |
1
|
532 |
1817
|
533 int last_arg_idx = args.optind (); |
|
534 int remaining_args = argc - last_arg_idx; |
1355
|
535 if (remaining_args > 0) |
149
|
536 { |
984
|
537 reading_script_file = 1; |
1817
|
538 curr_fcn_file_name = argv[last_arg_idx]; |
1608
|
539 curr_fcn_file_full_name = curr_fcn_file_name; |
1411
|
540 |
984
|
541 FILE *infile = get_input_from_file (curr_fcn_file_name); |
1411
|
542 |
529
|
543 if (infile) |
287
|
544 { |
1516
|
545 input_from_command_line_file = 1; |
|
546 |
1411
|
547 bind_builtin_variable ("program_invocation_name", |
|
548 curr_fcn_file_name); |
|
549 |
1755
|
550 size_t pos = curr_fcn_file_name.rfind ('/'); |
|
551 |
|
552 string tmp = (pos != NPOS) |
|
553 ? curr_fcn_file_name.substr (pos+1) : curr_fcn_file_name; |
1411
|
554 |
|
555 bind_builtin_variable ("program_name", tmp); |
|
556 |
1817
|
557 intern_argv (remaining_args, argv+last_arg_idx); |
1411
|
558 |
287
|
559 rl_blink_matching_paren = 0; |
|
560 switch_to_buffer (create_buffer (infile)); |
|
561 } |
529
|
562 else |
|
563 clean_up_and_exit (1); |
1
|
564 } |
|
565 else |
|
566 { |
1355
|
567 // Is input coming from a terminal? If so, we are probably |
|
568 // interactive. |
1
|
569 |
|
570 interactive = (isatty (fileno (stdin)) && isatty (fileno (stdout))); |
1355
|
571 |
|
572 intern_argv (argc, argv); |
|
573 |
|
574 switch_to_buffer (create_buffer (get_input_from_stdin ())); |
1
|
575 } |
|
576 |
1358
|
577 // Force input to be echoed if not really interactive, but the user |
|
578 // has forced interactive behavior. |
1
|
579 |
1907
|
580 if (! interactive && forced_interactive) |
287
|
581 { |
|
582 rl_blink_matching_paren = 0; |
1588
|
583 |
|
584 // XXX FIXME XXX -- is this the right thing to do? |
|
585 |
|
586 bind_builtin_variable ("echo_executing_commands", |
|
587 (double) ECHO_CMD_LINE); |
287
|
588 } |
1
|
589 |
1410
|
590 if (! interactive) |
1
|
591 using_readline = 0; |
|
592 |
1907
|
593 int retval = main_loop (); |
1
|
594 |
1005
|
595 if (retval == 1 && ! error_state) |
|
596 retval = 0; |
|
597 |
1
|
598 clean_up_and_exit (retval); |
|
599 } |
|
600 |
560
|
601 /* |
1
|
602 ;;; Local Variables: *** |
|
603 ;;; mode: C++ *** |
|
604 ;;; page-delimiter: "^/\\*" *** |
|
605 ;;; End: *** |
|
606 */ |