ref: 8447cc9d47e7d2d829cb5318824c3c07002b9ab7
parent: 3c755f73f48c4a80e6014cc99ff4acc6dd91dd82
author: Arnold D. Robbins <arnold@skeeve.com>
date: Thu Feb 6 16:47:31 EST 2020
Update version and FIXES.
--- 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.
+February 6, 2020:
+ Additional small cleanups from Christos Zoulas. awk is now
+ a little more robust about reporting I/O errors upon exit.
+
January 31, 2020:
Merge PR #70, which avoids use of variable length arrays. Thanks
to GitHub user michaelforney. Fix issue #60 ({0} in interval--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
THIS SOFTWARE.
****************************************************************/
-const char *version = "version 20200131";
+const char *version = "version 20200206";
#define DEBUG
#include <stdio.h>
--
⑨