aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-02-06 21:47:31 +0200
committerArnold D. Robbins <arnold@skeeve.com>2020-02-06 21:47:31 +0200
commit8447cc9d47e7d2d829cb5318824c3c07002b9ab7 (patch)
tree01d55e4edee45a6a0b5ce88cd664a31e9148faf4
parent3c755f73f48c4a80e6014cc99ff4acc6dd91dd82 (diff)
downloadone-true-awk-8447cc9d47e7d2d829cb5318824c3c07002b9ab7.tar.gz
Update version and FIXES.
-rw-r--r--FIXES4
-rw-r--r--main.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/FIXES b/FIXES
index 19afa0b..598608a 100644
--- a/FIXES
+++ b/FIXES
@@ -25,6 +25,10 @@ THIS SOFTWARE.
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
diff --git a/main.c b/main.c
index 2476320..832d971 100644
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
****************************************************************/
-const char *version = "version 20200131";
+const char *version = "version 20200206";
#define DEBUG
#include <stdio.h>