]> git.saurik.com Git - bison.git/blobdiff - src/flex-scanner.h
Remove bogus comments.
[bison.git] / src / flex-scanner.h
index c14590550cad1e24e5f1c1d0d4925f374262fbfa..3e16234c553605ad52e47c05e6e7985ff75589f3 100644 (file)
@@ -1,4 +1,4 @@
-/* Common parts between scan-code.l and scan-gram.l.
+/* Common parts between scan-code.l, scan-gram.l, and scan-skel.l.
 
    Copyright (C) 2006 Free Software Foundation, Inc.
 
@@ -59,6 +59,8 @@ int   FLEX_PREFIX (lex_destroy) (void);
    STRING_FINISH also stores this string in LAST_STRING, which can be
    used, and which is used by STRING_FREE to free the last string.  */
 
+#ifndef FLEX_NO_OBSTACK
+
 static struct obstack obstack_for_string;
 
 #define STRING_GROW   \
@@ -71,4 +73,6 @@ static struct obstack obstack_for_string;
   } while (0)
 
 #define STRING_FREE \
-  obstack_free (&obstack_for_string, FLEX_PREFIX (last_string))
+  obstack_free (&obstack_for_string, last_string)
+
+#endif