Revert "version and FIXES updated."

This reverts commit 52fb5d07d3524250353fa3eb262e7410d589f4b8.
This commit is contained in:
ozan yigit 2021-11-25 13:29:16 -05:00
parent 52fb5d07d3
commit cfe6b6b99d
2 changed files with 1 additions and 7 deletions

6
FIXES
View File

@ -25,12 +25,6 @@ THIS SOFTWARE.
This file lists all bug fixes, changes, etc., made since the AWK book This file lists all bug fixes, changes, etc., made since the AWK book
was sent to the printers in August, 1987. 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: Nov 03, 2021:
getline accesses uninitialized data after getrec() getline accesses uninitialized data after getrec()
returns 0 on EOF and leaves the contents of buf unchanged. returns 0 on EOF and leaves the contents of buf unchanged.

2
main.c
View File

@ -22,7 +22,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE. THIS SOFTWARE.
****************************************************************/ ****************************************************************/
const char *version = "version 20211122"; const char *version = "version 20211103";
#define DEBUG #define DEBUG
#include <stdio.h> #include <stdio.h>