diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-10-21 00:30:01 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-10-21 00:30:01 -0400 |
commit | 7d46eba1e14596af1d745652de533f801cff0c65 (patch) | |
tree | 59111c670eff794125fc500a50c33f702e6f4cdf /dimension | |
parent | 79ac892af5ad07803e887b99bcecbb3bf403b75e (diff) | |
download | dimension-7d46eba1e14596af1d745652de533f801cff0c65.tar.xz |
Whitespace fix in lexer.l.
Diffstat (limited to 'dimension')
-rw-r--r-- | dimension/lexer.l | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dimension/lexer.l b/dimension/lexer.l index c871b91..56d165a 100644 --- a/dimension/lexer.l +++ b/dimension/lexer.l @@ -406,7 +406,8 @@ dmnsn_tokenize(FILE *file, const char *filename) yyset_extra(NULL, scanner); while ((token.type = dmnsn_yylex_impl(&item, &location, filename, scanner)) - != 0) { + != 0) + { token.value = item.value; token.filename = location.first_filename; token.line = location.first_line; |