shithub: trueawk

Download patch

ref: cfe6b6b99d841c0f46d090265e0aa882feee411f
parent: 52fb5d07d3524250353fa3eb262e7410d589f4b8
author: ozan yigit <ozan.yigit@gmail.com>
date: Thu Nov 25 08:29:16 EST 2021

Revert "version and FIXES updated."

This reverts commit 52fb5d07d3524250353fa3eb262e7410d589f4b8.

--- a/FIXES
+++ b/FIXES
@@ -25,12 +25,6 @@
 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.
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
 THIS SOFTWARE.
 ****************************************************************/
 
-const char	*version = "version 20211122";
+const char	*version = "version 20211103";
 
 #define DEBUG
 #include <stdio.h>
--