diff src/lex.l @ 1488:89c587478067

[project @ 1995-09-26 22:49:48 by jwe]
author jwe
date Tue, 26 Sep 1995 22:49:48 +0000
parents 9ce9e4f1e5b5
children 3e705c864019
line wrap: on
line diff
--- a/src/lex.l	Tue Sep 26 09:58:05 1995 +0000
+++ b/src/lex.l	Tue Sep 26 22:49:48 1995 +0000
@@ -1198,8 +1198,8 @@
   return ((spc_prev && spc_next) || ! spc_prev);
 }
 
-// Duh.
-
+// Duh.  This seems to no longer be needed.
+#if 0
 static int
 next_char_is_space (void)
 {
@@ -1207,6 +1207,7 @@
   yyunput (c, yytext);
   return (c == ' ' || c == '\t');
 }
+#endif
 
 // Try to determine if the next token should be treated as a postfix
 // unary operator.  This is ugly, but it seems to do the right thing.