bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

FYT: Both: Proto s/short/int/


From: Akim Demaille
Subject: FYT: Both: Proto s/short/int/
Date: 22 Dec 2001 16:13:30 +0100
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Civil Service)

Index: ChangeLog
from  Akim Demaille  <address@hidden>

        * src/output.c (output_short_table, output_short_or_char_table):
        Change the prototype to use `int' for array ranges: some
        invocations do pass an int, not a short.
        Reported by Wayne Green.

Index: THANKS
===================================================================
RCS file: /cvsroot/bison/bison/THANKS,v
retrieving revision 1.10.2.19
diff -u -u -r1.10.2.19 THANKS
--- THANKS 22 Dec 2001 14:41:15 -0000 1.10.2.19
+++ THANKS 22 Dec 2001 15:14:08 -0000
@@ -32,6 +32,7 @@
 Shura                   address@hidden
 Tom Lane                address@hidden
 Tom Tromey              address@hidden
+Wayne Green             address@hidden
 Wolfram Wagner          address@hidden
 Wwp                     address@hidden
 
Index: src/output.c
===================================================================
RCS file: /cvsroot/bison/bison/src/output.c,v
retrieving revision 1.39.2.20
diff -u -u -r1.39.2.20 output.c
--- src/output.c 18 Dec 2001 09:33:23 -0000 1.39.2.20
+++ src/output.c 22 Dec 2001 15:14:08 -0000
@@ -131,7 +131,7 @@
                            const char *table_name,
                            short *short_table,
                            short first_value,
-                           short begin, short end)
+                           int begin, int end)
 {
   int i, j;
 
@@ -169,7 +169,7 @@
                    const char *table_name,
                    short *short_table,
                    short first_value,
-                   short begin, short end)
+                   int begin, int end)
 {
   output_short_or_char_table (oout, comment, "short", table_name, short_table,
                              first_value, begin, end);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]