comparison src/lex.l @ 1355:94697d007075

[project @ 1995-09-05 20:04:15 by jwe]
author jwe
date Tue, 05 Sep 1995 20:07:21 +0000
parents 8256c4c57419
children 9ce9e4f1e5b5
comparison
equal deleted inserted replaced
1354:5b54091471dd 1355:94697d007075
36 36
37 #include <strstream.h> 37 #include <strstream.h>
38 38
39 #include "SLStack.h" 39 #include "SLStack.h"
40 40
41 #include "error.h"
41 #include "input.h" 42 #include "input.h"
43 #include "lex.h"
44 #include "octave.h"
45 #include "parse.h"
46 #include "symtab.h"
42 #include "token.h" 47 #include "token.h"
43 #include "user-prefs.h"
44 #include "variables.h"
45 #include "octave.h"
46 #include "symtab.h"
47 #include "error.h"
48 #include "utils.h"
49 #include "tree-base.h" 48 #include "tree-base.h"
49 #include "tree-cmd.h"
50 #include "tree-const.h"
50 #include "tree-expr.h" 51 #include "tree-expr.h"
51 #include "tree-cmd.h"
52 #include "tree-misc.h" 52 #include "tree-misc.h"
53 #include "tree-plot.h" 53 #include "tree-plot.h"
54 #include "tree-const.h" 54 #include "user-prefs.h"
55 #include "utils.h"
56 #include "variables.h"
55 #include "y.tab.h" 57 #include "y.tab.h"
56 #include "parse.h"
57 #include "lex.h"
58 58
59 // Stack to hold tokens so that we can delete them when the parser is 59 // Stack to hold tokens so that we can delete them when the parser is
60 // reset and avoid growing forever just because we are stashing some 60 // reset and avoid growing forever just because we are stashing some
61 // information. This has to appear before lex.h is included, because 61 // information. This has to appear before lex.h is included, because
62 // one of the macros defined there uses token_stack. 62 // one of the macros defined there uses token_stack.