diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-08 20:30:44 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-08 20:30:44 +0300 |
commit | 10602a79c47b0bf6ef53b7308355ef2d4312003e (patch) | |
tree | 71cdcb6487eac0145a4e419288c2518a79abfdfe /doc/gawk.texi | |
parent | f8b283eeed514287482d3bb56103c34ab9ae133b (diff) | |
parent | 969a8d5a0353c756199c0b354d0e8fa91977db86 (diff) | |
download | egawk-10602a79c47b0bf6ef53b7308355ef2d4312003e.tar.gz egawk-10602a79c47b0bf6ef53b7308355ef2d4312003e.tar.bz2 egawk-10602a79c47b0bf6ef53b7308355ef2d4312003e.zip |
Merge branch 'master' into feature/regex-type
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index d2d4107d..e86e8bba 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -51,7 +51,7 @@ @c applies to and all the info about who's publishing this edition @c These apply across the board. -@set UPDATE-MONTH February, 2015 +@set UPDATE-MONTH April, 2015 @set VERSION 4.1 @set PATCHLEVEL 2 @@ -7891,6 +7891,11 @@ contain at least one character. A straightforward modification FPAT = "([^,]*)|(\"[^\"]+\")" @end example +@c FIXME: 4/2015 +@c Consider use of FPAT = "([^,]*)|(\"[^\"]*\")" +@c (star in latter part of value) to allow quoted strings to be empty. +@c Per email from Ed Morton <mortoneccc@comcast.net> + Finally, the @code{patsplit()} function makes the same functionality available for splitting regular strings (@pxref{String Functions}). @@ -36796,6 +36801,15 @@ The dynamic extension interface was completely redone (@pxref{Dynamic Extensions}). @item +Redirected @code{getline} became allowed inside +@code{BEGINFILE} and @code{ENDFILE} +(@pxref{BEGINFILE/ENDFILE}). + +@item +The @code{where} command was added to the debugger +(@pxref{Execution Stack}). + +@item Support for Ultrix was removed. @end itemize |