2974
|
1 /* |
|
2 |
|
3 Copyright (C) 1996, 1997 John W. Eaton |
|
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 |
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
20 |
|
21 */ |
|
22 |
|
23 #if defined (__GNUG__) |
|
24 #pragma implementation |
|
25 #endif |
|
26 |
|
27 #ifdef HAVE_CONFIG_H |
|
28 #include <config.h> |
|
29 #endif |
|
30 |
|
31 #include "str-vec.h" |
|
32 |
|
33 #include <defaults.h> |
|
34 #include "defun.h" |
|
35 #include "error.h" |
|
36 #include "input.h" |
|
37 #include "oct-obj.h" |
|
38 #include "ov-usr-fcn.h" |
|
39 #include "ov.h" |
|
40 #include "pager.h" |
2985
|
41 #include "pt-jump.h" |
2974
|
42 #include "pt-misc.h" |
|
43 #include "pt-pr-code.h" |
2982
|
44 #include "pt-stmt.h" |
2974
|
45 #include "pt-walk.h" |
|
46 #include "symtab.h" |
|
47 #include "toplev.h" |
|
48 #include "unwind-prot.h" |
|
49 #include "utils.h" |
3489
|
50 #include "parse.h" |
2974
|
51 #include "variables.h" |
|
52 |
|
53 // If TRUE, variables returned from functions have default values even |
|
54 // if they are not explicitly initialized. |
|
55 static bool Vdefine_all_return_values; |
|
56 |
3131
|
57 // Maximum nesting level for functions called recursively. |
|
58 static int Vmax_recursion_depth; |
|
59 |
2974
|
60 // If TRUE, the last computed value is returned from functions that |
|
61 // don't actually define any return variables. |
|
62 static bool Vreturn_last_computed_value; |
|
63 |
|
64 // User defined functions. |
|
65 |
3219
|
66 DEFINE_OCTAVE_ALLOCATOR (octave_user_function); |
2974
|
67 |
3219
|
68 DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_user_function, |
|
69 "user-defined function"); |
2974
|
70 |
|
71 // Ugh. This really needs to be simplified (code/data? |
|
72 // extrinsic/intrinsic state?). |
|
73 |
|
74 octave_user_function::octave_user_function |
|
75 (tree_parameter_list *pl, tree_parameter_list *rl, |
|
76 tree_statement_list *cl, symbol_table *st) |
3523
|
77 : octave_function (std::string (), std::string ()), |
2974
|
78 param_list (pl), ret_list (rl), cmd_list (cl), |
3665
|
79 sym_tab (st), lead_comm (), trail_comm (), |
|
80 file_name (), fcn_name (), |
3255
|
81 t_parsed (static_cast<time_t> (0)), |
|
82 t_checked (static_cast<time_t> (0)), |
|
83 system_fcn_file (false), call_depth (0), |
3165
|
84 num_named_args (0), args_passed (), num_args_passed (0), |
|
85 curr_va_arg_number (0), vr_list (0), symtab_entry (0), |
|
86 argn_sr (0), nargin_sr (0), nargout_sr (0) |
2974
|
87 { |
|
88 install_automatic_vars (); |
|
89 |
|
90 if (param_list) |
|
91 { |
|
92 num_named_args = param_list->length (); |
|
93 curr_va_arg_number = num_named_args; |
|
94 } |
|
95 } |
|
96 |
|
97 octave_user_function::~octave_user_function (void) |
|
98 { |
|
99 delete param_list; |
|
100 delete ret_list; |
|
101 delete sym_tab; |
|
102 delete cmd_list; |
|
103 delete vr_list; |
3665
|
104 delete lead_comm; |
|
105 delete trail_comm; |
2974
|
106 } |
|
107 |
|
108 octave_user_function * |
|
109 octave_user_function::define_ret_list (tree_parameter_list *t) |
|
110 { |
|
111 ret_list = t; |
|
112 |
|
113 if (ret_list && ret_list->takes_varargs ()) |
|
114 vr_list = new tree_va_return_list; |
|
115 |
|
116 return this; |
|
117 } |
|
118 |
|
119 void |
|
120 octave_user_function::stash_fcn_file_name (void) |
|
121 { |
|
122 if (fcn_name.empty ()) |
|
123 file_name = ""; |
|
124 else |
|
125 file_name = fcn_file_in_path (fcn_name); |
|
126 } |
|
127 |
|
128 void |
|
129 octave_user_function::mark_as_system_fcn_file (void) |
|
130 { |
|
131 if (! file_name.empty ()) |
|
132 { |
|
133 // We really should stash the whole path to the file we found, |
|
134 // when we looked it up, to avoid possible race conditions... |
|
135 // XXX FIXME XXX |
|
136 // |
|
137 // We probably also don't need to get the library directory |
|
138 // every time, but since this function is only called when the |
|
139 // function file is parsed, it probably doesn't matter that |
|
140 // much. |
|
141 |
3523
|
142 std::string ff_name = fcn_file_in_path (file_name); |
2974
|
143 |
3565
|
144 if (Vfcn_file_dir == ff_name.substr (0, Vfcn_file_dir.length ())) |
2974
|
145 system_fcn_file = 1; |
|
146 } |
|
147 else |
|
148 system_fcn_file = 0; |
|
149 } |
|
150 |
|
151 bool |
|
152 octave_user_function::takes_varargs (void) const |
|
153 { |
|
154 return (param_list && param_list->takes_varargs ()); |
|
155 } |
|
156 |
|
157 octave_value |
|
158 octave_user_function::octave_va_arg (void) |
|
159 { |
|
160 octave_value retval; |
|
161 |
|
162 if (curr_va_arg_number < num_args_passed) |
|
163 retval = args_passed (curr_va_arg_number++); |
|
164 else |
|
165 ::error ("va_arg: error getting arg number %d -- only %d provided", |
|
166 curr_va_arg_number + 1, num_args_passed); |
|
167 |
|
168 return retval; |
|
169 } |
|
170 |
|
171 octave_value_list |
|
172 octave_user_function::octave_all_va_args (void) |
|
173 { |
|
174 octave_value_list retval; |
|
175 |
3178
|
176 int n = num_args_passed - num_named_args; |
2974
|
177 |
3178
|
178 if (n > 0) |
|
179 { |
|
180 retval.resize (n); |
|
181 |
|
182 int k = 0; |
|
183 for (int i = num_named_args; i < num_args_passed; i++) |
|
184 retval(k++) = args_passed(i); |
|
185 } |
2974
|
186 |
|
187 return retval; |
|
188 } |
|
189 |
|
190 bool |
|
191 octave_user_function::takes_var_return (void) const |
|
192 { |
|
193 return (ret_list && ret_list->takes_varargs ()); |
|
194 } |
|
195 |
|
196 void |
|
197 octave_user_function::octave_vr_val (const octave_value& val) |
|
198 { |
|
199 assert (vr_list); |
|
200 |
|
201 vr_list->append (val); |
|
202 } |
|
203 |
|
204 void |
3523
|
205 octave_user_function::stash_function_name (const std::string& s) |
2974
|
206 { |
|
207 fcn_name = s; |
|
208 } |
|
209 |
|
210 // For unwind protect. |
|
211 |
|
212 static void |
|
213 pop_symbol_table_context (void *table) |
|
214 { |
|
215 symbol_table *tmp = static_cast<symbol_table *> (table); |
|
216 tmp->pop_context (); |
|
217 } |
|
218 |
|
219 static void |
|
220 delete_vr_list (void *list) |
|
221 { |
|
222 tree_va_return_list *tmp = static_cast<tree_va_return_list *> (list); |
|
223 tmp->clear (); |
|
224 delete tmp; |
|
225 } |
|
226 |
|
227 static void |
|
228 clear_symbol_table (void *table) |
|
229 { |
|
230 symbol_table *tmp = static_cast<symbol_table *> (table); |
|
231 tmp->clear (); |
|
232 } |
|
233 |
|
234 static void |
3239
|
235 clear_param_list (void *lst) |
|
236 { |
|
237 tree_parameter_list *tmp = static_cast<tree_parameter_list *> (lst); |
|
238 |
|
239 if (tmp) |
|
240 tmp->clear (); |
|
241 } |
|
242 |
|
243 static void |
|
244 clear_args_passed (void *fcn) |
|
245 { |
|
246 octave_user_function *tmp = static_cast<octave_user_function *> (fcn); |
|
247 |
|
248 if (tmp) |
|
249 tmp->clear_args_passed (); |
|
250 } |
|
251 |
|
252 static void |
2974
|
253 unprotect_function (void *sr_arg) |
|
254 { |
|
255 symbol_record *sr = static_cast<symbol_record *> (sr_arg); |
|
256 sr->unprotect (); |
|
257 } |
|
258 |
|
259 octave_value_list |
3544
|
260 octave_user_function::do_multi_index_op (int nargout, |
|
261 const octave_value_list& args) |
2974
|
262 { |
|
263 octave_value_list retval; |
|
264 |
|
265 if (error_state) |
|
266 return retval; |
|
267 |
|
268 if (! cmd_list) |
|
269 return retval; |
|
270 |
|
271 int nargin = args.length (); |
|
272 |
2985
|
273 unwind_protect::begin_frame ("func_eval"); |
2974
|
274 |
|
275 unwind_protect_int (call_depth); |
|
276 call_depth++; |
|
277 |
3131
|
278 if (call_depth > Vmax_recursion_depth) |
|
279 { |
|
280 ::error ("max_recursion_limit exceeded"); |
3321
|
281 unwind_protect::run_frame ("func_eval"); |
3131
|
282 return retval; |
|
283 } |
|
284 |
2974
|
285 if (symtab_entry && ! symtab_entry->is_read_only ()) |
|
286 { |
|
287 symtab_entry->protect (); |
2985
|
288 unwind_protect::add (unprotect_function, symtab_entry); |
2974
|
289 } |
|
290 |
|
291 if (call_depth > 1) |
|
292 { |
|
293 sym_tab->push_context (); |
2985
|
294 unwind_protect::add (pop_symbol_table_context, sym_tab); |
2974
|
295 |
|
296 if (vr_list) |
|
297 { |
|
298 // Push new vr_list. |
|
299 |
|
300 unwind_protect_ptr (vr_list); |
|
301 vr_list = new tree_va_return_list; |
|
302 |
|
303 // Clear and delete the new one before restoring the old |
|
304 // one. |
|
305 |
2985
|
306 unwind_protect::add (delete_vr_list, vr_list); |
2974
|
307 } |
|
308 } |
|
309 |
|
310 if (vr_list) |
|
311 vr_list->clear (); |
|
312 |
|
313 // Force symbols to be undefined again when this function exits. |
|
314 |
2985
|
315 unwind_protect::add (clear_symbol_table, sym_tab); |
2974
|
316 |
|
317 // Save old and set current symbol table context, for |
|
318 // eval_undefined_error(). |
|
319 |
|
320 unwind_protect_ptr (curr_sym_tab); |
|
321 curr_sym_tab = sym_tab; |
|
322 |
|
323 unwind_protect_ptr (curr_function); |
|
324 curr_function = this; |
|
325 |
|
326 // XXX FIXME XXX -- ??? |
|
327 // unwind_protect_ptr (args_passed); |
|
328 |
|
329 args_passed = args; |
|
330 |
3239
|
331 // Force cache of arguments to be undefined when this function exits. |
|
332 // Doing so decrements the reference counts on the values of local |
|
333 // variables that are also named function parameters. |
|
334 |
|
335 unwind_protect::add (::clear_args_passed, this); |
|
336 |
2974
|
337 string_vector arg_names = args.name_tags (); |
|
338 |
|
339 unwind_protect_int (num_args_passed); |
|
340 num_args_passed = nargin; |
|
341 |
|
342 unwind_protect_int (num_named_args); |
|
343 unwind_protect_int (curr_va_arg_number); |
|
344 |
|
345 if (param_list && ! param_list->varargs_only ()) |
|
346 { |
|
347 param_list->define_from_arg_vector (args); |
|
348 if (error_state) |
|
349 goto abort; |
|
350 } |
|
351 |
3239
|
352 // Force parameter list to be undefined when this function exits. |
|
353 // Doing so decrements the reference counts on the values of local |
|
354 // variables that are also named function parameters. |
|
355 |
|
356 unwind_protect::add (clear_param_list, param_list); |
|
357 |
2974
|
358 if (ret_list && Vdefine_all_return_values) |
|
359 { |
|
360 octave_value tmp = builtin_any_variable ("default_return_value"); |
|
361 |
|
362 if (tmp.is_defined ()) |
|
363 ret_list->initialize_undefined_elements (tmp); |
|
364 } |
|
365 |
3239
|
366 // Force return list to be undefined when this function exits. |
|
367 // Doing so decrements the reference counts on the values of local |
|
368 // variables that are also named values returned by this function. |
|
369 |
|
370 unwind_protect::add (clear_param_list, ret_list); |
|
371 |
2974
|
372 // The following code is in a separate scope to avoid warnings from |
|
373 // G++ about `goto abort' crossing the initialization of some |
|
374 // variables. |
|
375 |
|
376 { |
|
377 bind_automatic_vars (arg_names, nargin, nargout); |
|
378 |
|
379 bool echo_commands = (Vecho_executing_commands & ECHO_FUNCTIONS); |
|
380 |
|
381 if (echo_commands) |
|
382 print_code_function_header (); |
|
383 |
|
384 // Evaluate the commands that make up the function. |
|
385 |
3489
|
386 unwind_protect_bool (evaluating_function_body); |
|
387 evaluating_function_body = true; |
|
388 |
2974
|
389 octave_value_list tmp = cmd_list->eval (); |
|
390 |
|
391 octave_value last_computed_value; |
|
392 |
|
393 if (! tmp.empty ()) |
|
394 last_computed_value = tmp(0); |
|
395 |
|
396 if (echo_commands) |
|
397 print_code_function_trailer (); |
|
398 |
2985
|
399 if (tree_return_command::returning) |
|
400 tree_return_command::returning = 0; |
2974
|
401 |
2985
|
402 if (tree_break_command::breaking) |
|
403 tree_break_command::breaking--; |
2974
|
404 |
|
405 if (error_state) |
|
406 { |
|
407 traceback_error (); |
|
408 goto abort; |
|
409 } |
|
410 |
|
411 // Copy return values out. |
|
412 |
|
413 if (ret_list) |
|
414 retval = ret_list->convert_to_const_vector (vr_list); |
|
415 else if (Vreturn_last_computed_value) |
|
416 retval(0) = last_computed_value; |
|
417 } |
|
418 |
|
419 abort: |
2985
|
420 unwind_protect::run_frame ("func_eval"); |
2974
|
421 |
|
422 return retval; |
|
423 } |
|
424 |
|
425 void |
|
426 octave_user_function::traceback_error (void) |
|
427 { |
|
428 if (error_state >= 0) |
|
429 error_state = -1; |
|
430 |
|
431 if (fcn_name.empty ()) |
|
432 { |
|
433 if (file_name.empty ()) |
|
434 ::error ("called from `?unknown?'"); |
|
435 else |
|
436 ::error ("called from file `%s'", file_name.c_str ()); |
|
437 } |
|
438 else |
|
439 { |
|
440 if (file_name.empty ()) |
|
441 ::error ("called from `%s'", fcn_name.c_str ()); |
|
442 else |
|
443 ::error ("called from `%s' in file `%s'", |
|
444 fcn_name.c_str (), file_name.c_str ()); |
|
445 } |
|
446 } |
|
447 |
|
448 void |
|
449 octave_user_function::accept (tree_walker& tw) |
|
450 { |
|
451 tw.visit_octave_user_function (*this); |
|
452 } |
|
453 |
|
454 void |
|
455 octave_user_function::print_code_function_header (void) |
|
456 { |
|
457 tree_print_code tpc (octave_stdout, Vps4); |
|
458 |
|
459 tpc.visit_octave_user_function_header (*this); |
|
460 } |
|
461 |
|
462 void |
|
463 octave_user_function::print_code_function_trailer (void) |
|
464 { |
|
465 tree_print_code tpc (octave_stdout, Vps4); |
|
466 |
|
467 tpc.visit_octave_user_function_trailer (*this); |
|
468 } |
|
469 |
|
470 void |
|
471 octave_user_function::install_automatic_vars (void) |
|
472 { |
|
473 argn_sr = sym_tab->lookup ("argn", true); |
|
474 nargin_sr = sym_tab->lookup ("nargin", true); |
|
475 nargout_sr = sym_tab->lookup ("nargout", true); |
|
476 } |
|
477 |
|
478 void |
|
479 octave_user_function::bind_automatic_vars |
|
480 (const string_vector& arg_names, int nargin, int nargout) |
|
481 { |
|
482 if (! arg_names.empty ()) |
|
483 argn_sr->define (arg_names); |
|
484 |
|
485 nargin_sr->define (static_cast<double> (nargin)); |
|
486 nargout_sr->define (static_cast<double> (nargout)); |
|
487 } |
|
488 |
3743
|
489 DEFUNX ("va_arg", Fva_arg, args, , |
3445
|
490 "-*- texinfo -*-\n\ |
|
491 @deftypefn {Built-in Function} {} va_arg ()\n\ |
3745
|
492 Return the value of the next available argument and move the internal\n\ |
3445
|
493 pointer to the next argument. It is an error to call @code{va_arg}\n\ |
|
494 when ther eare no more arguments available, or in a function that\n\ |
|
495 has not been declared to take a variable number of parameters.\n\ |
|
496 @end deftypefn") |
2974
|
497 { |
|
498 octave_value_list retval; |
|
499 |
|
500 int nargin = args.length (); |
|
501 |
|
502 if (nargin == 0) |
|
503 { |
|
504 if (curr_function) |
|
505 { |
|
506 if (curr_function->takes_varargs ()) |
|
507 retval = curr_function->octave_va_arg (); |
|
508 else |
|
509 { |
|
510 ::error ("va_arg only valid within function taking variable"); |
|
511 ::error ("number of arguments"); |
|
512 } |
|
513 } |
|
514 else |
|
515 ::error ("va_arg only valid within function body"); |
|
516 } |
|
517 else |
|
518 print_usage ("va_arg"); |
|
519 |
|
520 return retval; |
|
521 } |
|
522 |
|
523 DEFUN (va_start, args, , |
3445
|
524 "-*- texinfo -*-\n\ |
|
525 @deftypefn {Built-in Function} {} va_start ()\n\ |
|
526 Position an internal pointer to the first unnamed argument in\n\ |
|
527 functions that have been declared to accept a variable number of\n\ |
|
528 arguments. It is an error to call @code{va_start} in a function\n\ |
|
529 that has not been declared to take a variable number of parameters.\n\ |
|
530 @end deftypefn") |
2974
|
531 { |
|
532 octave_value_list retval; |
|
533 |
|
534 int nargin = args.length (); |
|
535 |
|
536 if (nargin == 0) |
|
537 { |
|
538 if (curr_function) |
|
539 { |
|
540 if (curr_function->takes_varargs ()) |
|
541 curr_function->octave_va_start (); |
|
542 else |
|
543 { |
|
544 ::error ("va_start only valid within function taking variable"); |
|
545 ::error ("number of arguments"); |
|
546 } |
|
547 } |
|
548 else |
|
549 ::error ("va_start only valid within function body"); |
|
550 } |
|
551 else |
|
552 print_usage ("va_start"); |
|
553 |
|
554 return retval; |
|
555 } |
|
556 |
|
557 DEFUN (vr_val, args, , |
3445
|
558 "-*- texinfo -*-\n\ |
|
559 @deftypefn {Built-in Function} {} vr_val (@var{x})\n\ |
|
560 Each time this function is called, it places the value of its argument\n\ |
|
561 at the end of the list of values to return from the current\n\ |
|
562 function. Once @code{vr_val} has been called, there is no way to go\n\ |
|
563 back to the beginning of the list and rewrite any of the return\n\ |
|
564 values. This function may only be called within functions that have\n\ |
|
565 been declared to return an unspecified number of output arguments.\n\ |
|
566 @end deftypefn") |
2974
|
567 { |
|
568 octave_value_list retval; |
|
569 |
|
570 int nargin = args.length (); |
|
571 |
|
572 if (nargin == 1) |
|
573 { |
|
574 if (curr_function) |
|
575 { |
|
576 if (curr_function->takes_var_return ()) |
|
577 curr_function->octave_vr_val (args(0)); |
|
578 else |
|
579 { |
|
580 ::error ("vr_val only valid within function declared to"); |
|
581 ::error ("produce a variable number of values"); |
|
582 } |
|
583 } |
|
584 else |
|
585 ::error ("vr_val only valid within function body"); |
|
586 } |
|
587 else |
|
588 print_usage ("vr_val"); |
|
589 |
|
590 return retval; |
|
591 } |
|
592 |
|
593 static int |
|
594 define_all_return_values (void) |
|
595 { |
|
596 Vdefine_all_return_values = check_preference ("define_all_return_values"); |
|
597 |
|
598 return 0; |
|
599 } |
|
600 |
|
601 static int |
3131
|
602 max_recursion_depth (void) |
|
603 { |
|
604 Vmax_recursion_depth = check_preference ("max_recursion_depth"); |
|
605 |
|
606 return 0; |
|
607 } |
|
608 |
|
609 static int |
2974
|
610 return_last_computed_value (void) |
|
611 { |
|
612 Vreturn_last_computed_value |
|
613 = check_preference ("return_last_computed_value"); |
|
614 |
|
615 return 0; |
|
616 } |
|
617 |
|
618 void |
|
619 symbols_of_ov_usr_fcn (void) |
|
620 { |
3258
|
621 DEFVAR (default_return_value, Matrix (), 0, |
3371
|
622 "-*- texinfo -*-\n\ |
|
623 @defvr {Built-in Variable} default_return_value\n\ |
|
624 The value given to otherwise uninitialized return values if\n\ |
|
625 @code{define_all_return_values} is nonzero. The default value is\n\ |
|
626 @code{[]}.\n\ |
|
627 @end defvr"); |
2974
|
628 |
3258
|
629 DEFVAR (define_all_return_values, 0.0, define_all_return_values, |
3371
|
630 "-*- texinfo -*-\n\ |
|
631 @defvr {Built-in Variable} define_all_return_values\n\ |
|
632 If the value of @code{define_all_return_values} is nonzero, Octave\n\ |
|
633 will substitute the value specified by @code{default_return_value} for\n\ |
|
634 any return values that remain undefined when a function returns. The\n\ |
|
635 default value is 0.\n\ |
|
636 @end defvr"); |
2974
|
637 |
3258
|
638 DEFVAR (max_recursion_depth, 256.0, max_recursion_depth, |
3371
|
639 "-*- texinfo -*-\n\ |
|
640 @defvr {Built-in Variable} max_recursion_depth\n\ |
|
641 Limit the number of times a function may be called recursively.\n\ |
|
642 If the limit is exceeded, an error message is printed and control\n\ |
|
643 returns to the top level.\n\ |
|
644 \n\ |
|
645 The default value is 256.\n\ |
|
646 @end defvr"); |
3131
|
647 |
3258
|
648 DEFVAR (return_last_computed_value, 0.0, return_last_computed_value, |
3371
|
649 "-*- texinfo -*-\n\ |
|
650 @defvr {Built-in Variable} return_last_computed_value\n\ |
|
651 If the value of @code{return_last_computed_value} is true, and a\n\ |
|
652 function is defined without explicitly specifying a return value, the\n\ |
|
653 function will return the value of the last expression. Otherwise, no\n\ |
|
654 value will be returned. The default value is 0.\n\ |
|
655 \n\ |
|
656 For example, the function\n\ |
|
657 \n\ |
|
658 @example\n\ |
|
659 function f ()\n\ |
|
660 2 + 2;\n\ |
|
661 endfunction\n\ |
|
662 @end example\n\ |
|
663 \n\ |
|
664 @noindent\n\ |
|
665 will either return nothing, if the value of\n\ |
|
666 @code{return_last_computed_value} is 0, or 4, if the value of\n\ |
|
667 @code{return_last_computed_value} is nonzero.\n\ |
|
668 @end defvr"); |
2974
|
669 } |
|
670 |
|
671 /* |
|
672 ;;; Local Variables: *** |
|
673 ;;; mode: C++ *** |
|
674 ;;; End: *** |
|
675 */ |