]> git.saurik.com Git - bison.git/commitdiff
* doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
authorJoel E. Denny <jdenny@ces.clemson.edu>
Wed, 8 Mar 2006 19:34:56 +0000 (19:34 +0000)
committerJoel E. Denny <jdenny@ces.clemson.edu>
Wed, 8 Mar 2006 19:34:56 +0000 (19:34 +0000)
page.  Say "you can use it" not "you may use it" as on the web page;
we're describing capabilities not granting permission.

ChangeLog
doc/bison.texinfo

index a0f8b34fe32a5abf772f19a382c30f57625f4f9f..b7f454745151184de7075f9e1239c8eaf8864e41 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-08  Joel E. Denny  <jdenny@ces.clemson.edu>
+
+       * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
+       page.  Say "you can use it" not "you may use it" as on the web page;
+       we're describing capabilities not granting permission.
+
 2006-03-06  Paul Eggert  <eggert@cs.ucla.edu>
 
        * data/glr.c (yyresolveLocations): Rename local variables to avoid
index 27d2bd4a89130d3674e8c145b1c2c891a8b25ebd..3aac11e436fce244f03c087432bb43b34dcd224e 100644 (file)
@@ -336,16 +336,16 @@ Copying This Manual
 @unnumbered Introduction
 @cindex introduction
 
-@dfn{Bison} is a general-purpose parser generator that converts a
-grammar description for an @acronym{LALR}(1) context-free grammar into a C
-program to parse that grammar.  Once you are proficient with Bison,
-you may use it to develop a wide range of language parsers, from those
+@dfn{Bison} is a general-purpose parser generator that converts a grammar
+description for an @acronym{LALR}(1) or @acronym{GLR} context-free grammar
+into a C or C++ program to parse that grammar.  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.
 
 Bison is upward compatible with Yacc: all properly-written Yacc grammars
 ought to work with Bison with no change.  Anyone familiar with Yacc
 should be able to use Bison with little trouble.  You need to be fluent in
-C programming in order to use Bison or to understand this manual.
+C or C++ programming in order to use Bison or to understand this manual.
 
 We begin with tutorial chapters that explain the basic concepts of using
 Bison and show three explained examples, each building on the last.  If you