]> git.pld-linux.org Git - packages/gawk.git/blobdiff - gawk-zero_flag.patch
This commit was manufactured by cvs2git to create branch 'RA-branch'.
[packages/gawk.git] / gawk-zero_flag.patch
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.082139 seconds and 4 git commands to generate.