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 |
3875
|
244 restore_args_passed (void *fcn) |
3239
|
245 { |
|
246 octave_user_function *tmp = static_cast<octave_user_function *> (fcn); |
|
247 |
|
248 if (tmp) |
3875
|
249 tmp->restore_args_passed (); |
3239
|
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 |
3875
|
326 // Save and restore args passed for recursive calls. |
2974
|
327 |
3875
|
328 save_args_passed (args); |
3239
|
329 |
3875
|
330 unwind_protect::add (::restore_args_passed, this); |
3239
|
331 |
2974
|
332 string_vector arg_names = args.name_tags (); |
|
333 |
|
334 unwind_protect_int (num_args_passed); |
|
335 num_args_passed = nargin; |
|
336 |
|
337 unwind_protect_int (curr_va_arg_number); |
|
338 |
3876
|
339 curr_va_arg_number = num_named_args; |
|
340 |
2974
|
341 if (param_list && ! param_list->varargs_only ()) |
|
342 { |
|
343 param_list->define_from_arg_vector (args); |
|
344 if (error_state) |
|
345 goto abort; |
|
346 } |
|
347 |
3239
|
348 // Force parameter list to be undefined when this function exits. |
|
349 // Doing so decrements the reference counts on the values of local |
|
350 // variables that are also named function parameters. |
|
351 |
|
352 unwind_protect::add (clear_param_list, param_list); |
|
353 |
|
354 // Force return list to be undefined when this function exits. |
|
355 // Doing so decrements the reference counts on the values of local |
|
356 // variables that are also named values returned by this function. |
|
357 |
|
358 unwind_protect::add (clear_param_list, ret_list); |
|
359 |
2974
|
360 // The following code is in a separate scope to avoid warnings from |
|
361 // G++ about `goto abort' crossing the initialization of some |
|
362 // variables. |
|
363 |
|
364 { |
|
365 bind_automatic_vars (arg_names, nargin, nargout); |
|
366 |
|
367 bool echo_commands = (Vecho_executing_commands & ECHO_FUNCTIONS); |
|
368 |
|
369 if (echo_commands) |
|
370 print_code_function_header (); |
|
371 |
|
372 // Evaluate the commands that make up the function. |
|
373 |
3489
|
374 unwind_protect_bool (evaluating_function_body); |
|
375 evaluating_function_body = true; |
|
376 |
2974
|
377 octave_value_list tmp = cmd_list->eval (); |
|
378 |
|
379 octave_value last_computed_value; |
|
380 |
|
381 if (! tmp.empty ()) |
|
382 last_computed_value = tmp(0); |
|
383 |
|
384 if (echo_commands) |
|
385 print_code_function_trailer (); |
|
386 |
2985
|
387 if (tree_return_command::returning) |
|
388 tree_return_command::returning = 0; |
2974
|
389 |
2985
|
390 if (tree_break_command::breaking) |
|
391 tree_break_command::breaking--; |
2974
|
392 |
|
393 if (error_state) |
|
394 { |
|
395 traceback_error (); |
|
396 goto abort; |
|
397 } |
|
398 |
|
399 // Copy return values out. |
|
400 |
|
401 if (ret_list) |
3871
|
402 { |
|
403 if (Vdefine_all_return_values) |
|
404 { |
|
405 octave_value tmp = builtin_any_variable ("default_return_value"); |
|
406 |
|
407 if (tmp.is_defined ()) |
|
408 ret_list->initialize_undefined_elements (tmp); |
|
409 } |
|
410 |
|
411 retval = ret_list->convert_to_const_vector (vr_list); |
|
412 } |
2974
|
413 else if (Vreturn_last_computed_value) |
|
414 retval(0) = last_computed_value; |
|
415 } |
|
416 |
|
417 abort: |
2985
|
418 unwind_protect::run_frame ("func_eval"); |
2974
|
419 |
|
420 return retval; |
|
421 } |
|
422 |
|
423 void |
|
424 octave_user_function::traceback_error (void) |
|
425 { |
|
426 if (error_state >= 0) |
|
427 error_state = -1; |
|
428 |
|
429 if (fcn_name.empty ()) |
|
430 { |
|
431 if (file_name.empty ()) |
|
432 ::error ("called from `?unknown?'"); |
|
433 else |
|
434 ::error ("called from file `%s'", file_name.c_str ()); |
|
435 } |
|
436 else |
|
437 { |
|
438 if (file_name.empty ()) |
|
439 ::error ("called from `%s'", fcn_name.c_str ()); |
|
440 else |
|
441 ::error ("called from `%s' in file `%s'", |
|
442 fcn_name.c_str (), file_name.c_str ()); |
|
443 } |
|
444 } |
|
445 |
|
446 void |
|
447 octave_user_function::accept (tree_walker& tw) |
|
448 { |
|
449 tw.visit_octave_user_function (*this); |
|
450 } |
|
451 |
|
452 void |
|
453 octave_user_function::print_code_function_header (void) |
|
454 { |
|
455 tree_print_code tpc (octave_stdout, Vps4); |
|
456 |
|
457 tpc.visit_octave_user_function_header (*this); |
|
458 } |
|
459 |
|
460 void |
|
461 octave_user_function::print_code_function_trailer (void) |
|
462 { |
|
463 tree_print_code tpc (octave_stdout, Vps4); |
|
464 |
|
465 tpc.visit_octave_user_function_trailer (*this); |
|
466 } |
|
467 |
|
468 void |
|
469 octave_user_function::install_automatic_vars (void) |
|
470 { |
|
471 argn_sr = sym_tab->lookup ("argn", true); |
|
472 nargin_sr = sym_tab->lookup ("nargin", true); |
|
473 nargout_sr = sym_tab->lookup ("nargout", true); |
|
474 } |
|
475 |
|
476 void |
|
477 octave_user_function::bind_automatic_vars |
|
478 (const string_vector& arg_names, int nargin, int nargout) |
|
479 { |
|
480 if (! arg_names.empty ()) |
|
481 argn_sr->define (arg_names); |
|
482 |
|
483 nargin_sr->define (static_cast<double> (nargin)); |
|
484 nargout_sr->define (static_cast<double> (nargout)); |
|
485 } |
|
486 |
3743
|
487 DEFUNX ("va_arg", Fva_arg, args, , |
3445
|
488 "-*- texinfo -*-\n\ |
|
489 @deftypefn {Built-in Function} {} va_arg ()\n\ |
3745
|
490 Return the value of the next available argument and move the internal\n\ |
3445
|
491 pointer to the next argument. It is an error to call @code{va_arg}\n\ |
|
492 when ther eare no more arguments available, or in a function that\n\ |
|
493 has not been declared to take a variable number of parameters.\n\ |
|
494 @end deftypefn") |
2974
|
495 { |
|
496 octave_value_list retval; |
|
497 |
|
498 int nargin = args.length (); |
|
499 |
|
500 if (nargin == 0) |
|
501 { |
|
502 if (curr_function) |
|
503 { |
|
504 if (curr_function->takes_varargs ()) |
|
505 retval = curr_function->octave_va_arg (); |
|
506 else |
|
507 { |
|
508 ::error ("va_arg only valid within function taking variable"); |
|
509 ::error ("number of arguments"); |
|
510 } |
|
511 } |
|
512 else |
|
513 ::error ("va_arg only valid within function body"); |
|
514 } |
|
515 else |
|
516 print_usage ("va_arg"); |
|
517 |
|
518 return retval; |
|
519 } |
|
520 |
|
521 DEFUN (va_start, args, , |
3445
|
522 "-*- texinfo -*-\n\ |
|
523 @deftypefn {Built-in Function} {} va_start ()\n\ |
|
524 Position an internal pointer to the first unnamed argument in\n\ |
|
525 functions that have been declared to accept a variable number of\n\ |
|
526 arguments. It is an error to call @code{va_start} in a function\n\ |
|
527 that has not been declared to take a variable number of parameters.\n\ |
|
528 @end deftypefn") |
2974
|
529 { |
|
530 octave_value_list retval; |
|
531 |
|
532 int nargin = args.length (); |
|
533 |
|
534 if (nargin == 0) |
|
535 { |
|
536 if (curr_function) |
|
537 { |
|
538 if (curr_function->takes_varargs ()) |
|
539 curr_function->octave_va_start (); |
|
540 else |
|
541 { |
|
542 ::error ("va_start only valid within function taking variable"); |
|
543 ::error ("number of arguments"); |
|
544 } |
|
545 } |
|
546 else |
|
547 ::error ("va_start only valid within function body"); |
|
548 } |
|
549 else |
|
550 print_usage ("va_start"); |
|
551 |
|
552 return retval; |
|
553 } |
|
554 |
|
555 DEFUN (vr_val, args, , |
3445
|
556 "-*- texinfo -*-\n\ |
|
557 @deftypefn {Built-in Function} {} vr_val (@var{x})\n\ |
|
558 Each time this function is called, it places the value of its argument\n\ |
|
559 at the end of the list of values to return from the current\n\ |
|
560 function. Once @code{vr_val} has been called, there is no way to go\n\ |
|
561 back to the beginning of the list and rewrite any of the return\n\ |
|
562 values. This function may only be called within functions that have\n\ |
|
563 been declared to return an unspecified number of output arguments.\n\ |
|
564 @end deftypefn") |
2974
|
565 { |
|
566 octave_value_list retval; |
|
567 |
|
568 int nargin = args.length (); |
|
569 |
|
570 if (nargin == 1) |
|
571 { |
|
572 if (curr_function) |
|
573 { |
|
574 if (curr_function->takes_var_return ()) |
|
575 curr_function->octave_vr_val (args(0)); |
|
576 else |
|
577 { |
|
578 ::error ("vr_val only valid within function declared to"); |
|
579 ::error ("produce a variable number of values"); |
|
580 } |
|
581 } |
|
582 else |
|
583 ::error ("vr_val only valid within function body"); |
|
584 } |
|
585 else |
|
586 print_usage ("vr_val"); |
|
587 |
|
588 return retval; |
|
589 } |
|
590 |
|
591 static int |
|
592 define_all_return_values (void) |
|
593 { |
|
594 Vdefine_all_return_values = check_preference ("define_all_return_values"); |
|
595 |
|
596 return 0; |
|
597 } |
|
598 |
|
599 static int |
3131
|
600 max_recursion_depth (void) |
|
601 { |
|
602 Vmax_recursion_depth = check_preference ("max_recursion_depth"); |
|
603 |
|
604 return 0; |
|
605 } |
|
606 |
|
607 static int |
2974
|
608 return_last_computed_value (void) |
|
609 { |
|
610 Vreturn_last_computed_value |
|
611 = check_preference ("return_last_computed_value"); |
|
612 |
|
613 return 0; |
|
614 } |
|
615 |
|
616 void |
|
617 symbols_of_ov_usr_fcn (void) |
|
618 { |
3258
|
619 DEFVAR (default_return_value, Matrix (), 0, |
3371
|
620 "-*- texinfo -*-\n\ |
|
621 @defvr {Built-in Variable} default_return_value\n\ |
|
622 The value given to otherwise uninitialized return values if\n\ |
|
623 @code{define_all_return_values} is nonzero. The default value is\n\ |
|
624 @code{[]}.\n\ |
|
625 @end defvr"); |
2974
|
626 |
3258
|
627 DEFVAR (define_all_return_values, 0.0, define_all_return_values, |
3371
|
628 "-*- texinfo -*-\n\ |
|
629 @defvr {Built-in Variable} define_all_return_values\n\ |
|
630 If the value of @code{define_all_return_values} is nonzero, Octave\n\ |
|
631 will substitute the value specified by @code{default_return_value} for\n\ |
|
632 any return values that remain undefined when a function returns. The\n\ |
|
633 default value is 0.\n\ |
|
634 @end defvr"); |
2974
|
635 |
3258
|
636 DEFVAR (max_recursion_depth, 256.0, max_recursion_depth, |
3371
|
637 "-*- texinfo -*-\n\ |
|
638 @defvr {Built-in Variable} max_recursion_depth\n\ |
|
639 Limit the number of times a function may be called recursively.\n\ |
|
640 If the limit is exceeded, an error message is printed and control\n\ |
|
641 returns to the top level.\n\ |
|
642 \n\ |
|
643 The default value is 256.\n\ |
|
644 @end defvr"); |
3131
|
645 |
3258
|
646 DEFVAR (return_last_computed_value, 0.0, return_last_computed_value, |
3371
|
647 "-*- texinfo -*-\n\ |
|
648 @defvr {Built-in Variable} return_last_computed_value\n\ |
|
649 If the value of @code{return_last_computed_value} is true, and a\n\ |
|
650 function is defined without explicitly specifying a return value, the\n\ |
|
651 function will return the value of the last expression. Otherwise, no\n\ |
|
652 value will be returned. The default value is 0.\n\ |
|
653 \n\ |
|
654 For example, the function\n\ |
|
655 \n\ |
|
656 @example\n\ |
|
657 function f ()\n\ |
|
658 2 + 2;\n\ |
|
659 endfunction\n\ |
|
660 @end example\n\ |
|
661 \n\ |
|
662 @noindent\n\ |
|
663 will either return nothing, if the value of\n\ |
|
664 @code{return_last_computed_value} is 0, or 4, if the value of\n\ |
|
665 @code{return_last_computed_value} is nonzero.\n\ |
|
666 @end defvr"); |
2974
|
667 } |
|
668 |
|
669 /* |
|
670 ;;; Local Variables: *** |
|
671 ;;; mode: C++ *** |
|
672 ;;; End: *** |
|
673 */ |