comparison src/lex.l @ 240:a99f28f5e351

[project @ 1993-11-30 20:24:36 by jwe]
author jwe
date Tue, 30 Nov 1993 20:24:36 +0000
parents e83d64b26659
children e4d5f689f06d
comparison
equal deleted inserted replaced
239:4f8134fa54a9 240:a99f28f5e351
27 %s DQSTRING 27 %s DQSTRING
28 %s STRING 28 %s STRING
29 %s MATRIX 29 %s MATRIX
30 30
31 %{ 31 %{
32
33 #ifdef HAVE_CONFIG_H
34 #include "config.h"
35 #endif
32 36
33 #include "input.h" 37 #include "input.h"
34 #include "token.h" 38 #include "token.h"
35 39
36 #include "SLStack.h" 40 #include "SLStack.h"
63 67
64 // Brace level count. 68 // Brace level count.
65 static int braceflag = 0; 69 static int braceflag = 0;
66 70
67 // Return transpose or start a string? 71 // Return transpose or start a string?
68 static int quote_is_transpose = 0; 72 int quote_is_transpose = 0;
69 73
70 // Nonzero means that we should convert spaces to a comma inside a 74 // Nonzero means that we should convert spaces to a comma inside a
71 // matrix definition. 75 // matrix definition.
72 static int convert_spaces_to_comma = 1; 76 static int convert_spaces_to_comma = 1;
73 77