ref: f232de85f6787967552cd3efe79fc0b4f152d090
parent: 0f25df0619e9523f5449aea50bcbe9d5c34a491f
author: Arnold D. Robbins <arnold@skeeve.com>
date: Thu Jun 25 17:36:24 EDT 2020
Update FIXES and date in main.c.
--- a/FIXES
+++ b/FIXES
@@ -25,6 +25,10 @@
This file lists all bug fixes, changes, etc., made since the AWK book
was sent to the printers in August, 1987.
+June 25, 2020:
+ Merge PRs 82 and 84. The latter fixes issue #83. Thanks to
+ Todd Miller and awkfan77.
+
June 12, 2020:
Clear errno before calling errcheck to avoid any spurious errors
left over from previous calls that may have set it. Thanks to
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
THIS SOFTWARE.
****************************************************************/
-const char *version = "version 20200612";
+const char *version = "version 20200625";
#define DEBUG
#include <stdio.h>
--
⑨