diff src/lex.l @ 5783:2a9089b47dc2

[project @ 2006-05-03 00:02:22 by jwe]
author jwe
date Wed, 03 May 2006 00:02:22 +0000
parents ace8d8d26933
children 1138ced03f14
line wrap: on
line diff
--- a/src/lex.l	Tue May 02 21:36:50 2006 +0000
+++ b/src/lex.l	Wed May 03 00:02:22 2006 +0000
@@ -696,7 +696,10 @@
       BEGIN (INITIAL);
 
     if (nesting_level.none ())
-      COUNT_TOK_AND_RETURN ('\n');
+      {
+	lexer_flags.doing_rawcommand = false;
+	COUNT_TOK_AND_RETURN ('\n');
+      }
     else if (nesting_level.is_bracket_or_brace ())
       COUNT_TOK_AND_RETURN (';');
   }