mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-19 01:03:04 +00:00
* 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.
This commit is contained in:
@@ -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>
|
2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
|
||||||
|
|
||||||
* data/glr.c (yyresolveLocations): Rename local variables to avoid
|
* data/glr.c (yyresolveLocations): Rename local variables to avoid
|
||||||
|
|||||||
@@ -336,16 +336,16 @@ Copying This Manual
|
|||||||
@unnumbered Introduction
|
@unnumbered Introduction
|
||||||
@cindex introduction
|
@cindex introduction
|
||||||
|
|
||||||
@dfn{Bison} is a general-purpose parser generator that converts a
|
@dfn{Bison} is a general-purpose parser generator that converts a grammar
|
||||||
grammar description for an @acronym{LALR}(1) context-free grammar into a C
|
description for an @acronym{LALR}(1) or @acronym{GLR} context-free grammar
|
||||||
program to parse that grammar. Once you are proficient with Bison,
|
into a C or C++ program to parse that grammar. Once you are proficient with
|
||||||
you may use it to develop a wide range of language parsers, from those
|
Bison, you can use it to develop a wide range of language parsers, from those
|
||||||
used in simple desk calculators to complex programming languages.
|
used in simple desk calculators to complex programming languages.
|
||||||
|
|
||||||
Bison is upward compatible with Yacc: all properly-written Yacc grammars
|
Bison is upward compatible with Yacc: all properly-written Yacc grammars
|
||||||
ought to work with Bison with no change. Anyone familiar with Yacc
|
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
|
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
|
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
|
Bison and show three explained examples, each building on the last. If you
|
||||||
|
|||||||
Reference in New Issue
Block a user