diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-03 21:23:57 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-03 21:23:57 +0300 |
commit | e1c2c0cff0469063313d8bbbd108cd10db9ee677 (patch) | |
tree | 1b0757c65586e0e8e9404f3b6680d6967cf56e01 /NEWS | |
parent | d77474639979a4f707107d28fa1e8e84510880e4 (diff) | |
parent | 9907a598dca8f129422c42f8c4fa3b4e2c988221 (diff) | |
download | egawk-e1c2c0cff0469063313d8bbbd108cd10db9ee677.tar.gz egawk-e1c2c0cff0469063313d8bbbd108cd10db9ee677.tar.bz2 egawk-e1c2c0cff0469063313d8bbbd108cd10db9ee677.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 17 |
1 files changed, 6 insertions, 11 deletions
@@ -59,26 +59,21 @@ Changes from 4.1.x to 4.2.0 mode when FS = " " where newline was not a field separator. The code and doc have been updated. -15. 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. - -16. The new typeof() function can be used to indicate if a variable or - array element is an array, regexp, string or number. The isarray() +15. The new typeof() function can be used to indicate if a variable or + array element is an array, string or number. The isarray() function is deprecated in favor of typeof(). -17. As promised when 4.1 was released, the old extension mechanism, +16. As promised when 4.1 was released, the old extension mechanism, using the `extension' function, is now gone. -18. Support for GNU/Linux on Alpha systems has been removed. +17. Support for GNU/Linux on Alpha systems has been removed. -19. Optimizations are now enabled by default. Use the new -s/--no-optimize +18. Optimizations are now enabled by default. Use the new -s/--no-optimize option(s) to disable them. Pretty printing and profiling automatically disable optimizations so that the output program is the same as the original input program. -20. The extension API now provides a mechanism for generating nonfatal +19. The extension API now provides a mechanism for generating nonfatal error messages. Changes from 4.1.3 to 4.1.4 |