aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2021-05-03 20:34:19 +0300
committerArnold D. Robbins <arnold@skeeve.com>2021-05-03 20:34:19 +0300
commit2eb0932e9eb3a4a4ff05ab8831d7e89c2d554004 (patch)
tree4021adcff9998cc6526d7c4d65734121ee74bf3e
parent2b3f002533d3d7e7fa507ab9eb104fbdbcd6271b (diff)
downloadegawk-2eb0932e9eb3a4a4ff05ab8831d7e89c2d554004.tar.gz
egawk-2eb0932e9eb3a4a4ff05ab8831d7e89c2d554004.tar.bz2
egawk-2eb0932e9eb3a4a4ff05ab8831d7e89c2d554004.zip
Doc updates.
-rw-r--r--ChangeLog1
-rw-r--r--NEWS6
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ed5b024..7dbafcd5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
* eval.c (flags2str): Move BOOL entry into the right place in the
list.
+ * NEWS: Update with info on mkbool.
2021-04-30 Arnold D. Robbins <arnold@skeeve.com>
diff --git a/NEWS b/NEWS
index 85062216..4708cf26 100644
--- a/NEWS
+++ b/NEWS
@@ -15,6 +15,12 @@ regular numbers; it should not be noticeable most of the time.
2. If the AWK_HASH environment variable is set to "fnv1a" gawk will
use the FNV1-A hash function for associative arrays.
+3. There is now a new function, mkbool(), that creates Boolean-typed
+values. These values *are* numbers, but they are also tagged as
+Boolean. This is mainly for use with data exchange to/from languages
+or environments that support real Boolean values. See the manual
+for details.
+
Changes from 5.1.0 to 5.1.1
---------------------------