]> git.saurik.com Git - bison.git/commitdiff
* src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
authorJoel E. Denny <jdenny@ces.clemson.edu>
Fri, 10 Nov 2006 06:11:21 +0000 (06:11 +0000)
committerJoel E. Denny <jdenny@ces.clemson.edu>
Fri, 10 Nov 2006 06:11:21 +0000 (06:11 +0000)
grammar is maintained with Bison's highest standards.
* src/getargs.c: Fix some typos in Doxygen comments.

ChangeLog
src/Makefile.am
src/getargs.c

index 2d954577c5a8d1e8b48b43393cbc88d6407228e3..45a463117ab66726d6775809a100fb3f5678fb6b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-11-10  Joel E. Denny  <jdenny@ces.clemson.edu>
+
+       * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
+       grammar is maintained with Bison's highest standards.
+       * src/getargs.c: Fix some typos in Doxygen comments.
+
 2006-11-10  Joel E. Denny  <jdenny@ces.clemson.edu>
 
        Fix memory leaks in scanners generated by at least Flex 2.5.9 and
index 3fb29e79981e291ced2c5b418547da0bd0cd5a2d..2592256b803c6c1716f335a1d3b4078d960538a9 100644 (file)
@@ -26,7 +26,7 @@ LDADD = ../lib/libbison.a $(LIBINTL)
 
 # Use our own Bison to build the parser.  Of course, you ought to
 # keep a sane version of Bison nearby...
-YACC = ../tests/bison -y
+YACC = ../tests/bison -y --warnings=all,error
 
 bin_PROGRAMS = bison
 bin_SCRIPTS = $(YACC_SCRIPT)
index 9a2f5307ced06eb3aa01882e369e46a794614978..563cc129dca2d9bcc36719d96b379b4c3d54ce76 100644 (file)
@@ -75,9 +75,9 @@ extern char *program_name;
 /** Decode an option's set of keys.
  *
  *  \param option   option being decoded.
- *  \paran keys     array of valid subarguments.
+ *  \param keys     array of valid subarguments.
  *  \param values   array of corresponding (int) values.
- *  \param flag     the flags to update
+ *  \param flags    the flags to update
  *  \param args     colon separated list of effective subarguments to decode.
  *                  If 0, then activate all the flags.
  *
@@ -108,7 +108,7 @@ flags_argmatch (const char *option,
 /** Decode a set of sub arguments.
  *
  *  \param FlagName  the flag familly to update.
- *  \param args      the effective sub arguments to decode.
+ *  \param Args      the effective sub arguments to decode.
  *
  *  \arg FlagName_args   the list of keys.
  *  \arg FlagName_types  the list of values.