aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-12-03 19:33:11 +0200
committerArnold D. Robbins <arnold@skeeve.com>2020-12-03 19:33:11 +0200
commite508d2861c26e89e7289a5a33d99df2951498ff4 (patch)
tree7e1bf8bbf5e78e5d5c928e4e2c9300adf65c3051
parentfeb247a852c0a068dc8c23e0e683a5af075fff60 (diff)
downloadone-true-awk-e508d2861c26e89e7289a5a33d99df2951498ff4.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 2aeb8d0..43a954a 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.
+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.
diff --git a/main.c b/main.c
index 6453981..efd5f53 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 20201013";
+const char *version = "version 20201203";
#define DEBUG
#include <stdio.h>