~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Arnold D. Robbins
  • Date: 2016-08-03 18:23:22 UTC
  • mto: (408.31.2)
  • mto: This revision was merged to the branch mainline in revision 687.
  • Revision ID: git-v1:9907a598dca8f129422c42f8c4fa3b4e2c988221
Remove typed regexps until they can be done correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
    mode when FS = " " where newline was not a field separator. The code
60
60
    and doc have been updated.
61
61
 
62
 
15. Gawk now supports strongly typed regexp constants. Such constants
63
 
    look like @/.../.  You can assign them to variables, pass them to
64
 
    functions, use them in ~, !~ and the case part of a switch statement.
65
 
    More details are provided in the manual.
66
 
 
67
 
16. The new typeof() function can be used to indicate if a variable or
68
 
    array element is an array, regexp, string or number.  The isarray()
 
62
15. The new typeof() function can be used to indicate if a variable or
 
63
    array element is an array, string or number.  The isarray()
69
64
    function is deprecated in favor of typeof().
70
65
 
71
 
17. As promised when 4.1 was released, the old extension mechanism,
 
66
16. As promised when 4.1 was released, the old extension mechanism,
72
67
    using the `extension' function, is now gone.
73
68
 
74
 
18. Support for GNU/Linux on Alpha systems has been removed.
 
69
17. Support for GNU/Linux on Alpha systems has been removed.
75
70
 
76
 
19. Optimizations are now enabled by default. Use the new -s/--no-optimize
 
71
18. Optimizations are now enabled by default. Use the new -s/--no-optimize
77
72
    option(s) to disable them.  Pretty printing and profiling automatically
78
73
    disable optimizations so that the output program is the same as the
79
74
    original input program.
80
75
 
81
 
20. The extension API now provides a mechanism for generating nonfatal
 
76
19. The extension API now provides a mechanism for generating nonfatal
82
77
    error messages.
83
78
 
84
79
Changes from 4.1.3 to 4.1.4