]> git.saurik.com Git - bison.git/commitdiff
* src/tables.c (table_ninf_remap): base -> tab.
authorAkim Demaille <akim@epita.fr>
Mon, 14 Oct 2002 11:38:21 +0000 (11:38 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 14 Oct 2002 11:38:21 +0000 (11:38 +0000)
Reported by Matt Rosing.

ChangeLog
THANKS
src/tables.c

index 37f71fd10dab9694e54f478fa96e9857b933280a..567f76f9c1e7bb28c06769c7a4281c83968b4e0a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-14  Akim Demaille  <akim@epita.fr>
+
+       * src/tables.c (table_ninf_remap): base -> tab.
+       Reported by Matt Rosing.
+
 2002-10-14  Paul Eggert  <eggert@twinsun.com>
 
        * tests/action.at, tests/calc.at, tests/conflicts.at,
@@ -6,7 +11,7 @@
        Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
        so that the tests still work even if POSIXLY_CORRECT is set.
        * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
-       
+
        * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
        for portability to K&R hosts.  Fix typo: signed char is guaranteed
        only to 127, not to 128.
        we can't expect the parser to be in lock-step sync with the scanner.
        (handle_action_dollar, handle_action_at): Use this var.
        * tests/actions.at (Exotic Dollars): Test for the problem.
-       
+
 2002-10-12  Paul Eggert  <eggert@twinsun.com>
 
        * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
        Use same include order as source.
        This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
        <http://mail.gnu.org/pipermail/bug-bison/2002-October/001674.html>.
-       
+
        * lib/timevar.c: Update copyright date and clarify comments.
        (get_time) [IN_GCC]: Keep the GCC version for reference.
-       
+
        * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
        GCC version as of today, then merge Bison's changes.
        Change "GCC" to "Bison" in copyright notice.  timevar.def's
diff --git a/THANKS b/THANKS
index 85c6a7d85028de9f8406831ae8d840f57b93116e..b7fc3126dd7ded6d344a5e24fb84c3347771e143 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -33,6 +33,7 @@ Magnus Fromreide          magfr@lysator.liu.se
 Marc Autret               autret_m@epita.fr
 Martin Mokrejs            mmokrejs@natur.cuni.cz
 Matt Kraai                kraai@alumni.cmu.edu
+Matt Rosing               rosing@peakfive.com
 Michael Hayes             m.hayes@elec.canterbury.ac.nz
 Mike Castle               dalgoda@ix.netcom.com
 Neil Booth                NeilB@earthling.net
index 35e7e625b265943c05dcb0ae9d0c62a8a2fa0ad7..a615204a76777bf2514a6290ef963eab7e544c5a 100644 (file)
@@ -774,7 +774,7 @@ table_ninf_remap (base_t tab[], size_t size, base_t ninf)
 
   for (i = 0; i < size; i++)
     if (tab[i] < res && tab[i] != ninf)
-      res = base[i];
+      res = tab[i];
 
   --res;