bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

New skeleton names


From: Akim Demaille
Subject: New skeleton names
Date: 27 Jun 2002 13:56:37 +0200
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Honest Recruiter)

Index: ChangeLog
from  Akim Demaille  <address@hidden>

        * data/bison.simple, data/bison.c++: Rename as...
        * data/yacc.c, data/lalr1.cc: these.
        * doc/bison.texinfo (Environment Variables): Remove.

Index: data/Makefile.am
===================================================================
RCS file: /cvsroot/bison/bison/data/Makefile.am,v
retrieving revision 1.3
diff -u -u -r1.3 Makefile.am
--- data/Makefile.am 2 May 2002 15:06:46 -0000 1.3
+++ data/Makefile.am 27 Jun 2002 11:56:08 -0000
@@ -15,7 +15,7 @@
 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 ## 02111-1307  USA
 
-dist_pkgdata_DATA = bison.simple bison.c++
+dist_pkgdata_DATA = yacc.c lalr1.cc
 
 m4sugardir = $(pkgdatadir)/m4sugar
 dist_m4sugar_DATA = m4sugar/m4sugar.m4 m4sugar/version.m4
Index: doc/bison.texinfo
===================================================================
RCS file: /cvsroot/bison/bison/doc/bison.texinfo,v
retrieving revision 1.62
diff -u -u -r1.62 bison.texinfo
--- doc/bison.texinfo 19 Jun 2002 07:46:11 -0000 1.62
+++ doc/bison.texinfo 27 Jun 2002 11:56:08 -0000
@@ -5532,7 +5532,6 @@
 @menu
 * Bison Options::     All the options described in detail,
                        in alphabetical order by short options.
-* Environment Variables::  Variables which affect Bison execution.
 * Option Cross Key::  Alphabetical list of long options.
 * VMS Invocation::    Bison command syntax on VMS.
 @end menu
@@ -5679,23 +5678,6 @@
 The behaviour of @var{--graph} is the same than @samp{-g}. The only
 difference is that it has an optionnal argument which is the name of
 the output graph filename.
address@hidden table
-
address@hidden Environment Variables
address@hidden Environment Variables
address@hidden environment variables
address@hidden BISON_SIMPLE
-
-Here is a list of environment variables which affect the way Bison
-runs.
-
address@hidden @samp
address@hidden BISON_SIMPLE
-Much of the parser generated by Bison is copied verbatim from a file
-called @file{bison.simple}.  If Bison cannot find that file, or if you
-would like to direct Bison to use a different copy, setting the
-environment variable @code{BISON_SIMPLE} to the path of the file will
-cause Bison to use that copy instead.
 @end table
 
 @node Option Cross Key
Index: src/output.c
===================================================================
RCS file: /cvsroot/bison/bison/src/output.c,v
retrieving revision 1.167
diff -u -u -r1.167 output.c
--- src/output.c 20 Jun 2002 09:08:37 -0000 1.167
+++ src/output.c 27 Jun 2002 11:56:08 -0000
@@ -1140,7 +1140,7 @@
 
   /* Find the right skeleton file.  */
   if (!skeleton)
-    skeleton = "bison.simple";
+    skeleton = "yacc.c";
 
   /* Parse the skeleton file and output the needed parsers.  */
   muscle_insert ("skeleton", skeleton);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]