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