* doc/m4.texinfo (Macro Arguments, Changequote, Changecom)
[m4.git] / ChangeLog
blob2bb3f12c04125521b24d31e113a93255da456b49
1 2006-07-26  Eric Blake  <ebb9@byu.net>
3         * doc/m4.texinfo (Macro Arguments, Changequote, Changecom)
4         (Dnl, M4wrap, Include): Document EOF issues, and add examples.
5         (Incompatibilities): Document incompatibility of changecom
6         vs. macro names, and of EOF in include.
7         * src/input.c (next_token): Reject unterminated comments at EOF.
8         (skip_line): Warn on unterminated dnl at EOF.
9         * NEWS: Document these changes.
11 2006-07-25  Eric Blake  <ebb9@byu.net>
13         * m4/gnulib-cache.m4: Update to reflect gnulib's split of
14         stdio-safer into fopen-safer and tmpfile-safer.
15         * src/m4.c: Remove redundant include.
17 2006-07-24  Eric Blake  <ebb9@byu.net>
19         Fix bugs related to stream handling.
20         * m4/gnulib-cache.m4: Augment with gnulib-tool --import
21         unlocked-io stdio-safer stdlib-safer close-stream.
22         * configure.ac (AC_CHECK_FUNCS_ONCE): Assume tmpfile; it can be
23         provided by gnulib if needed.
24         * src/output.c [! HAVE_TMPFILE]: Likewise.
25         * src/m4.h (includes): Replace unistd, stdio, and stdlib with
26         their safer counterparts.
27         (retcode): New global variable.
28         * src/input.c (pop_input): Check for read failure.
29         * src/freeze.c (reload_frozen_state): Likewise.
30         (produce_frozen_state): Check for write failure.
31         * src/debug.c (debug_set_file): Likewise.
32         * src/m4.c (usage, main): Likewise.
33         (retcode): Make global.
34         * src/builtin.c (m4_m4exit): Likewise.  Ensure that the exit
35         status is non-zero except when everything succeeds.
36         * doc/m4.texinfo (M4exit): Document these changes.
37         (Incompatibilities): Remove documentation of bug now fixed.
38         * NEWS: Document these fixes.
40 2006-07-22  Eric Blake  <ebb9@byu.net>
42         * src/format.c (format): Avoid compiler warning that str may be
43         used uninitialized.
45 2006-07-21  Eric Blake  <ebb9@byu.net>
47         * src/m4.h [UNIX]: Add more platforms that are close enough to
48         categorize as UNIX, but which don't predefine __unix__.
49         Reported by Nelson H. F. Beebe.
51 2006-07-20  Eric Blake  <ebb9@byu.net>
53         * m4/gnulib-cache.m4: gnulib-tool has changed again.  Regenerate
54         to explicitly ask for --assume-autoconf=2.60.
56 2006-07-19  Eric Blake  <ebb9@byu.net>
58         * doc/m4.texinfo (Sysval): Avoid kill -1, since ksh traps SIGHUP
59         and exits normally with 129.
60         Reported by Nelson H. F. Beebe.
61         * THANKS: Update.
63         * src/m4.h (EXIT_MISMATCH): Define.
64         * src/freeze.c (reload_frozen_state): Detect version mismatch, by
65         exiting with status 63.
66         * src/m4.c (usage): Document this.
67         * doc/m4.texinfo (Invoking m4, Using frozen files): Likewise.
68         * NEWS: Likewise.
70         * doc/m4.texinfo (copying): Relax restriction on front-cover and
71         back-cover texts.
73 2006-07-17  Eric Blake  <ebb9@byu.net>
75         * src/format.c (format): Support F, g, and G specifiers.
76         * doc/m4.texinfo (Format): Document this.
77         * NEWS: Document this addition.
79         * doc/m4.texinfo (Builtin): Delete redundant text.
81         * configure.ac (AC_INIT): Bump version number.
82         * src/builtin.c (substitute): Bah.  Fix buffer overrun.
83         * NEWS: Document this fix.
85 2006-07-15  Eric Blake  <ebb9@byu.net>
87         Release 1.4.5:
89         * configure.ac (AC_INIT): Bump version number.
90         * NEWS: Describe changes since 1.4.4.
92         * src/m4.c (usage): Document exit status.
93         * doc/m4.texinfo: Use `exit status', not `exit code'.
94         (Invoking m4): Document exit status.
96         * bootstrap: Backport --help, --version from head.
97         (func_update): New function, for easily grabbing up-to-date files
98         from gnulib.
99         * Makefile.maint (web-manual): Fix for VPATH builds.
101 2006-07-14  Eric Blake  <ebb9@byu.net>
103         * doc/m4.texinfo: Global cleanup.  Avoid @code{...}'d, as it
104         looks bad in info.  Use @deffn rather than @example for
105         describing prototypes.  Fix awkward wording and grammar.
107         * src/builtin.c (substitute): Warn on bad escape sequences.
108         Ignore trailing backslash.
109         * doc/m4.texinfo (Regexp): Add documentation for this.
110         * NEWS: Document this change.
112         * src/builtin.c (m4_format, m4_indir): Warn on too few arguments.
113         * doc/m4.texinfo (Defn, Builtin, Debug Levels, Debug Output): Add
114         more examples.
115         (Dnl): Update example to show side effects.
116         * checks/get-them: Generate three digit test names.
117         * checks/Makefile.in (CHECKS): Accomodate 100+ tests.
119 2006-07-13  Eric Blake  <ebb9@byu.net>
121         * src/input.c (input_init): Simplify.
122         (set_word_regexp): Treat empty string as default, since empty
123         regexp would disable word parsing.
124         * src/m4.c (user_word_regexp): Default to empty string.
125         * src/builtin.c (builtin_tab): Make changeword blind.
126         * doc/m4.texinfo (Changeword): Document this.
127         * NEWS: Document this.
128         * TODO: Knock off completed items.
130         * src/builtin.c (m4_undefine, m4_popdef): Visit all arguments, not
131         just the first.
132         * doc/m4.texinfo (Undefine, Pushdef): Test this.
133         * NEWS: Document this change.
135         * src/builtin.c (numeric_arg): Treat empty string as 0, with a
136         warning.  Detect quoted leading space and overflow as warnings.
137         (m4_eval): Treat empty radix as 10, and allow output in radix 1.
138         Treat width as minimum number of digits, as required by POSIX.
139         (m4_ifdef, m4_divert, m4_m4exit, m4_translit): Ignore extra
140         arguments.
141         (m4_substr): Likewise.  Silently treat empty start as 0.
142         (m4_undivert): Treat ` 1a' as file, not diversion 1.
143         * src/eval.c (eval_lex): Parse radix 1 numbers.
144         * doc/m4.texinfo (Invoking m4): Fix wording; there is more than
145         one type of warning.
146         (Manual): Document behavior of numeric parsing of empty string.
147         (Divert, Incr): Document error handling.
148         (Eval): Document radices better.
149         (Incompatibilities): Document translit incompatibility.
150         * NEWS: Document these changes.
152         * Makefile.maint (fetch): Get gendocs from gnulib, not texinfo.
153         (web-manual): Simplify.
154         * m4/gnulib-cache.m4: Augment with gnulib-tool --import gendocs.
155         * Makefile.am (EXTRA_DIST): Distribute gendocs.sh.
156         (MAINTAINERCLEANFILES): Clean it as well.
157         * doc/Makefile.am (EXTRA_DIST): Distribute gendocs_template.
158         (MAINTAINERCLEANFILES): Clean it as well.
160 2006-07-12  Eric Blake  <ebb9@byu.net>
162         * doc/m4.texinfo (Extensions): Document how to overcome
163         implementation difference in > 9 positional parameters.
165         * src/m4.c (usage): Sort within sections.
166         (nesting_limit): Raise default from 250 to 1024.
167         * doc/m4.texinfo: Use file name, not filename, per GNU coding
168         standard.  Use @option where appropriate.
169         (Invoking m4): Sort to match --help output.
170         (Debug Levels): Sort.
171         (Frozen files): Sort and break into two nodes.
173         * src/m4.c (nesting_limit): Raise default from 250 to 1024.
174         * NEWS: Document raised -L limit.
176 2006-07-11  Eric Blake  <ebb9@byu.net>
178         * Makefile.am (DISTCHECK_CONFIGURE_FLAGS): New macro, to
179         stress-test changeword before a release.
180         * doc/m4.texinfo: More doc cleanups.
181         (Copying This Manual): New node; actually include the FDL in the
182         documentation.
183         * doc/Makefile.am (m4_TEXINFOS): Mention dependence on fdl.texi.
184         * m4/gnulib-cache.m4: Augment with gnulib-tool --import fdl.
185         * NEWS: Mention documentation improvements.
187         * src/m4.h (OS2): New platform macro.
188         * src/builtin.c (predefined_tab) [OS2]: Use it to give OS/2 a
189         platform macro.
190         * doc/m4.texinfo (Platform macros): Document it.
191         (Sysval): Remove non-portable test of system("").
192         * NEWS: Document this change.
193         Reported by Andreas Buening.
195 2006-07-09  Eric Blake  <ebb9@byu.net>
197         * doc/m4.texinfo (Undivert): Fix typo in last commit.
198         * src/m4.c (usage): Document M4PATH.
199         * src/path.c (path_search): Reject empty string.
200         * src/output.c (insert_diversion): Ignore diversion 0.
201         * src/builtin.c (m4_undivert): Ignore empty string.
202         * NEWS: Document this fix.
204 2006-07-08  Eric Blake  <ebb9@byu.net>
206         * checks/get-them: Make filtering easier.
207         * checks/check-them: Filter non-input lines, so line counts are
208         more realistic in the documentation, and so changeword tests work
209         even when dnl is disabled.
210         * doc/m4.texinfo: Adjust example line numbers.  Clean up
211         front-matter, following autoconf's example.
212         (Changeword): Enable tests, skipping if changeword not supported.
213         (Define, Defn, Ifelse): Backport more examples from head.
214         (Input processing, Answers): New nodes, backported from head.
215         (Include): Expand test to cover empty filename.
216         (Undivert): Add test of undivert(0).
218 2006-07-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
220         * doc/m4.texinfo: Fix spelling errors.
222 2006-07-07  Eric Blake  <ebb9@byu.net>
224         * THANKS: Update.
226         * doc/Makefile.am (m4.1): No need to go through a temporary file;
227         this also ensures timestamps are updated.
228         * src/m4.h (includes): Require config.h.  Assume string.h,
229         stdlib.h, errno.  Include error.h, exit.h, and xalloc.h rather
230         than prototyping ourselves.
231         (builtin_func): Add parameter type-checking.
232         (voidstar): Delete, now that we assume C89.
233         * src/builtin.c, src/m4.c, src/macro.c, src/symtab.c: All users of
234         voidstar changed.
235         * src/m4.c (xfree) [WITH_DMALLOC]: Avoid clash with dmalloc's
236         xfree.
238 2006-07-06  Eric Blake  <ebb9@byu.net>
240         * m4/gnulib-cache.m4: Augment with gnulib-tool --import
241         binary-io.
242         * src/m4.h (includes): Add binary-io.h for O_BINARY.
243         * src/freeze.c (produce_frozen_state): Use O_BINARY to remove
244         #ifdef.  Fixes patch from 2005-02-03 for cygwin.
245         * NEWS: Mention this fix.
247         * configure.ac (FUNC_SYSTEM_BROKEN): New check for OS/2 bug.
248         * src/builtin.c (m4_syscmd): Work around OS/2 bug.
250         * Makefile.am (SUBDIRS): Build . before src, so that autoheader
251         runs first when needed.
252         * doc/Makefile.am (m4.1): Backport rule from CVS head: build m4.1
253         once in srcdir rather than multiple times in VPATH builds.
255 2006-07-03  Eric Blake  <ebb9@byu.net>
257         * checks/check-them: Use portable = in test.
258         * src/Makefile.am (AM_CPPFLAGS): Omit space between -I and
259         directory, as required by Solaris cc.  Include built headers, as
260         required by Solaris make in VPATH build.
261         * checks/Makefile.in: Use $(srcdir) where needed.
262         (CHECKS): Factor $(srcdir) into macro.
263         (DISTFILES): Likewise.  Automake takes care of distributing
264         Makefile.in.
265         (dist): Simplify.
266         (Makefile): Use modern syntax of config.status.
267         * doc/m4.texinfo (Loops, Include, Undivert, Incompatibilities):
268         Avoid overfull and underfull hboxes in dvi.
270         Fix 'make check' in VPATH build.  All files included by testsuite
271         now live in a single directory.  Use forloop.m4 in testsuite.
272         * checks/incl.m4, checks/foo, checks/wrapfifo.m4: Move from
273         here...
274         * examples/incl.m4, examples/foo, examples/wrapfifo.m4: ...to
275         here.
276         * checks/Makefile.in (DISTFILES): Don't distribute moved files.
277         * examples/Makefile.am (EXTRA_DIST): Distribute new files.
278         * checks/check-them: Avoid s/// when filename is in pattern.
279         * examples/forloop.m4: Fix to match documentation.
280         * doc/m4.texinfo (Include, Undivert, Incompatibilities): Reflect
281         new locations.
282         (Loops, Format): Actually use forloop.m4 in tests.
284 2006-07-02  Eric Blake  <ebb9@byu.net>
286         * checks/Makefile.in (exec_prefix, prefix): New macros, so that
287         $(bindir) works in installcheck.
288         (check, installcheck): No longer change directory, so that
289         distcheck works with a read-only builddir.
290         * checks/check-them: Work when pwd is no longer builddir.
292 2006-07-01  Eric Blake  <ebb9@byu.net>
294         * GNUmakefile: New file, borrowed from coreutils.
295         * Makefile.am (EXTRA_DIST): Distribute GNUmakefile.
296         * Makefile.maint (Makefile): Delete this rule, now that
297         GNUmakefile includes Makefile.
299 2006-06-30  Eric Blake  <ebb9@byu.net>
301         For compatibility with other m4 implementations, sysval returns
302         signal<<8 rather than 0 if syscmd is terminated by a signal.
303         * configure.ac (AC_CHECK_HEADERS_ONCE): Check for sys/wait.h.
304         * src/builtin.c (include): Include sys/wait.h when stdlib.h does
305         not provide wait macros.
306         (WTERMSIG, WIFSIGNALED, WIFEXITED): More fallback macros.
307         (M4SYSVAL_EXITBITS, M4SYSVAL_TERMSIGBITS): New helper macros.
308         (m4_esyscmd): Set sysval to -1 on failure.
309         (m4_sysval): Print 127 on failure, and accomodate signals if they
310         are detectable.
311         * NEWS: Document this change.
312         * doc/m4.texinfo (Platform macros, Esyscmd, Sysval): Fix typos in
313         last commit.
314         * checks/check-them: Likewise.
315         * src/debug.c (debug_set_file): Work around mingw fstat bug.
317         * src/m4.h (UNIX, W32_NATIVE): Improve platform detection macros.
318         * src/freeze.c (produce_frozen_state): Use new spelling of
319         platform macro.
320         * src/builtin.c (predefined_tab): Add __windows__ on non-unix
321         platforms.
322         (m4_syscmd, m4_esyscmd): The empty command is successful.
323         * doc/m4.texinfo (Shell commands): Rename from UNIX commands.
324         Document platform-dependence of system().
325         (Syscmd): Add example.
326         (Esyscmd): Make example more robust, and actually demonstrate
327         rescanning.
328         (Sysval): Expand test to cover esyscmd code path, and to check
329         that empty command is successful.  Add conditional check for
330         signal behavior.
331         (Other Incompatibilities): Move platform macros from here...
332         (Platform macros): ...to this new node.  Add windows macro.
333         Check that exactly one platform macro is provided.
334         * checks/check-them: Improve trap cleanup.  Tolerate dirname and
335         .exe in error messages.  Allow for skipping checks.
336         * configure.ac (HAVE_EFGCVT): Kill dead configure check.
337         * NEWS: Document platform macros.
339 2006-06-29  Eric Blake  <ebb9@byu.net>
341         Fix buffer overrun bug.
342         * m4/gnulib-cache.m4: Augment with gnulib-tool --import
343         xvasprintf.
344         * src/format.c [HAVE_EFGCVT]: Delete this code, and use *printf
345         variant instead, since [efg]cvt are obsolete and our use of them
346         was buggy (savannah sr #104303).
347         (format): Fix buffer overflow by using xasprintf.
348         * doc/m4.texinfo (Format): Expand format test to catch both bugs.
349         * NEWS: Document this fix.
351         * configure.ac (AC_CANONICAL_HOST, AC_CANONICAL_BUILD): Allow
352         cross-compilation.
353         (AC_CACHE_CHECK): Cache search for ecvt.
355 2006-06-27  Eric Blake  <ebb9@byu.net>
357         * doc/m4.texinfo (Eval): Document 32-bit signed limitations
358         required by POSIX, and add example that exposed core dump on x86
359         architectures.
360         (Incompatibilities): Document incompatibility in eval precedence.
361         * src/eval.c (shift_term): Explicitly mask, to avoid undefined
362         behavior.
363         (mult_term): Explicitly check for -1, to avoid SIGFPE on x86.
364         * NEWS: Document this change.
366         * doc/m4.texinfo: Use @noindent consistently.
367         (Quoting Arguments): Document that unquoted parentheses group
368         arguments.
369         (Pseudo Arguments): Expand tests to show this.
370         (Incompatibilities): Contrast traditional behavior of
371         changequote.
373 2006-06-24  Eric Blake  <ebb9@byu.net>
375         * configure.ac (AC_PREREQ): Autoconf 2.60 is now released.
376         (AC_CHECK_HEADERS_ONCE): Use this new feature.
377         (AC_CHECK_FUNCS_ONCE): Likewise.
379 2006-06-23  Eric Blake  <ebb9@byu.net>
381         * doc/m4.texinfo: Quoting cleanup throughout - follow
382         autoconf-recommended style of one level of quote per parenthesis
383         in the normal case.  Adjust error messages to match GNU coding
384         standards (and to allow 'make check' to pass again).
385         (Quoted strings, Inhibiting Invocation): Turn more examples into
386         tests.
387         (Comments): Resolve FIXME by adding example.
388         (Define): Add example about underquoting.
389         (Defn): Add example about use of $0.
390         (Indir, Format): Resolve FIXME done in last commit.
391         (Ifelse): Add example about creating blind macro.
392         (Debugging): Fix grammar.
393         (Dnl): Add example about dnl with arguments.
394         (M4wrap): Be explicit that LIFO order is non compliant, and will
395         change in m4 2.0.
396         (Undivert): Resolve FIXME by adding example.
397         (Frozen files): Document that m4wrap and sysval will not work
398         consistently until m4 2.0.
399         (Incompatibilities): Document another POSIX compliance bug, this
400         time with changequote.  Document a traditional incompatibility
401         with partial input spanning file boundaries.
403         Make error messages more consistent with GNU coding standards -
404         start with lower case, and don't end sentence with punctuation.
405         * src/debug.c (trace_pre): Update message wording.
406         * src/eval.c (evaluate, cmp_term, shift_term, mult_term):
407         Likewise.
408         * src/freeze.c (produce_frozen_state, issue_expect_message),
409         (reload_frozen_state): Likewise.
410         * src/input.c (push_string_init, pop_init, init_macro_token),
411         (peek_input, next_char_1, set_word_regexp, next_token): Likewise.
412         * src/m4.c (stackovf_handler, main): Likewise.
413         * src/macro.c (expand_token, expand_argument, call_macro),
414         (expand_macro): Likewise.
415         * src/output.c (make_room_for, output_text, insert_file),
416         (freeze_diversions): Likewise.
417         * src/symtab.c (symtab_init, lookup_symbol): Likewise.
419         * src/builtin.c (builtin_tab): Make format and indir blind.
420         (substitute): Prefer "Warning:" vs. "ERROR:" in messages.
421         * NEWS: Mention the change to builtins.
423 2006-06-22  Eric Blake  <ebb9@byu.net>
425         Robustify frozen file format.
426         * src/freeze.c (reload_frozen_state): Add GET_DIRECTIVE helper
427         macro.  Require V first, and only accept it once.  For F, use
428         placeholder if builtin is not found, rather than warning.
429         * src/m4.h (m4_placeholder): New prototype.
430         * src/builtin.c: Unify error message style.
431         (m4_placeholder): New function, warn if invoked.
432         (builtin_tab): Add m4_placeholder.
433         (m4_defn): Warn if placeholder is encountered.
434         (find_builtin_by_addr): Handle placeholder.
435         (find_builtin_by_name): Return placeholder on failure.
436         (m4_builtin): Treat placeholder as undefined.
437         * doc/m4.texinfo (Frozen files): Document changes in V and F.
438         * NEWS: Document this change.
439         Reported by Bruno Haible.
441         * doc/m4.texinfo: Whitespace cleanup.  TABs are evil in texinfo.
442         (tabchar): New macro, so that 'make check' still works.
443         (Invoking m4): Document that ignored compatibility options -B, -S,
444         and -T each consume an argument.
445         * checks/get-them: Honor @tabchar{}.
447         Avoid compiler warnings during -DDEBUG.
448         * src/m4.h (M4_GNUC_ATTRIBUTE, M4_GNUC_UNUSED): New macros.
449         [DEBUG]: Also imply DEBUG_OUTPUT and DEBUG_STKOVF.
450         * src/input.c (print_token) [DEBUG_INPUT]: Use correct format.
451         (lex_debug) [DEBUG_INPUT]: Fix to compile.  Mark unused.
452         (next_token) [DEBUG_INPUT]: Print before returning.
453         * src/path.c (include_dump) [DEBUG_INCL]: Mark unused.
454         * src/symtab.c (symtab_debug) [DEBUG_SYM]: Mark unused.
456         Avoid mkstemp bugs on various platforms.
457         * m4/gnulib-cache.c: Augment with gnulib-tool --import mkstemp.
458         * src/output.c [! HAVE_MKSTEMP]: Delete.
459         * configure.ac (AC_CHECK_FUNCS): Don't check for mkstemp.
460         * src/m4.h (mkstemp) [! HAVE_MKSTEMP]: Prototype, if needed.
461         * NEWS: Document this.
463         * Makefile.am (EXTRA_DIST): Distribute gnulib-cache.m4.
464         Reported by Bruno Haible.
466 2006-06-21  Eric Blake  <ebb9@byu.net>
468         Avoid obsolete sigstack when POSIX sigaltstack is available.
469         * src/m4.c: Blindly assume signal.h, since stackovf.c and gnulib
470         do likewise.
471         * configure.ac (AC_CHECK_HEADERS): Likewise.
472         (AC_CHECK_TYPES): New check for siginfo_t, since siginfo.h is
473         obsolete and most hosts now have it in signal.h.
474         (AC_CHECK_MEMBERS): New check for sigaction.sa_sigaction.
475         (AC_CACHE_CHECK): Cache decision to use stackovf.
476         (AC_EGREP_HEADER): Switch to AC_CHECK_TYPES.
477         * src/stackovf.c (DEBUG_STACKOVF): Remove unused define.
478         (SA_RESETHAND, SA_SIGINFO): Provide fallback definitions, to
479         simplify later code.
480         (PARAM_STACKOVF, PARAM_NOSTACKOVF): Move further away from NULL,
481         in case of dereferencing a member of a NULL pointer.
482         (sigsegv_handler) [HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define a
483         POSIX handler.
484         (setup_stackovf_trap): Use NULL instead of 0 for pointers, use
485         EXIT_FAILURE in error, indent preprocessor directives.
486         [HAVE_SIGALTSTACK && HAVE_SIGINFO_T]: Depend on siginfo_t, not
487         siginfo.h.
488         [HAVE_SIGACTION && defined SA_ONSTACK]: Prefer POSIX handler.
489         Reported by Santiago Vila.
491 2006-06-19  Eric Blake  <ebb9@byu.net>
493         * THANKS: Update.
495 2006-06-18  Andreas Buening  <andreas.buening@nexgo.de>  (tiny change)
497         * checks/Makefile.in (PATH_SEPARATOR): New macro.
498         (check, installcheck): Use it, for OS/2.
500 2006-06-18  Eric Blake  <ebb9@byu.net>
502         Consistently use "GNU M4" as package name, "m4" as executable
503         name.
504         * NEWS: Document previous fix.
505         * THANKS: Update.
506         * README: Fix grammar.  Document that --enable-changeword is on
507         its last leg.
508         * doc/m4.texinfo (Top, Changeword): Likewise.
509         (Sysval): Enhance this test.
510         (History): Backport this section from CVS head, and update.
512 2006-06-18  Bruno Haible  <bruno@clisp.org>  (tiny change)
513             Eric Blake  <ebb9@byu.net>
515         * src/builtin.c (WEXITSTATUS): Provide fallback definition.
516         (m4_esyscmd): Set sysval to 0xffff, to accomodate both
517         big-endian and little-endian wait status definitions.
518         (m4_sysval): Use WEXITSTATUS.
519         Reported by Andreas Buening.
521 2006-06-18  Eric Blake  <ebb9@byu.net>
523         * configure.ac (AC_INIT): Bump version number.
524         * NEWS: Describe changes in 1.4.4c.
526 2006-06-17  Eric Blake  <ebb9@byu.net>
528         Release 1.4.4b:
530         * configure.ac (AC_INIT): Bump version number.
531         * NEWS: Describe changes since 1.4.4.
532         * Makefile.maint (cvs-news): Accomodate copyright line wrapping.
534         * Makefile.am (MAINTAINERCLEANFILES): Clean files added by
535         bootstrap.
536         * checks/Makefile.in (maintainer-clean): Add missing target.
537         * COPYING: Remove generated file from CVS.
539 2006-06-16  Eric Blake  <ebb9@byu.net>
541         * checks/Makefile.in (DISTFILES): Distribute wrapfifo.m4.
543 2006-06-15  Eric Blake  <ebb9@byu.net>
545         * checks/wrapfifo.m4: New file.  Use it...
546         * doc/m4.texinfo (Incompatibilities): here, in a new test case to
547         demonstrate how to get POSIX behavior of m4wrap prior to m4 2.0.
549         * src/m4.h (to_uchar): New function.
550         * src/eval.c (eval_lex): Use it to avoid passing signed char to
551         isdigit, isalpha, isupper, islower, isspace, isalnum.
552         * src/builtin.c (expand_user_macro): Likewise.
553         * src/format.c (format): Likewise.
554         * src/macro.c (expand_argument): Likewise.
555         * NEWS: Document this security fix.
557         Message cleanup.
558         * src/symtab.c (lookup_symbol): Use invalid, not illegal.
559         * src/freeze.c (reload_frozen_state): Fix typo in message.
560         (produce_frozen_state): Standardize on builtin, not built-in.
561         * src/builtin.c (numeric_arg, bad_argc): Likewise.
563         * configure.ac (M4_EARLY, M4_INIT): Use gnulib.
564         (AC_PROG_RANLIB, AC_AIX, AC_MINIX, AC_CHECK_HEADERS),
565         (AC_FUNC_ALLOCA, AC_REPLACE_FUNCS): Avoid checks now done by
566         gnulib.
567         * Makefile.am (ACLOCAL_AMFLAGS): New entry, for gnulib.
568         * m4/gnulib-cache.m4: New file, from gnulib.
569         * bootstrap: Invoke gnulib-tool --update.
570         * src/m4.c (main): Cast away const.
571         * NEWS: Document that regex is updated.
572         * THANKS: Update.
574 2006-06-08  Eric Blake  <ebb9@byu.net>
576         * configure.ac (changeword): Work even when changeword is not a
577         macro.
578         (AC_PROG_AWK, AC_PROG_INSTALL, AC_PROG_MAKE_SET, AC_HEADER_STDC):
579         Delete; now done by automake.
580         (AC_ISC_POSIX, AC_C_CONST): Delete; now obsolete.
582 2006-06-07  Eric Blake  <ebb9@byu.net>
584         * lib/regex.c (bcmp_translate): Canonicalize type name.
585         * doc/Makefile.am (MAINTAINERCLEANFILES): Fix typo.
586         * configure.ac (changeword): Disable changeword for the creation
587         of configure, in case of bootstrapping with an m4 configured with
588         --enable-changeword.
590         Distribute a rudimentary man page.
591         * Makefile.am (SUBDIRS): Move doc after src so that 'm4 --help'
592         can feed help2man.
593         * doc/Makefile.am (man_MANS, EXTRA_DIST, MAINTAINERDISTCLEAN),
594         (SUFFIXES, m4.1): New macros and rules to build m4.1.
596 2006-06-06  Eric Blake  <ebb9@byu.net>
598         * lib/regex.c (re_match_2_internal, bcmp_translate): Avoid
599         compiler warnings at -O2.
600         * lib/getopt.c (_getopt_internal): Likewise.
602         Cleanup of previous patches.
603         * src/input.c (struct input_block): Remove traced member.
604         (push_macro, init_macro_token): Don't pass trace status around.
605         * src/m4.h (struct token_data): Remove traced member.
606         (struct symbol, struct builtin): Reduce unused space.
607         (TOKEN_DATA_FUNC): Simplify.
608         (TOKEN_DATA_FUNC_TRACED): Remove unused macro.
609         (push_macro, define_builtin): Remove unused parameter.
610         * src/builtin.c (define_builtin, builtin_init, define_macro),
611         (m4_defn): Don't pass trace status around.
612         * src/macro.c (expand_argument): Likewise.
613         * src/freeze.c (reload_frozen_state): Likewise.
614         * src/symtab.c: Whitespace cleanup.
615         * NEWS: Clean up wording.
616         * doc/m4.texinfo (Undefine, Dumpdef, Trace): Cleanup wording;
617         ensure tests actually expose bugs prior to today's patches.
619         Trace status of builtins is no longer inherited across
620         define(...,defn(...)).  Fixes bug that autom4te had been working
621         around.
622         * src/builtin.c (define_builtin): Don't override trace status.
623         * doc/m4.texinfo (Trace): Add test for this.
624         * NEWS: Document this.
626         When changing macro definitions inside the arguments to the macro,
627         consistently preserve the old definition that was in effect before
628         argument collection, similar to the C pre-processor.
629         Reported by John Brzustowski.
630         * NEWS: Document this change.
631         * doc/m4.texinfo (Macro Arguments, Undefine, Dumpdef): Document
632         this policy, and add tests that expose core dumps prior to this
633         patch.
634         * src/m4.h (struct symbol): New members to track when a symbol is
635         still in use after removal from the symbol table.
636         (SYMBOL_PENDING_EXPANSIONS, SYMBOL_DELETED): Define.
637         (free_symbol): Prototype.
638         * src/macro.c (expand_macro): Track pending expansions of a
639         symbol.  On completion, if a symbol is deleted and no longer
640         pending, free its memory.
641         * src/symtab.c (free_symbol): Export.  Don't free memory if symbol
642         is still in use.
643         (lookup_symbol) <SYMBOL_INSERT>: Create new entry when old entry
644         is still in use.
645         (lookup_symbol) <SYMBOL_DELETE, SYMBOL_POPDEF>: Mark entries still
646         in use as deleted and remove from the table without freeing
647         memory.
648         (symtab_print_list) [DEBUG_SYM]: More debug output.
650         * src/symtab.c (hack_all_symbols): Allow certain modifications of
651         the symbol table during traversal.
652         * src/builtin.c (set_trace): Replace SYMBOL_DELETE with
653         SYMBOL_POPDEF, since only the latter is safe with
654         hack_all_symbols.
656         Solve crash when passing "indir(`foo')" to "m4 -tfoo".
657         * src/symtab.c (lookup_symbol) <SYMBOL_DELETE, SYMBOL_POPDEF>:
658         Preserve placeholder when macro is being traced.
659         * src/builtin.c (m4_ifdef, m4_indir): A traced but undefined
660         symbol is not defined.
661         (set_trace): Remove placeholder when no longer traced.
662         (m4_traceon): On named traces, always reserve a slot in the
663         symbol table.
664         (m4_traceoff): Don't warn about untracing a nonexistent symbol.
665         * NEWS: Document new trace behavior.
666         * doc/m4.texinfo (Trace): Tracing by name now consistently works
667         no matter whether that macro is currently defined.
668         (Incompatibilities): Document differences between traditional and
669         GNU trace.
671 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
672             Eric Blake  <ebb9@byu.net>
674         * src/m4.h (hash_table_size): Now size_t instead of int.
675         * src/m4.c (hash_table_size): Likewise.
676         (main): Adjust to this; use atol rather than atoi.
677         * src/symtab.c: Include <limits.h>, for CHAR_BIT.
678         (symtab_init, lookup_symbol, hack_all_symbols):
679         Use size_t for sizes and indexes, not int.
680         (symtab_print_list) [DEBUG_SYM]: Likewise.
681         (hash): Likewise.  Don't case-fold in the hash function.
682         Shift by 7, not 3, for consistency with gnulib/lib/hash.c.
683         Don't assume hash word is 32 bits.
684         NEWS: Document this change.
686 2006-06-04  Eric Blake  <ebb9@byu.net>
688         * src/symtab.c (symtab_debug, symtab_print_list) [DEBUG_SYM]: Fix
689         to allow compilation, for use in debugger.
690         (profiles, current_mode) [DEBUG_SYM]: New variables.
691         (show_profile, profile_strcmp) [DEBUG_SYM]: New methods for
692         determining hash table performance.
694 2006-05-31  Eric Blake  <ebb9@byu.net>
695             John Brzustowski  <jbrzusto@fastmail.fm>
697         * src/input.c (input_stack): Delete; use current_input instead.
698         (wrapup_stack): Dynamically allocate, so that recursion is handled
699         properly.
700         (push_wrapup): Use current wrapup stack.
701         (pop_wrapup): Rotate wrapup stack to current, and create new
702         wrapup stack.
703         (input_init): Dynamically allocate stacks.
704         * NEWS: Update, now that recursive m4wrap can no longer cause
705         core dump.
707 2006-05-31  Eric Blake  <ebb9@byu.net>
709         * lib/getopt.c: Fix copyright year.
710         * lib/obstack.c: Ditto.
711         * src/builtin.c: Ditto.
713 2006-05-30  Eric Blake  <ebb9@byu.net>
715         * doc/m4.texinfo (M4wrap): Add test to expose m4wrap bug.
716         Reported by John Brzustowski.
717         (Incompatibilities): Document known POSIX incompatibilities.
718         * THANKS: Update.
720 2006-05-29  Eric Blake  <ebb9@byu.net>
722         * doc/m4.texinfo (Maketemp): Work even when running 'make check'
723         in read-only dir.
725         Use automake.
726         * Makefile.am: New file.
727         * doc/Makefile.am: Ditto.
728         * examples/Makefile.am: Ditto.
729         * lib/Makefile.am: Ditto.
730         * src/Makefile.am: Ditto.
731         * acinclude.m4: New file, renamed from aclocal.m4.
732         * configure.ac (AM_INIT_AUTOMAKE): Invoke new macro.
733         (AC_ARG_PROGRAM): Now redundant.
734         (STACKOVF): Turn into automake conditional.
735         (AC_CONFIG_COMMANDS): stamp-h is a command, not a file.
736         * checks/Makefile.in: Converting this dir to automake was not
737         trivial; for now, just add missing targets demanded by top-level.
738         * INSTALL: Remove files that are now generated from CVS.
739         * Makefile.in: Ditto.
740         * aclocal.m4: Ditto.
741         * install-sh: Ditto.
742         * mkinstalldirs: Ditto.
743         * doc/Makefile.in: Ditto.
744         * doc/texinfo.tex: Ditto.
745         * examples/Makefile.in: Ditto.
746         * lib/Makefile.in: Ditto.
747         * src/Makefile.in: Ditto.
749         * AUTHORS: Backport from CVS head, and update.
750         * doc/m4.texinfo (Changeword): Fix examples to match behavior.
752 2006-05-27  Eric Blake  <ebb9@byu.net>
754         * lib/regex.c (regex_compile): Kill compiler warnings.
755         * lib/getopt.c: Likewise.
756         * lib/obstack.c: Likewise.
757         * src/builtin.c (builtin_init): Likewise.
758         * src/path.c (path_search): Likewise.
760         * doc/m4.texinfo: Fix usage of a vs. an.
761         (Loops, Include, Cleardiv, Patsubst, Format, M4exit): Kill
762         overfull hbox warnings.
763         (Inhibiting Invocation, Divert, Maketemp, M4exit): Add new tests.
765         * configure.ac: Update to autoconf 2.59.  Forbid ^M4_.  Fix
766         quoting.
767         * aclocal.m4 (fp_PROG_CC_STDC): Delete; now covered by autoconf.
768         (fp_C_PROTOTYPES): Delete, GNU Coding Standards state we can now
769         assume C89.
770         (M4_WITH_DMALLOC): Rename from fp_WITH_DMALLOC. Fix quoting.
771         * src/m4.h (_): PROTOTYPES is no longer provided, assume C89.
772         * src/Makefile.in: Delete remains of ansi2knr.
773         * src/ansi2knr.1: Delete.
774         * src/ansi2knr.c: Delete.
776 2006-05-25  Eric Blake  <ebb9@byu.net>
778         * doc/m4.texinfo: Fix spelling errors.  Use `invalid' instead of
779         `illegal'.
781         * doc/m4.texinfo (Francois): No longer needed as a tex variable.
782         Reported by Karl Berry.
784 2006-05-24  Eric Blake  <ebb9@byu.net>
786         * Makefile.in (html): New target.
787         * doc/Makefile.in (html, m4.html): Likewise.
788         (MAKEINFOHTML): New macro.
789         * doc/m4.texinfo (Francois) [ifnottex]: Use newer texinfo
790         rendering.
791         (Regexp) [ifhtml]: Make cross-reference to emacs manual an
792         absolute URL.
793         Reported by Bob Badour.
795         * THANKS: Update.  Move reporter's email addresses here, instead
796         of in ChangeLog.
798 2006-05-11  Eric Blake  <ebb9@byu.net>
800         * THANKS: Update.
801         * doc/m4.texinfo (Changequote): Give testsuite exposure to bug
802         patched on 2005-12-04.
803         Reported by Ilya N. Golubev.
805         * bootstrap: New file, so that generated files need not be stored
806         in CVS.
807         * Makefile.in (DISTFILES): Add bootstrap.
809         Make testsuite less sensitive to doc changes.
810         * doc/m4.texinfo: Use m4.input instead of filename.
811         * checks/check-them (xerr): Turn m4.input into filename.
812         * checks/Makefile.in (dist): Depend on stamp-checks.
814         Portability updates for OS/2.
815         * src/Makefile.in (EXEEXT, OBJEXT): Define.
816         (LINK): Use CFLAGS.
817         (.c.obj): Define.
818         * lib/Makefile.in (OBJEXT): Define.
819         (.c.obj): Define.
820         * doc/Makefile.in (install, uninstall): Install info files into
821         the dir listing.
822         Reported by Andreas Buening.
824 2006-05-09  Eric Blake  <ebb9@byu.net>
826         * install-sh: Update to newer upstream version.
827         * mkinstalldirs: Likewise.
828         Reported by Andreas Buening.
830         * src/m4.c (main): Bump copyright year.
831         * Makefile.in (datarootdir): Define, for autoconf 2.59c.
832         * doc/Makefile.in (datarootdir): Likewise.
834 2006-05-08  Eric Blake  <ebb9@byu.net>
836         * THANKS: Update.
837         * doc/m4.texinfo (Bugs): Backport bug email address from head.
838         Reported by Stepan Kasal.
840 2005-12-04  Ilya N. Golubev  <gin@mo.msk.ru>  (tiny change)
842         * input.c (match_input): Do not pass expression with side effect
843         to `obstack_grow'.  Fix <INTERNAL ERROR: Recursive push_string!>.
844         * NEWS: Updated.
846 2005-12-04  Gary V. Vaughan  <gary@gnu.org>  (tiny change)
848         * doc/m4.texinfo (How to debug macros and input): s/woould/would/
849         Reported by Damian Menscher.
851 2005-10-19  Gary V. Vaughan  <gary@gnu.org>  (tiny change)
853         * configure.ac (AC_INIT): Bump to 1.4.4a.
855 2005-10-19  Gary V. Vaughan  <gary@gnu.org>  (tiny change)
857         Release 1.4.4:
859         * configure.ac (AC_INIT): Bump to 1.4.4.
860         * NEWS: Describe 1.4.4's changes.
861         * INSTALL, install-sh, doc/texinfo.tex: Updated from upstream.
863 2005-10-17  John Gatewood Ham  <zappaman@buraphalinux.org>  (tiny change)
865         * src/m4.c: fix return code when non-existent files are processed
867 2005-10-17  John Gatewood Ham  <zappaman@buraphalinux.org>  (tiny change)
869         * README: update email address for bug reports.
871 2005-10-17  Gary V. Vaughan  <gary@gnu.org>
873         * doc/m4.info: Generated files are not kept in the repository.
875 2005-05-01  Gary V. Vaughan  <gary@gnu.org>
877         The FSF are moving offices today.  Changed their contact address
878         in all files from `59 Temple Place, Suite 330, MA 02111-1307' to
879         `51 Franklin Street, Fifth Floor, MA 02110-1301'.
881         Also, some of the files here were never updated from the previous
882         '675 Mass Ave, Cambridge, MA 02139', so changed those to the
883         '51 Franklin Street, Fifth Floor, MA 02110-1301' address too.
885 2005-03-31  Mike Frysinger  <vapier@gentoo.org>
887         * Makefile.in (bindir, infodir): Substitute from configure rather
888         than hardcode.
889         * doc/Makefile.in (infodir): Ditto.
890         * src/Makefile.in (bindir): Ditto.
891         * NEWS: Updated.
893 2005-03-31  Gary V. Vaughan  <gary@gnu.org>
895         Changes needed to automate the release process for 1.4.3:
897         * Makefile.in (dist): Make .tar.bz2 tarball too.
898         * Makefile.maint (TSDEPS_DIST): Remove m4/libtool.m4.
899         (cvs-news): Look 1 line further down for NEWS release number.
900         (cvs-dist): We don't use automake, so make dist is fine.
901         Remove double . before suffixes.
902         (cvs-release): Don't mention manual.html.
903         (fetch): Get latest gendocs files.
904         (web-manual): Rewritten to use gendoc for multiformat manuals.
905         * doc/gendocs.sh: Don't save an old version in m4 CVS!
906         * doc/m4.texinfo (Index): HFS+ (the file system on my Mac) is case
907         preserving, but case insensitive, so generating html docs per node
908         clashes between Index.html, the node file, and index.html, the
909         top-level of the document tree...
910         (Index macro): ...so renamed to this.  Changed all references.
912 2005-03-31  Gary V. Vaughan  <gary@gnu.org>  (tiny change)
914         * configure.ac (AC_INIT): Bump to 1.4.3a.
916 2005-03-31  Gary V. Vaughan  <gary@gnu.org>  (tiny change)
918         Release 1.4.3:
920         * configure.in (AC_INIT): Bump to 1.4.3.
921         * NEWS: Describe 1.4.3's changes.
923 2005-03-31  Gary V. Vaughan  <gary@gnu.org>
925         * Makefile.maint: New file with release rules, from CVS libtool.
926         * Makefile.in (DISTFILES): Add Makefile.maint.
927         * INSTALL, install-sh, doc/texinfo.tex: Updated to latest
928         canonical versions.
930 2005-03-31  Eric Blake  <ebb9@byu.net>  (tiny change)
932         * doc/m4.texinfo (Patsubst): Re-add trailing space required by
933         checks/47.patsubst, with a redundant @comment to prevent emacs
934         from removing it accidentally again.
935         * checks/get-them: Allow for trailing spaces tucked behind
936         @comment marks.
938 2005-03-31  Eric Blake  <ebb9@byu.net>  (tiny change)
940         * doc/Makefile.in (install, uninstall): Accomodate DESTDIR.
941         * src/Makefile.in (install, uninstall): Likewise.
943 2005-02-07  Gary V. Vaughan  <gary@gnu.org>
945         * lib/regex.c, lib/regex.h:  Reverted gnulib update, which broke
946         on Cygwin.
947         Reported by Eric Blake.
949 2005-02-04  Gary V. Vaughan  <gary@gnu.org>
951         * lib/regex.c, lib/regex.h: Updated from gnulib.
952         * src/input.c (set_word_regexp):  Don't change the word_regexp
953         unless it compiles correctly.
954         * NEWS: Updated.
955         Reported by Frank Schwidom.
957         * Makefile.in (stamp-h): Regenerate config.h properly.
959 2005-02-03  Gary V. Vaughan  <gary@gnu.org>
961         * configure.ac (AC_DEFINE): Fix overquoting of description
962         argument.
964         * src/m4.h (__CYGWIN__, WIN32): Canonicalise Windows and Cygwin
965         recognition macros.
966         * src/freeze.c (produce_frozen_state): Use \n line-endings even
967         on Windows, so that the frozen file reader will work.
968         Reported by Josef T. Burger.
970         * src/m4.c (main): Modernise the --version output.
972 2005-02-03  Gary V. Vaughan  <gary@gnu.org>
974         Modernise the configury a little to prevent spurious errors from
975         Autoconf-2.59's autoreconf:
977         * config.h.in: Renamed to...
978         * config-h.in: ...this to better support DOS 8.3 file systems.
979         * acconfig.h: Removed.
980         * configure.in: Renamed to...
981         * configure.ac: ...this, and AC_DEFINE used to declare config.h
982         entry comments.  Slight reorganisation and reformatting.
983         * aclocal.m4: Use third argument to AC_DEFINE to declare config.h
984         entry comments.
985         (AC_INIT): Use a modern 3 argument call.
986         * Makefile.in, checks/Makefile.in, doc/Makefile.in,
987         examples/Makefile.in, lib/Makefile.in, src/Makefile.in:
988         s/PRODUCT/PACKAGE/g.
989         * Makefile.in (DISTFILES): Removed acconfig.h, configure.in,
990         config.h.in.  Added configure.ac, config-h.in.
991         (stamp-h.in): Removed acconfig.h from dependencies.
992         (configure): Depends on configure.ac, not configure.in.
993         * doc/Makefile.in (stamp-vti): Ditto.
994         * src/freeze.c (produce_frozen_state), src/m4.c (main): Adjust for
995         difference between PRODUCT="m4" and PACKAGE="GNU M4".
996         * configure: Regenerated.
998 2005-02-03  Noah Misch  <noah@cs.caltech.edu>
1000         * src/output.c (mkstemp): Make non-static, and build regardless of
1001         HAVE_TMPFILE; src/builtin.c also needs this replacement.
1002         * NEWS: Update.
1004 2004-09-09  Vincent Lonngren  <Vincent.lonngren.759@student.lu.se>
1006         * configure.in (AC_CHECK_HEADERS): Commit works best when you save
1007         changes from your editor buffer first.
1009         * configure.in (AC_CHECK_HEADERS):  Add signal.h, sys/signal.h.
1010         * src/m4.c: And include them as appropriate.
1011         * NEWS: Updated.
1013 2004-09-09  Andreas Schwab  <schwab@suse.de>
1015         Refactoring of the string read case in next_char provides about a
1016         20% speedup of M4 as typically used by autoconf:
1018         * src/input.c (next_char_1): Renamed from next_char.
1019         (next_char): New macro.
1020         * NEWS: Updated.
1022 2004-08-21  Gary V. Vaughan  <gary@gnu.org>
1024         * configure.in (VERSION): Bump to 1.4.2a.
1026 2004-08-19  Paul Eggert  <eggert@twinsun.com>
1028         * Release 1.4.2.
1030         * configure.in (VERSION): Bump to 1.4.2.
1031         * News: Describe 1.4.2's changes.
1033         * src/m4.c (reference_error): Preserve errno, since M4ERROR
1034         relies on this.
1035         * src/builtin.c (m4_esyscmd): Clear errno before calling popen.
1036         (m4_maketemp): Clear errno before calling mkstemp.
1037         * src/path.c (path_search): Don't let "free" trash errno when
1038         returning NULL.
1039         * src/output.c (insert_file): Don't assume errno has a valid
1040         value simply because fread returns zero.  This fixes a
1041         portability bug reported by Marion Hakanson in
1042         <http://lists.gnu.org/archive/html/bug-m4/2004-07/msg00029.html>.
1044 2004-06-09  Gary V. Vaughan  <gary@gnu.org>
1046         * configure.in (VERSION): Bump to 1.4.1a.
1047         * NEWS: Place holder for next stable release.
1049 2004-06-03  Paul Eggert  <eggert@cs.ucla.edu>
1051         * Release 1.4.1.
1053         * configure.in (VERSION): Bump to 1.4.1.
1054         * NEWS: Describe 1.4.1's changes.
1056         * aclocal.m4 (fp_PROG_CC_STDC): Use AC_DEFUN, not define, to
1057         pacify Autoconf 2.59.
1059         * doc/m4.texinfo: Insert commas after @xref's that lack them,
1060         to pacify Texinfo 4.7.
1061         * doc/Makefile.in (info): Remove info-1, info-2, info-3.
1063         * src/m4.h, src/debug.c: Use #ifdef __STDC__, not #if __STDC__, to
1064         pacify Sun C compilers.
1066 2003-09-28  Akim Demaille  <akim@epita.fr>
1068         * src/symtab.c (lookup_symbol): Fix an uninitialized-variable
1069         botch.
1071 2003-09-03  Santiago Vila  <sanvila@debian.org>
1073         * examples/stackovf.sh: Use tempfile if available.
1075 2001-04-02  Robert Bihlmeyer  <robbe@orcus.priv.at>
1077         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=92629
1078         * src/output.c (m4_insert_file): Do not mix buffered and
1079         unbuffered I/O, as this breaks on the Hurd.  (trivial change)
1081 2001-02-01  Santiago Vila  <sanvila@debian.org>
1083         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=84451
1084         * src/m4.c (main): Fix format vulnerabilities.  (trivial change)
1086 2001-02-01  Matt Kraai  <kraai@debian.org>
1088         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=84416
1089         * doc/m4.texinfo (Maketemp): Change maketemp to refer to a new,
1090         empty file rather than to a nonexistent file.  This closes a common
1091         security hole.
1092         * src/builtin.c (m4_maketemp): Implement the above, by using
1093         mkstemp rather than mktemp.  (trivial change)
1095 2000-01-09  Akim Demaille  <demaille@inf.enst.fr>
1097         * src/builtin.c (expand_ranges): Added break after trailing dash.
1098         This caused misbehaviors on some systems.
1100 Sat Nov  5 15:52:47 1994  Francois Pinard  (pinard@icule)
1102         * Release 1.4.
1104         * doc/Makefile.in (realclean): Also remove stamp-vti.
1105         Reported by Eric Backus.
1107 Wed Nov  2 00:47:53 1994  Francois Pinard  (pinard@icule)
1109         * src/freeze.c (produce_frozen_state): If the frozen file cannot
1110         be opened, return immediately after producing the error message.
1111         Reported by Andreas Schwab.
1113         * configure.in: Check for const only after having found possible
1114         ANSIfying compiler flags, this is of no use to check it before.
1115         Reported by Alexander Lehmann.
1117 Tue Nov  1 22:02:37 1994  Francois Pinard  (pinard@icule)
1119         * src/macro.c (collect_arguments): Cast obstack arguments to
1120         (voidstar), so avoiding compiler warnings.
1121         Reported by Joseph E. Sacco.
1123         * src/freeze.c (produce_frozen_state): Cast printed lengths to
1124         (int) so they correspond to %d format items.
1125         Reported by Joseph E. Sacco.
1127         * src/m4.c (main): Cast the argument to xfree to (voidstar).
1128         * src/symtab.c (free_symbol): Idem.
1129         Reported by Karl Vogel.
1131 Mon Oct 31 02:11:19 1994  Francois Pinard  (pinard@icule)
1133         * Makefile.in (DISTFILES): Distribute BACKLOG.
1135         * configure.in: Define PRODUCT and VERSION.
1136         * acconfig.h: Document PRODUCT and VERSION.
1137         * src/m4.c, src/freeze.c: Use PRODUCT and VERSION instead of the
1138         constant string m4 and variable or parameter named version.
1140 Sun Oct 30 08:13:03 1994  Francois Pinard  (pinard@icule)
1142         * src/m4.h, src/debug.c: Replace all #ifdef __STDC__ by #if
1143         __STDC__.  Alliant FX/2800 Concentrix 2.2 (i860-BSD4.3) compiler
1144         defines __STDC__ to 0, for indicating it is *not* ANSI!
1145         Reported by Kaveh R. Ghazi.
1147         * configure.in: Added obsolescent tests for AIX and Minix.
1149         * doc/Makefile.in (mostlyclean): Remove texclean in dependencies,
1150         which texclean does not exist anymore.
1151         Reported by Eric Backus, Jim Meyering, John David Anglin and
1152         Joseph E. Sacco.
1154 Sat Oct 29 05:10:03 1994  Francois Pinard  (pinard@icule)
1156         * aclocal.m4 (fp_C_PROTOTYPES): Force -D_HPUX_SOURCE with -Aa.
1157         Reported by John David Anglin.
1159         * src/ansi2knr.c: New version, sent by Peter Deutsch.
1160         * aclocal.m4 (fp_C_PROTOTYPES): Substitute empty or ansi2knr for
1161         ANSI2KNR, depending on the fact the compiler is ANSI or not.
1162         * src/Makefile.in: Use -Ovarargs=convert on ansi2knr calls.
1163         Remove the sed filter after ansi2knr for debug.c.  Use $O instead
1164         of $U, put underline in extensions rather than in basenames.  Use
1165         implicit rules, now that regularity makes this possible.
1166         Have $(OBJECTS) depend on $(ANSI2KNR), so to trigger compilation
1167         of ansi2knr whenever it is needed.
1168         * configure.in: Adjusted for correct STACKOVF substitution.
1169         * src/debug.c (trace_format): When not __STDC__, use (...) as a
1170         parameter list, so ansi2knr will convert it to (va_alist) va_dcl.
1171         Reported by David MacKenzie.
1173         * Makefile.in: Remove binprefix.  Use transform_name instead.
1174         Reported by David MacKenzie.
1176         * doc/Makefile.in: Create version.texi, use it, clean it.
1177         Reported by Jim Meyering.
1179 Fri Oct 28 20:33:55 1994  Francois Pinard  (pinard@icule)
1181         * Makefile.in (all, install, uninstall): Depend on Makefile.
1183         * Makefile.in: For actions invoking $(MAKE) from within compound
1184         sh statements, exit non-zero if the sub-make fails.  Otherwise,
1185         the top-level make may exit successfully when it should fail.
1186         Reported by Jim Kingdon.
1188         * {,/*}Makefile.in: Use && after all cd, in case they fail.
1190         * {,*/}Makefile.in: Declare PRODUCT and VERSION macros.
1191         (dist): Use PRODUCT and VERSION instead of tricks on .fname.
1192         * configure.in: Substitute PRODUCT and VERSION.
1194         * {,*/}Makefile.in (dist): Always try a hard link before a copy.
1196 Thu Oct 27 22:32:58 1994  Francois Pinard  (pinard@icule)
1198         * Makefile.in (mostlyclean-local): Do not remove *~.
1199         * */Makefile.in (mostlyclean): Idem.
1200         Reported by Robert E. Brown and Richard Stallman.
1202 Sun Oct  9 08:30:13 1994  Francois Pinard  (pinard@icule)
1204         * src/m4.h: Get rid of CONFIG_BROKETS.
1206 Sun Oct  2 16:48:10 1994  Francois Pinard  (pinard@icule)
1208         * configure.in: Use AC_ARG_PROGRAM.
1209         * aclocal.m4 (fp_C_PROTOTYPES): Substitute @kr@ by kr or empty.
1210         Reported by David MacKenzie.
1212 Sat Oct  1 11:22:42 1994  Francois Pinard  (pinard@icule)
1214         * configure.in: Do not add -O to CFLAGS for GNU C, now that
1215         configure does it automatically.
1216         Reported by Jim Meyering.
1218 Fri Sep 23 08:16:58 1994  Francois Pinard  (pinard@icule)
1220         * src/stackovf.c: Declare the handler_t typedef earlier in the
1221         code, use it for stackovf_handler.
1222         (setup_stackovf_trap): Use RETSIGTYPE instead of void while
1223         casting sigsegv_handler.
1224         Reported by Robert Bernstein.
1226         * src/m4.c (main): Initialize program_name to argv[0] without
1227         basename'ing it.
1228         Reported by Karl Berry.
1230 Sun Sep 18 11:42:50 1994  Francois Pinard  (pinard@icule)
1232         * src/Makefile.in (TAGS): Include a ../lib/TAGS reference.
1233         Reported by Karl Berry.
1235 Wed Sep 14 10:00:22 1994  Francois Pinard  (pinard@icule)
1237         * lib/Makefile.in (mostlyclean): Added.
1238         (TAGS): Make in $(srcdir).
1240         * configure.in: Use `choke me' in test, like everywhere!
1242         * {doc,examples,lib,src}/Makefile.in (check): Deleted, as
1243         unreacheable and useless.
1245         * doc/Makefile.in (texclean): Deleted, merged in mostlyclean.
1247         * lib/Makefile.in (DISTFILES): Distribute TAGS.
1248         (distclean): Do not remove TAGS.
1249         (realclean): Remove it.
1250         * Makefile.in: Make TAGS in lib also, not just in src.
1251         Reported by Karl Berry.
1253         * Makefile.in (distclean, realclean): Instead of recursively
1254         calling $(MAKE) for the -local part, allow parallel execution of
1255         -recursive and -local, only delay the removal of config.status,
1256         which is repeated in both goals.
1258 Tue Sep 13 19:21:05 1994  Francois Pinard  (pinard@icule)
1260         * Release 1.3.
1262         * Makefile.in: Group all *clean-recursive goals in one, using sed
1263         to remove `-recursive' while calling make recursively.  Also, use
1264         a subshell for each recursive $(MAKE).
1265         Reported by Jim Meyering.
1267         * src/m4.h (memcpy): Define with bcopy for BSD systems.
1268         Reported by Kaveh R. Ghazi.
1270         * src/Makefile.in (ansi2knr): Use $(LIBS) while linking, for SunOS
1271         4.1.3 requires -ldl to link even ansik2nr, and we need a way to
1272         specify it.
1274         * configure.in: Use date instead of touch for stamp-h.
1275         * Makefile.in (stamp-h.in): Idem.
1277         * Makefile.in (distclean, realclean): Force serial execution of
1278         both goals, in case parallel makes are being used.
1279         Reported by Jim Meyering.
1281         * src/Makefile.in (DISTFILES): Distribute TAGS.
1282         (distclean): Do not remove TAGS.
1283         (realclean): Remove it.
1284         Reported by Karl Berry.
1286 Sat Sep 10 12:34:04 1994  Francois Pinard  (pinard@icule)
1288         * configure.in: Use fp_ to match aclocal.m4.  Revert _OS_ macros
1289         to old names, for following Autoconf.
1291 Thu Sep  8 15:07:27 1994  Francois Pinard  (pinard@icule)
1293         * Makefile.in (MDEFINES): Remove INSTALL substitutions, for
1294         ./install.sh will not be correctly referred to in sub-Makefiles.
1295         Reported by John David Anglin.
1297         * doc/Makefile.in (texclean): Remove *.cps and *.fns too.
1298         Reported by Eric Backus.
1300         * Makefile.in, checks/Makefile.in, doc/Makefile.in,
1301         examples/Makefile.in, lib/Makefile.in, src/Makefile.in: Limit
1302         config.status into remaking this directory's Makefile only.
1303         * Makefile.in (stamp-h): Do not check nor touch stamp-h.
1304         * configure.in (AC_OUTPUT): Touch stamp-h if CONFIG_HEADERS.
1305         Reported by Jim Meyering.
1307 Tue Sep  6 12:07:33 1994  Francois Pinard  (pinard@icule)
1309         * configure.in: Correct stack overflow detection logic, taking
1310         care of systems having only incomplete implementations (like for
1311         Pyramid 9820 OSx 5.0d).
1312         Reported by Kaveh R. Ghazi.
1314         * src/Makefile.in (TAGS): Remote -t from etags call.
1316 Fri Sep  2 10:37:10 1994  Francois Pinard  (pinard@icule)
1318         * lib/Makefile.in (install): Depend on all.
1320 Wed Aug 31 11:17:21 1994  Francois Pinard  (pinard@icule)
1322         * examples/Makefile.in (mostlyclean): Do not depend on texclean.
1323         Reported by Jim Meyering and John David Anglin.
1325         * Makefile.in (distclean-local): Delete config.log.
1326         Reported by Jim Meyering.
1328         Solidify frozen files with respect to -P:
1329         * src/m4.c: Have -P set prefix_all_buitins variable instead of
1330         calling a function by that name.  Declare the variable.
1331         * src/m4.h: Adjust declaration for prefix_all_buitins.
1332         * src/builtin.c (builtin_init): Merge in functionality from
1333         previous prefix_all_buitins function, while making entries in the
1334         symbol table, but not modifying the builtin description itself.
1336         * src/freeze.c (reload_frozen_state): Add a useless `break;',
1337         because *many* compilers do not accept an empty `default:'.
1338         Reported by Akiko Matsushita, Eric Backus, John David Anglin,
1339         Joseph E. Sacco, Kaveh R. Ghazi, Tom McConnell and Ulrich Drepper.
1341         * configure.in: Use AC_TYPE_SIGNAL.
1342         * src/stackovf.c (setup_stackovf_trap): Use RETSIGTYPE.
1343         Reported by Robert Bernstein.
1345         * checks/Makefile.in (check): Modify PATH so check-them will find
1346         m4 in the src directory.
1347         * Makefile.in (check): Don't.
1348         Reported by Akiko Matsushita and Jim Meyering.
1350         * src/output.c (make_room_for, output_character_helper): New
1351         functions, for implementing a global MAXIMUM_TOTAL_SIZE instead of
1352         a per buffer MAXIMUM_BUFFER_SIZE.
1354         * src/output.c (output_text): New function, for optimizing the
1355         output of strings of characters.  Use it.
1357 Tue Aug 30 01:44:29 1994  Francois Pinard  (pinard@icule)
1359         * doc, src: New directories reorganizing the distribution.
1360         * doc/Makefile.in, src/Makefile.in, examples/Makefile.in: New
1361         files.
1362         * Makefile.in: Adjusted.
1363         * configure.in: Configure new Makefiles.
1365         * m4.h: Declare STRING typedef.  Use it for comment and quote
1366         strings, adjusting all references.  (This is the rudiments of a
1367         beginning for the eventual withdrawal of NUL terminated strings.)
1368         * output.c (shipout_text): Accept a length parameter, and use it.
1369         All callers adjusted.
1371 Mon Aug 29 12:27:19 1994  Francois Pinard  (pinard@icule)
1373         * m4.h: Include <unistd.h> if it exists.
1374         * stackovf.c: Don't.
1376         Clean up for current_diversion variable:
1377         * output.c: Move current_diversion from builtin.c.
1378         * m4.h: Declare current_diversion so builtin.c can access it.
1379         * output.c (output_init, make_diversion): Initialize or update
1380         current_diversion.
1381         * builtin.c (builtin_init, m4_divert): Leave current_diversion
1382         alone.
1384         Remove limit on number of diversions:
1385         * output.c: Replace ndiversion by diversions, declare it.
1386         (output_init): Allocate only diversion 0.
1387         (make_diversion): Allocate new diversions as needed.
1388         * m4.h, m4.c: Remove NDIVERSIONS and ndiversion related stuff.
1389         * m4.c: Still accept -N, but do nothing with it.
1390         Reported by David MacKenzie.
1392         Freeze diversions:
1393         * output.c (freeze_diversions): New function.
1394         * m4.h: Declare freeze_diversions.
1395         * freeze.c: Document frozen file format, revise it, call
1396         freeze_diversions to add diversions to frozen format, and code to
1397         reload them properly.
1398         * m4.c: Do not undivert automatically at end when status being
1399         frozen.  Do not call builtin_init when reloading frozen state.
1401         Speed up diversion processing:
1402         * output.c: Add INITIAL_BUFFER_SIZE, MAXIMUM_BUFFER_SIZE,
1403         COPY_BUFFER_SIZE, in-memory diversion buffers, struct diversion
1404         structure and variables, cached variables out of output_diversion,
1405         reallocate_diversion_for and OUTPUT_CHARACTER.
1406         (shipout_text, make_diversion, insert_diversion): Adapted to new
1407         structures.
1408         (insert_file): Use better buffering.
1409         Reported by David MacKenzie.
1411 Sun Aug 28 05:20:02 1994  Francois Pinard  (pinard@icule)
1413         * Makefile.in, lib/Makefile.in, checks/Makefile.in: Arrange so
1414         dist works from another build directory.
1416 Sat Aug 27 14:32:45 1994  Francois Pinard  (pinard@icule)
1418         * symtab.c (hack_all_symbols): Use hash_table_size instead of
1419         constant HASHMAX, for -H option to work better.
1421         * builtin.c (DECLARE): Simplify by using _ ().
1423         * freeze.c: New file.
1424         * Makefile.in: Compile it, distribute it.
1425         * m4.c: Recognize, document and process --freeze-state (-F) and
1426         --reload-state (-R) options.  Pass a true flag to builtin_init
1427         only if no reloading some state.
1428         * builtin.c (define_builtin): Remove static specifier.
1429         (find_builtin_by_name): Remove static specifier.
1430         (builtin_init): Accept and obey a flag argument.
1431         * m4.h: Add declarations for freeze.c, changes for builtin.c.
1433 Wed Aug 24 16:14:19 1994  Francois Pinard  (pinard@icule)
1435         * builtin.c (dumpdef_cmp): Rewrite so the cast protect the const
1436         specifier.
1438         * configure.in: Implement --with-dmalloc.
1439         * acconfig.h: Document WITH_DMALLOC.
1440         * m4.h: Add code for when WITH_DMALLOC.
1442 Mon Aug 15 12:38:05 1994  Francois Pinard  (pinard@icule)
1444         * m4.c (long_options): Use "error-output", the dash was missing.
1445         Reported by Akiko Matsushita.
1447 Fri Aug 12 16:38:01 1994  Francois Pinard  (pinard@icule)
1449         * m4.h: Include <sys/types.h>.
1450         * builtin.c, debug.c, m4.c, output.c, stackovf.c: Don't.
1451         * m4.h: Declare len_lquote and len_rquote as size_t, not int.
1452         int.
1453         * input.c: Declare len_lquote, len_rquote, len_bcomm and len_ecomm
1454         as size_t, not int.
1455         * builtin.c (dump_args): Declare len as size_t, not int.
1457         * debug.c: Prototype the forward declaration of debug_set_file.
1459         * builtin.c (m4_undivert):  Replace div by file, for avoiding the
1460         shadowing of this variable.
1461         * output.c (insert_diversion): Idem.
1463         * input.c: Delete def_rquote, def_lquote, def_bcomm and def_ecomm.
1464         (input_init): Duplicate default quote and comment strings.
1465         (set_quotes): Free previous quote strings in all cases.  Duplicate
1466         even default quote strings.
1467         (set_comment): Free previous comment strings in all cases.
1468         Duplicate even default comment strings.
1470         * configure.in: Updated for Autoconf 2.0.
1471         * Makefile.in (distclean-local): Also delete config.cache.
1473         * m4.c (usage): Reorganize the --help output by topic.  Include a
1474         description for debugging flags.
1476 Fri Jul 29 10:15:52 1994  Francois Pinard  (pinard@icule)
1478         * configure.in: If sigaction is available and SA_ONSTACK defined,
1479         use sigaction.  Otherwise, if sigvec is available and SV_ONSTACK
1480         defined, use sigvec.  Else don't compile stackovf.c.
1481         * stackovf.c (setup_stackovf_trap): Idem.
1482         Reported by Jim Avera, Karl Berry, Kaveh R. Ghazi, Matthias Rabe
1483         and Simon Leinen.
1485 Thu Jul 21 22:43:17 1994  Francois Pinard  (pinard@icule)
1487         * m4.c (usage): Replace printf par fputs.
1489 Mon Jul 18 23:48:23 1994  Francois Pinard  (pinard@icule)
1491         * Release 1.2
1493 Sun Jul 17 08:08:25 1994  Francois Pinard  (pinard@icule)
1495         * configure.in: Check for sigaction and sigvec.  Add a new delayed
1496         check for RLIMIT_STACK, combine in the checking for getrlimit.
1497         All those things are not universally available.
1498         * stackovf.c: Split setting up the trap handler and catching
1499         signals, for better taking care of various configure outcomes.
1500         * examples/stackovf.sh: Correct a typo.
1501         Reported by Eric Backus, Jim Avera and Jim Meyering.
1503 Sat Jul 16 20:36:19 1994  Francois Pinard  (pinard@icule)
1505         * ansi2knr.c: New version sent by its author, Peter Deutsch.
1507 Fri Jul 15 14:36:21 1994  Francois Pinard  (pinard@icule)
1509         * Makefile.in: Modify so parallel make will not try making
1510         lib/libm4.a twice simultaneously.
1511         Reported by Jim Meyering.
1513 Thu Jul 14 17:23:17 1994  Francois Pinard  (pinard@icule)
1515         * stackovf.c (setup_stackovf_trap): Replace "Don't" by "Do not" in
1516         error message, for when no code possibility exists.  Even if this
1517         line is completely #ifdef'ed out, it brings a syntax error.
1518         Reported by Andreas Schwab, Jim Meyering and Joseph E. Sacco.
1520         * Makefile.in (install): Have install depend on all too, for lib
1521         to be remade as needed.
1523         * examples/stackovf.sh: Try ksh, bsh and bash for shells
1524         providing ulimit, instead of using only ksh.
1525         Reported by Jim Avera and Joseph E. Sacco.
1527 Tue Jul 12 06:54:31 1994  Francois Pinard  (pinard@icule)
1529         * Makefile.in (check): Have it depend on all instead of m4.  In
1530         this way, a change in lib will be detected and processed.
1532         * builtin.c (numeric_arg): Use strtol and verify the conversion,
1533         instead of using sscanf which stops as soon as there is a
1534         non-digit in the input.  Previously, incr(1xyzzy), eval(1,2xyzzy)
1535         and divert(1xyzzy) were all accepted without any warning or error
1536         messages.
1537         * m4.h: Declare strtol as long if not including stdlib.h.
1538         * configure.in: Check for limits.h, and replace strtol if missing.
1539         * lib/Makefile.in: Substitute LIBOBJS.  Distribute strtol.c.
1540         * lib/strtol.c: New file, from elsewhere.
1541         Reported by Andreas Schwab.
1543 Thu Jul  7 22:38:10 1994  Francois Pinard  (pinard@icule)
1545         * macro.c (expand_macro): Cast value to (boolean) prior to
1546         assigning it to traced.
1547         Reported by Tom McConnell.
1549         * Makefile.in (m4): Always make all in lib first.
1550         Reported by Jim Meyering.
1552 Wed Jul  6 13:16:31 1994  Jim Avera (jima@netcom.com)
1554         * stackovf.c: Isolated OS-dependent sections; Improved portability,
1555         adding support for SunOS/BSD (sigvec, sigstack, and 4-parameter signal
1556         handlers), and a default error message if the fault address is not
1557         available (when neither siginfo.h nor BSD sigcontext are supported).
1558         * configure.in: Changes for stackovf.h: Check for sigcontext,
1559         sigaction, sigstack, and define rlim_t as int if necessary.
1560         * acconfig.h: Added HAVE_SIGCONTEXT and rlim_t.
1561         * examples/stackovf.sh: Run m4 -L99999999 to allow stack overflow.
1562         * ansi2knr.c: Fix for func-ptr args; convert "..." to varargs syntax.
1564 Tue Jul  5 19:13:54 1994  Francois Pinard  (pinard@icule)
1566         * configure.in: Use AC_SET_MAKE.
1567         * Makefile.in: Use @SET_MAKE@.
1568         Reported by Jim Meyering.
1570         * checks/check-them: Do not trap on SIGQUIT or SIGALRM.
1571         Reported by Ian Taylor.
1573 Sat Jul  2 00:58:47 1994  Francois Pinard  (pinard@icule)
1575         * configure.in: Remove dependency of USE_STACKOVF on STDC_HEADERS,
1576         because siginfo.h is unrelated to standard headers, and siginfo.h
1577         is already checked for.
1578         Reported by Joseph E. Sacco.
1580         * acconfig.h, aclocal.m4, m4.h: Replace HAVE_PROTOTYPES by
1581         PROTOTYPES.
1582         * aclocal.m4, configure.in: Replace AC_HAVE_PROTOTYPES by
1583         AC_PROTOTYPES.
1585 Wed Jun 29 22:41:53 1994  Francois Pinard  (pinard@icule)
1587         * builtin.c (substitute): Use \& to represent this part of the
1588         string which was matched by the whole regexp, instead of
1589         representing the whole string.  Any usage of \0 issues a warning
1590         and acts like \&, it will disappear in some subsequent release.
1592 Mon Jun 27 14:24:23 1994  Francois Pinard  (pinard@icule)
1594         * m4.c: Complete prototype for forwarded declaration of usage.
1596         * input.c (init_macro_token): Correct own reference in error
1597         message.  Previous name get_macro_func was referred to instead.
1598         (next_char):  Correct own reference in error message.  Previous
1599         name advance_input was referred to instead.
1601         * m4.h: Declare eval_t and unsigned_eval_t typedefs to 32 bits.
1602         * eval.c (logical_or_term, logical_and_term, or_term, xor_term,
1603         and_term, not_term, logical_not_term, cmp_term, shift_term,
1604         add_term, mult_term, exp_term, unary_term, simple_term): Add
1605         prototype to forwarded declarations.  Declare parameter v1 as
1606         eval_t * instead of int *.  Same for local variable v2 in dyadic
1607         functions.  Same for result in exp_term.
1608         * builtin.c (m4_eval): Declare value as eval_t instead of int.
1609         (ntoa): Declare value as eval_t instead of int.  Declare uvalue as
1610         unsigned_eval_t instead of unsigned int.  Change casts accordingly.
1611         (shipout_int): Cast first argument of ntoa to eval_t.
1612         Reported by Thorsten Ohl.
1614         * macro.c: Complete the prototypes of forwarded expand_macro and
1615         expand_token.
1616         Reported by Thorsten Ohl.
1618         * m4.h: Define voidstar as void * or char * depending on __STDC__.
1619         The Ultrix 3.1 compiler cannot do much with void pointers.
1621         * builtin.c (dumpdef_cmp): Replace void * by voidstar.
1622         * m4.c (xfree):  Replace void * by voidstar.
1623         Reported by Tom McConnell.
1625         * ansi2knr.1: New, from elsewhere.
1626         * Makefile.in (DISTFILES): Distribute ansi2knr.1
1628         * Makefile.in (stamp-h.in): Avoid running ./config.status if
1629         stamp-h does not exist yet.  This avoids running it a second time
1630         just after the initial ./configure.
1631         Reported by David MacKenzie and Tom McConnell.
1633         * m4.h: Replace the enum debug_info declaration with a series of
1634         #define's.  The Ultrix 3.1 compiler would otherwise need casting
1635         (int) to most references, when used in expressions.
1636         Reported by Tom McConnell.
1638 Sat Jun 25 00:10:05 1994  Francois Pinard  (pinard@icule)
1640         * aclocal.m4: Replace FP_PROTOTYPES by AC_HAVE_PROTOTYPES,
1641         following an idea from Brook G. Milligan.  AC_HAVE_PROTOTYPES
1642         calls the compiler.  Previously, FP_PROTOTYPES was only calling
1643         the preprocessor; by not being subject to CFLAGS, this was
1644         discouraging those flags asking for ANSI compilation.
1645         * acconfig.h: Document HAVE_PROTOTYPES.
1646         * configure.in: Use AC_HAVE_PROTOTYPES instead of FP_PROTOTYPES.
1647         * m4.h: Define _() according to HAVE_PROTOTYPES, not __STDC__.
1648         Reported by Eric Backus.
1650         * configure.in: Substitute CFLAGS and LDFLAGS, taking their value
1651         from the environment.  Default CFLAGS to -g if not set.
1652         * Makefile.in: Have CFLAGS and LDFLAGS substituted from configure.
1653         * lib/Makefile.in: Have CFLAGS substituted from configure.
1654         Reported by Eric Backus and Tom McConnell.
1656         * configure.in: m4_undefine changeword before using AC_ENABLE.
1658         * m4.h: Declare prototypes for error (for ANSI compilers only),
1659         prefix_all_builtins and reference_error.
1660         Reported by Tom McConnell.
1662         * input.c (set_word_regexp): Do not try to initialize the array
1663         test from a string, this does not work with non-ANSI compilers.
1664         Reported by Eric Backus.
1666         * Makefile.in (dist): Clean examples/ before saving it.
1667         (distclean-local): Also remove stamp-h.
1668         Reported by Eric Backus.
1670         * Makefile.in (_stackovf.c): Goal for compiling stacokovf.c with
1671         non ANSI compilers.
1672         Reported by Tom McConnell.
1674         * checks/Makefile.in (clean): Depends on mostlyclean.
1675         (mostlyclean): New goal.
1677 Fri Jun 24 23:30:31 1994  Francois Pinard  (pinard@icule)
1679         * Makefile.in (DISTFILES): Distribute install.sh.
1680         * install.sh: New file, copied from elsewhere.
1681         Reported by Assar Westerlund and Kaveh R. Ghazi.
1683 Thu Jun 23 00:00:30 1994  Francois Pinard  (pinard@icule)
1685         * configure.in: Define ENABLE_CHANGEWORD if --enable-changeword.
1686         * acconfig.h: Explain ENABLE_CHANGEWORD.
1688         [These modifs all depend upon ENABLE_CHANGEWORD and are adapted
1689         from code provided by Pete Chown]
1690         * m4.h: Add original_text field to u_t variant of union u.
1691         Declare TOKEN_DATA_FUNC macro.
1692         * builtin.c: Declare changeword.
1693         (m4_changeword): New function.
1694         * input.c: Include "regex.h", define variables with word regexps.
1695         (input_init): Initialize the word regexp.
1696         (set_word_regexp): New.
1697         (next_token): Declare local variables, use the previous code if
1698         default_word_regexp is true.  Else, match using a new code.  Save
1699         the original text.
1700         * macro.c (expand_token): Ship out original text if not a macro
1701         name.
1702         Reported by Krste Asanovic and Pete Chown.
1704         [These modifs all depend upon ENABLE_CHANGEWORD]
1705         * m4.h: Declare external user_word_regexp.
1706         * m4.c: Declare user_word_regexp, and initialize it from
1707         --word-regexp or -W, or NULL if not specified.
1708         * input.c: Use user_word_regexp if specified, instead of
1709         DEFAULT_WORD_REGEXP.
1711         * Makefile.in (m4): Revert Jan 3 1994 change.  I'm unable to
1712         agree with it.
1714         * Makefile.in, lib/Makefile.in: Limit suffixes to .c and .o.
1715         * checks/Makefile.in: Empty the suffix list.
1716         Reported by Geoff Russell, Joel Sherrill and Roland McGrath.
1718         * m4.c: Declare nesting_limit and initialize it to 250.
1719         Implement -LNUMBER or --nesting-limit=NUMBER to change its
1720         value.
1721         * m4.h: Declare nesting_limit as external.
1722         * macro.c (expand_macro): Stop execution whenever nesting limit
1723         is exceeded.
1724         Reported by Bengt Mertensson.
1726         * eval.c (evaluate): Diagnose excess characters in eval input.
1727         Things like `eval(08)' used to return 0 with no diagnostic.
1729         * m4.h: Capitalize first letter of all macro arguments in
1730         definitions.
1732         * m4.c: Declare warning_status, initialize it to 0.  Add new
1733         option -E, or --fatal-warnings, which sets warning_status to
1734         EXIT_FAILURE instead.
1735         * m4.h: Declare external warning_status.  Define EXIT_SUCCESS and
1736         EXIT_FAILURE if not otherwise done by header files.
1737         * m4.c: Delete declarations for EXIT_SUCCESS and EXIT_FAILURE.
1738         * m4.c, input.c, output.c, symtab.c, builtin.c, macro.c, debug.c,
1739         eval.c: Replace 0 by warning_status and 1 by EXIT_FAILURE in first
1740         argument of all M4ERROR calls.
1741         Reported by Noah Friedman.
1743         * examples/incl-test.m4: Renamed from incl_test.m4.
1744         * examples/include.m4: Include incl-test.m4 instead of
1745         incl_test.m4.
1746         * examples/multiquotes.m4: Renamed from multi-quotes.m.
1748 Wed Jun 22 21:58:54 1994  Francois Pinard  (pinard@icule)
1750         * configure.in: Avoid USE_STACKOVF if <siginfo.h> not found.  Note
1751         that Jim developped stackovf.c on a 486 running SVR4.0 (ESIX), and
1752         also tested it on a Sun Sparc workstation running SunOS 4.x.
1754         * format.c (format): When not HAVE_EFGCVT, m4 was failing the
1755         49.format check, abusing a `union values' argument with sprintf
1756         without selecting the proper field.  Now, save the formatting type
1757         first, delaying the fetch of the corresponding argument.
1758         Reported by Joseph E. Sacco and Tom Quinn.
1760         * format.c (format): Remove const from char *fmt declaration when
1761         not HAVE_EFGCVT, because a NUL may be forced into it.
1763         * m4.h: Declare atof() when not STDC_HEADERS.
1764         Reported by Joseph E. Sacco.
1766         * Regenerate configure using Autoconf 1.11, this corrects a
1767         problem about an incorrect cpp seting on NeXT 3.1.
1768         Reported by Alexander Lehmann.
1770 Sun Jun  5 16:25:19 1994  Francois Pinard  (pinard@icule)
1772         * m4.h (_): Change argument from `x' to `Args'.
1774 Wed May  4 23:59:39 1994  Francois Pinard  (pinard@icule)
1776         * Makefile.in: Remove all occurrences of $(MFLAGS), which were
1777         bringing more evil than good on a few systems.
1778         Reported by Greg A. Woods.
1780 Fri Apr 22 15:59:35 1994  Francois Pinard  (pinard@icule)
1782         * m4.h: Rename Args() to _().
1783         * m4.h: Remove extern specifier from all function declarations.
1785 Fri Apr 22 15:51:21 1994  Jim Avera (jima@netcom.com)
1787         * stackovf.c: New file implementing stack-overflow detection.
1788         * configure.in: Check for getrlimit, sigaction.  If all of
1789         standard headers, getrlimit and sigaction, define USE_STACKOVF and
1790         substitute ${U}stackovf.o for STACKOVF.
1791         * acconfig.h: Declare USE_STACKOVF.
1792         * Makefile.in: Distribute stackovf.c, link with $(STACKOVF).
1793         * m4.h: Declare setup_stackovf_trap().
1794         * m4.c: Call setup_stackovf_trap().
1795         * tests/stackovf_test.sh: New file.
1797 Wed Apr 13 14:10:30 1994  Francois Pinard  (pinard@icule)
1799         * checks/Makefile.in: Rename .all-stamp to stamp-checks.
1801         * Makefile.in (Makefile, etc.): Adapt for Autoconf 1.8.
1803 Sun Jan 30 14:24:19 1994    (pinard at icule)
1805         * m4.h: Remove definition of volatile, not used anymore.
1806         Reported by Jim Meyering and Joseph E. Sacco.
1808         * m4.h: Consistently use `do { ... } while (0)' in macros, instead
1809         of `if ... else /* nothing */' for if macros.
1810         Reported by Jim Meyering.
1812         * builtin.c (m4_regexp): Reorganize the code for avoiding a
1813         warning from gcc about `repl' possibly used before defined.
1814         Reported by Jim Meyering.
1816         * m4.h: Avoid a pre-ANSI <memory.h> together with <string.h>.
1817         Reported by Jim Meyering.
1819 Tue Jan 25 18:39:37 1994  Francois Pinard  (pinard at icule)
1821         * m4.h: Move the conditional definition of volatile after the
1822         inclusion of system files, because they may define it first.
1824 Tue Jan  4 19:46:50 1994  Francois Pinard  (pinard@icule)
1826         * checks/Makefile.in (CHECKS): Add a useless `*' before `[', to
1827         get around a problem with Alpha make seeing a syntax error, there.
1828         Reported by Vern Paxson.
1830 Mon Jan  3 00:21:45 1994  Francois Pinard  (pinard@icule)
1832         * Makefile.in: Do not define LDFLAGS, use CFLAGS on link calls.
1833         Reported by Richard Stallman.
1835 Sat Dec 25 08:06:05 1993  Francois Pinard  (pinard@icule)
1837         * configure.in: Correct test for strerror, AC_FUNC_CHECK was used
1838         instead of AC_HAVE_FUNCS.
1839         Reported by Noah Friedman.
1841 Wed Dec  1 09:37:53 1993  Francois Pinard  (pinard@icule)
1843         * m4.c: Initialize show_help and show_version to zero.
1845         * m4.c: Ensure EXIT_SUCCESS and EXIT_FAILURE are defined.
1846         Use them in exit() and usage() calls.
1848 Sat Nov 27 10:43:24 1993  Francois Pinard  (pinard@icule)
1850         * m4.h: Delete extern sys_nerr, sys_errlist declarations, and
1851         syserr() macro.  Delete errref, add reference_error and M4ERROR.
1852         * m4.c: Replace errref, which was returning an input reference
1853         string, with reference_error, which prints it on standard error.
1854         * builtin.c, output.c: Use errno as second parameter to error,
1855         instead of using syserr() with %s.
1856         * *.c: Use M4ERROR instead of error: no more errref() with %s.
1857         Doing so, the program name appears after the input reference
1858         instead of before, which eases M-x next-error processing.
1860 Wed Nov 24 22:16:15 1993  Francois Pinard  (pinard@icule)
1862         * checks/get-them: Escape braces with backslashes in patterns,
1863         because HPUX-9.01 awk needs this.
1864         Reported by Jim Meyering.
1866 Mon Nov 22 10:55:52 1993  Francois Pinard  (pinard@icule)
1868         * builtin.c: Declare "FILE *popen ();".
1870         * m4.h: Remove MESSAGE{,1,2}, WARNING1, FATAL{,1}, INTERNAL_ERROR
1871         macros, replace error_message_prefix() declaration by errref()'s.
1872         Declare xrealloc, for use in errref().
1873         * m4.c: Delete error_message_prefix() function, add errref().
1874         * *.c: Use error() systematically in place of all error macros,
1875         now that error() flushes stdout first.  Make needed adjustments.
1877         * m4.h: Remove const in sys_errlist[] declaration, it creates
1878         conflicts on SGI and Alpha.
1879         Reported by Kaveh R. Ghazi.
1881 Sat Nov 20 08:26:15 1993  Francois Pinard  (pinard@icule)
1883         * m4.c: Include <getopt.h> instead of "getopt.h".
1885         * configure.in: Output to config.h.  Use HAVE_FUNCS preferably.
1886         * acconfig.h: New, for documenting HAVE_EFGCVT.
1887         * Makefile.in: Distribute acconfig.h, .stamp-h.in and config.h.in,
1888         use them wherever appropriate.  Also use -I. for compilations.
1889         * lib/Makefile.in: Use -I.. for compilations.
1890         * *.c: Include <config.h> or "config.h".
1892         * m4.h: Test for HAVE_MEMORY_H instead of NEED_MEMORY_H.
1893         * configure.in: Use AC_HAVE_HEADERS(memory.h), delete AC_MEMORY_H.
1895 Wed Nov 17 09:34:55 1993  Francois Pinard  (pinard@icule)
1897         * builtin.c (m4_eval): Cast strlen to (int) before comparing.
1899         * input.c (input_init): Initialize quote and comment strings
1900         explicitely instead of calling set_quotes and set_comment: by
1901         doing so, we ensure we do not free uninitialized variables.
1903         * checks/check-them: Reverse arguments to both diff, so the
1904         expected is on the left and the obtained on the right.
1906         * m4.h: Add MESSAGE{,1,2}, WARNING1, FATAL{,1} and INTERNAL_ERROR
1907         macros. Delete declarations for m4error, warning, fatal and
1908         internal_error, add declaration for error_message_prefix.
1909         * m4.c:  Delete m4error, warning, fatal and internal_error
1910         routines, add error_message_prefix routine.
1911         * *.c: Replace m4error routine calls with MESSAGE* macro calls,
1912         warning with WARNING*, fatal with FATAL* and internal_error with
1913         INTERNAL_ERROR*.
1914         * Makefile.in (_m4.c): Do not adjust ansi2knr output for va_alist,
1915         this is not needed anymore.
1917         * m4.h: Declare extern FILE *debug.  Add DEBUG_PRINT{1,3} and
1918         DEBUG_MESSAGE{,1,2} macros.  Delete declarations for debug_print
1919         and debug_message, add declaration for debug_message_prefix.
1920         * debug.c: Remove static specifier for FILE *debug declaration.
1921         Delete debug_print and debug_message routines, add
1922         debug_message_prefix routine.
1923         * builtin.c, debug.c: Replace debug_print routine calls with
1924         DEBUG_PRINT* macro calls.
1925         * input.c, path.c: Replace debug_message routine calls with
1926         DEBUG_MESSAGE* macro calls.
1928         * m4.h: Remove inclusion of <varargs.h>.
1929         * debug.c: Include <stdarg.h> or <varargs.h>.
1930         (trace_format): Use stdarg instead of varargs if __STDC__.
1932         * configure.in: Remove checks for vfprintf and _doprnt.  These
1933         implementations use varargs tricks which are not portable enough.
1934         * lib/vfprintf.c: Deleted.
1935         * lib/_doprnt.c: Deleted.
1936         * lib/Makefile.in: Adjusted accordingly.  Remove LIBOBJS.
1937         Reported by Joel Sherrill.
1939         * path.c (add_include_directory): Use xstrdup.
1941         * builtin.c (find_builtin_by_name): Declare static.
1943         * *.[ch]: Add const to a few "char *" declarations.
1945         * configure.in: Remove commented tests for fileno() and fstat().
1946         * debug.c: Remove comments about HAVE_FILENO and HAVE_FSTAT.
1948         * debug.c (debug_flush_files): New.
1949         * m4.h: Declares it.
1950         * builtin.c (m4_syscmd, m4_esyscmd): Use it.
1951         Reported by Nicolas Pioch.
1953 Fri Nov 12 10:02:26 1993  Francois Pinard  (pinard@icule)
1955         * Makefile.in (m4.dvi): Use m4.texinfo instead of m4.texi.
1956         Reported by Joel Sherrill.
1958         * builtin.c (prefix_all_builtins): Instead of the table size, use
1959         the null entry at end for stopping the loop.  It was overwritten.
1960         Reported by Andreas Schwab and Jim Meyering.
1962         * builtin.c (prefix_all_builtins): Cast xmalloc to (char *).
1963         Reported by Kaveh R. Ghazi.
1965         * macro.c (call_macro): Add * in (*SYMBOL_FUNC (sym)) (...).
1966         Reported by Karl Vogel.
1968 Tue Nov  9 09:31:47 1993  Francois Pinard  (pinard@icule)
1970         * m4.h: Do not define volatile if already defined.
1971         Reported by Rene' Seindal.
1973         * lib/Makefile.in: Add a forgotten ALLOCA=@ALLOCA@.  Grrr!
1975         Reported by Bernhard Daeubler, Eric Backus, Hal Peterson, Hoang
1976         Uong, Ian Taylor, Kaveh R. Ghazi, Tom McConnell and Walter Wong.
1978 Mon Nov  8 21:11:44 1993  Francois Pinard  (pinard@icule)
1980         * m4.h: Define strchr and strrchr in terms of index and rindex,
1981         instead of the other way around.
1982         * builtin.c, m4.c, path.c: Use strchr instead of index.
1984         * input.c (next_char): Remove a "break;" after a "return ...;".
1985         Reported by Tom McConnell.
1987 Mon Nov  8 12:45:34 1993  Francois Pinard  (pinard@icule)
1989         * Release 1.1
1991         * configure.in: Do not copy check files in the build hierarchy.
1992         * checks/check-them: Identify the m4 version being checked.  For
1993         finding m4, look in $PATH instead of in the parent directory.
1994         * Makefile.in (check): Prepend `pwd` to $PATH before checking.
1995         * checks/Makefile.in (.all-stamp): Always create check files in
1996         the source hierarchy, not anymore in the build hierarchy.
1997         (check): cd to the source hierarchy before performing checks.
1998         Do not copy nor clean COPYING anymore, take it from `..'.
1999         Reported by Tom McConnell.
2001         * Makefile.in (Makefile): Use $(SHELL).
2002         (config.status): Use $(SHELL).  Use "config.status --recheck"
2003         instead of "configure --no-create", which is obsolete.
2004         Reported by Tom McConnell.
2006 Fri Nov  5 09:49:30 1993  Francois Pinard  (pinard@compy.IRO.UMontreal.CA)
2008         * m4.c (usage): Use "%s" instead of "m4" in format string.
2009         Reported by Jim Meyering.
2011         * Makefile.in: Distribute mkinstalldirs.
2012         Reported by Pierre Gaumond.
2013         Reported by Jim Meyering.
2014         Reported by Tom McConnell.
2015         Reported by Andreas Gustafsson.
2017         * checks/check-them: Renamed from checks/check_them.
2018         * checks/get-them: Renamed from checks/get_them.
2019         * checks/.all-stamp: Renamed from checks/.all_stamp.
2020         * checks/Makefile.in: Changed accordingly.
2021         Reported by Jim Meyering.
2023 Thu Nov  4 13:50:52 1993  Francois Pinard  (pinard@lagrande.IRO.UMontreal.CA)
2025         * lib/Makefile.in (dist): Correct permissions on files.
2027         * output.c: Declare tmpfile, some systems don't.
2029 Wed Nov  3 09:09:16 1993  Francois Pinard  (pinard@icule)
2031         * checks/Makefile.in (dist): Correct permissions on files.
2033         * Makefile.in (dist): Ensure recursive linking for subdirectory
2034         `examples', also set read/write permissions on all its files.
2036         * mkinstalldirs: New, from elsewhere.
2037         * Makefile.in: Use it.
2039         * debug.c: Synchronize debug messages and regular output when
2040         the debug file and stdout are redirected to the same file.
2041         * configure.in: Add (commented) checks for fileno and fstat.
2042         Reported by Jim Avera.
2044         * builtin.c (m4_ifelse): Diagnose excess arguments if 5, 8, 11,
2045         etc., arguments, then ignore the superfluous one.  m4 used to
2046         diagnose missing arguments and return the empty string.
2047         Reported by Nick S. Kanakakorn.
2049 Tue Nov  2 00:55:41 1993  Francois Pinard  (pinard@icule)
2051         * m4.c (main): At end of all input, ensure all undiverted text
2052         goes to the main output stream.
2053         Reported by Andreas Gustafsson.
2055         * m4.c (main): exit (0), instead of return 0.
2057         * m4.c: Implement -P and --prefix-builtins.
2058         * builtin.c: Delete const specifier on builtin_tab.
2059         (prefix_all_builtins): New.
2060         Reported by Noah Friedman.
2061         Reported by Scott Bartram.
2063         * c-boxes.el: New, from elsewhere.
2064         * Makefile.in: Distribute it.
2066         * m4.h: Do not define bcopy if <string.h> defines it.
2067         Reported by Stephen Perkins.
2069         * builtin.c (define_macro): Allow a missing second argument, in
2070         which case it is implied empty.  Affects define and pushdef.
2071         Reported by Eric Allman.
2073 Mon Nov  1 07:45:24 1993  Francois Pinard  (pinard@icule)
2075         * m4.h: Add blind_if_no_args in struct builtin, blind_no_args in
2076         struct symbol adn SYMBOL_BLIND_NO_ARGS macro.
2077         * builtin.c: Initialize all the blindness fields in builtin_tab.
2078         (define_builtin): Copy the blindness of a builtin into its symbol.
2079         * macro.c (expand_token): Avoid processing a blind builtin if the
2080         next character is not an opening parenthesis.
2081         Reported by David MacKenzie.
2082         Reported by Noah Friedman.
2084         * configure.in: Ensure an exit status of 0 on completion.
2085         Reported by Vivek P. Singhal.
2087         * eval.c (eval_lex): Admit both lower and upper case letters for
2088         bases greater than 10.  Only lower case letters were accepted.
2090         * eval.c (eval_lex): Recognize 0bDIGITS and 0rRADIX:DIGITS syntax.
2091         Reported by Krste Asanovic.
2093         * eval.c:  Rename NOT to LNOT.  Add XOR, NOT, LSHIFT and RSHIFT.
2094         * eval.c (logical_not_term): New name for not_term.
2095         * eval.c (xor_term): New, between or_term and and_term.
2096         * eval.c (not_term): New, between and_term and logical_not_term.
2097         * eval.c (shift_term): New, between cmp_term and add_term.
2098         Reported by Krste Asanovic: ~, ^, <<, >>.
2099         Reported by Ben A. Mesander: ** vs ^.
2101         * m4.c: Delete xmalloc.c, xrealloc.c, xstrdup.c.
2102         * m4.h: Delete xrealloc.c.
2103         * lib/xmalloc.c: New, from elsewhere.
2104         * lib/xstrdup.c: New, from elsewhere.
2105         * lib/Makefile.in: Distribute and compile them.
2107         * m4.c: Change progname to program_name.
2108         * builtin.c, eval.c, m4.c, m4.h: Rename error to m4error.
2109         * lib/error.c: New, from elsewhere.
2110         * lib/Makefile.in: Distribute and compile error.c.
2111         * configure.in: Check AC_VPRINTF and for strerror.
2112         * m4.c: Delete cmd_error.  Use error instead.
2113         * m4.c: Change label capitalisation to "ERROR", "Warning", etc.
2115         * m4.h: Delete #define const, let Autoconf takes care of this.
2117         * m4.c: Remove all code conditionalized by IMPLEMENT_M4OPTS.
2118         Merge parse_args into main.  Declare argv to be `char *const *',
2119         then remove superfluous casts.
2121         * m4.c: Rename --no-gnu-extensions to --traditional.
2122         Reported by Ben A. Mesander.
2124         * m4.c (usage): Add a status parameter.  Supply one in various
2125         calls.  Add --help processing.  Remove -V for --version.
2127         * lib/Makefile.in: Put $(CFLAGS) last in .c.o rule.
2129         * lib/Makefile.in: Have an AR=ar declaration.
2130         Reported by Eric Backus.
2131         Reported by Bjorn R. Bjornsson.
2132         Reported by Tom Tromey.
2133         Reported by Kristine Lund.
2134         Reported by Marion Hakanson.
2136 Sat Oct 30 12:51:47 1993  Francois Pinard  (pinard@icule)
2138         * Makefile.in (m4.info): Use -I$(srcdir) on $(MAKEINFO).
2139         Reported by Noah Friedman.
2141 Mon Oct 25 14:58:48 1993  Francois Pinard  (pinard@icule)
2143         * Makefile.in: Remove MDEFINES and cleanup.
2145 Wed Jun  9 14:59:46 1993  Francois Pinard  (pinard@icule)
2147         * Makefile.in (dist): Replace "echo `pwd`" by a mere "pwd".
2148         Create a gzip file.
2150 Sat Feb  6 14:59:22 1993  Francois Pinard  (pinard@icule)
2152         * Makefile.in, lib/Makefile.in, check/Makefile.in: In dist goals,
2153         ensure 777 mode for directories, so older tar's will restore file
2154         modes properly.
2156 Sun Jan 17 15:38:05 1993  Francois Pinard  (pinard@icule)
2158         * Makefile.in, lib/Makefile.in: Put $(CFLAGS) after $(CPPFLAGS),
2159         so the installer can override automatically configured choices.
2160         Reported by Karl Berry.
2162 Fri Jan 15 16:07:00 1993  Francois Pinard  (pinard@icule)
2164         * lib/vfprintf.c: Stolen from Oleo distribution and adapted.  The
2165         previous version was not working properly on m68k-hp-bsd4.3.
2166         Reported by Roland McGrath.
2168         * lib/_doprnt.c: Stolen from Oleo distribution.
2169         * configure.in: Check for _doprnt.c if vfprintf.c selected.
2170         * lib/Makefile.in: Distribute _doprnt.c.
2171         Do not distribute regex.[ch].old anymore.
2173 Fri Jan  1 19:42:23 1993  Francois Pinard  (pinard at icule)
2175         * Makefile.in, lib/Makefile.in: Reinstate $(CPPFLAGS), use it.
2176         Richard wants it there.
2178 Sun Dec 27 07:01:54 1992  Francois Pinard  (pinard at icule)
2180         * Makefile.in: Add DEFS to MDEFINES.
2181         * lib/Makefile.in (.c.o): Remove $(CPPFLAGS).
2182         (libm4.a): Remove the library before creating it.
2183         (distclean): Remove tags and TAGS too.
2185 Wed Dec 23 12:46:55 1992  Francois Pinard  (pinard at icule)
2187         * Makefile.in (dvi, m4.dvi): New goals.
2189         * builtin.c, eval.c, format.c, input.c, m4.[ch], m4.texinfo,
2190         macro.c, output.c, path.c, symtab.c: Change Copyright from
2191         1989-1992 to the explicit enumeration 1989, 1990, 1991, 1992.
2193         * examples/divert.m4: Deleted, this bug has been corrected.
2195         * Makefile.in (texclean, mostlyclean): New goals.
2197         * Makefile.in (clean): Remove clutter from ansi2knr.
2198         Reported by Pierre Gaumond.
2199         Reported by Greg A. Woods.
2201 Sun Dec 20 10:40:20 1992  Francois Pinard  (pinard at icule)
2203         * Makefile.in: Remove $(CPPFLAGS) from the .c.o rule.  The user
2204         might well use CFLAGS is s/he needs it.
2206         * Makefile.in: Allow installation of info files from a separate
2207         build directory.
2208         Reported by Jason Merrill.
2209         Reported by David MacKenzie.
2210         Reported by Skip Montanaro.
2211         Reported by Erez Zadok.
2212         Reported by Assar Westerlund.
2214 Sat Dec 19 08:21:34 1992  Francois Pinard  (pinard at icule)
2216         * Release 1.0.3
2217         This is still a beta release for the future GNU m4 version 1.1.
2219         * lib/alloca.c: New, from elsewhere.
2220         * lib/Makefile.in: Distribute it.  Define and use $(ALLOCA).
2222         * m4.h: Do not define index/rindex if already defined.  If
2223         FALSE/TRUE are already defined, do not redefine them, but merely
2224         define boolean typedef to int.
2226         * Makefile.in: Use $(DEFS) while compiling ansi2knr.
2227         * ansi2knr.c: Rewrite #ifdef HAVE_STRING_H || STDC_HEADERS,
2228         because some C compilers do not like connectives with #ifdef.
2229         * m4.h: Define `volatile' only if __GNUC__, instead of once for
2230         __GNUC__ and once for __STDC__.
2231         * lib/regex.h: Leave const alone, AC_CONST will take care of it.
2233         * checks/Makefile.in: Use .all_stamp instead of $(CHECKS) for
2234         Makefile dependencies.  Without it, make keeps destroying and
2235         remaking $(CHECKS) in a loop (why?).  Distribute .all_stamp.
2237         * m4.h, m4.c, builtin.c, output.c: Change all divertion/DIVERTION
2238         to diversion/DIVERSION, this was a spelling error.
2240         * m4.c: Declare version[], remove #include "version.h".
2241         * version.h: Deleted.
2242         * Makefile.in: Remove references to version.h.
2244         * output.c (shipout_text): Centralize all `#line NUM ["FILE"]'
2245         production, by using a simpler and more robust algorithm.  This
2246         solves the problem of synclines sometimes written in the middle of
2247         an output line.  Delete sync_line() and output_lines variable.
2248         * m4.h: Remove sync_line prototype and output_lines declaration.
2249         * input.c (next_char), output.c (shipout_text): Remove references
2250         to output_lines.
2251         * input.c (push_file, pop_file): Merely put the value -1 in
2252         output_current_line instead of calling sync_line, for delaying a
2253         single `#line NUM FILE' before next output line.  Do not test
2254         for sync_output, because this is unnecessary clutter.
2255         * output.c (make_divertion, insert_divertion): Idem.
2256         * input.c: Rename must_advance_line to start_of_input_line, for
2257         consistency.
2259         * debug.c (trace_header): Select a new debug line format, which
2260         better complies with GNU standards for formatting error messages.
2261         With option `-dfl', M-x next-error might be used on the output.
2262         * m4.c (vmesg): Adjust format of error output to GNU standards.
2263         * m4.texinfo: Adjust examples for `make check' to work.
2265         * m4.h, builtin.c, debug.c, input.c, macro.c, path.c: Use upper
2266         case for enum debug_info constants, which were all lower case.
2268         * builtin.c (m4_regexp, m4_patsubst): Use re_search instead of
2269         re_search_2.
2270         * lib/regex.[ch]: Use new version from textutils 1.3.6, with some
2271         collected patches.  I tried a few times using newer regex.[ch], it
2272         mysteriously stopped aborting with this one.  Insecure feeling...
2273         * lib/Makefile.in: Distribute regex.[ch].old, just in case!
2275 Fri Dec 18 11:08:03 1992  Francois Pinard  (pinard at icule)
2277         * m4.c: Change `--no-warnings' to `--silent'.
2278         Reported by David MacKenzie.
2280         * m4.c: Put all M4OPTS code upon IMPLEMENT_M4OPTS control, and
2281         leave it off for now.  See comment in m4.c for justification.
2282         Reported by David MacKenzie.
2284         * configure.in: Replace AC_USG by AC_HAVE_HEADERS(string.h).
2285         * m4.h, ansi2knr.c, lib/regex.h: Replace USG by HAVE_STRING_H.
2287         * Makefile.in: Add a new `info' goal.  Use macro MAKEINFO.
2289         * Makefile.in: Ensure recursive cleaning is done before local
2290         cleaning for all clean goals.
2292         * builtin.c (ntoa): Ensure the value is always interpreted as a
2293         signed quantity, whatever the radix is.
2295 Wed Nov 18 07:57:19 1992  Jim Meyering  (meyering@idefix)
2297         * builtin.c, format.c, input.c: Split long lines.
2298         * m4.c: Use typedef macro_definition instead of struct
2299         macro_definition.
2300         * symtab.c: Use typedef symbol instead of struct symbol.
2302 Tue Nov 17 01:58:40 1992  Francois Pinard  (pinard at icule)
2304         * *.[ch]: Remove all trailing whitespace, in code and comments.
2306         * configure.in: Find some awk.
2307         * Makefile.in: Add $(AWK) to MDEFINES.
2308         * checks/Makefile.in: Transmit $(AWK) to get_them.
2309         * checks/get_them: Use $AWK instead of gawk.  Add a close in the
2310         awk script when switching files, because without this, mawk runs
2311         out of file descriptors.
2313 Mon Nov 16 20:42:56 1992  Francois Pinard  (pinard at icule)
2315         * Makefile.in (realclean): Delete m4.info*.
2316         Reported by Jim Meyering.
2318         * Makefile.in: Adjust and link with checks/Makefile.
2319         * checks/Makefile.in: New.
2320         * configure.in: Output checks/Makefile.
2322         * checks/get_them: Have the dnl header of each test more
2323         recognizable by next-error, also use a better message.
2325 Mon Nov 16 07:48:52 1992  Jim Meyering  (meyering@idefix)
2327         * m4.h [__GNUC__]: Use __volatile__ instead of `volatile.'
2328         And use that only if __GNUC__ since we're using it's GCC-specific
2329         semantics that tell the compiler the associated function doesn't
2330         return.
2332         * builtin.c (substitute): Don't use character as an array index.
2333         (dumpdef_cmp): Make formal arguments `const void *' to avoid
2334         warnings with gcc -W -Wall on systems with qsort prototype.
2335         (m4_errprint): Cast obstack_finish to `char *' to avoid warnings
2336         from gcc -W -Wall.
2338         * eval.c (most functions): Add parentheses to assignments used
2339         as truth values go avoid warnings from gcc -Wall.
2341         * input.c, m4.c, output.c, path.c, symtab.c: Declare static
2342         any functions that don't need external scope.
2344         * builtin.c, debug.c, format.c, m4.c, m4.h, macro.c, symtab.c
2345         (many functions and arrays): Declare `const'.
2347 Sun Nov 15 09:42:09 1992  Francois Pinard  (pinard at icule)
2349         * *.[ch]: Rename nil to NULL, using the declaration from <stdio.h>,
2350         removing the declaration from m4.h.  Also rename false to FALSE
2351         and true to TRUE.
2353         * lib/Makefile.in (Makefile): New goal.
2355         * Makefile.in, lib/Makefile.in: Add a .c.o rule, so CFLAGS is not
2356         so heavily loaded.  It gets more easily overridable, calling make.
2357         Reported by Jim Meyering.
2359         * Makefile.in (dist): Get .fname from the current directory name,
2360         instead of from version.h.  I need updating many files manually,
2361         when the version changes, version.h is just one of them.
2363 Sat Nov 14 11:01:20 1992  Francois Pinard  (pinard at icule)
2365         * m4.h: Remove the tag `boolean' on the enum introducing typedef
2366         `boolean'.  This tag conflicts with <sys/types.h> on SVR4.
2367         Reported by Tom McConnell.
2369 Fri Nov 13 00:12:50 1992  Francois Pinard  (pinard at icule)
2371         * m4.texinfo: Correct the examples for 33.divert, 38.divnum,
2372         39.cleardiv, which were describing missing or spurious newlines.
2373         Modify examples 52.eval, 53.esyscmd and 54.sysval so the results
2374         do not depend on machine word size, `/bin/false' implementation,
2375         or `wc' output format.  `make check' is more dependable, now.
2377         * checks/check_them: Summarize the failed tests by listing their
2378         name, at end.  If none, issue `All checks successful'.  Output
2379         `Checking' instead of `Input file:'.
2381         * checks/get_them, checks/check_them: Reindented.
2383         * Makefile.in (dist): chmod a+r before making the tar file.
2385 Thu Nov 12 14:42:57 1992  Francois Pinard  (pinard at icule)
2387         * builtin.c (m4_dnl): Diagnose any parameter to `dnl'.
2389         * input.c (next_token): Reinitialize token_buttom just after using
2390         it as a watermark with obstack_free.  Or else, a future token, big
2391         enough for triggering reallocation of the obstack chunk, could
2392         void the initialized value of token_buttom, later causing panic in
2393         obstack_free.  Rename token_buttom to token_bottom everywhere.
2395         * m4.h: Before declaring errno, first include <errno.h> and
2396         ensure that it does not define errno.
2397         Reported by Richard Stallman.
2399 Wed Nov 11 17:40:35 1992  Francois Pinard  (pinard at icule)
2401         * builtin.c: Define and use DECLARE macro for builtins.
2403         * builtin.c (m4_ifelse): Avoid any diagnostic when exactly one
2404         argument, this is a common idiom for introducing long comments.
2406         * builtin.c (m4_ifelse): If 3n + 2 arguments, diagnose missing
2407         arguments.  The last argument was silently ignored.
2409         * m4.c (cmd_error): Add a missing semicolon before va_end().
2411 Tue Nov 10 08:57:05 1992  Francois Pinard  (pinard at icule)
2413         * Makefile.in: Now handle protoized sources.  Define and use U.
2414         Compile and use ansi2knr with old compilers.  Update DISTFILES.
2415         Add `aclocal.m4' to `configure' dependencies.
2416         * ansi2knr.c: New, from Ghostscript distribution.
2417         * configure.in: Define U through FP_PROTOTYPES for old compilers.
2418         Add AC_ISC_POSIX, AC_CONST, AC_SIZE_T.
2419         * aclocal.m4: New, provide FP_PROTOTYPES.
2420         * m4.h: Conditionnaly protoized through Args, save for varags.
2421         * builtin.c: Protoized.  Then:
2422         Include <sys/types.h> if size_t is not defined, before "regex.h".
2423         (m4_ifelse): Fetch built-in name properly for diagnostic.
2424         (m4_dumpdef): Remove wrong (char *) cast calling dump_symbol.
2425         (m4_regexp): Add const to `msg' declaration.
2426         (m4_patsubst): Add const to `msg' declaration.
2427         * debug.c: Protoized, save for varargs.
2428         * eval.c: Protoized.
2429         * format.c: Protoized.
2430         * input.c: Protoized.
2431         * m4.c: Protoized, save for varargs.  Then:
2432         (xfree): Accept void * instead of char *.
2433         (xmalloc): Return void * instead of char *.
2434         (xrealloc): Accept and return void * instead of char *.
2435         * macro.c: Protoized.
2436         * output.c: Protoized.
2437         * path.c: Protoized.  Then cast some (char *) over xmalloc's.
2438         * symtab.c: Protoized.
2440 Fri Nov  6 02:05:21 1992  Francois Pinard  (pinard at icule)
2442         * m4.texinfo: Remove directory from diagnostics in 30.include,
2443         51.eval, 56.errprint and 57.m4exit tests.
2445         * m4.h: Remove declarations for int or void system functions, they
2446         cause more conflicting trouble than they make good.
2448         * configure.in: Avoid configuration header file.  Add some tests.
2449         * m4.h: Remove #include "config.h".
2450         * Makefile.in, lib/Makefile.in: Implement Autoconf interface.
2451         Then, rewritten for better compliance with GNU standards.
2453 Thu Nov  5 12:37:13 1992  Francois Pinard  (pinard at icule)
2455         * format.c (format): Avoid syntax error if not HAVE_EFGCVT,
2456         because of a misplaced #endif.
2458         * Many *.[hc] files: Correct intra-line spacing here and there,
2459         according to GNU indent 1.6 advice.
2461         * configure.in: New, using Autoconf 1.2.
2462         * m4.h: Reverse NO_MEMORY_H to NEED_MEMORY_H.
2463         * Delete old configure.in, configure, etc/configure.in,
2464         etc/configure, lib/configure.in, lib/configure and config/*.
2465         Reported by Jason Merrill.
2467         * symtab.c (hash): Change (char) NULL to '\0'.
2468         Reported by Jason Merrill.
2470         * Delete .vers, etc/newdist.sh, etc/newvers.sh and
2471         etc/nextvers.sh.  Release numbers will be edited `by hand'.
2472         * version.h: De-automatize, force value in.
2474         * m4.c: Changes in order to use a newer getopt.h.
2475         Reported by David MacKenzie.
2477         * checks/: New name for examples/.
2478         * checks/get_them: New location for etc/get_examples.
2479         * checks/check_them: New location for etc/check_examples.
2480         * Makefile.in, checks/get_them, checks/check_them: Adjust.
2481         * lib/vfprintf.c: New location for etc/vfprintf.c.
2482         * Delete empty etc/.
2483         * examples/: New name for test/.
2485 Tue Mar 10 00:29:46 1992  Francois Pinard  (pinard at icule)
2487         * Makefile.in (check): Add m4 as dependency.
2489         * m4.c: Accept --no-warnings instead of --no_warnings, and
2490         --no-gnu-extensions instead of --no_gnu_extensions.  Make the
2491         usage message more informative.
2492         Reported by David MacKenzie.
2494 Mon Mar  9 14:53:40 1992  Francois Pinard  (pinard at icule)
2496         * etc/check_examples: New name for check_examples.sh.
2497         * etc/get_examples: New name for get_examples.sh.
2498         * Makefile.in, etc/Makefile.in: Use new names.
2500         * Makefile.in: Transmit $(CC) while making in lib.
2502         * Many *.[hc] files: GNU indent'ed, with further fine tuning of
2503         code disposition by hand.
2505 Sun Mar  8 11:01:55 1992  Francois Pinard  (pinard at icule)
2507         * m4.h: Delete definitions for abort() and exit().
2508         Reported by Richard Stallman.
2510         * config/hmake-unicos, config/s-unicos.h: New files.
2511         Reported by Hal Peterson.
2513         * eval.c (exp_term): Have N^0 return 1.
2514         Reported by Michael Fetterman.
2516         * eval.c, input.c, m4.h: Remove last comma in enums.
2517         Reported by Mike Lijewski.
2519         * Transfer of maintenance duties from Rene' to Franc,ois.
2521 Thu Oct 24 15:18:46 1991  Rene' Seindal (seindal at diku.dk)
2523         * Release 1.0.  Many thanks to those, who provided me with bug
2524         reports and feedback.
2526         * Uses GNU configure, taken from the gdb distribution.
2528         * Uses GNU getopt(), with long option names.
2530         * The -Q/+quiet option is added, which suppresses warnings about
2531         missing or superflous arguments to built-in macros.
2533         * Added default options via the M4OPTS environment variable.
2535         * The built-in format can now be configured to use sprintf as
2536         the formatting engine, for systems without [efg]cvt(3).
2538         * GNU library code is moved to the ./lib subdirectory; other
2539         utility files are now in ./etc.
2541         * Several minor bugs have been fixed.
2543 Fri Jul 26 15:28:42 1991  Rene' Seindal (seindal at diku.dk)
2545         * Fixed various bugs.  Release 0.99, manual 0.09.  Many thanks to
2546         Francois Pinard and Roland H. Pesch for providing me with reports.
2548         * The builtins incr and decr are now implemented without use of
2549         eval.
2551         * The builtin indir is added, to allow for indirect macro calls
2552         (allows use of "illegal" macro names).
2554         * The debugging and tracing facilities has been enhanced
2555         considerably.  See the manual for details.
2557         * The -tMACRO option is added, marks MACRO for tracing as soon
2558         as it is defined.
2560         * Builtins are traced after renaming iff they were before.
2562         * Named files can now be undiverted.
2564         * The -Nnum option can be used to increase the number of
2565         divertions available.
2567         * Calling changecom without arguments now disables all comment
2568         handling.
2570         * The function m4_patsubst() is now consistently declared
2571         static.
2573         * A bug in dnl is fixed.
2575         * A bug in the multi-character quoting code is fixed.
2577         * Several typos in the manual has been corrected.  More probably
2578         persist.
2580         * The m4.info file is now installed along with the program.
2582 Thu Nov 15 21:51:06 1990  Rene' Seindal (seindal at diku.dk)
2584         * Updated and enhanced version.  Release 0.75, manual 0.07.
2586         * Implemented search path for include files (-I option and
2587         M4PATH envronment variable).
2589         * Implemented builtin "format" for printf-like formatting.
2591         * Implemented builtin "regexp" for searching for regular
2592         expressions.
2594         * Implemented builtin "patsubst" for substitution with regular
2595         expressions.
2597         * Implemented builtin "esyscmd", which expands to a shell
2598         commands output.
2600         * Implemented "__file__" and "__line__" for use in error
2601         messages.
2603         * Implemented character ranges in "translit".
2605         * Implemented control over debugging output.
2607         * Implemented multi-character quotes.
2609         * Implemented multi-character comment delimiters.
2611         * Changed predefined macro "gnu" to "__gnu__".
2613         * Changed predefined macro "unix" to "__unix__", when the -G
2614         option is not used.  With -G, "unix" is still defined.
2616         * Changed "shift", "$@" and "$*" to not insert spaces afters
2617         commas.
2619         * Added program name to error messages.
2621         * Fixed two missing null bytes bugs.
2623 Mon Jan 22 21:08:52 1990  Rene' Seindal (seindal at diku.dk)
2625         * Initial beta release.  Release 0.50, manual 0.05.
2627         $Revision$ $Date$