comparison src/toplev.h @ 4748:7b145222fea3

[project @ 2004-02-07 06:27:27 by jwe]
author jwe
date Sat, 07 Feb 2004 06:27:28 +0000
parents 286a3345aa8e
children 80842ad3f85c
comparison
equal deleted inserted replaced
4747:3f28979bbe2c 4748:7b145222fea3
44 44
45 // Current command to execute. 45 // Current command to execute.
46 extern tree_statement_list *global_command; 46 extern tree_statement_list *global_command;
47 47
48 // Pointer to function that is currently being evaluated. 48 // Pointer to function that is currently being evaluated.
49 extern octave_user_function *curr_function; 49 extern octave_function *curr_function;
50 50
51 // Pointer to parent function that is currently being evaluated. 51 // Pointer to parent function that is currently being evaluated.
52 extern octave_user_function *curr_parent_function; 52 extern octave_function *curr_parent_function;
53 53
54 // TRUE means we are ready to interpret commands, but not everything 54 // TRUE means we are ready to interpret commands, but not everything
55 // is ready for interactive use. 55 // is ready for interactive use.
56 extern bool octave_interpreter_ready; 56 extern bool octave_interpreter_ready;
57 57