comparison src/parse.h @ 5189:85b315ad5f7d

[project @ 2005-03-04 02:46:08 by jwe]
author jwe
date Fri, 04 Mar 2005 02:46:08 +0000
parents 9f0ce1536368
children 4c8a2e4e0717
comparison
equal deleted inserted replaced
5188:fd90c6df7d52 5189:85b315ad5f7d
64 extern bool reading_startup_message_printed; 64 extern bool reading_startup_message_printed;
65 65
66 // TRUE means input is coming from startup file. 66 // TRUE means input is coming from startup file.
67 extern bool input_from_startup_file; 67 extern bool input_from_startup_file;
68 68
69 // TRUE means that input is coming from a file that was named on
70 // the command line.
71 extern bool input_from_command_line_file;
72
73 // TRUE means that we are in the process of evaluating a function 69 // TRUE means that we are in the process of evaluating a function
74 // body. The parser might be called in that case if we are looking at 70 // body. The parser might be called in that case if we are looking at
75 // an eval() statement. 71 // an eval() statement.
76 extern bool evaluating_function_body; 72 extern bool evaluating_function_body;
77 73