]> git.saurik.com Git - bison.git/commitdiff
* src/output.c (output): Delete call to reader_output_yylsp.
authorPascal Bart <pascal.bart@epita.fr>
Fri, 7 Sep 2001 16:50:01 +0000 (16:50 +0000)
committerPascal Bart <pascal.bart@epita.fr>
Fri, 7 Sep 2001 16:50:01 +0000 (16:50 +0000)
* src/reader.c (reader): Likewise.
* src/reader.h: Delete declaration of reader_output_yylsp.

ChangeLog
src/output.c
src/reader.c
src/reader.h

index 416fbc020ba8a81a2d9ccc507839ef550cad965c..f9c7690706e76e161641568b89954c88b4076eaa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-09-07  Pascal Bart  <pascal.bart@epita.fr>
+
+       * src/output.c (output): Delete call to reader_output_yylsp.
+       * src/reader.c (reader): Likewise.
+       * src/reader.h: Delete declaration of reader_output_yylsp.
+       
 2001-09-02  Marc Autret  <autret_m@epita.fr>
 
        * src/reader.c: Include muscle_tab.h.
index b07988a7c9876b36905bcad47e0f97316ead5a63..af03317d11ba3a7e933c7389c08d7d5d0cf1b1af 100644 (file)
@@ -1087,9 +1087,6 @@ output (void)
 {
   obstack_init (&output_obstack);
 
-#if 0
-  reader_output_yylsp (&table_obstack); */
-#endif
   free_itemsets ();
 
   output_token_translations ();
index 3f3a3a348e7bf394435f79a5532199f90e791f1d..83c6b3a6d9d7cb7bb477dd228b3b7013f5c72884 100644 (file)
@@ -2031,12 +2031,11 @@ reader (void)
   readgram ();
   /* Some C code is given at the end of the grammar file. */
   read_additionnal_code ();
+
   /* Now we know whether we need the line-number stack.  If we do,
-     write its type into the .tab.h file.  */
-#if 0
-  if (defines_flag)
-    reader_output_yylsp (&defines_obstack);
-#endif
+     write its type into the .tab.h file.
+     This is no longer need with header skeleton.  */
+
   /* Assign the symbols their symbol numbers.  Write #defines for the
      token symbols into FDEFINES if requested.  */
   packsymbols ();
index 4a721ba713f9e6fcb76dd9cf7ff1ad6d8f4766ce..4030e478e793ced5a977d0d1acc9b948ea8bf501 100644 (file)
@@ -30,8 +30,6 @@
 extern void reader PARAMS ((void));
 
 
-extern void reader_output_yylsp PARAMS ((struct obstack *));
-
 extern int lineno;
 extern char **tags;
 extern short *user_toknums;