comparison src/parse.y @ 8283:54c25dc5b17d

parse.y: fix comment
author John W. Eaton <jwe@octave.org>
date Tue, 28 Oct 2008 13:04:32 -0400
parents 47a3d2f829e4
children 7124bffc89c7
comparison
equal deleted inserted replaced
8282:47a3d2f829e4 8283:54c25dc5b17d
2617 // looking at curr_fcn_ptr... 2617 // looking at curr_fcn_ptr...
2618 2618
2619 retval = new tree_function_def (fcn); 2619 retval = new tree_function_def (fcn);
2620 } 2620 }
2621 2621
2622 // Clear any local variables that may have been added by 2622 // Clear any local variables that may have been added while
2623 // while parsing (for example, by force_local_variable in lex.l). 2623 // parsing (for example, by force_local_variable in lex.l).
2624 2624
2625 symbol_table::clear_variables (fcn->scope ()); 2625 symbol_table::clear_variables (fcn->scope ());
2626 } 2626 }
2627 2627
2628 return retval; 2628 return retval;