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.
This commit is contained in:
Joel E. Denny
2009-12-14 16:04:00 -05:00
parent 1f68dca514
commit 51c7ca01e2
3 changed files with 14 additions and 5 deletions

View File

@@ -352,9 +352,10 @@ Copying This Manual
@cindex introduction
@dfn{Bison} is a general-purpose parser generator that converts an
annotated context-free grammar into a deterministic or @acronym{GLR}
parser employing @acronym{LALR}(1), @acronym{IELR}(1), or canonical
@acronym{LR}(1) parser tables.
annotated context-free grammar into a deterministic @acronym{LR} or
generalized @acronym{LR} (@acronym{GLR}) parser employing
@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
range of language parsers, from those used in simple desk calculators to
complex programming languages.