shithub: trueawk

Download patch

ref: 13adc2564cb9b65123f64d9b130bf8232d4ee348
parent: 1eae6de89dda9f3613ea0ae660e7d5d05b107276
author: ozan yigit <ozan.yigit@gmail.com>
date: Sat Sep 9 15:56:40 EDT 2023

updated FIXES and version.

--- a/FIXES
+++ b/FIXES
@@ -25,6 +25,14 @@
 This file lists all bug fixes, changes, etc., made since the AWK book
 was sent to the printers in August 1987.
 
+Sep 06, 2023:
+	Fix edge case where FS is changed on commandline. Thanks to 
+	Gordon Shephard and Miguel Pineiro Jr.
+
+	Fix regular expression clobbering in the lexer, where lexer does
+	not make a copy of regexp literals. also makedfa memory leaks have
+	been plugged. Thanks to Miguel Pineiro Jr.
+	
 Dec 15, 2022:
 	Force hex escapes in strings to be no more than two characters,
 	as they already are in regular expressions. This brings internal
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
 THIS SOFTWARE.
 ****************************************************************/
 
-const char	*version = "version 20221215";
+const char	*version = "version 20230909";
 
 #define DEBUG
 #include <stdio.h>
--