shithub: trueawk

Download patch

ref: e508d2861c26e89e7289a5a33d99df2951498ff4
parent: feb247a852c0a068dc8c23e0e683a5af075fff60
author: Arnold D. Robbins <arnold@skeeve.com>
date: Thu Dec 3 14:33:11 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.
 
+December 3, 2020:
+	Fix to argument parsing to avoid printing spurious newlines.
+	Thanks to Todd Miller. Merges PR #97.
+
 October 13, 2020:
 	Add casts before all the calls to malloc/calloc/realloc in order
 	to get it to compile with g++. Thanks to Arnold Robbins.
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
 THIS SOFTWARE.
 ****************************************************************/
 
-const char	*version = "version 20201013";
+const char	*version = "version 20201203";
 
 #define DEBUG
 #include <stdio.h>
--