mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-17 00:03:03 +00:00
* doc/bison.texinfo (Implementing Loops): Rename as...
(Implementing Gotos/Loops): this.
This commit is contained in:
11
ChangeLog
11
ChangeLog
@@ -1,3 +1,8 @@
|
|||||||
|
2004-08-26 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
|
* doc/bison.texinfo (Implementing Loops): Rename as...
|
||||||
|
(Implementing Gotos/Loops): this.
|
||||||
|
|
||||||
2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
|
2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
|
||||||
|
|
||||||
Adjust to latest gnulib.
|
Adjust to latest gnulib.
|
||||||
@@ -26,7 +31,7 @@
|
|||||||
Fix bug with non-%union parsers that have printers or destructors,
|
Fix bug with non-%union parsers that have printers or destructors,
|
||||||
which led to a Bison core dump. Reported by Peter Fales in
|
which led to a Bison core dump. Reported by Peter Fales in
|
||||||
<http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
|
<http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
|
||||||
|
|
||||||
* data/c.m4 (b4_symbol_actions): Don't assume %union was used.
|
* data/c.m4 (b4_symbol_actions): Don't assume %union was used.
|
||||||
* data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
|
* data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
|
||||||
not to our own type.
|
not to our own type.
|
||||||
@@ -46,7 +51,7 @@
|
|||||||
GLR writeups. E.g., avoid frenchspacing and the future tense,
|
GLR writeups. E.g., avoid frenchspacing and the future tense,
|
||||||
change "lookahead" to "look-ahead", and change "wrt" to "with
|
change "lookahead" to "look-ahead", and change "wrt" to "with
|
||||||
respect to".
|
respect to".
|
||||||
|
|
||||||
2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
|
2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
|
||||||
|
|
||||||
* doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
|
* doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
|
||||||
@@ -126,7 +131,7 @@
|
|||||||
(AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
|
(AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
|
||||||
Add comments explaining why those particular versions are
|
Add comments explaining why those particular versions are
|
||||||
currently needed.
|
currently needed.
|
||||||
|
|
||||||
* src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
|
* src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
|
||||||
in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
|
in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
|
||||||
<http://mail.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
|
<http://mail.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
|
||||||
|
|||||||
@@ -297,7 +297,7 @@ Frequently Asked Questions
|
|||||||
* How Can I Reset the Parser:: @code{yyparse} Keeps some State
|
* How Can I Reset the Parser:: @code{yyparse} Keeps some State
|
||||||
* Strings are Destroyed:: @code{yylval} Loses Track of Strings
|
* Strings are Destroyed:: @code{yylval} Loses Track of Strings
|
||||||
* C++ Parsers:: Compiling Parsers with C++ Compilers
|
* C++ Parsers:: Compiling Parsers with C++ Compilers
|
||||||
* Implementing Loops:: Control Flow in the Calculator
|
* Implementing Gotos/Loops:: Control Flow in the Calculator
|
||||||
|
|
||||||
Copying This Manual
|
Copying This Manual
|
||||||
|
|
||||||
@@ -6683,7 +6683,7 @@ are addressed.
|
|||||||
* How Can I Reset the Parser:: @code{yyparse} Keeps some State
|
* How Can I Reset the Parser:: @code{yyparse} Keeps some State
|
||||||
* Strings are Destroyed:: @code{yylval} Loses Track of Strings
|
* Strings are Destroyed:: @code{yylval} Loses Track of Strings
|
||||||
* C++ Parsers:: Compiling Parsers with C++ Compilers
|
* C++ Parsers:: Compiling Parsers with C++ Compilers
|
||||||
* Implementing Loops:: Control Flow in the Calculator
|
* Implementing Gotos/Loops:: Control Flow in the Calculator
|
||||||
@end menu
|
@end menu
|
||||||
|
|
||||||
@node Parser Stack Overflow
|
@node Parser Stack Overflow
|
||||||
@@ -6869,12 +6869,12 @@ some simple C++ rules in mind, such as not including ``real classes''
|
|||||||
pointer type to the root of your lexical/syntactic hierarchy.
|
pointer type to the root of your lexical/syntactic hierarchy.
|
||||||
|
|
||||||
|
|
||||||
@node Implementing Loops
|
@node Implementing Gotos/Loops
|
||||||
@section Implementing Loops
|
@section Implementing Gotos/Loops
|
||||||
|
|
||||||
@display
|
@display
|
||||||
My simple calculator supports variables, assignments, and functions,
|
My simple calculator supports variables, assignments, and functions,
|
||||||
but how can I implement loops?
|
but how can I implement gotos, or loops?
|
||||||
@end display
|
@end display
|
||||||
|
|
||||||
Although very pedagogical, the examples included in the document blur
|
Although very pedagogical, the examples included in the document blur
|
||||||
|
|||||||
Reference in New Issue
Block a user