]> git.pld-linux.org Git - packages/gawk.git/commitdiff
- orphaned, outdated
authorJan Rękorajski <baggins@pld-linux.org>
Fri, 21 Apr 2006 23:40:36 +0000 (23:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    gawk-hex.patch -> 1.3
    gawk-zero_flag.patch -> 1.2

gawk-hex.patch [deleted file]
gawk-zero_flag.patch [deleted file]

diff --git a/gawk-hex.patch b/gawk-hex.patch
deleted file mode 100644 (file)
index b8dd946..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
---- gawk-3.1.0/builtin.c-old   Thu Mar 14 22:11:35 2002
-+++ gawk-3.1.0/builtin.c       Thu Mar 14 22:11:54 2002
-@@ -2277,8 +2277,7 @@
-       short val;
-       char *start = str;
--      if (*str == '0' && (str[1] == 'x' || str[1] == 'X')) {
--              assert(len > 2);
-+      if (*str == '0' && (str[1] == 'x' || str[1] == 'X') && len > 2) {
-               for (str += 2, len -= 2; len > 0; len--, str++) {
-                       switch (*str) {
diff --git a/gawk-zero_flag.patch b/gawk-zero_flag.patch
deleted file mode 100644 (file)
index ff01360..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
---- builtin.c
-+++ builtin.c  1999/09/27 16:04:29
-@@ -460,7 +460,13 @@
-                       break;
-               case '0':
--                      zero_flag = TRUE;
-+                      /*
-+                       * Only turn on zero_flag if we haven't seen
-+                       * the field width or precision yet.  Otherwise,
-+                       * screws up floating point formatting.
-+                       */
-+                      if (cur == & fw && fw == 0)
-+                              zero_flag = TRUE;
-                       if (lj)
-                               goto retry;
-                       /* FALL through */
This page took 0.06116 seconds and 4 git commands to generate.