]> git.saurik.com Git - bison.git/commitdiff
* NEWS: Clarify symbols versus types in unused-value warnings.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 14 Feb 2006 00:26:58 +0000 (00:26 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 14 Feb 2006 00:26:58 +0000 (00:26 +0000)
ChangeLog
NEWS

index d7db931721d77257977bf4afe401b061ae287f2d..e9201f035ad83136b0969ebf0ae0ee2685d71b27 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2006-02-13  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * NEWS: Clarify symbols versus types in unused-value warnings.
+
        * configure.ac (AC_INIT): Bump version number.
 
 2006-02-13  Paul Eggert  <eggert@cs.ucla.edu>
diff --git a/NEWS b/NEWS
index 8d321cdf6740956929d9b321ffb153f961a8a1d5..b4760b745c3c11b58dca7ff176a59ec8eec7a46d 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -7,8 +7,8 @@ Changes in version 2.1a, 2006-02-13:
   their contents together.
 
 * New warning: unused values
-  Typed right-hand side symbols whose values are not used are reported,
-  if the associated types have destructors.  For instance:
+  Right-hand side symbols whose values are not used are reported,
+  if the symbols have destructors.  For instance:
 
      exp: exp "?" exp ":" exp { $1 ? $1 : $3; }
        | exp "+" exp