aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-05-12 14:52:43 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-05-12 14:52:43 +0300
commit5603143c58035b91f91ee31ab548b9b996156760 (patch)
treeb8b89371d4f5befe2f29cbbe1746cc0853ef7573
parent09a8c02267be95caca8efe5b930b0b8bae4d4084 (diff)
downloadegawk-5603143c58035b91f91ee31ab548b9b996156760.tar.gz
egawk-5603143c58035b91f91ee31ab548b9b996156760.tar.bz2
egawk-5603143c58035b91f91ee31ab548b9b996156760.zip
Update NEWS for typed regexp constants and typeof.
-rw-r--r--NEWS11
1 files changed, 10 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 09b60309..aad3e574 100644
--- a/NEWS
+++ b/NEWS
@@ -48,9 +48,18 @@ Changes from 4.1.x to 4.2.0
11. Gawk now supports retryable I/O via PROCINFO[input-file, "RETRY"]; see
the manual.
-12. The API minor version has been increased to two; the get_file()
+12. The API minor version has been increased to 2; the get_file()
API provides access to open redirections. Also see the manual.
+13. Gawk now supports strongly typed regexp constants. Such constants
+ look like @/.../. You can assign them to variables, pass them to
+ functions, use them in ~, !~ and the case part of a switch statement.
+ More details are provided in the manual.
+
+14. The new typeof() function can be used to indicate if a variable or
+ array element is an array, regexp, string or number. The isarray()
+ function is deprecated in favor of typeof().
+
Changes from 4.1.1 to 4.1.2
---------------------------