aboutsummaryrefslogtreecommitdiff
path: root/FIXES
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-01-05 21:18:36 +0200
committerArnold D. Robbins <arnold@skeeve.com>2020-01-05 21:18:36 +0200
commitc7eeb57210cc7104df233a243295c36ffe6a2117 (patch)
tree40ad578b849d4a0d18d6669b367ef8f47e939e1b /FIXES
parenta1aad88728f6a8bf70c9bf9fd07b062aa6540040 (diff)
downloadone-true-awk-c7eeb57210cc7104df233a243295c36ffe6a2117.tar.gz
Fix merging of concatenated string constants.
Diffstat (limited to 'FIXES')
-rw-r--r--FIXES7
1 files changed, 7 insertions, 0 deletions
diff --git a/FIXES b/FIXES
index ad5585c..6889e30 100644
--- a/FIXES
+++ b/FIXES
@@ -25,6 +25,13 @@ THIS SOFTWARE.
This file lists all bug fixes, changes, etc., made since the AWK book
was sent to the printers in August, 1987.
+January 5, 2020:
+ Fix a bug in the concatentation of two string constants into
+ one done in the grammar. Fixes GitHub issue #61. Thanks
+ to GitHub user awkfan77 for pointing out the direction for
+ the fix. New test T.concat added to the test suite.
+ Fix a few memory leaks reported by valgrind, as well.
+
December 27, 2019:
Fix a bug whereby a{0,3} could match four a's. Thanks to
"Anonymous AWK fan" for the report.