From: Akim Demaille Date: Thu, 7 May 2009 21:18:44 +0000 (+0200) Subject: doc: use C++ headers. X-Git-Tag: v2.5_rc1~238 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/b10dd689b645f4f62d616cb9fbc14f416e8e06bd?ds=inline doc: use C++ headers. * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C headers. --- diff --git a/ChangeLog b/ChangeLog index cac83fd3..30d09f38 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,12 @@ tests: check token numbers. * tests/input.at (Numbered tokens): New. +2009-05-11 Akim Demaille + + doc: use C++ headers. + * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C + headers. + 2009-05-04 Akim Demaille bison: catch bad symbol names. @@ -23,7 +29,7 @@ identifiers: dashes are letters. Dashes can now start identifiers (symbols and directives). - + * src/scan-gram.l ({letter}): Add dash. ({id}): Remove it. * tests/input.at (Symbols): Adjust. diff --git a/doc/bison.texinfo b/doc/bison.texinfo index 9b600785..1a66edc4 100644 --- a/doc/bison.texinfo +++ b/doc/bison.texinfo @@ -8735,8 +8735,8 @@ parser's to get the set of defined tokens. @example %@{ /* -*- C++ -*- */ # include -# include -# include +# include +# include # include # include "calc++-driver.hh" # include "calc++-parser.hh"