summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scan.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/scan.l b/scan.l
index 5f14ac3..7b894f6 100644
--- a/scan.l
+++ b/scan.l
@@ -619,7 +619,7 @@ LEXOPT [aceknopr]
<ACTION_STRING>{
[^"\\\n]+ ACTION_ECHO;
\\. ACTION_ECHO;
- {NL} ++linenum; ACTION_ECHO;
+ {NL} ++linenum; ACTION_ECHO; BEGIN(ACTION);
\" ACTION_ECHO; BEGIN(ACTION);
. ACTION_ECHO;
}