mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-19 01:03:04 +00:00
* doc/bison.texinfo (Table of Symbols): Document
YYSTACK_USE_ALLOCA.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
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>
|
2001-08-15 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
* missing: Update from CVS Automake.
|
* missing: Update from CVS Automake.
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ AUTOMAKE_OPTIONS = 1.4
|
|||||||
|
|
||||||
info_TEXINFOS = bison.texinfo
|
info_TEXINFOS = bison.texinfo
|
||||||
man_MANS = bison.1
|
man_MANS = bison.1
|
||||||
bison_TEXINFOS = gpl.texi
|
bison_TEXINFOS = gpl.texi fdl.texi
|
||||||
|
|
||||||
EXTRA_DIST = FAQ bison.1 bison.rnh refcard.tex
|
EXTRA_DIST = FAQ bison.1 bison.rnh refcard.tex
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
be able to refer to token type codes and the variable
|
||||||
@code{yylval}. @xref{Token Values, ,Semantic Values of Tokens}.@refill
|
@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
|
@item %verbose
|
||||||
Write an extra output file containing verbose descriptions of the
|
Write an extra output file containing verbose descriptions of the
|
||||||
parser states and what is done for each type of look-ahead token in
|
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
|
Macro whose value indicates whether the parser is recovering from a
|
||||||
syntax error. @xref{Action Features, ,Special Features for Use in Actions}.
|
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
|
@item YYSTYPE
|
||||||
Macro for the data type of semantic values; @code{int} by default.
|
Macro for the data type of semantic values; @code{int} by default.
|
||||||
@xref{Value Type, ,Data Types of Semantic Values}.
|
@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.
|
Bison declaration to create a header file meant for the scanner.
|
||||||
@xref{Decl Summary}.
|
@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
|
@item %left
|
||||||
Bison declaration to assign left associativity to token(s).
|
Bison declaration to assign left associativity to token(s).
|
||||||
@xref{Precedence Decl, ,Operator Precedence}.
|
@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
|
@node Copying This Manual, Index, Glossary, Top
|
||||||
@appendix Copying This Manual
|
@appendix Copying This Manual
|
||||||
|
|
||||||
@menu
|
@menu
|
||||||
* GNU Free Documentation License:: License for copying this manual.
|
* GNU Free Documentation License:: License for copying this manual.
|
||||||
@end menu
|
@end menu
|
||||||
|
|
||||||
@include fdl.texi
|
@include fdl.texi
|
||||||
|
|
||||||
@node Index, , Copying This Manual, Top
|
@node Index, , Copying This Manual, Top
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
@set UPDATED 13 August 2001
|
@set UPDATED 15 August 2001
|
||||||
@set EDITION 1.28c
|
@set EDITION 1.28c
|
||||||
@set VERSION 1.28c
|
@set VERSION 1.28c
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
@set UPDATED 13 August 2001
|
@set UPDATED 15 August 2001
|
||||||
@set EDITION 1.28c
|
@set EDITION 1.28c
|
||||||
@set VERSION 1.28c
|
@set VERSION 1.28c
|
||||||
|
|||||||
2
po/de.po
2
po/de.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.25\n"
|
"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"
|
"PO-Revision-Date: 1996-10-10 17:54 MET DST\n"
|
||||||
"Last-Translator: Ulrich Drepper <drepper@gnu.ai.mit.edu>\n"
|
"Last-Translator: Ulrich Drepper <drepper@gnu.ai.mit.edu>\n"
|
||||||
"Language-Team: German <de@li.org>\n"
|
"Language-Team: German <de@li.org>\n"
|
||||||
|
|||||||
2
po/es.po
2
po/es.po
@@ -30,7 +30,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: GNU bison 1.25\n"
|
"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"
|
"PO-Revision-Date: 1998-09-21 10:19+0200\n"
|
||||||
"Last-Translator: Nicolás García-Pedrajas <ngarcia-pedrajas@acm.org>\n"
|
"Last-Translator: Nicolás García-Pedrajas <ngarcia-pedrajas@acm.org>\n"
|
||||||
"Language-Team: Spanish <es@li.org>\n"
|
"Language-Team: Spanish <es@li.org>\n"
|
||||||
|
|||||||
2
po/et.po
2
po/et.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.25\n"
|
"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"
|
"PO-Revision-Date: 2000-04-11 22:19+02:00\n"
|
||||||
"Last-Translator: Toomas Soome <tsoome@ut.ee>\n"
|
"Last-Translator: Toomas Soome <tsoome@ut.ee>\n"
|
||||||
"Language-Team: Estonian <et@li.org>\n"
|
"Language-Team: Estonian <et@li.org>\n"
|
||||||
|
|||||||
2
po/fr.po
2
po/fr.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.25\n"
|
"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"
|
"PO-Revision-Date: 2001-08-06 11:28+0200\n"
|
||||||
"Last-Translator: Dominique Boucher <boucherd@IRO.UMontreal.CA>\n"
|
"Last-Translator: Dominique Boucher <boucherd@IRO.UMontreal.CA>\n"
|
||||||
"Language-Team: French <fr@li.org>\n"
|
"Language-Team: French <fr@li.org>\n"
|
||||||
|
|||||||
2
po/ja.po
2
po/ja.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: GNU bison 1.28\n"
|
"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"
|
"PO-Revision-Date: 1999-09-28 21:10+0900\n"
|
||||||
"Last-Translator: Daisuke Yamashita <yamad@mb.infoweb.ne.jp>\n"
|
"Last-Translator: Daisuke Yamashita <yamad@mb.infoweb.ne.jp>\n"
|
||||||
"Language-Team: Japanese <ja@li.org>\n"
|
"Language-Team: Japanese <ja@li.org>\n"
|
||||||
|
|||||||
2
po/nl.po
2
po/nl.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.25\n"
|
"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"
|
"PO-Revision-Date: 1996-08-27 15:34 MET DST\n"
|
||||||
"Last-Translator: Erick Branderhorst <branderh@debian.org>\n"
|
"Last-Translator: Erick Branderhorst <branderh@debian.org>\n"
|
||||||
"Language-Team: Dutch <nl@li.org>\n"
|
"Language-Team: Dutch <nl@li.org>\n"
|
||||||
|
|||||||
2
po/ru.po
2
po/ru.po
@@ -5,7 +5,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bison 1.28a\n"
|
"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"
|
"PO-Revision-Date: 2000-04-12 13:16+04:00\n"
|
||||||
"Last-Translator: Dmitry S. Sivachenko <dima@Chg.RU>\n"
|
"Last-Translator: Dmitry S. Sivachenko <dima@Chg.RU>\n"
|
||||||
"Language-Team: Russian <ru@li.org>\n"
|
"Language-Team: Russian <ru@li.org>\n"
|
||||||
|
|||||||
Reference in New Issue
Block a user