summaryrefslogtreecommitdiffstats
path: root/dimension
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-10-21 00:30:01 -0400
committerTavian Barnes <tavianator@gmail.com>2010-10-21 00:30:01 -0400
commit7d46eba1e14596af1d745652de533f801cff0c65 (patch)
tree59111c670eff794125fc500a50c33f702e6f4cdf /dimension
parent79ac892af5ad07803e887b99bcecbb3bf403b75e (diff)
downloaddimension-7d46eba1e14596af1d745652de533f801cff0c65.tar.xz
Whitespace fix in lexer.l.
Diffstat (limited to 'dimension')
-rw-r--r--dimension/lexer.l3
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;