summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <akim@epita.fr>2001-08-15 08:25:10 +0000
committerAkim Demaille <akim@epita.fr>2001-08-15 08:25:10 +0000
commitf9a8293a3f764cd1cc526defa71b24568c995a0d (patch)
tree63d5968979e51242d734fb2f060fa69cffa7528a
parent150ca7a72e68ca302842648efb33fd270b536980 (diff)
downloadbison-f9a8293a3f764cd1cc526defa71b24568c995a0d.tar.gz
* doc/bison.texinfo (Table of Symbols): Document
YYSTACK_USE_ALLOCA.
-rw-r--r--ChangeLog5
-rw-r--r--doc/Makefile.in2
-rw-r--r--doc/bison.texinfo33
-rw-r--r--doc/stamp-vti2
-rw-r--r--doc/version.texi2
-rw-r--r--po/de.gmobin8417 -> 8417 bytes
-rw-r--r--po/de.po2
-rw-r--r--po/es.po2
-rw-r--r--po/et.gmobin10791 -> 10791 bytes
-rw-r--r--po/et.po2
-rw-r--r--po/fr.gmobin8403 -> 8403 bytes
-rw-r--r--po/fr.po2
-rw-r--r--po/ja.gmobin8255 -> 8255 bytes
-rw-r--r--po/ja.po2
-rw-r--r--po/nl.gmobin7374 -> 7374 bytes
-rw-r--r--po/nl.po2
-rw-r--r--po/ru.gmobin11087 -> 11087 bytes
-rw-r--r--po/ru.po2
18 files changed, 46 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 27cd3ca8..d1358cb6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2001-08-15 Akim Demaille <akim@epita.fr>
+ * doc/bison.texinfo (Table of Symbols): Document
+ YYSTACK_USE_ALLOCA.
+
+2001-08-15 Akim Demaille <akim@epita.fr>
+
* missing: Update from CVS Automake.
* config/config.guess, config/config.sub, config/texinfo.tex:
Update from gnu.org.
diff --git a/doc/Makefile.in b/doc/Makefile.in
index bbbee796..68376ddb 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -98,7 +98,7 @@ AUTOMAKE_OPTIONS = 1.4
info_TEXINFOS = bison.texinfo
man_MANS = bison.1
-bison_TEXINFOS = gpl.texi
+bison_TEXINFOS = gpl.texi fdl.texi
EXTRA_DIST = FAQ bison.1 bison.rnh refcard.tex
diff --git a/doc/bison.texinfo b/doc/bison.texinfo
index 63eece1f..969d8156 100644
--- a/doc/bison.texinfo
+++ b/doc/bison.texinfo
@@ -3045,6 +3045,21 @@ This output file is essential if you wish to put the definition of
be able to refer to token type codes and the variable
@code{yylval}. @xref{Token Values, ,Semantic Values of Tokens}.@refill
+@c @item %source_extension
+@c Specify the extension of the parser output file.
+@c
+@c For example, a grammar file named @file{foo.yy} and containing a
+@c @code{%source_extension .cpp} directive will produce a parser file
+@c named @file{foo.tab.cpp}
+@c
+@c @item %header_extension
+@c Specify the extension of the parser header file generated when
+@c @code{%define} or @samp{-d} are used.
+@c
+@c For example, a garmmar file named @file{foo.ypp} and containing a
+@c @code{%header_extension .hh} directive will produce a header file
+@c named @file{foo.tab.hh}
+
@item %verbose
Write an extra output file containing verbose descriptions of the
parser states and what is done for each type of look-ahead token in
@@ -5052,6 +5067,12 @@ accept. @xref{Pure Calling,, Calling Conventions for Pure Parsers}.
Macro whose value indicates whether the parser is recovering from a
syntax error. @xref{Action Features, ,Special Features for Use in Actions}.
+@item YYSTACK_USE_ALLOCA
+Macro used to control the use of @code{alloca}. If defined to @samp{0},
+the parser will not use @code{alloca} but @code{malloc} when trying to
+grow its internal stacks. Do @emph{not} define @code{YYSTACK_USE_ALLOCA}
+to anything else.
+
@item YYSTYPE
Macro for the data type of semantic values; @code{int} by default.
@xref{Value Type, ,Data Types of Semantic Values}.
@@ -5115,6 +5136,14 @@ Equip the parser for debugging. @xref{Decl Summary}.
Bison declaration to create a header file meant for the scanner.
@xref{Decl Summary}.
+@c @item %source_extension
+@c Bison declaration to specify the generated parser output file extension.
+@c @xref{Decl Summary}.
+@c
+@c @item %header_extension
+@c Bison declaration to specify the generated parser header file extension
+@c if required. @xref{Decl Summary}.
+
@item %left
Bison declaration to assign left associativity to token(s).
@xref{Precedence Decl, ,Operator Precedence}.
@@ -5350,11 +5379,11 @@ grammatically indivisible. The piece of text it represents is a token.
@node Copying This Manual, Index, Glossary, Top
@appendix Copying This Manual
-
+
@menu
* GNU Free Documentation License:: License for copying this manual.
@end menu
-
+
@include fdl.texi
@node Index, , Copying This Manual, Top
diff --git a/doc/stamp-vti b/doc/stamp-vti
index a531c384..c88081be 100644
--- a/doc/stamp-vti
+++ b/doc/stamp-vti
@@ -1,3 +1,3 @@
-@set UPDATED 13 August 2001
+@set UPDATED 15 August 2001
@set EDITION 1.28c
@set VERSION 1.28c
diff --git a/doc/version.texi b/doc/version.texi
index a531c384..c88081be 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,3 +1,3 @@
-@set UPDATED 13 August 2001
+@set UPDATED 15 August 2001
@set EDITION 1.28c
@set VERSION 1.28c
diff --git a/po/de.gmo b/po/de.gmo
index db39715c..891169c6 100644
--- a/po/de.gmo
+++ b/po/de.gmo
Binary files differ
diff --git a/po/de.po b/po/de.po
index f316ab76..ac6659af 100644
--- a/po/de.po
+++ b/po/de.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bison 1.25\n"
-"POT-Creation-Date: 2001-08-13 15:48+0200\n"
+"POT-Creation-Date: 2001-08-15 10:15+0200\n"
"PO-Revision-Date: 1996-10-10 17:54 MET DST\n"
"Last-Translator: Ulrich Drepper <drepper@gnu.ai.mit.edu>\n"
"Language-Team: German <de@li.org>\n"
diff --git a/po/es.po b/po/es.po
index 833e91ec..0b41cc13 100644
--- a/po/es.po
+++ b/po/es.po
@@ -30,7 +30,7 @@
msgid ""
msgstr ""
"Project-Id-Version: GNU bison 1.25\n"
-"POT-Creation-Date: 2001-08-13 15:48+0200\n"
+"POT-Creation-Date: 2001-08-15 10:15+0200\n"
"PO-Revision-Date: 1998-09-21 10:19+0200\n"
"Last-Translator: Nicolás García-Pedrajas <ngarcia-pedrajas@acm.org>\n"
"Language-Team: Spanish <es@li.org>\n"
diff --git a/po/et.gmo b/po/et.gmo
index c4d9d611..7832ed30 100644
--- a/po/et.gmo
+++ b/po/et.gmo
Binary files differ
diff --git a/po/et.po b/po/et.po
index 9a609ab0..8bb46015 100644
--- a/po/et.po
+++ b/po/et.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bison 1.25\n"
-"POT-Creation-Date: 2001-08-13 15:48+0200\n"
+"POT-Creation-Date: 2001-08-15 10:15+0200\n"
"PO-Revision-Date: 2000-04-11 22:19+02:00\n"
"Last-Translator: Toomas Soome <tsoome@ut.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
diff --git a/po/fr.gmo b/po/fr.gmo
index 2c47e999..a7c00257 100644
--- a/po/fr.gmo
+++ b/po/fr.gmo
Binary files differ
diff --git a/po/fr.po b/po/fr.po
index a2eebcda..a5425230 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bison 1.25\n"
-"POT-Creation-Date: 2001-08-13 15:48+0200\n"
+"POT-Creation-Date: 2001-08-15 10:15+0200\n"
"PO-Revision-Date: 2001-08-06 11:28+0200\n"
"Last-Translator: Dominique Boucher <boucherd@IRO.UMontreal.CA>\n"
"Language-Team: French <fr@li.org>\n"
diff --git a/po/ja.gmo b/po/ja.gmo
index 682d21c3..ddb5bf61 100644
--- a/po/ja.gmo
+++ b/po/ja.gmo
Binary files differ
diff --git a/po/ja.po b/po/ja.po
index 39061d32..390fa7d8 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: GNU bison 1.28\n"
-"POT-Creation-Date: 2001-08-13 15:48+0200\n"
+"POT-Creation-Date: 2001-08-15 10:15+0200\n"
"PO-Revision-Date: 1999-09-28 21:10+0900\n"
"Last-Translator: Daisuke Yamashita <yamad@mb.infoweb.ne.jp>\n"
"Language-Team: Japanese <ja@li.org>\n"
diff --git a/po/nl.gmo b/po/nl.gmo
index 4a4fa8dc..086e94b0 100644
--- a/po/nl.gmo
+++ b/po/nl.gmo
Binary files differ
diff --git a/po/nl.po b/po/nl.po
index 8c0333c1..9e43a660 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bison 1.25\n"
-"POT-Creation-Date: 2001-08-13 15:48+0200\n"
+"POT-Creation-Date: 2001-08-15 10:15+0200\n"
"PO-Revision-Date: 1996-08-27 15:34 MET DST\n"
"Last-Translator: Erick Branderhorst <branderh@debian.org>\n"
"Language-Team: Dutch <nl@li.org>\n"
diff --git a/po/ru.gmo b/po/ru.gmo
index 0b2cce1e..eb02d684 100644
--- a/po/ru.gmo
+++ b/po/ru.gmo
Binary files differ
diff --git a/po/ru.po b/po/ru.po
index bc5aa1c7..5fe19ecc 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bison 1.28a\n"
-"POT-Creation-Date: 2001-08-13 15:48+0200\n"
+"POT-Creation-Date: 2001-08-15 10:15+0200\n"
"PO-Revision-Date: 2000-04-12 13:16+04:00\n"
"Last-Translator: Dmitry S. Sivachenko <dima@Chg.RU>\n"
"Language-Team: Russian <ru@li.org>\n"