* src/eval.c (ASSIGN): New enumerator.
[m4.git] / NEWS
blob53383160b32613aea553b42b655823ac1a540909
1 GNU M4 NEWS - User visible changes.
2 Copyright (C) 1992, 1993, 1994, 2004, 2005, 2006, 2007 Free Software
3 Foundation, Inc.
5 Version 1.4.9 - ?? ??? 2007, by ????  (CVS version 1.4.8a)
7 * Fix a regression introduced in 1.4.8 that made m4 unable to process
8   files larger than 2GiB on some platforms.
9 * Fix a regression introduced in 1.4.8 that made m4 dump core when
10   invoked as 'm4 -- file'.
11 * The `eval' builtin now follows C precedence rules.  Additionally, the
12   short-circuit operators correctly short-circuit division by zero.  The
13   previously undocumented alias of '=' meaning '==' in eval now triggers a
14   deprecation warning, so that a future version of M4 can implement a form
15   of variable assignment as an extension.
17 Version 1.4.8 - 20 November 2006, by Eric Blake  (CVS version 1.4.7a)
19 * The `divert' macro and `-H'/`--hashsize' command line option no longer
20   cause a core dump when handed extra large values.  Also, `divert' now
21   uses memory proportional to the number of diversions in use, rather than
22   to the maximum diversion number encountered, so that large diversion
23   numbers are less likely to exhaust system memory; and is no longer
24   limited by the maximum number of file descriptors.
25 * The `--help' and `--version' command line options now consistently
26   override all earlier options.  For example, `m4 --debugfile=trace
27   --help' now no longer accidentally creates an empty file `trace'.
28 * The `-L'/`--nesting-limit' command line option can now be set to 0
29   to remove the default limit of 1024.  However, it is still possible that
30   heavily nested input can cause abrupt program termination due to stack
31   overflow.
32 * Problems encountered when writing to standard error, such as with the
33   `errprint' macro, now always cause a non-zero exit status.
34 * Warnings and errors issued during macro expansion are now consistently
35   reported at the line where the macro name was detected, rather than
36   where the close parenthesis resides.  Text wrapped by `m4wrap' now
37   remembers the location that was in effect when m4wrap was invoked,
38   rather than changing to line 0 and the empty string for a file.  The
39   macros `__line__' and `__file__' now work correctly even as the last
40   token in an included file.
41 * The `builtin' and `indir' macros now transparently handle builtin
42   tokens generated by `defn'.
43 * When diversions created by the `divert' macro collect enough text that
44   M4 must use temporary files, the environment variable $TMPDIR is now
45   consulted, and a better effort is made to clean up those files in the
46   event of a fatal signal.
47 * The `mkstemp' builtin is added with the same GNU semantics as `maketemp',
48   based on the recommendation of POSIX to deprecate the POSIX semantics of
49   `maketemp' as inherently insecure.  In GNU mode (no -G supplied on the
50   command line), `maketemp' silently retains the secure GNU semantics, but
51   a future release of M4 will change this to emit a warning.  In
52   traditional mode (m4 -G), `maketemp' now uses the POSIX-mandated insecure
53   semantics, and issues a warning that you should convert your script to
54   use `mkstemp' instead.  Additionally, `mkstemp' and `maketemp' are now
55   well-defined even if the template argument does not end in six `X'
56   characters.
57 * The manual has been improved, including a new section on a composite
58   macro `foreach'.
59 * The `changecom' and `changequote' macros now treat an empty second
60   argument the same as if it were missing, rather than using the empty
61   string and making it impossible to end a comment or quote.
62 * The `translit' macro now operates in linear instead of quadratic time,
63   and is now eight-bit clean.
64 * The `-D', `-U', `-s', and `-t' command line options now take effect
65   after any files encountered earlier on the command line, rather than up
66   front, as is done in traditional implementations and required by POSIX.
68 Version 1.4.7 - 25 September 2006, by Eric Blake  (CVS version 1.4.6a)
70 * Fix regression from 1.4.5 in handling a file that ends in a macro
71   expansion without arguments instead of a newline.
72 * The define and pushdef macros now warn when the first argument is not
73   a string, rather than silently doing nothing.
74 * Standard input can now be read more than once, as in 'm4 - file -', and
75   is not closed until all wrapped text is handled.  This makes a
76   difference when stdin is not a regular file, and also fixes bugs when
77   using the syscmd or esyscmd macros from wrapped text.
78 * When standard input is a seekable file, the m4exit, syscmd, and esyscmd
79   macros now restore the current position to the next unread byte rather
80   than discarding an arbitrary amount of buffered data.
81 * SysV command-line compatibility is no longer a goal of GNU M4; the
82   focus will be instead on POSIX compatibility.  This release continues to
83   support previous usage, but adds warnings in areas which will allow a
84   future version of GNU M4 to use its own extensions without being tied to
85   the SysV command line interface.
86 * The no-op compatibility command line options -B, -N, -S, -T, and
87   --diversions may be withdrawn or assigned new meanings in future
88   releases, so they now issue a warning if used.
89 * A new command line option -i replaces the compatibility -e as the
90   short spelling of --interactive, for consistency with other GNU tools; a
91   warning is issued if the old spelling is used, and it may be assigned new
92   meaning in future releases.
93 * A new command line option --debugfile replaces the options -o and
94   --error-output as the preferred spelling.  The old options were
95   misleading in their names and inconsistent with other GNU tools; they are
96   still silently accepted, but no longer documented in --help, and may be
97   assigned new meanings in future releases.
99 Version 1.4.6 - 25 August 2006, by Eric Blake  (CVS version 1.4.5a)
101 * Fix buffer overruns in regexp and patsubst macros when handed a trailing
102   backslash in the replacement text, or when handling \n substitutions
103   beyond the number of \(\) groups.
104 * Fix memory leak in regexp, patsubst, and changeword macros.
105 * The format macro now understands %F, %g, and %G.
106 * When loading frozen files, m4 now exits with status 63 if version
107   mismatch is detected.
108 * Fix bugs that occurred when invoked with stdout or stderr closed,
109   and detect write failures to stdout or to the target of the
110   debugfile macro.  In particular, the syscmd and esyscmd macros can
111   no longer interfere with the debug stream or diversions.
112 * The m4exit macro now converts values outside the range 0-255 to 1.
113 * It is now an error if a command-line input file ends in the middle of a
114   comment, matching the behavior of mid-string and mid-argument
115   collection.
116 * The dnl macro now warns if end of file is encountered instead of a
117   newline.
118 * The error message when end of file is encountered now uses the file and
119   line where the dangling construct started, rather than `NONE:0:'.
120 * The debugmode and __file__ macros, and the -s/--synclines option, now
121   show what directory a file was found in when the -I/--include option or
122   M4PATH variable had an effect.
123 * The changequote and changecom macros now work with 8-bit characters, and
124   quotes and comments that begin with `(' are properly recognized
125   following a word.
126 * The new macro __program__ is added, which allows the input file to issue
127   an error message that resembles messages from m4.  Warning and error
128   messages have been reformatted to comply with GNU Coding Standards.
129 * The errprint, m4wrap, and shift macros are now recognized only with
130   arguments.
131 * The index, substr, translit, regexp, and patsubst macros now produce
132   output when given only one argument, but still warn about a missing
133   second argument.
134 * The patsubst macro now reliably finds zero-length matches at the end
135   of a string.
137 Version 1.4.5 - 15 July 2006, by Eric Blake  (CVS version 1.4.4c)
139 * Fix sysval on BeOS, OS/2, and other systems that store exit status
140   in the low-order byte.  Additionally, on Unix platforms, if syscmd was
141   terminated by a signal, sysval now displays the signal number shifted
142   left by eight bits, to match traditional m4 implementations.
143 * The maketemp macro is no longer subject to platform limitations (such as
144   26 or 32 max files from a given template).
145 * Frozen files now require that the first directive be V (version), to
146   better diagnose version mismatch.  Additionally, if the F directive
147   (builtin function) names an unknown builtin that existed in the m4 that
148   froze the file but not in the current m4 (for example, changeword), the
149   warning is deferred until an attempt is made to actually use the
150   builtin.  This allows downgrading from beta m4-1.4o to stable m4-1.4.5
151   without breaking autoconf.
152 * The format and indir macros are now recognized only with arguments.
153 * The eval macro no longer crashes on x86 architectures when dividing the
154   minimum integer by -1.
155 * On systems with ecvt and fcvt, format no longer truncates trailing
156   zeroes on integers printed with %.0f.  On systems without these
157   functions, format is no longer subject to a buffer overflow that
158   permitted arbitrary code execution.
159 * On native Windows builds, the macro __windows__ is provided instead of
160   __unix__.  Likewise, on OS/2 builds, the macro __os2__ is provided.  This
161   allows input files to determine when syscmd might behave differently.
162 * Fix bug in 1.4.3 patch to use \n line-endings that did not work for
163   cygwin.
164 * When given the empty string or 0, undivert is now documented as a no-op
165   rather than closing stdout, warning about a non-existent file, or trying
166   to read a directory as a file.
167 * Many documentation improvements.  Also, the manual is now distributed
168   under FDL 1.2, rather than a stricter verbatim-only license.
169 * Raise the -L (--nesting-limit) command line option limit from 250 to
170   1024.
171 * The decr, incr, divert, m4exit, and substr macros treat an empty number
172   as 0, issue a warning, and expand as normal; rather than issuing an error
173   and expanding to the empty string.
174 * The eval macro now treats an empty radix argument as 10, handles radix 1,
175   and treats the width argument as number of digits excluding the sign,
176   for compatibility with other m4 implementations.
177 * The ifdef, divert, m4exit, substr, and translit macros now correctly
178   ignore extra arguments.
179 * The popdef and undefine macros now correctly accept multiple arguments.
180 * Although changeword is on its last leg, if enabled, it now reverts to the
181   default (faster) regexp when passed the empty string.
182 * The regexp and substr macros now warn and ignore a trailing backslash in
183   the replacement, and warn on \n for n larger than the number of
184   sub-expressions in the regexp.
186 Version 1.4.4b - 17 June 2006, by Eric Blake  (CVS version 1.4.4a)
188 * Fix a recursive push_string crashing bug, which affected changequote of
189   three or more characters on some compilers.
190 * Use automake to fix build portability issues.
191 * Fix a recursive m4wrap crashing bug.
192 * Fix a 1 in 2**32 hash crashing bug.
193 * Tracing a macro by name is now persistent, even if the macro is
194   subsequently undefined or redefined.  The traceon and traceoff macros no
195   longer warn about undefined symbols.  This solves a crash when using
196   indir on an undefined macro traced with the -t option, as well as an
197   incorrect result of ifdef.  Furthermore, tracing is no longer transferred
198   with builtins, solving the bug of "m4 -tm4_eval" failing to give trace
199   output on the input "define(`m4_eval',defn(`eval'))m4_eval(1)".
200 * Fix a crash when a macro is undefined while collecting its arguments, by
201   always using the definition that was in effect before argument
202   collection.  This behavior matches the C pre-processor, and means that
203   the sequence "define(`f',`1')f(define(`f',`2'))f" is now documented to
204   result in "12", rather than the previously undocumented "22".
205 * Update the regex engine to fix several bugs.
206 * Fix a potential crash on machines where char is signed.
208 Version 1.4.4 - October 2005, by Gary V. Vaughan
210 * ./configure --infodir=/usr/share/info now works correctly.
211 * When any file named on the command line is missing exit with status 1.
213 Version 1.4.3 - March 2005, by Gary V. Vaughan
215 * DESTDIR installs now work correctly.
216 * Don't segfault with uncompilable regexps to changeword().
217 * Always use \n line-endings for frozen files (fixes a Windows bug).
218 * Portability fix for systems lacking mkstemp(3).
219 * Approximately 20% speed up in the common case of usage with autoconf.
220 * Supported on QNX 6.3.
222 Version 1.4.2 - August 2004, by Paul Eggert
224 * No user visible changes; portability bug fixes only.
226 Version 1.4.1 - June 2004, by Paul Eggert
228 * maketemp now creates an empty file with the given name, instead of merely
229   returning the name of a nonexistent file.  This closes a security hole.
231 Version 1.4 - October 1994, by Franc,ois Pinard
233 (No user visible changes)
235 Version 1.3 - September 1994, by Franc,ois Pinard
237 * Diversions are created as needed.  Option `-N' is still accepted, but
238 otherwise ignored.  Users should use only negative diversion numbers,
239 instead of high positive numbers, for diverting to nowhere.
241 * Diversions should also work faster.  No temporary files will be needed
242 at all if all diversions taken altogether do not use more than 512K.
244 * Frozen state files may be produced with the `--freeze-state' (-F)
245 option and later brought back through the `--reload-state' (-R) option.
247 Version 1.2 - July 1994, by Franc,ois Pinard
249 * In patsubst(STRING, REGEXP, REPLACEMENT), \& in REPLACEMENT has been
250 changed to represent this part of STRING matched by the whole REGEXP,
251 instead of the whole STRING as before.  \0 does the same, but emits a
252 diagnostic saying it will disappear in some subsequent release.
254 * eval(EXPR) emits a diagnostic if EXPR has suffixed crumb.  The same for
255 other numeric conversions in incr(), decr(), divert(), etc.
257 * `--fatal-warnings' (-E) stops execution at first warning.
259 * `--nesting-limit=LEVEL' (-L LEVEL) sets a limit to macro nesting.
260 It is initially fixed at 250.
262 * `--word-regexp=REGEXP' (-W REGEXP) modifies macro name syntax, like
263 does the new `changeword(REGEXP)' macro.  This feature is experimental,
264 tell me your opinions about it.  You do need --enable-changeword at
265 configure time to get these things.  Do *not* depend on them yet.
267 * Trace output format is scannable by GNU Emacs' next-error function.
269 * Stack overflow is detected and diagnosed on some capable systems.
271 * Various bugs have been corrected, m4 should be more portable.  See the
272 ChangeLog for details.
274 Version 1.1 - November 1993, by Franc,ois Pinard
276 Changes which might affect existing GNU m4 scripts:
278 * Option `-V' has been removed, use `--version' instead.  `--version'
279 writes on standard output instead of standard error, and inhibits any
280 script execution.
282 * `--no-gnu-extensions' has been renamed `--traditional'.
284 * In `eval', `^' used to indicate exponentiation, use `**' instead.
286 * The automatic undiversion which takes place at end of all input is
287 forced into the main output stream.
289 Changes which are unlikely to affect existing scripts:
291 * `--help' prints an usage summary on standard output.  Script execution
292 is then inhibited.
294 * `--prefix-builtins' (-P) prefixes all builtin macros by `m4_'.
296 * Most builtin macros for which arguments are mandatory, called without
297 any arguments, are no more recognized as builtin macros: they are
298 consequently copied verbatim to the output stream.
300 * `define' and `pushdef' are usable with only one argument, they give
301 this argument an empty definition.
303 * `eval' new operators for binary representation handling: `^' for
304 exclusive-or, `~' for the bitwise negation, `<<' and `>>' for shifts.
306 * `eval' recognizes the notation 0bDIGITS for binary numbers and the
307 notation 0rRADIX:DIGITS for numbers in any radix from 1 to 36.
309 Version 1.0.3 - December 1992, by Franc,ois Pinard
311 Changes for the user:
313 * `dnl' outputs a diagnostic if immediately followed by `('.  Usually,
314 `dnl' is followed by newline or whitespace.
316 * `ifelse' accepts without complaining the common idiom of having only
317 one argument.  This is useful for introducing long comments.
319 * `eval' always expresses values as signed, whatever the radix.
321 * M4OPTS environment variable is no longer obeyed.
323 * `--no-warnings' option is renamed `--silent'.
325 * Debug lines use a new format more compatible with GNU standards.
327 * Various bugs have been corrected.  See the ChangeLog for details.
329 Changes for the installer:
331 * GNU m4 now uses an Autoconf-generated configure script, and should be
332 more easily portable in many ways.  (Cray is not supported yet).
334 * `make check' has been made more portable, expect no errors.
336 Changes for the programmer:
338 * Sources have been fully reindented to comply with GNU standards, and
339 cleaned up in many ways.
341 * Sources have been protoized.  Non-ANSI compilers are automatically
342 detected, then sources are unprotoized on the fly before compilation.
344 * GNU m4 uses newer versions of obstack, regex, getopt, etc.
346 Version 1.0 - October 1991, by Rene' Seindal
348 * Uses GNU configure, taken from the gdb distribution.
350 * Uses GNU getopt(), with long option names.
352 * The -Q/+quiet option is added, which suppresses warnings about missing
353 or superflous arguments to built-in macros.
355 * Added default options via the M4OPTS environment variable.
357 * Several minor bugs have been fixed.
359 Version 0.99 - July 1991, by Rene' Seindal
361 * The builtins `incr' and `decr' are now implemented without use of
362 `eval'.
364 * The builtin `indir' is added, to allow for indirect macro calls
365 (allows use of "illegal" macro names).
367 * The debugging and tracing facilities has been enhanced considerably.
368 See the manual for details.
370 * The -tMACRO option is added, marks MACRO for tracing as soon as it
371 is defined.
373 * Builtins are traced after renaming iff they were before.
375 * Named files can now be undiverted.
377 * The -Nnum option can be used to increase the number of divertions
378 available.
380 * Calling changecom without arguments now disables all comment handling.
382 * A bug in `dnl' is fixed.
384 * A bug in the multi-character quoting code is fixed.
386 * Several typos in the manual has been corrected.  More probably persist.
388 Version 0.75 - November 1990, by Rene' Seindal
390 * Implemented search path for include files (-I option and M4PATH
391 environment variable).
393 * Implemented builtin `format' for printf-like formatting.
395 * Implemented builtin `regexp' for searching for regular expressions.
397 * Implemented builtin `patsubst' for substitution with regular
398 expressions.
400 * Implemented builtin `esyscmd', which expands to a shell commands output.
402 * Implemented `__file__' and `__line__' for use in error messages.
404 * Implemented character ranges in `translit'.
406 * Implemented control over debugging output.
408 * Implemented multi-character quotes.
410 * Implemented multi-character comment delimiters.
412 * Changed predefined macro `gnu' to `__gnu__'.
414 * Changed predefined macro `unix' to `__unix__', when the -G option is
415 not used.  With -G, `unix' is still defined.
417 * Added program name to error messages.
419 * Fixed two missing null bytes bugs.
421 Version 0.50 - January 1990, by Rene' Seindal
423 * Initial beta release.
425 Local Variables:
426 mode: outline
427 fill-column: 75
428 End: