shithub: trueawk

Download patch

ref: 9b80a7c137720bc21d4be4152aeb6ab9e1810f61
parent: 07f04384230b0c4cb8c47da7b5a6aebdea992b1e
author: Arnold D. Robbins <arnold@skeeve.com>
date: Thu Jul 30 13:15:58 EDT 2020

Update version and FIXES.

--- a/FIXES
+++ b/FIXES
@@ -25,6 +25,13 @@
 This file lists all bug fixes, changes, etc., made since the AWK book
 was sent to the printers in August, 1987.
 
+July 30, 2020:
+	Merge PRs 88-91 which fix small bugs. Thanks to Todd Miller and
+	Tim van der Molen for the fixes.
+
+	In order to make life easier, we move exclusively to bison
+	as the parser generator.
+
 July 2, 2020:
 	Merge PRs 85 and 86 which fix regressions. Thanks to
 	Tim van der Molen for the fixes.
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
 THIS SOFTWARE.
 ****************************************************************/
 
-const char	*version = "version 20200702";
+const char	*version = "version 20200730";
 
 #define DEBUG
 #include <stdio.h>
--