mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 04:13:03 +00:00
Expand GLR acronym in summary of Bison.
Based on discussion with Akim Demaille starting at
<http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
* doc/bison.texinfo (Introduction): Here.
* src/getargs.c (usage): Here.
(cherry picked from commit 51c7ca01e2)
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
2009-12-14 Joel E. Denny <jdenny@clemson.edu>
|
||||||
|
|
||||||
|
Expand GLR acronym in summary of Bison.
|
||||||
|
Based on discussion with Akim Demaille starting at
|
||||||
|
<http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
|
||||||
|
* doc/bison.texinfo (Introduction): Here.
|
||||||
|
* src/getargs.c (usage): Here.
|
||||||
|
|
||||||
2009-10-03 Alex Rozenman <rozenman@gmail.com>
|
2009-10-03 Alex Rozenman <rozenman@gmail.com>
|
||||||
|
|
||||||
Document named references.
|
Document named references.
|
||||||
|
|||||||
@@ -353,9 +353,10 @@ Copying This Manual
|
|||||||
@cindex introduction
|
@cindex introduction
|
||||||
|
|
||||||
@dfn{Bison} is a general-purpose parser generator that converts an
|
@dfn{Bison} is a general-purpose parser generator that converts an
|
||||||
annotated context-free grammar into a deterministic or @acronym{GLR}
|
annotated context-free grammar into a deterministic @acronym{LR} or
|
||||||
parser employing @acronym{LALR}(1), @acronym{IELR}(1), or canonical
|
generalized @acronym{LR} (@acronym{GLR}) parser employing
|
||||||
@acronym{LR}(1) parser tables.
|
@acronym{LALR}(1), @acronym{IELR}(1), or canonical @acronym{LR}(1)
|
||||||
|
parser tables.
|
||||||
Once you are proficient with Bison, you can use it to develop a wide
|
Once you are proficient with Bison, you can use it to develop a wide
|
||||||
range of language parsers, from those used in simple desk calculators to
|
range of language parsers, from those used in simple desk calculators to
|
||||||
complex programming languages.
|
complex programming languages.
|
||||||
|
|||||||
@@ -262,8 +262,8 @@ usage (int status)
|
|||||||
|
|
||||||
printf (_("Usage: %s [OPTION]... FILE\n"), program_name);
|
printf (_("Usage: %s [OPTION]... FILE\n"), program_name);
|
||||||
fputs (_("\
|
fputs (_("\
|
||||||
Generate a deterministic or GLR parser employing LALR(1), IELR(1), or\n\
|
Generate a deterministic LR or generalized LR (GLR) parser employing\n\
|
||||||
canonical LR(1) parser tables.\n\
|
LALR(1), IELR(1), or canonical LR(1) parser tables.\n\
|
||||||
\n\
|
\n\
|
||||||
"), stdout);
|
"), stdout);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user