aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorozan yigit <ozan.yigit@gmail.com>2021-11-25 13:29:16 -0500
committerozan yigit <ozan.yigit@gmail.com>2021-11-25 13:29:16 -0500
commitcfe6b6b99d841c0f46d090265e0aa882feee411f (patch)
treea66db48d96fda2c7bcfaabb6900dc02c43ce3262
parent52fb5d07d3524250353fa3eb262e7410d589f4b8 (diff)
downloadone-true-awk-cfe6b6b99d841c0f46d090265e0aa882feee411f.tar.gz
Revert "version and FIXES updated."
This reverts commit 52fb5d07d3524250353fa3eb262e7410d589f4b8.
-rw-r--r--FIXES6
-rw-r--r--main.c2
2 files changed, 1 insertions, 7 deletions
diff --git a/FIXES b/FIXES
index a4863e2..f6eb98c 100644
--- a/FIXES
+++ b/FIXES
@@ -25,12 +25,6 @@ THIS SOFTWARE.
This file lists all bug fixes, changes, etc., made since the AWK book
was sent to the printers in August, 1987.
-Nov 22, 2021:
- Resolve the long standing and previously noted issue of a parse
- error when a "/" used in a character class without escape: /[/]/.
- while this is not strictly POSIX compliant, it is common in other
- awk implementations. Thanks to Arnold Robbins for the code.
-
Nov 03, 2021:
getline accesses uninitialized data after getrec()
returns 0 on EOF and leaves the contents of buf unchanged.
diff --git a/main.c b/main.c
index 9d3288a..ee8b82b 100644
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
****************************************************************/
-const char *version = "version 20211122";
+const char *version = "version 20211103";
#define DEBUG
#include <stdio.h>