summaryrefslogtreecommitdiff
path: root/src/scan.l
diff options
context:
space:
mode:
authorluistung <dongliang1986@gmail.com>2017-01-09 20:18:41 +0800
committerWill Estes <westes575@gmail.com>2017-01-11 09:09:15 -0500
commit7f263e35204db8ade3f0fb424f4597d7758caf25 (patch)
tree9f741f27f13ccfdbe5d4fee1e355a41fee59a866 /src/scan.l
parenta58086a269d3d7367530c1a178644a8e5f1a374f (diff)
scanner: join symbol list.
Removed a newline that caused a problem building the scanner in some circumstances. Specifically: 'bad character' error when executing /bin/sh ../build-aux/ylwrap scan.l lex.yy.c scan.c -- flex
Diffstat (limited to 'src/scan.l')
-rw-r--r--src/scan.l3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/scan.l b/src/scan.l
index 7c9f092..181b28c 100644
--- a/src/scan.l
+++ b/src/scan.l
@@ -263,8 +263,7 @@ M4QEND "]""]"
}
. /* ignore spurious characters */
}
-<ACTION,CODEBLOCK,ACTION_STRING,PERCENT_BRACE_ACTION,CHARACTER_CONSTANT,
-COMMENT,CODE_COMMENT>{
+<ACTION,CODEBLOCK,ACTION_STRING,PERCENT_BRACE_ACTION,CHARACTER_CONSTANT,COMMENT,CODE_COMMENT>{
{M4QSTART} ACTION_ECHO_QSTART;
{M4QEND} ACTION_ECHO_QEND;
}