* doc/m4.texinfo (Changeword): Skip test on mingw, where the
[m4.git] / ChangeLog
blobc18327aa10bf57d1f1d3395889b5869f9133679f
1 2006-09-04  Eric Blake  <ebb9@byu.net>
3         * doc/m4.texinfo (Changeword): Skip test on mingw, where the
4         native echo is braindead.
5         * checks/check-them (strip_needed): Ignore \r in output.  Now the
6         testsuite will pass when cross-compiling from cygwin to mingw.
8         * src/input.c (peek_input): Fix regression in handling macro
9         without arguments as last token in file; debian bug 385720.
10         (next_token): Always consume an input character.
11         Reported by Andreas Schultz.
12         * configure.ac (AC_INIT): Bump version number.
13         * NEWS: Document this fix.
14         * doc/m4.texinfo (History): Mention next version.
15         (Changeword): Add example that exposes this bug.
16         * THANKS: Update.
18 2006-08-25  Eric Blake  <ebb9@byu.net>
20         Release 1.4.6:
22         * configure.ac (AC_INIT): Bump version number.
23         * NEWS: Describe changes since 1.4.5.
25         * Makefile.maint (web-manual): Give up on VPATH build during
26         distribution.  But distributions are made so infrequently that
27         this is not too much of a hardship.
28         * Makefile.am (MAINTAINERCLEANFILES): Avoid error if lib/CVS/
29         exists.
31 2006-08-24  Eric Blake  <ebb9@byu.net>
33         * src/builtin.c (m4_index, m4_substr, m4_translit): Similar to
34         Solaris, produce output on just one argument.
35         (m4_regexp, m4_patsubst): For consistency, do likewise.
36         (m4_patsubst): Allow zero-length match at end of string.
37         * doc/m4.texinfo (Sysval): Fix overfull hbox.
38         (Bugs, Macro Arguments): Minor fixes.
39         (Other tokens): Rearrange node order.
40         (Index macro, Substr, Translit, Regexp, Patsubst): Add tests.
41         * NEWS: Document these fixes.
43 2006-08-22  Eric Blake  <ebb9@byu.net>
45         * src/input.c (pop_input): Avoid empty filename with -di option.
46         * src/debug.c (debug_message_prefix): Put space before message.
48         * m4/gnulib-cache.m4: We don't explicitly use alloca module.
50         * m4/gnulib-cache.m4: Augment with gnulib-tool --import gnupload.
51         * Makefile.maint (fetch): Simplify, now that we can use gnupload.
53         * checks/check-them: State why a test is skipped.
54         * doc/m4.texinfo (Changeword, Sysval, Maketemp): Likewise.
56         * ChangeLog: Add copyright.
57         * AUTHORS: Likewise.
58         * BACKLOG: Likewise.
59         * README: Likewise.
60         * THANKS: Likewise.
61         * TODO: Likewise.
62         * examples/COPYING: New file, add copyright for all the examples.
63         * checks/get-them: Put copyright on testsuite files.
65 2006-08-18  Eric Blake  <ebb9@byu.net>
67         Don't let unrelated child processes see too many files.
68         * m4/gnulib-cache.m4: Augment with gnulib-tool --import cloexec.
69         * src/builtin.c (m4_esyscmd, m4_regexp, m4_patsubst): Fix
70         spelling in error message.
71         * src/debug.c [!__STDC__]: Assume C89, and nuke old varargs.h.
72         (debug_set_output): Close debug file on exec.
73         * src/m4.h (includes): Add cloexec.h.
74         * src/output.c (make_room_for): Close diversions on exec.
75         * src/path.c (path_search): Close include files on exec.
76         * NEWS: Document this.
78         Regular expressions were leaking memory.
79         * src/builtin.c (init_pattern_buffer, free_pattern_buffer): New
80         helper methods.
81         (m4_regexp, m4_patsubst): Avoid memory leak.
82         * src/input.c (init_pattern_buffer) [ENABLE_CHANGEWORD]: Make
83         static.
84         (set_word_regexp) [ENABLE_CHANGEWORD]: Avoid memory leak.  Change
85         from O(n^2) to O(n) for calculating word_start.
86         (next_token, peek_token) [ENABLE_CHANGEWORD]: Treat word_start as
87         O(1) bitmap, not O(n) search string.
88         * NEWS: Document this fix.
90 2006-08-17  Eric Blake  <ebb9@byu.net>
92         * NEWS: Document previous checkin.
94         * src/builtin.c (substitute): Avoid core dump when accessing
95         beyond bound of regular expression.
96         Reported by Karl Nelson.
97         * doc/m4.texinfo (Regexp): Add example that causes core dump on
98         some architectures prior to this patch.
99         * THANKS: Updated.
101 2006-08-16  Eric Blake  <ebb9@byu.net>
103         * doc/m4.texinfo (Invoking m4, Debug Output): Fix wording to be
104         clear that dumpdef does not always go to stderr.
106         * src/builtin.c (m4_errprint): Flush buffers before printing to
107         stderr.
108         * THANKS: Updated.
110 2006-08-15  Eric Blake  <ebb9@byu.net>
112         * src/builtin.c (m4_m4wrap, m4_errprint, m4_shift): Make blind,
113         per debian bug 96075.
114         * doc/m4.texinfo (Loops, M4wrap, Errprint): Document this change.
115         (Changeword): Don't use shift as an example of a swallowed word.
116         (Divert): Discuss fact that divert is an English word.
117         Reported by Richard A Nelson.
119 2006-08-14  Eric Blake  <ebb9@byu.net>
121         * doc/m4.texinfo (Invoking m4): Minor fixes.
123 2006-08-12  Eric Blake  <ebb9@byu.net>
125         * doc/m4.texinfo (Arguments): Hint at better exch macro.
126         (Answers): Provide a better definition.
128 2006-08-09  Eric Blake  <ebb9@byu.net>
130         * doc/m4.texinfo (Incompatibilities): Document that m4 does not
131         yet understand locales.
132         * NEWS: Fix wording of a few items.
134 2006-08-08  Eric Blake  <ebb9@byu.net>
136         Avoid printing `NONE:0:' in error messages.
137         * src/m4.h (m4_error_at_line): New function.
138         * src/m4.c (m4_error_at_line): Implement.
139         * src/input.c (skip_line, input_init, next_token): Use "", not
140         "NONE", for no file, since NONE can be a real file name.
141         * src/macro.c (expand_argument): Likewise.
142         * src/debug.c (debug_message_prefix, trace_header): Check for
143         current file.
144         * doc/m4.texinfo (Dnl, M4wrap): Adjust accordingly.
145         (Location): Document that synclines and internal message format
146         are not impacted by redefining these macros.
147         (M4exit): Hint at bug in fatal_error.
148         (Answers): Provide workaround to match m4 output.
150         * m4/gnulib-cache.m4: Augment with gnulib-tool --import verror.
151         * src/m4.h (m4_error): New function.
152         (M4ERROR, M4ERROR_AT_LINE): Reimplement without hacking around
153         error module deficiencies.
154         (reference_error, suppress_line): No longer needed.
155         * src/m4.c (m4_error): Implement.
156         (main): No longer need to install error callback.
158 2006-08-04  Eric Blake  <ebb9@byu.net>
160         * src/m4.h (program_name): Declare.
161         (suppress_line): New variable.
162         (M4ERROR_AT_LINE): New macro.
163         * src/m4.c (reference_error, main): Follow GNU Coding Standards
164         for error message format.
165         * src/input.c (skip_line, next_token): Use M4ERROR_AT_LINE.
166         * src/macro.c (expand_argument): Likewise.
167         * checks/check-them (examples): Adjust to new message format.
168         * src/builtin.c (m4___program__): New builtin.
169         * doc/m4.texinfo (Location): Split from Errprint into new node,
170         and document __program__.
171         (Builtin, Ifdef, Ifelse, Dumpdef, Trace, Debug Output, Dnl)
172         (Include, Regexp, Patsubst, Incr, Eval): Adjust error message
173         format.
174         (Extensions): Document __program__.
175         * NEWS: Document this change.
177 2006-08-03  Eric Blake  <ebb9@byu.net>
179         Don't confuse leading `(' in comment or quote with start of
180         argument collection.
181         * src/m4.h (enum token_type): Add TOKEN_OPEN, TOKEN_COMMA,
182         TOKEN_CLOSE.
183         (peek_input): Make private to input.c.
184         (peek_token): New prototype.
185         * src/input.c (default_word_regexp): Reduce ifdefs.
186         (peek_input): Make static.
187         (next_token): Return new token types.
188         (match_input, MATCH): Add argument consume, which controls
189         whether match should be pushed back.
190         (peek_token): New function.
191         (token_type_string) [DEBUG_INPUT]: New function.
192         * src/macro.c (expand_token, expand_argument, collect_arguments):
193         Handle new token types.
194         * doc/m4.texinfo (Changequote, Changecom): Document this.
195         * NEWS: Document this.
197         * src/stackovf.c (setup_stackovf_trap): Free memory on failure.
199         * src/stackovf.c (setup_stackovf_trap): Gracefully avoid stack
200         overflow detection when sigstack exists but is not implemented.
201         Fixes debian bug 154053.
202         * THANKS: Updated.
203         Reported by David Perlin.
205 2006-08-02  Eric Blake  <ebb9@byu.net>
207         * src/input.c (MATCH): Fix EOF detection on multi-byte comment
208         close.
210 2006-08-01  Eric Blake  <ebb9@byu.net>
212         * src/input.c (skip_line, next_token): Remember current file in
213         case input file ends abruptly.  Addresses debian bug 175365.
214         (pop_input): Defer freeing storage that holds previous file
215         name...
216         (pop_wrapup): to here, after error message is issued.
217         * src/macro.c (expand_argument): Remember current file in case
218         input file ends abruptly.
219         * doc/m4.texinfo (Macro Arguments, Dnl, Changequote, Changecom)
220         (M4wrap): Adjust testsuite accordingly.
221         (Errprint): Document line number limitation of m4wrap.
222         * NEWS: Document this fix.
223         * THANKS: Update.
225 2006-07-31  Eric Blake  <ebb9@byu.net>
227         * src/input.c (peek_input, next_char, match_input): Be eight-bit
228         clean; fixes debian bug 311378.
229         * doc/m4.texinfo (Syntax): Describe eight-bit handling.
230         (Changequote, Changecom): Add examples to test this.
231         * NEWS: Document this fix.
232         * THANKS: Update.
233         Reported by Steven Augart.
235         * doc/m4.texinfo: Whitespace fix.
236         * checks/get-them: Avoid exceeding 14-char file name limit.
237         * THANKS: Update.
239 2006-07-30  Eric Blake  <ebb9@byu.net>
241         * src/path.c (path_search): Detect allocation failure.
243         Use native free when it is good enough.
244         * m4/gnulib-cache.m4: Augment with gnulib-tool --import free.
245         * src/builtin.c (define_user_macro, m4_regexp, m4_patsubst):
246         Adjust calls.
247         * src/symtab.c (free_symbol): Likewise.
248         * src/m4.c (xfree, main): Likewise.
249         * src/m4.h (obstack_chunk_free): Likewise.
250         * src/path.c (path_search): Likewise.
251         * src/input.c (pop_wrapup, set_quotes, set_comment): Likewise.
253         * doc/m4.texinfo (Errprint): Add example for last patch.
254         * checks/check-them: Account for VPATH in latest example.
256 2006-07-29  Eric Blake  <ebb9@byu.net>
258         * src/path.c (path_search): Add result parameter, so that
259         -I can be accounted for.  Debian bug 53685.
260         * src/m4.h (path_search): Update prototype.
261         * src/m4.c (main): Adjust callers.
262         * src/freeze.c (reload_frozen_state): Likewise.
263         * src/builtin.c (include, m4_undivert): Likewise.
264         * NEWS: Document this change.
265         Reported by Nicolas Lichtmaier.
267 2006-07-28  Eric Blake  <ebb9@byu.net>
269         * Makefile.am (MAINTAINERCLEANFILES): Fix typo that tripped up
270         several non-GNU makes.
271         * src/stackovf.c (setup_stackovf_trap): Missed _ from yesterday.
272         * src/m4.h: Likewise.
273         * src/input.c (push_wrapup): Avoid compiler warning with Solaris
274         /usr/ccs/bin/ucbcc.
276 2006-07-27  Eric Blake  <ebb9@byu.net>
278         * doc/m4.texinfo: Use @acronym{GNU} throughout.
279         (History): Update for 1.4.6.
281         * src/m4.h (_): Remove K&R cruft.
282         * src/builtin.c: Likewise.
283         * src/debug.c: Likewise.
284         * src/eval.c: Likewise.
285         * src/macro.c: Likewise.
286         * src/stackovf.c: Likewise.
288         * doc/Makefile.am (m4.1): Improve man page.
289         * src/m4.c (usage): Improve --help output, including adding the
290         bug reporting address.
291         (main): Follow GNU Coding Standards for --version output.
293 2006-07-26  Eric Blake  <ebb9@byu.net>
295         * doc/m4.texinfo: Use begin-quote, end-quote, begin-comment, and
296         end-comment consistently, to match POSIX.
298         * doc/m4.texinfo (Macro Arguments, Changequote, Changecom)
299         (Dnl, M4wrap, Include): Document EOF issues, and add examples.
300         (Incompatibilities): Document incompatibility of changecom
301         vs. macro names, and of EOF in include.
302         * src/input.c (next_token): Reject unterminated comments at EOF.
303         (skip_line): Warn on unterminated dnl at EOF.
304         * NEWS: Document these changes.
306 2006-07-25  Eric Blake  <ebb9@byu.net>
308         * m4/gnulib-cache.m4: Update to reflect gnulib's split of
309         stdio-safer into fopen-safer and tmpfile-safer.
310         * src/m4.c: Remove redundant include.
312 2006-07-24  Eric Blake  <ebb9@byu.net>
314         Fix bugs related to stream handling.
315         * m4/gnulib-cache.m4: Augment with gnulib-tool --import
316         unlocked-io stdio-safer stdlib-safer close-stream.
317         * configure.ac (AC_CHECK_FUNCS_ONCE): Assume tmpfile; it can be
318         provided by gnulib if needed.
319         * src/output.c [! HAVE_TMPFILE]: Likewise.
320         * src/m4.h (includes): Replace unistd, stdio, and stdlib with
321         their safer counterparts.
322         (retcode): New global variable.
323         * src/input.c (pop_input): Check for read failure.
324         * src/freeze.c (reload_frozen_state): Likewise.
325         (produce_frozen_state): Check for write failure.
326         * src/debug.c (debug_set_file): Likewise.
327         * src/m4.c (usage, main): Likewise.
328         (retcode): Make global.
329         * src/builtin.c (m4_m4exit): Likewise.  Ensure that the exit
330         status is non-zero except when everything succeeds.
331         * doc/m4.texinfo (M4exit): Document these changes.
332         (Incompatibilities): Remove documentation of bug now fixed.
333         * NEWS: Document these fixes.
335 2006-07-22  Eric Blake  <ebb9@byu.net>
337         * src/format.c (format): Avoid compiler warning that str may be
338         used uninitialized.
340 2006-07-21  Eric Blake  <ebb9@byu.net>
342         * src/m4.h [UNIX]: Add more platforms that are close enough to
343         categorize as UNIX, but which don't predefine __unix__.
344         Reported by Nelson H. F. Beebe.
346 2006-07-20  Eric Blake  <ebb9@byu.net>
348         * m4/gnulib-cache.m4: gnulib-tool has changed again.  Regenerate
349         to explicitly ask for --assume-autoconf=2.60.
351 2006-07-19  Eric Blake  <ebb9@byu.net>
353         * doc/m4.texinfo (Sysval): Avoid kill -1, since ksh traps SIGHUP
354         and exits normally with 129.
355         Reported by Nelson H. F. Beebe.
356         * THANKS: Update.
358         * src/m4.h (EXIT_MISMATCH): Define.
359         * src/freeze.c (reload_frozen_state): Detect version mismatch, by
360         exiting with status 63.
361         * src/m4.c (usage): Document this.
362         * doc/m4.texinfo (Invoking m4, Using frozen files): Likewise.
363         * NEWS: Likewise.
365         * doc/m4.texinfo (copying): Relax restriction on front-cover and
366         back-cover texts.
368 2006-07-17  Eric Blake  <ebb9@byu.net>
370         * src/format.c (format): Support F, g, and G specifiers.
371         * doc/m4.texinfo (Format): Document this.
372         * NEWS: Document this addition.
374         * doc/m4.texinfo (Builtin): Delete redundant text.
376         * configure.ac (AC_INIT): Bump version number.
377         * src/builtin.c (substitute): Bah.  Fix buffer overrun.
378         * NEWS: Document this fix.
380 2006-07-15  Eric Blake  <ebb9@byu.net>
382         Release 1.4.5:
384         * configure.ac (AC_INIT): Bump version number.
385         * NEWS: Describe changes since 1.4.4.
387         * src/m4.c (usage): Document exit status.
388         * doc/m4.texinfo: Use `exit status', not `exit code'.
389         (Invoking m4): Document exit status.
391         * bootstrap: Backport --help, --version from head.
392         (func_update): New function, for easily grabbing up-to-date files
393         from gnulib.
394         * Makefile.maint (web-manual): Fix for VPATH builds.
396 2006-07-14  Eric Blake  <ebb9@byu.net>
398         * doc/m4.texinfo: Global cleanup.  Avoid @code{...}'d, as it
399         looks bad in info.  Use @deffn rather than @example for
400         describing prototypes.  Fix awkward wording and grammar.
402         * src/builtin.c (substitute): Warn on bad escape sequences.
403         Ignore trailing backslash.
404         * doc/m4.texinfo (Regexp): Add documentation for this.
405         * NEWS: Document this change.
407         * src/builtin.c (m4_format, m4_indir): Warn on too few arguments.
408         * doc/m4.texinfo (Defn, Builtin, Debug Levels, Debug Output): Add
409         more examples.
410         (Dnl): Update example to show side effects.
411         * checks/get-them: Generate three digit test names.
412         * checks/Makefile.in (CHECKS): Accomodate 100+ tests.
414 2006-07-13  Eric Blake  <ebb9@byu.net>
416         * src/input.c (input_init): Simplify.
417         (set_word_regexp): Treat empty string as default, since empty
418         regexp would disable word parsing.
419         * src/m4.c (user_word_regexp): Default to empty string.
420         * src/builtin.c (builtin_tab): Make changeword blind.
421         * doc/m4.texinfo (Changeword): Document this.
422         * NEWS: Document this.
423         * TODO: Knock off completed items.
425         * src/builtin.c (m4_undefine, m4_popdef): Visit all arguments, not
426         just the first.
427         * doc/m4.texinfo (Undefine, Pushdef): Test this.
428         * NEWS: Document this change.
430         * src/builtin.c (numeric_arg): Treat empty string as 0, with a
431         warning.  Detect quoted leading space and overflow as warnings.
432         (m4_eval): Treat empty radix as 10, and allow output in radix 1.
433         Treat width as minimum number of digits, as required by POSIX.
434         (m4_ifdef, m4_divert, m4_m4exit, m4_translit): Ignore extra
435         arguments.
436         (m4_substr): Likewise.  Silently treat empty start as 0.
437         (m4_undivert): Treat ` 1a' as file, not diversion 1.
438         * src/eval.c (eval_lex): Parse radix 1 numbers.
439         * doc/m4.texinfo (Invoking m4): Fix wording; there is more than
440         one type of warning.
441         (Manual): Document behavior of numeric parsing of empty string.
442         (Divert, Incr): Document error handling.
443         (Eval): Document radices better.
444         (Incompatibilities): Document translit incompatibility.
445         * NEWS: Document these changes.
447         * Makefile.maint (fetch): Get gendocs from gnulib, not texinfo.
448         (web-manual): Simplify.
449         * m4/gnulib-cache.m4: Augment with gnulib-tool --import gendocs.
450         * Makefile.am (EXTRA_DIST): Distribute gendocs.sh.
451         (MAINTAINERCLEANFILES): Clean it as well.
452         * doc/Makefile.am (EXTRA_DIST): Distribute gendocs_template.
453         (MAINTAINERCLEANFILES): Clean it as well.
455 2006-07-12  Eric Blake  <ebb9@byu.net>
457         * doc/m4.texinfo (Extensions): Document how to overcome
458         implementation difference in > 9 positional parameters.
460         * src/m4.c (usage): Sort within sections.
461         (nesting_limit): Raise default from 250 to 1024.
462         * doc/m4.texinfo: Use file name, not filename, per GNU coding
463         standard.  Use @option where appropriate.
464         (Invoking m4): Sort to match --help output.
465         (Debug Levels): Sort.
466         (Frozen files): Sort and break into two nodes.
468         * src/m4.c (nesting_limit): Raise default from 250 to 1024.
469         * NEWS: Document raised -L limit.
471 2006-07-11  Eric Blake  <ebb9@byu.net>
473         * Makefile.am (DISTCHECK_CONFIGURE_FLAGS): New macro, to
474         stress-test changeword before a release.
475         * doc/m4.texinfo: More doc cleanups.
476         (Copying This Manual): New node; actually include the FDL in the
477         documentation.
478         * doc/Makefile.am (m4_TEXINFOS): Mention dependence on fdl.texi.
479         * m4/gnulib-cache.m4: Augment with gnulib-tool --import fdl.
480         * NEWS: Mention documentation improvements.
482         * src/m4.h (OS2): New platform macro.
483         * src/builtin.c (predefined_tab) [OS2]: Use it to give OS/2 a
484         platform macro.
485         * doc/m4.texinfo (Platform macros): Document it.
486         (Sysval): Remove non-portable test of system("").
487         * NEWS: Document this change.
488         Reported by Andreas Buening.
490 2006-07-09  Eric Blake  <ebb9@byu.net>
492         * doc/m4.texinfo (Undivert): Fix typo in last commit.
493         * src/m4.c (usage): Document M4PATH.
494         * src/path.c (path_search): Reject empty string.
495         * src/output.c (insert_diversion): Ignore diversion 0.
496         * src/builtin.c (m4_undivert): Ignore empty string.
497         * NEWS: Document this fix.
499 2006-07-08  Eric Blake  <ebb9@byu.net>
501         * checks/get-them: Make filtering easier.
502         * checks/check-them: Filter non-input lines, so line counts are
503         more realistic in the documentation, and so changeword tests work
504         even when dnl is disabled.
505         * doc/m4.texinfo: Adjust example line numbers.  Clean up
506         front-matter, following autoconf's example.
507         (Changeword): Enable tests, skipping if changeword not supported.
508         (Define, Defn, Ifelse): Backport more examples from head.
509         (Input processing, Answers): New nodes, backported from head.
510         (Include): Expand test to cover empty filename.
511         (Undivert): Add test of undivert(0).
513 2006-07-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
515         * doc/m4.texinfo: Fix spelling errors.
517 2006-07-07  Eric Blake  <ebb9@byu.net>
519         * THANKS: Update.
521         * doc/Makefile.am (m4.1): No need to go through a temporary file;
522         this also ensures timestamps are updated.
523         * src/m4.h (includes): Require config.h.  Assume string.h,
524         stdlib.h, errno.  Include error.h, exit.h, and xalloc.h rather
525         than prototyping ourselves.
526         (builtin_func): Add parameter type-checking.
527         (voidstar): Delete, now that we assume C89.
528         * src/builtin.c, src/m4.c, src/macro.c, src/symtab.c: All users of
529         voidstar changed.
530         * src/m4.c (xfree) [WITH_DMALLOC]: Avoid clash with dmalloc's
531         xfree.
533 2006-07-06  Eric Blake  <ebb9@byu.net>
535         * m4/gnulib-cache.m4: Augment with gnulib-tool --import
536         binary-io.
537         * src/m4.h (includes): Add binary-io.h for O_BINARY.
538         * src/freeze.c (produce_frozen_state): Use O_BINARY to remove
539         #ifdef.  Fixes patch from 2005-02-03 for cygwin.
540         * NEWS: Mention this fix.
542         * configure.ac (FUNC_SYSTEM_BROKEN): New check for OS/2 bug.
543         * src/builtin.c (m4_syscmd): Work around OS/2 bug.
545         * Makefile.am (SUBDIRS): Build . before src, so that autoheader
546         runs first when needed.
547         * doc/Makefile.am (m4.1): Backport rule from CVS head: build m4.1
548         once in srcdir rather than multiple times in VPATH builds.
550 2006-07-03  Eric Blake  <ebb9@byu.net>
552         * checks/check-them: Use portable = in test.
553         * src/Makefile.am (AM_CPPFLAGS): Omit space between -I and
554         directory, as required by Solaris cc.  Include built headers, as
555         required by Solaris make in VPATH build.
556         * checks/Makefile.in: Use $(srcdir) where needed.
557         (CHECKS): Factor $(srcdir) into macro.
558         (DISTFILES): Likewise.  Automake takes care of distributing
559         Makefile.in.
560         (dist): Simplify.
561         (Makefile): Use modern syntax of config.status.
562         * doc/m4.texinfo (Loops, Include, Undivert, Incompatibilities):
563         Avoid overfull and underfull hboxes in dvi.
565         Fix 'make check' in VPATH build.  All files included by testsuite
566         now live in a single directory.  Use forloop.m4 in testsuite.
567         * checks/incl.m4, checks/foo, checks/wrapfifo.m4: Move from
568         here...
569         * examples/incl.m4, examples/foo, examples/wrapfifo.m4: ...to
570         here.
571         * checks/Makefile.in (DISTFILES): Don't distribute moved files.
572         * examples/Makefile.am (EXTRA_DIST): Distribute new files.
573         * checks/check-them: Avoid s/// when filename is in pattern.
574         * examples/forloop.m4: Fix to match documentation.
575         * doc/m4.texinfo (Include, Undivert, Incompatibilities): Reflect
576         new locations.
577         (Loops, Format): Actually use forloop.m4 in tests.
579 2006-07-02  Eric Blake  <ebb9@byu.net>
581         * checks/Makefile.in (exec_prefix, prefix): New macros, so that
582         $(bindir) works in installcheck.
583         (check, installcheck): No longer change directory, so that
584         distcheck works with a read-only builddir.
585         * checks/check-them: Work when pwd is no longer builddir.
587 2006-07-01  Eric Blake  <ebb9@byu.net>
589         * GNUmakefile: New file, borrowed from coreutils.
590         * Makefile.am (EXTRA_DIST): Distribute GNUmakefile.
591         * Makefile.maint (Makefile): Delete this rule, now that
592         GNUmakefile includes Makefile.
594 2006-06-30  Eric Blake  <ebb9@byu.net>
596         For compatibility with other m4 implementations, sysval returns
597         signal<<8 rather than 0 if syscmd is terminated by a signal.
598         * configure.ac (AC_CHECK_HEADERS_ONCE): Check for sys/wait.h.
599         * src/builtin.c (include): Include sys/wait.h when stdlib.h does
600         not provide wait macros.
601         (WTERMSIG, WIFSIGNALED, WIFEXITED): More fallback macros.
602         (M4SYSVAL_EXITBITS, M4SYSVAL_TERMSIGBITS): New helper macros.
603         (m4_esyscmd): Set sysval to -1 on failure.
604         (m4_sysval): Print 127 on failure, and accomodate signals if they
605         are detectable.
606         * NEWS: Document this change.
607         * doc/m4.texinfo (Platform macros, Esyscmd, Sysval): Fix typos in
608         last commit.
609         * checks/check-them: Likewise.
610         * src/debug.c (debug_set_file): Work around mingw fstat bug.
612         * src/m4.h (UNIX, W32_NATIVE): Improve platform detection macros.
613         * src/freeze.c (produce_frozen_state): Use new spelling of
614         platform macro.
615         * src/builtin.c (predefined_tab): Add __windows__ on non-unix
616         platforms.
617         (m4_syscmd, m4_esyscmd): The empty command is successful.
618         * doc/m4.texinfo (Shell commands): Rename from UNIX commands.
619         Document platform-dependence of system().
620         (Syscmd): Add example.
621         (Esyscmd): Make example more robust, and actually demonstrate
622         rescanning.
623         (Sysval): Expand test to cover esyscmd code path, and to check
624         that empty command is successful.  Add conditional check for
625         signal behavior.
626         (Other Incompatibilities): Move platform macros from here...
627         (Platform macros): ...to this new node.  Add windows macro.
628         Check that exactly one platform macro is provided.
629         * checks/check-them: Improve trap cleanup.  Tolerate dirname and
630         .exe in error messages.  Allow for skipping checks.
631         * configure.ac (HAVE_EFGCVT): Kill dead configure check.
632         * NEWS: Document platform macros.
634 2006-06-29  Eric Blake  <ebb9@byu.net>
636         Fix buffer overrun bug.
637         * m4/gnulib-cache.m4: Augment with gnulib-tool --import
638         xvasprintf.
639         * src/format.c [HAVE_EFGCVT]: Delete this code, and use *printf
640         variant instead, since [efg]cvt are obsolete and our use of them
641         was buggy (savannah sr #104303).
642         (format): Fix buffer overflow by using xasprintf.
643         * doc/m4.texinfo (Format): Expand format test to catch both bugs.
644         * NEWS: Document this fix.
646         * configure.ac (AC_CANONICAL_HOST, AC_CANONICAL_BUILD): Allow
647         cross-compilation.
648         (AC_CACHE_CHECK): Cache search for ecvt.
650 2006-06-27  Eric Blake  <ebb9@byu.net>
652         * doc/m4.texinfo (Eval): Document 32-bit signed limitations
653         required by POSIX, and add example that exposed core dump on x86
654         architectures.
655         (Incompatibilities): Document incompatibility in eval precedence.
656         * src/eval.c (shift_term): Explicitly mask, to avoid undefined
657         behavior.
658         (mult_term): Explicitly check for -1, to avoid SIGFPE on x86.
659         * NEWS: Document this change.
661         * doc/m4.texinfo: Use @noindent consistently.
662         (Quoting Arguments): Document that unquoted parentheses group
663         arguments.
664         (Pseudo Arguments): Expand tests to show this.
665         (Incompatibilities): Contrast traditional behavior of
666         changequote.
668 2006-06-24  Eric Blake  <ebb9@byu.net>
670         * configure.ac (AC_PREREQ): Autoconf 2.60 is now released.
671         (AC_CHECK_HEADERS_ONCE): Use this new feature.
672         (AC_CHECK_FUNCS_ONCE): Likewise.
674 2006-06-23  Eric Blake  <ebb9@byu.net>
676         * doc/m4.texinfo: Quoting cleanup throughout - follow
677         autoconf-recommended style of one level of quote per parenthesis
678         in the normal case.  Adjust error messages to match GNU coding
679         standards (and to allow 'make check' to pass again).
680         (Quoted strings, Inhibiting Invocation): Turn more examples into
681         tests.
682         (Comments): Resolve FIXME by adding example.
683         (Define): Add example about underquoting.
684         (Defn): Add example about use of $0.
685         (Indir, Format): Resolve FIXME done in last commit.
686         (Ifelse): Add example about creating blind macro.
687         (Debugging): Fix grammar.
688         (Dnl): Add example about dnl with arguments.
689         (M4wrap): Be explicit that LIFO order is non compliant, and will
690         change in m4 2.0.
691         (Undivert): Resolve FIXME by adding example.
692         (Frozen files): Document that m4wrap and sysval will not work
693         consistently until m4 2.0.
694         (Incompatibilities): Document another POSIX compliance bug, this
695         time with changequote.  Document a traditional incompatibility
696         with partial input spanning file boundaries.
698         Make error messages more consistent with GNU coding standards -
699         start with lower case, and don't end sentence with punctuation.
700         * src/debug.c (trace_pre): Update message wording.
701         * src/eval.c (evaluate, cmp_term, shift_term, mult_term):
702         Likewise.
703         * src/freeze.c (produce_frozen_state, issue_expect_message),
704         (reload_frozen_state): Likewise.
705         * src/input.c (push_string_init, pop_init, init_macro_token),
706         (peek_input, next_char_1, set_word_regexp, next_token): Likewise.
707         * src/m4.c (stackovf_handler, main): Likewise.
708         * src/macro.c (expand_token, expand_argument, call_macro),
709         (expand_macro): Likewise.
710         * src/output.c (make_room_for, output_text, insert_file),
711         (freeze_diversions): Likewise.
712         * src/symtab.c (symtab_init, lookup_symbol): Likewise.
714         * src/builtin.c (builtin_tab): Make format and indir blind.
715         (substitute): Prefer "Warning:" vs. "ERROR:" in messages.
716         * NEWS: Mention the change to builtins.
718 2006-06-22  Eric Blake  <ebb9@byu.net>
720         Robustify frozen file format.
721         * src/freeze.c (reload_frozen_state): Add GET_DIRECTIVE helper
722         macro.  Require V first, and only accept it once.  For F, use
723         placeholder if builtin is not found, rather than warning.
724         * src/m4.h (m4_placeholder): New prototype.
725         * src/builtin.c: Unify error message style.
726         (m4_placeholder): New function, warn if invoked.
727         (builtin_tab): Add m4_placeholder.
728         (m4_defn): Warn if placeholder is encountered.
729         (find_builtin_by_addr): Handle placeholder.
730         (find_builtin_by_name): Return placeholder on failure.
731         (m4_builtin): Treat placeholder as undefined.
732         * doc/m4.texinfo (Frozen files): Document changes in V and F.
733         * NEWS: Document this change.
734         Reported by Bruno Haible.
736         * doc/m4.texinfo: Whitespace cleanup.  TABs are evil in texinfo.
737         (tabchar): New macro, so that 'make check' still works.
738         (Invoking m4): Document that ignored compatibility options -B, -S,
739         and -T each consume an argument.
740         * checks/get-them: Honor @tabchar{}.
742         Avoid compiler warnings during -DDEBUG.
743         * src/m4.h (M4_GNUC_ATTRIBUTE, M4_GNUC_UNUSED): New macros.
744         [DEBUG]: Also imply DEBUG_OUTPUT and DEBUG_STKOVF.
745         * src/input.c (print_token) [DEBUG_INPUT]: Use correct format.
746         (lex_debug) [DEBUG_INPUT]: Fix to compile.  Mark unused.
747         (next_token) [DEBUG_INPUT]: Print before returning.
748         * src/path.c (include_dump) [DEBUG_INCL]: Mark unused.
749         * src/symtab.c (symtab_debug) [DEBUG_SYM]: Mark unused.
751         Avoid mkstemp bugs on various platforms.
752         * m4/gnulib-cache.c: Augment with gnulib-tool --import mkstemp.
753         * src/output.c [! HAVE_MKSTEMP]: Delete.
754         * configure.ac (AC_CHECK_FUNCS): Don't check for mkstemp.
755         * src/m4.h (mkstemp) [! HAVE_MKSTEMP]: Prototype, if needed.
756         * NEWS: Document this.
758         * Makefile.am (EXTRA_DIST): Distribute gnulib-cache.m4.
759         Reported by Bruno Haible.
761 2006-06-21  Eric Blake  <ebb9@byu.net>
763         Avoid obsolete sigstack when POSIX sigaltstack is available.
764         * src/m4.c: Blindly assume signal.h, since stackovf.c and gnulib
765         do likewise.
766         * configure.ac (AC_CHECK_HEADERS): Likewise.
767         (AC_CHECK_TYPES): New check for siginfo_t, since siginfo.h is
768         obsolete and most hosts now have it in signal.h.
769         (AC_CHECK_MEMBERS): New check for sigaction.sa_sigaction.
770         (AC_CACHE_CHECK): Cache decision to use stackovf.
771         (AC_EGREP_HEADER): Switch to AC_CHECK_TYPES.
772         * src/stackovf.c (DEBUG_STACKOVF): Remove unused define.
773         (SA_RESETHAND, SA_SIGINFO): Provide fallback definitions, to
774         simplify later code.
775         (PARAM_STACKOVF, PARAM_NOSTACKOVF): Move further away from NULL,
776         in case of dereferencing a member of a NULL pointer.
777         (sigsegv_handler) [HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define a
778         POSIX handler.
779         (setup_stackovf_trap): Use NULL instead of 0 for pointers, use
780         EXIT_FAILURE in error, indent preprocessor directives.
781         [HAVE_SIGALTSTACK && HAVE_SIGINFO_T]: Depend on siginfo_t, not
782         siginfo.h.
783         [HAVE_SIGACTION && defined SA_ONSTACK]: Prefer POSIX handler.
784         Reported by Santiago Vila.
786 2006-06-19  Eric Blake  <ebb9@byu.net>
788         * THANKS: Update.
790 2006-06-18  Andreas Buening  <andreas.buening@nexgo.de>  (tiny change)
792         * checks/Makefile.in (PATH_SEPARATOR): New macro.
793         (check, installcheck): Use it, for OS/2.
795 2006-06-18  Eric Blake  <ebb9@byu.net>
797         Consistently use "GNU M4" as package name, "m4" as executable
798         name.
799         * NEWS: Document previous fix.
800         * THANKS: Update.
801         * README: Fix grammar.  Document that --enable-changeword is on
802         its last leg.
803         * doc/m4.texinfo (Top, Changeword): Likewise.
804         (Sysval): Enhance this test.
805         (History): Backport this section from CVS head, and update.
807 2006-06-18  Bruno Haible  <bruno@clisp.org>  (tiny change)
808             Eric Blake  <ebb9@byu.net>
810         * src/builtin.c (WEXITSTATUS): Provide fallback definition.
811         (m4_esyscmd): Set sysval to 0xffff, to accomodate both
812         big-endian and little-endian wait status definitions.
813         (m4_sysval): Use WEXITSTATUS.
814         Reported by Andreas Buening.
816 2006-06-18  Eric Blake  <ebb9@byu.net>
818         * configure.ac (AC_INIT): Bump version number.
819         * NEWS: Describe changes in 1.4.4c.
821 2006-06-17  Eric Blake  <ebb9@byu.net>
823         Release 1.4.4b:
825         * configure.ac (AC_INIT): Bump version number.
826         * NEWS: Describe changes since 1.4.4.
827         * Makefile.maint (cvs-news): Accomodate copyright line wrapping.
829         * Makefile.am (MAINTAINERCLEANFILES): Clean files added by
830         bootstrap.
831         * checks/Makefile.in (maintainer-clean): Add missing target.
832         * COPYING: Remove generated file from CVS.
834 2006-06-16  Eric Blake  <ebb9@byu.net>
836         * checks/Makefile.in (DISTFILES): Distribute wrapfifo.m4.
838 2006-06-15  Eric Blake  <ebb9@byu.net>
840         * checks/wrapfifo.m4: New file.  Use it...
841         * doc/m4.texinfo (Incompatibilities): here, in a new test case to
842         demonstrate how to get POSIX behavior of m4wrap prior to m4 2.0.
844         * src/m4.h (to_uchar): New function.
845         * src/eval.c (eval_lex): Use it to avoid passing signed char to
846         isdigit, isalpha, isupper, islower, isspace, isalnum.
847         * src/builtin.c (expand_user_macro): Likewise.
848         * src/format.c (format): Likewise.
849         * src/macro.c (expand_argument): Likewise.
850         * NEWS: Document this security fix.
852         Message cleanup.
853         * src/symtab.c (lookup_symbol): Use invalid, not illegal.
854         * src/freeze.c (reload_frozen_state): Fix typo in message.
855         (produce_frozen_state): Standardize on builtin, not built-in.
856         * src/builtin.c (numeric_arg, bad_argc): Likewise.
858         * configure.ac (M4_EARLY, M4_INIT): Use gnulib.
859         (AC_PROG_RANLIB, AC_AIX, AC_MINIX, AC_CHECK_HEADERS),
860         (AC_FUNC_ALLOCA, AC_REPLACE_FUNCS): Avoid checks now done by
861         gnulib.
862         * Makefile.am (ACLOCAL_AMFLAGS): New entry, for gnulib.
863         * m4/gnulib-cache.m4: New file, from gnulib.
864         * bootstrap: Invoke gnulib-tool --update.
865         * src/m4.c (main): Cast away const.
866         * NEWS: Document that regex is updated.
867         * THANKS: Update.
869 2006-06-08  Eric Blake  <ebb9@byu.net>
871         * configure.ac (changeword): Work even when changeword is not a
872         macro.
873         (AC_PROG_AWK, AC_PROG_INSTALL, AC_PROG_MAKE_SET, AC_HEADER_STDC):
874         Delete; now done by automake.
875         (AC_ISC_POSIX, AC_C_CONST): Delete; now obsolete.
877 2006-06-07  Eric Blake  <ebb9@byu.net>
879         * lib/regex.c (bcmp_translate): Canonicalize type name.
880         * doc/Makefile.am (MAINTAINERCLEANFILES): Fix typo.
881         * configure.ac (changeword): Disable changeword for the creation
882         of configure, in case of bootstrapping with an m4 configured with
883         --enable-changeword.
885         Distribute a rudimentary man page.
886         * Makefile.am (SUBDIRS): Move doc after src so that 'm4 --help'
887         can feed help2man.
888         * doc/Makefile.am (man_MANS, EXTRA_DIST, MAINTAINERDISTCLEAN),
889         (SUFFIXES, m4.1): New macros and rules to build m4.1.
891 2006-06-06  Eric Blake  <ebb9@byu.net>
893         * lib/regex.c (re_match_2_internal, bcmp_translate): Avoid
894         compiler warnings at -O2.
895         * lib/getopt.c (_getopt_internal): Likewise.
897         Cleanup of previous patches.
898         * src/input.c (struct input_block): Remove traced member.
899         (push_macro, init_macro_token): Don't pass trace status around.
900         * src/m4.h (struct token_data): Remove traced member.
901         (struct symbol, struct builtin): Reduce unused space.
902         (TOKEN_DATA_FUNC): Simplify.
903         (TOKEN_DATA_FUNC_TRACED): Remove unused macro.
904         (push_macro, define_builtin): Remove unused parameter.
905         * src/builtin.c (define_builtin, builtin_init, define_macro),
906         (m4_defn): Don't pass trace status around.
907         * src/macro.c (expand_argument): Likewise.
908         * src/freeze.c (reload_frozen_state): Likewise.
909         * src/symtab.c: Whitespace cleanup.
910         * NEWS: Clean up wording.
911         * doc/m4.texinfo (Undefine, Dumpdef, Trace): Cleanup wording;
912         ensure tests actually expose bugs prior to today's patches.
914         Trace status of builtins is no longer inherited across
915         define(...,defn(...)).  Fixes bug that autom4te had been working
916         around.
917         * src/builtin.c (define_builtin): Don't override trace status.
918         * doc/m4.texinfo (Trace): Add test for this.
919         * NEWS: Document this.
921         When changing macro definitions inside the arguments to the macro,
922         consistently preserve the old definition that was in effect before
923         argument collection, similar to the C pre-processor.
924         Reported by John Brzustowski.
925         * NEWS: Document this change.
926         * doc/m4.texinfo (Macro Arguments, Undefine, Dumpdef): Document
927         this policy, and add tests that expose core dumps prior to this
928         patch.
929         * src/m4.h (struct symbol): New members to track when a symbol is
930         still in use after removal from the symbol table.
931         (SYMBOL_PENDING_EXPANSIONS, SYMBOL_DELETED): Define.
932         (free_symbol): Prototype.
933         * src/macro.c (expand_macro): Track pending expansions of a
934         symbol.  On completion, if a symbol is deleted and no longer
935         pending, free its memory.
936         * src/symtab.c (free_symbol): Export.  Don't free memory if symbol
937         is still in use.
938         (lookup_symbol) <SYMBOL_INSERT>: Create new entry when old entry
939         is still in use.
940         (lookup_symbol) <SYMBOL_DELETE, SYMBOL_POPDEF>: Mark entries still
941         in use as deleted and remove from the table without freeing
942         memory.
943         (symtab_print_list) [DEBUG_SYM]: More debug output.
945         * src/symtab.c (hack_all_symbols): Allow certain modifications of
946         the symbol table during traversal.
947         * src/builtin.c (set_trace): Replace SYMBOL_DELETE with
948         SYMBOL_POPDEF, since only the latter is safe with
949         hack_all_symbols.
951         Solve crash when passing "indir(`foo')" to "m4 -tfoo".
952         * src/symtab.c (lookup_symbol) <SYMBOL_DELETE, SYMBOL_POPDEF>:
953         Preserve placeholder when macro is being traced.
954         * src/builtin.c (m4_ifdef, m4_indir): A traced but undefined
955         symbol is not defined.
956         (set_trace): Remove placeholder when no longer traced.
957         (m4_traceon): On named traces, always reserve a slot in the
958         symbol table.
959         (m4_traceoff): Don't warn about untracing a nonexistent symbol.
960         * NEWS: Document new trace behavior.
961         * doc/m4.texinfo (Trace): Tracing by name now consistently works
962         no matter whether that macro is currently defined.
963         (Incompatibilities): Document differences between traditional and
964         GNU trace.
966 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
967             Eric Blake  <ebb9@byu.net>
969         * src/m4.h (hash_table_size): Now size_t instead of int.
970         * src/m4.c (hash_table_size): Likewise.
971         (main): Adjust to this; use atol rather than atoi.
972         * src/symtab.c: Include <limits.h>, for CHAR_BIT.
973         (symtab_init, lookup_symbol, hack_all_symbols):
974         Use size_t for sizes and indexes, not int.
975         (symtab_print_list) [DEBUG_SYM]: Likewise.
976         (hash): Likewise.  Don't case-fold in the hash function.
977         Shift by 7, not 3, for consistency with gnulib/lib/hash.c.
978         Don't assume hash word is 32 bits.
979         * NEWS: Document this change.
981 2006-06-04  Eric Blake  <ebb9@byu.net>
983         * src/symtab.c (symtab_debug, symtab_print_list) [DEBUG_SYM]: Fix
984         to allow compilation, for use in debugger.
985         (profiles, current_mode) [DEBUG_SYM]: New variables.
986         (show_profile, profile_strcmp) [DEBUG_SYM]: New methods for
987         determining hash table performance.
989 2006-05-31  Eric Blake  <ebb9@byu.net>
990             John Brzustowski  <jbrzusto@fastmail.fm>
992         * src/input.c (input_stack): Delete; use current_input instead.
993         (wrapup_stack): Dynamically allocate, so that recursion is handled
994         properly.
995         (push_wrapup): Use current wrapup stack.
996         (pop_wrapup): Rotate wrapup stack to current, and create new
997         wrapup stack.
998         (input_init): Dynamically allocate stacks.
999         * NEWS: Update, now that recursive m4wrap can no longer cause
1000         core dump.
1002 2006-05-31  Eric Blake  <ebb9@byu.net>
1004         * lib/getopt.c: Fix copyright year.
1005         * lib/obstack.c: Ditto.
1006         * src/builtin.c: Ditto.
1008 2006-05-30  Eric Blake  <ebb9@byu.net>
1010         * doc/m4.texinfo (M4wrap): Add test to expose m4wrap bug.
1011         Reported by John Brzustowski.
1012         (Incompatibilities): Document known POSIX incompatibilities.
1013         * THANKS: Update.
1015 2006-05-29  Eric Blake  <ebb9@byu.net>
1017         * doc/m4.texinfo (Maketemp): Work even when running 'make check'
1018         in read-only dir.
1020         Use automake.
1021         * Makefile.am: New file.
1022         * doc/Makefile.am: Ditto.
1023         * examples/Makefile.am: Ditto.
1024         * lib/Makefile.am: Ditto.
1025         * src/Makefile.am: Ditto.
1026         * acinclude.m4: New file, renamed from aclocal.m4.
1027         * configure.ac (AM_INIT_AUTOMAKE): Invoke new macro.
1028         (AC_ARG_PROGRAM): Now redundant.
1029         (STACKOVF): Turn into automake conditional.
1030         (AC_CONFIG_COMMANDS): stamp-h is a command, not a file.
1031         * checks/Makefile.in: Converting this dir to automake was not
1032         trivial; for now, just add missing targets demanded by top-level.
1033         * INSTALL: Remove files that are now generated from CVS.
1034         * Makefile.in: Ditto.
1035         * aclocal.m4: Ditto.
1036         * install-sh: Ditto.
1037         * mkinstalldirs: Ditto.
1038         * doc/Makefile.in: Ditto.
1039         * doc/texinfo.tex: Ditto.
1040         * examples/Makefile.in: Ditto.
1041         * lib/Makefile.in: Ditto.
1042         * src/Makefile.in: Ditto.
1044         * AUTHORS: Backport from CVS head, and update.
1045         * doc/m4.texinfo (Changeword): Fix examples to match behavior.
1047 2006-05-27  Eric Blake  <ebb9@byu.net>
1049         * lib/regex.c (regex_compile): Kill compiler warnings.
1050         * lib/getopt.c: Likewise.
1051         * lib/obstack.c: Likewise.
1052         * src/builtin.c (builtin_init): Likewise.
1053         * src/path.c (path_search): Likewise.
1055         * doc/m4.texinfo: Fix usage of a vs. an.
1056         (Loops, Include, Cleardiv, Patsubst, Format, M4exit): Kill
1057         overfull hbox warnings.
1058         (Inhibiting Invocation, Divert, Maketemp, M4exit): Add new tests.
1060         * configure.ac: Update to autoconf 2.59.  Forbid ^M4_.  Fix
1061         quoting.
1062         * aclocal.m4 (fp_PROG_CC_STDC): Delete; now covered by autoconf.
1063         (fp_C_PROTOTYPES): Delete, GNU Coding Standards state we can now
1064         assume C89.
1065         (M4_WITH_DMALLOC): Rename from fp_WITH_DMALLOC. Fix quoting.
1066         * src/m4.h (_): PROTOTYPES is no longer provided, assume C89.
1067         * src/Makefile.in: Delete remains of ansi2knr.
1068         * src/ansi2knr.1: Delete.
1069         * src/ansi2knr.c: Delete.
1071 2006-05-25  Eric Blake  <ebb9@byu.net>
1073         * doc/m4.texinfo: Fix spelling errors.  Use `invalid' instead of
1074         `illegal'.
1076         * doc/m4.texinfo (Francois): No longer needed as a tex variable.
1077         Reported by Karl Berry.
1079 2006-05-24  Eric Blake  <ebb9@byu.net>
1081         * Makefile.in (html): New target.
1082         * doc/Makefile.in (html, m4.html): Likewise.
1083         (MAKEINFOHTML): New macro.
1084         * doc/m4.texinfo (Francois) [ifnottex]: Use newer texinfo
1085         rendering.
1086         (Regexp) [ifhtml]: Make cross-reference to emacs manual an
1087         absolute URL.
1088         Reported by Bob Badour.
1090         * THANKS: Update.  Move reporter's email addresses here, instead
1091         of in ChangeLog.
1093 2006-05-11  Eric Blake  <ebb9@byu.net>
1095         * THANKS: Update.
1096         * doc/m4.texinfo (Changequote): Give testsuite exposure to bug
1097         patched on 2005-12-04.
1098         Reported by Ilya N. Golubev.
1100         * bootstrap: New file, so that generated files need not be stored
1101         in CVS.
1102         * Makefile.in (DISTFILES): Add bootstrap.
1104         Make testsuite less sensitive to doc changes.
1105         * doc/m4.texinfo: Use m4.input instead of filename.
1106         * checks/check-them (xerr): Turn m4.input into filename.
1107         * checks/Makefile.in (dist): Depend on stamp-checks.
1109         Portability updates for OS/2.
1110         * src/Makefile.in (EXEEXT, OBJEXT): Define.
1111         (LINK): Use CFLAGS.
1112         (.c.obj): Define.
1113         * lib/Makefile.in (OBJEXT): Define.
1114         (.c.obj): Define.
1115         * doc/Makefile.in (install, uninstall): Install info files into
1116         the dir listing.
1117         Reported by Andreas Buening.
1119 2006-05-09  Eric Blake  <ebb9@byu.net>
1121         * install-sh: Update to newer upstream version.
1122         * mkinstalldirs: Likewise.
1123         Reported by Andreas Buening.
1125         * src/m4.c (main): Bump copyright year.
1126         * Makefile.in (datarootdir): Define, for autoconf 2.59c.
1127         * doc/Makefile.in (datarootdir): Likewise.
1129 2006-05-08  Eric Blake  <ebb9@byu.net>
1131         * THANKS: Update.
1132         * doc/m4.texinfo (Bugs): Backport bug email address from head.
1133         Reported by Stepan Kasal.
1135 2005-12-04  Ilya N. Golubev  <gin@mo.msk.ru>  (tiny change)
1137         * input.c (match_input): Do not pass expression with side effect
1138         to `obstack_grow'.  Fix <INTERNAL ERROR: Recursive push_string!>.
1139         * NEWS: Updated.
1141 2005-12-04  Gary V. Vaughan  <gary@gnu.org>  (tiny change)
1143         * doc/m4.texinfo (How to debug macros and input): s/woould/would/
1144         Reported by Damian Menscher.
1146 2005-10-19  Gary V. Vaughan  <gary@gnu.org>  (tiny change)
1148         * configure.ac (AC_INIT): Bump to 1.4.4a.
1150 2005-10-19  Gary V. Vaughan  <gary@gnu.org>  (tiny change)
1152         Release 1.4.4:
1154         * configure.ac (AC_INIT): Bump to 1.4.4.
1155         * NEWS: Describe 1.4.4's changes.
1156         * INSTALL, install-sh, doc/texinfo.tex: Updated from upstream.
1158 2005-10-17  John Gatewood Ham  <zappaman@buraphalinux.org>  (tiny change)
1160         * src/m4.c: fix return code when non-existent files are processed
1162 2005-10-17  John Gatewood Ham  <zappaman@buraphalinux.org>  (tiny change)
1164         * README: update email address for bug reports.
1166 2005-10-17  Gary V. Vaughan  <gary@gnu.org>
1168         * doc/m4.info: Generated files are not kept in the repository.
1170 2005-05-01  Gary V. Vaughan  <gary@gnu.org>
1172         The FSF are moving offices today.  Changed their contact address
1173         in all files from `59 Temple Place, Suite 330, MA 02111-1307' to
1174         `51 Franklin Street, Fifth Floor, MA 02110-1301'.
1176         Also, some of the files here were never updated from the previous
1177         '675 Mass Ave, Cambridge, MA 02139', so changed those to the
1178         '51 Franklin Street, Fifth Floor, MA 02110-1301' address too.
1180 2005-03-31  Mike Frysinger  <vapier@gentoo.org>
1182         * Makefile.in (bindir, infodir): Substitute from configure rather
1183         than hardcode.
1184         * doc/Makefile.in (infodir): Ditto.
1185         * src/Makefile.in (bindir): Ditto.
1186         * NEWS: Updated.
1188 2005-03-31  Gary V. Vaughan  <gary@gnu.org>
1190         Changes needed to automate the release process for 1.4.3:
1192         * Makefile.in (dist): Make .tar.bz2 tarball too.
1193         * Makefile.maint (TSDEPS_DIST): Remove m4/libtool.m4.
1194         (cvs-news): Look 1 line further down for NEWS release number.
1195         (cvs-dist): We don't use automake, so make dist is fine.
1196         Remove double . before suffixes.
1197         (cvs-release): Don't mention manual.html.
1198         (fetch): Get latest gendocs files.
1199         (web-manual): Rewritten to use gendoc for multiformat manuals.
1200         * doc/gendocs.sh: Don't save an old version in m4 CVS!
1201         * doc/m4.texinfo (Index): HFS+ (the file system on my Mac) is case
1202         preserving, but case insensitive, so generating html docs per node
1203         clashes between Index.html, the node file, and index.html, the
1204         top-level of the document tree...
1205         (Index macro): ...so renamed to this.  Changed all references.
1207 2005-03-31  Gary V. Vaughan  <gary@gnu.org>  (tiny change)
1209         * configure.ac (AC_INIT): Bump to 1.4.3a.
1211 2005-03-31  Gary V. Vaughan  <gary@gnu.org>  (tiny change)
1213         Release 1.4.3:
1215         * configure.in (AC_INIT): Bump to 1.4.3.
1216         * NEWS: Describe 1.4.3's changes.
1218 2005-03-31  Gary V. Vaughan  <gary@gnu.org>
1220         * Makefile.maint: New file with release rules, from CVS libtool.
1221         * Makefile.in (DISTFILES): Add Makefile.maint.
1222         * INSTALL, install-sh, doc/texinfo.tex: Updated to latest
1223         canonical versions.
1225 2005-03-31  Eric Blake  <ebb9@byu.net>  (tiny change)
1227         * doc/m4.texinfo (Patsubst): Re-add trailing space required by
1228         checks/47.patsubst, with a redundant @comment to prevent emacs
1229         from removing it accidentally again.
1230         * checks/get-them: Allow for trailing spaces tucked behind
1231         @comment marks.
1233 2005-03-31  Eric Blake  <ebb9@byu.net>  (tiny change)
1235         * doc/Makefile.in (install, uninstall): Accomodate DESTDIR.
1236         * src/Makefile.in (install, uninstall): Likewise.
1238 2005-02-07  Gary V. Vaughan  <gary@gnu.org>
1240         * lib/regex.c, lib/regex.h:  Reverted gnulib update, which broke
1241         on Cygwin.
1242         Reported by Eric Blake.
1244 2005-02-04  Gary V. Vaughan  <gary@gnu.org>
1246         * lib/regex.c, lib/regex.h: Updated from gnulib.
1247         * src/input.c (set_word_regexp):  Don't change the word_regexp
1248         unless it compiles correctly.
1249         * NEWS: Updated.
1250         Reported by Frank Schwidom.
1252         * Makefile.in (stamp-h): Regenerate config.h properly.
1254 2005-02-03  Gary V. Vaughan  <gary@gnu.org>
1256         * configure.ac (AC_DEFINE): Fix overquoting of description
1257         argument.
1259         * src/m4.h (__CYGWIN__, WIN32): Canonicalise Windows and Cygwin
1260         recognition macros.
1261         * src/freeze.c (produce_frozen_state): Use \n line-endings even
1262         on Windows, so that the frozen file reader will work.
1263         Reported by Josef T. Burger.
1265         * src/m4.c (main): Modernise the --version output.
1267 2005-02-03  Gary V. Vaughan  <gary@gnu.org>
1269         Modernise the configury a little to prevent spurious errors from
1270         Autoconf-2.59's autoreconf:
1272         * config.h.in: Renamed to...
1273         * config-h.in: ...this to better support DOS 8.3 file systems.
1274         * acconfig.h: Removed.
1275         * configure.in: Renamed to...
1276         * configure.ac: ...this, and AC_DEFINE used to declare config.h
1277         entry comments.  Slight reorganisation and reformatting.
1278         * aclocal.m4: Use third argument to AC_DEFINE to declare config.h
1279         entry comments.
1280         (AC_INIT): Use a modern 3 argument call.
1281         * Makefile.in, checks/Makefile.in, doc/Makefile.in,
1282         examples/Makefile.in, lib/Makefile.in, src/Makefile.in:
1283         s/PRODUCT/PACKAGE/g.
1284         * Makefile.in (DISTFILES): Removed acconfig.h, configure.in,
1285         config.h.in.  Added configure.ac, config-h.in.
1286         (stamp-h.in): Removed acconfig.h from dependencies.
1287         (configure): Depends on configure.ac, not configure.in.
1288         * doc/Makefile.in (stamp-vti): Ditto.
1289         * src/freeze.c (produce_frozen_state), src/m4.c (main): Adjust for
1290         difference between PRODUCT="m4" and PACKAGE="GNU M4".
1291         * configure: Regenerated.
1293 2005-02-03  Noah Misch  <noah@cs.caltech.edu>
1295         * src/output.c (mkstemp): Make non-static, and build regardless of
1296         HAVE_TMPFILE; src/builtin.c also needs this replacement.
1297         * NEWS: Update.
1299 2004-09-09  Vincent Lonngren  <Vincent.lonngren.759@student.lu.se>
1301         * configure.in (AC_CHECK_HEADERS): Commit works best when you save
1302         changes from your editor buffer first.
1304         * configure.in (AC_CHECK_HEADERS):  Add signal.h, sys/signal.h.
1305         * src/m4.c: And include them as appropriate.
1306         * NEWS: Updated.
1308 2004-09-09  Andreas Schwab  <schwab@suse.de>
1310         Refactoring of the string read case in next_char provides about a
1311         20% speedup of M4 as typically used by autoconf:
1313         * src/input.c (next_char_1): Renamed from next_char.
1314         (next_char): New macro.
1315         * NEWS: Updated.
1317 2004-08-21  Gary V. Vaughan  <gary@gnu.org>
1319         * configure.in (VERSION): Bump to 1.4.2a.
1321 2004-08-19  Paul Eggert  <eggert@twinsun.com>
1323         * Release 1.4.2.
1325         * configure.in (VERSION): Bump to 1.4.2.
1326         * News: Describe 1.4.2's changes.
1328         * src/m4.c (reference_error): Preserve errno, since M4ERROR
1329         relies on this.
1330         * src/builtin.c (m4_esyscmd): Clear errno before calling popen.
1331         (m4_maketemp): Clear errno before calling mkstemp.
1332         * src/path.c (path_search): Don't let "free" trash errno when
1333         returning NULL.
1334         * src/output.c (insert_file): Don't assume errno has a valid
1335         value simply because fread returns zero.  This fixes a
1336         portability bug reported by Marion Hakanson in
1337         <http://lists.gnu.org/archive/html/bug-m4/2004-07/msg00029.html>.
1339 2004-06-09  Gary V. Vaughan  <gary@gnu.org>
1341         * configure.in (VERSION): Bump to 1.4.1a.
1342         * NEWS: Place holder for next stable release.
1344 2004-06-03  Paul Eggert  <eggert@cs.ucla.edu>
1346         * Release 1.4.1.
1348         * configure.in (VERSION): Bump to 1.4.1.
1349         * NEWS: Describe 1.4.1's changes.
1351         * aclocal.m4 (fp_PROG_CC_STDC): Use AC_DEFUN, not define, to
1352         pacify Autoconf 2.59.
1354         * doc/m4.texinfo: Insert commas after @xref's that lack them,
1355         to pacify Texinfo 4.7.
1356         * doc/Makefile.in (info): Remove info-1, info-2, info-3.
1358         * src/m4.h, src/debug.c: Use #ifdef __STDC__, not #if __STDC__, to
1359         pacify Sun C compilers.
1361 2003-09-28  Akim Demaille  <akim@epita.fr>
1363         * src/symtab.c (lookup_symbol): Fix an uninitialized-variable
1364         botch.
1366 2003-09-03  Santiago Vila  <sanvila@debian.org>
1368         * examples/stackovf.sh: Use tempfile if available.
1370 2001-04-02  Robert Bihlmeyer  <robbe@orcus.priv.at>
1372         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=92629
1373         * src/output.c (m4_insert_file): Do not mix buffered and
1374         unbuffered I/O, as this breaks on the Hurd.  (trivial change)
1376 2001-02-01  Santiago Vila  <sanvila@debian.org>
1378         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=84451
1379         * src/m4.c (main): Fix format vulnerabilities.  (trivial change)
1381 2001-02-01  Matt Kraai  <kraai@debian.org>
1383         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=84416
1384         * doc/m4.texinfo (Maketemp): Change maketemp to refer to a new,
1385         empty file rather than to a nonexistent file.  This closes a common
1386         security hole.
1387         * src/builtin.c (m4_maketemp): Implement the above, by using
1388         mkstemp rather than mktemp.  (trivial change)
1390 2000-01-09  Akim Demaille  <demaille@inf.enst.fr>
1392         * src/builtin.c (expand_ranges): Added break after trailing dash.
1393         This caused misbehaviors on some systems.
1395 Sat Nov  5 15:52:47 1994  Francois Pinard  (pinard@icule)
1397         * Release 1.4.
1399         * doc/Makefile.in (realclean): Also remove stamp-vti.
1400         Reported by Eric Backus.
1402 Wed Nov  2 00:47:53 1994  Francois Pinard  (pinard@icule)
1404         * src/freeze.c (produce_frozen_state): If the frozen file cannot
1405         be opened, return immediately after producing the error message.
1406         Reported by Andreas Schwab.
1408         * configure.in: Check for const only after having found possible
1409         ANSIfying compiler flags, this is of no use to check it before.
1410         Reported by Alexander Lehmann.
1412 Tue Nov  1 22:02:37 1994  Francois Pinard  (pinard@icule)
1414         * src/macro.c (collect_arguments): Cast obstack arguments to
1415         (voidstar), so avoiding compiler warnings.
1416         Reported by Joseph E. Sacco.
1418         * src/freeze.c (produce_frozen_state): Cast printed lengths to
1419         (int) so they correspond to %d format items.
1420         Reported by Joseph E. Sacco.
1422         * src/m4.c (main): Cast the argument to xfree to (voidstar).
1423         * src/symtab.c (free_symbol): Idem.
1424         Reported by Karl Vogel.
1426 Mon Oct 31 02:11:19 1994  Francois Pinard  (pinard@icule)
1428         * Makefile.in (DISTFILES): Distribute BACKLOG.
1430         * configure.in: Define PRODUCT and VERSION.
1431         * acconfig.h: Document PRODUCT and VERSION.
1432         * src/m4.c, src/freeze.c: Use PRODUCT and VERSION instead of the
1433         constant string m4 and variable or parameter named version.
1435 Sun Oct 30 08:13:03 1994  Francois Pinard  (pinard@icule)
1437         * src/m4.h, src/debug.c: Replace all #ifdef __STDC__ by #if
1438         __STDC__.  Alliant FX/2800 Concentrix 2.2 (i860-BSD4.3) compiler
1439         defines __STDC__ to 0, for indicating it is *not* ANSI!
1440         Reported by Kaveh R. Ghazi.
1442         * configure.in: Added obsolescent tests for AIX and Minix.
1444         * doc/Makefile.in (mostlyclean): Remove texclean in dependencies,
1445         which texclean does not exist anymore.
1446         Reported by Eric Backus, Jim Meyering, John David Anglin and
1447         Joseph E. Sacco.
1449 Sat Oct 29 05:10:03 1994  Francois Pinard  (pinard@icule)
1451         * aclocal.m4 (fp_C_PROTOTYPES): Force -D_HPUX_SOURCE with -Aa.
1452         Reported by John David Anglin.
1454         * src/ansi2knr.c: New version, sent by Peter Deutsch.
1455         * aclocal.m4 (fp_C_PROTOTYPES): Substitute empty or ansi2knr for
1456         ANSI2KNR, depending on the fact the compiler is ANSI or not.
1457         * src/Makefile.in: Use -Ovarargs=convert on ansi2knr calls.
1458         Remove the sed filter after ansi2knr for debug.c.  Use $O instead
1459         of $U, put underline in extensions rather than in basenames.  Use
1460         implicit rules, now that regularity makes this possible.
1461         Have $(OBJECTS) depend on $(ANSI2KNR), so to trigger compilation
1462         of ansi2knr whenever it is needed.
1463         * configure.in: Adjusted for correct STACKOVF substitution.
1464         * src/debug.c (trace_format): When not __STDC__, use (...) as a
1465         parameter list, so ansi2knr will convert it to (va_alist) va_dcl.
1466         Reported by David MacKenzie.
1468         * Makefile.in: Remove binprefix.  Use transform_name instead.
1469         Reported by David MacKenzie.
1471         * doc/Makefile.in: Create version.texi, use it, clean it.
1472         Reported by Jim Meyering.
1474 Fri Oct 28 20:33:55 1994  Francois Pinard  (pinard@icule)
1476         * Makefile.in (all, install, uninstall): Depend on Makefile.
1478         * Makefile.in: For actions invoking $(MAKE) from within compound
1479         sh statements, exit non-zero if the sub-make fails.  Otherwise,
1480         the top-level make may exit successfully when it should fail.
1481         Reported by Jim Kingdon.
1483         * {,/*}Makefile.in: Use && after all cd, in case they fail.
1485         * {,*/}Makefile.in: Declare PRODUCT and VERSION macros.
1486         (dist): Use PRODUCT and VERSION instead of tricks on .fname.
1487         * configure.in: Substitute PRODUCT and VERSION.
1489         * {,*/}Makefile.in (dist): Always try a hard link before a copy.
1491 Thu Oct 27 22:32:58 1994  Francois Pinard  (pinard@icule)
1493         * Makefile.in (mostlyclean-local): Do not remove *~.
1494         * */Makefile.in (mostlyclean): Idem.
1495         Reported by Robert E. Brown and Richard Stallman.
1497 Sun Oct  9 08:30:13 1994  Francois Pinard  (pinard@icule)
1499         * src/m4.h: Get rid of CONFIG_BROKETS.
1501 Sun Oct  2 16:48:10 1994  Francois Pinard  (pinard@icule)
1503         * configure.in: Use AC_ARG_PROGRAM.
1504         * aclocal.m4 (fp_C_PROTOTYPES): Substitute @kr@ by kr or empty.
1505         Reported by David MacKenzie.
1507 Sat Oct  1 11:22:42 1994  Francois Pinard  (pinard@icule)
1509         * configure.in: Do not add -O to CFLAGS for GNU C, now that
1510         configure does it automatically.
1511         Reported by Jim Meyering.
1513 Fri Sep 23 08:16:58 1994  Francois Pinard  (pinard@icule)
1515         * src/stackovf.c: Declare the handler_t typedef earlier in the
1516         code, use it for stackovf_handler.
1517         (setup_stackovf_trap): Use RETSIGTYPE instead of void while
1518         casting sigsegv_handler.
1519         Reported by Robert Bernstein.
1521         * src/m4.c (main): Initialize program_name to argv[0] without
1522         basename'ing it.
1523         Reported by Karl Berry.
1525 Sun Sep 18 11:42:50 1994  Francois Pinard  (pinard@icule)
1527         * src/Makefile.in (TAGS): Include a ../lib/TAGS reference.
1528         Reported by Karl Berry.
1530 Wed Sep 14 10:00:22 1994  Francois Pinard  (pinard@icule)
1532         * lib/Makefile.in (mostlyclean): Added.
1533         (TAGS): Make in $(srcdir).
1535         * configure.in: Use `choke me' in test, like everywhere!
1537         * {doc,examples,lib,src}/Makefile.in (check): Deleted, as
1538         unreacheable and useless.
1540         * doc/Makefile.in (texclean): Deleted, merged in mostlyclean.
1542         * lib/Makefile.in (DISTFILES): Distribute TAGS.
1543         (distclean): Do not remove TAGS.
1544         (realclean): Remove it.
1545         * Makefile.in: Make TAGS in lib also, not just in src.
1546         Reported by Karl Berry.
1548         * Makefile.in (distclean, realclean): Instead of recursively
1549         calling $(MAKE) for the -local part, allow parallel execution of
1550         -recursive and -local, only delay the removal of config.status,
1551         which is repeated in both goals.
1553 Tue Sep 13 19:21:05 1994  Francois Pinard  (pinard@icule)
1555         * Release 1.3.
1557         * Makefile.in: Group all *clean-recursive goals in one, using sed
1558         to remove `-recursive' while calling make recursively.  Also, use
1559         a subshell for each recursive $(MAKE).
1560         Reported by Jim Meyering.
1562         * src/m4.h (memcpy): Define with bcopy for BSD systems.
1563         Reported by Kaveh R. Ghazi.
1565         * src/Makefile.in (ansi2knr): Use $(LIBS) while linking, for SunOS
1566         4.1.3 requires -ldl to link even ansik2nr, and we need a way to
1567         specify it.
1569         * configure.in: Use date instead of touch for stamp-h.
1570         * Makefile.in (stamp-h.in): Idem.
1572         * Makefile.in (distclean, realclean): Force serial execution of
1573         both goals, in case parallel makes are being used.
1574         Reported by Jim Meyering.
1576         * src/Makefile.in (DISTFILES): Distribute TAGS.
1577         (distclean): Do not remove TAGS.
1578         (realclean): Remove it.
1579         Reported by Karl Berry.
1581 Sat Sep 10 12:34:04 1994  Francois Pinard  (pinard@icule)
1583         * configure.in: Use fp_ to match aclocal.m4.  Revert _OS_ macros
1584         to old names, for following Autoconf.
1586 Thu Sep  8 15:07:27 1994  Francois Pinard  (pinard@icule)
1588         * Makefile.in (MDEFINES): Remove INSTALL substitutions, for
1589         ./install.sh will not be correctly referred to in sub-Makefiles.
1590         Reported by John David Anglin.
1592         * doc/Makefile.in (texclean): Remove *.cps and *.fns too.
1593         Reported by Eric Backus.
1595         * Makefile.in, checks/Makefile.in, doc/Makefile.in,
1596         examples/Makefile.in, lib/Makefile.in, src/Makefile.in: Limit
1597         config.status into remaking this directory's Makefile only.
1598         * Makefile.in (stamp-h): Do not check nor touch stamp-h.
1599         * configure.in (AC_OUTPUT): Touch stamp-h if CONFIG_HEADERS.
1600         Reported by Jim Meyering.
1602 Tue Sep  6 12:07:33 1994  Francois Pinard  (pinard@icule)
1604         * configure.in: Correct stack overflow detection logic, taking
1605         care of systems having only incomplete implementations (like for
1606         Pyramid 9820 OSx 5.0d).
1607         Reported by Kaveh R. Ghazi.
1609         * src/Makefile.in (TAGS): Remote -t from etags call.
1611 Fri Sep  2 10:37:10 1994  Francois Pinard  (pinard@icule)
1613         * lib/Makefile.in (install): Depend on all.
1615 Wed Aug 31 11:17:21 1994  Francois Pinard  (pinard@icule)
1617         * examples/Makefile.in (mostlyclean): Do not depend on texclean.
1618         Reported by Jim Meyering and John David Anglin.
1620         * Makefile.in (distclean-local): Delete config.log.
1621         Reported by Jim Meyering.
1623         Solidify frozen files with respect to -P:
1624         * src/m4.c: Have -P set prefix_all_buitins variable instead of
1625         calling a function by that name.  Declare the variable.
1626         * src/m4.h: Adjust declaration for prefix_all_buitins.
1627         * src/builtin.c (builtin_init): Merge in functionality from
1628         previous prefix_all_buitins function, while making entries in the
1629         symbol table, but not modifying the builtin description itself.
1631         * src/freeze.c (reload_frozen_state): Add a useless `break;',
1632         because *many* compilers do not accept an empty `default:'.
1633         Reported by Akiko Matsushita, Eric Backus, John David Anglin,
1634         Joseph E. Sacco, Kaveh R. Ghazi, Tom McConnell and Ulrich Drepper.
1636         * configure.in: Use AC_TYPE_SIGNAL.
1637         * src/stackovf.c (setup_stackovf_trap): Use RETSIGTYPE.
1638         Reported by Robert Bernstein.
1640         * checks/Makefile.in (check): Modify PATH so check-them will find
1641         m4 in the src directory.
1642         * Makefile.in (check): Don't.
1643         Reported by Akiko Matsushita and Jim Meyering.
1645         * src/output.c (make_room_for, output_character_helper): New
1646         functions, for implementing a global MAXIMUM_TOTAL_SIZE instead of
1647         a per buffer MAXIMUM_BUFFER_SIZE.
1649         * src/output.c (output_text): New function, for optimizing the
1650         output of strings of characters.  Use it.
1652 Tue Aug 30 01:44:29 1994  Francois Pinard  (pinard@icule)
1654         * doc, src: New directories reorganizing the distribution.
1655         * doc/Makefile.in, src/Makefile.in, examples/Makefile.in: New
1656         files.
1657         * Makefile.in: Adjusted.
1658         * configure.in: Configure new Makefiles.
1660         * m4.h: Declare STRING typedef.  Use it for comment and quote
1661         strings, adjusting all references.  (This is the rudiments of a
1662         beginning for the eventual withdrawal of NUL terminated strings.)
1663         * output.c (shipout_text): Accept a length parameter, and use it.
1664         All callers adjusted.
1666 Mon Aug 29 12:27:19 1994  Francois Pinard  (pinard@icule)
1668         * m4.h: Include <unistd.h> if it exists.
1669         * stackovf.c: Don't.
1671         Clean up for current_diversion variable:
1672         * output.c: Move current_diversion from builtin.c.
1673         * m4.h: Declare current_diversion so builtin.c can access it.
1674         * output.c (output_init, make_diversion): Initialize or update
1675         current_diversion.
1676         * builtin.c (builtin_init, m4_divert): Leave current_diversion
1677         alone.
1679         Remove limit on number of diversions:
1680         * output.c: Replace ndiversion by diversions, declare it.
1681         (output_init): Allocate only diversion 0.
1682         (make_diversion): Allocate new diversions as needed.
1683         * m4.h, m4.c: Remove NDIVERSIONS and ndiversion related stuff.
1684         * m4.c: Still accept -N, but do nothing with it.
1685         Reported by David MacKenzie.
1687         Freeze diversions:
1688         * output.c (freeze_diversions): New function.
1689         * m4.h: Declare freeze_diversions.
1690         * freeze.c: Document frozen file format, revise it, call
1691         freeze_diversions to add diversions to frozen format, and code to
1692         reload them properly.
1693         * m4.c: Do not undivert automatically at end when status being
1694         frozen.  Do not call builtin_init when reloading frozen state.
1696         Speed up diversion processing:
1697         * output.c: Add INITIAL_BUFFER_SIZE, MAXIMUM_BUFFER_SIZE,
1698         COPY_BUFFER_SIZE, in-memory diversion buffers, struct diversion
1699         structure and variables, cached variables out of output_diversion,
1700         reallocate_diversion_for and OUTPUT_CHARACTER.
1701         (shipout_text, make_diversion, insert_diversion): Adapted to new
1702         structures.
1703         (insert_file): Use better buffering.
1704         Reported by David MacKenzie.
1706 Sun Aug 28 05:20:02 1994  Francois Pinard  (pinard@icule)
1708         * Makefile.in, lib/Makefile.in, checks/Makefile.in: Arrange so
1709         dist works from another build directory.
1711 Sat Aug 27 14:32:45 1994  Francois Pinard  (pinard@icule)
1713         * symtab.c (hack_all_symbols): Use hash_table_size instead of
1714         constant HASHMAX, for -H option to work better.
1716         * builtin.c (DECLARE): Simplify by using _ ().
1718         * freeze.c: New file.
1719         * Makefile.in: Compile it, distribute it.
1720         * m4.c: Recognize, document and process --freeze-state (-F) and
1721         --reload-state (-R) options.  Pass a true flag to builtin_init
1722         only if no reloading some state.
1723         * builtin.c (define_builtin): Remove static specifier.
1724         (find_builtin_by_name): Remove static specifier.
1725         (builtin_init): Accept and obey a flag argument.
1726         * m4.h: Add declarations for freeze.c, changes for builtin.c.
1728 Wed Aug 24 16:14:19 1994  Francois Pinard  (pinard@icule)
1730         * builtin.c (dumpdef_cmp): Rewrite so the cast protect the const
1731         specifier.
1733         * configure.in: Implement --with-dmalloc.
1734         * acconfig.h: Document WITH_DMALLOC.
1735         * m4.h: Add code for when WITH_DMALLOC.
1737 Mon Aug 15 12:38:05 1994  Francois Pinard  (pinard@icule)
1739         * m4.c (long_options): Use "error-output", the dash was missing.
1740         Reported by Akiko Matsushita.
1742 Fri Aug 12 16:38:01 1994  Francois Pinard  (pinard@icule)
1744         * m4.h: Include <sys/types.h>.
1745         * builtin.c, debug.c, m4.c, output.c, stackovf.c: Don't.
1746         * m4.h: Declare len_lquote and len_rquote as size_t, not int.
1747         int.
1748         * input.c: Declare len_lquote, len_rquote, len_bcomm and len_ecomm
1749         as size_t, not int.
1750         * builtin.c (dump_args): Declare len as size_t, not int.
1752         * debug.c: Prototype the forward declaration of debug_set_file.
1754         * builtin.c (m4_undivert):  Replace div by file, for avoiding the
1755         shadowing of this variable.
1756         * output.c (insert_diversion): Idem.
1758         * input.c: Delete def_rquote, def_lquote, def_bcomm and def_ecomm.
1759         (input_init): Duplicate default quote and comment strings.
1760         (set_quotes): Free previous quote strings in all cases.  Duplicate
1761         even default quote strings.
1762         (set_comment): Free previous comment strings in all cases.
1763         Duplicate even default comment strings.
1765         * configure.in: Updated for Autoconf 2.0.
1766         * Makefile.in (distclean-local): Also delete config.cache.
1768         * m4.c (usage): Reorganize the --help output by topic.  Include a
1769         description for debugging flags.
1771 Fri Jul 29 10:15:52 1994  Francois Pinard  (pinard@icule)
1773         * configure.in: If sigaction is available and SA_ONSTACK defined,
1774         use sigaction.  Otherwise, if sigvec is available and SV_ONSTACK
1775         defined, use sigvec.  Else don't compile stackovf.c.
1776         * stackovf.c (setup_stackovf_trap): Idem.
1777         Reported by Jim Avera, Karl Berry, Kaveh R. Ghazi, Matthias Rabe
1778         and Simon Leinen.
1780 Thu Jul 21 22:43:17 1994  Francois Pinard  (pinard@icule)
1782         * m4.c (usage): Replace printf par fputs.
1784 Mon Jul 18 23:48:23 1994  Francois Pinard  (pinard@icule)
1786         * Release 1.2
1788 Sun Jul 17 08:08:25 1994  Francois Pinard  (pinard@icule)
1790         * configure.in: Check for sigaction and sigvec.  Add a new delayed
1791         check for RLIMIT_STACK, combine in the checking for getrlimit.
1792         All those things are not universally available.
1793         * stackovf.c: Split setting up the trap handler and catching
1794         signals, for better taking care of various configure outcomes.
1795         * examples/stackovf.sh: Correct a typo.
1796         Reported by Eric Backus, Jim Avera and Jim Meyering.
1798 Sat Jul 16 20:36:19 1994  Francois Pinard  (pinard@icule)
1800         * ansi2knr.c: New version sent by its author, Peter Deutsch.
1802 Fri Jul 15 14:36:21 1994  Francois Pinard  (pinard@icule)
1804         * Makefile.in: Modify so parallel make will not try making
1805         lib/libm4.a twice simultaneously.
1806         Reported by Jim Meyering.
1808 Thu Jul 14 17:23:17 1994  Francois Pinard  (pinard@icule)
1810         * stackovf.c (setup_stackovf_trap): Replace "Don't" by "Do not" in
1811         error message, for when no code possibility exists.  Even if this
1812         line is completely #ifdef'ed out, it brings a syntax error.
1813         Reported by Andreas Schwab, Jim Meyering and Joseph E. Sacco.
1815         * Makefile.in (install): Have install depend on all too, for lib
1816         to be remade as needed.
1818         * examples/stackovf.sh: Try ksh, bsh and bash for shells
1819         providing ulimit, instead of using only ksh.
1820         Reported by Jim Avera and Joseph E. Sacco.
1822 Tue Jul 12 06:54:31 1994  Francois Pinard  (pinard@icule)
1824         * Makefile.in (check): Have it depend on all instead of m4.  In
1825         this way, a change in lib will be detected and processed.
1827         * builtin.c (numeric_arg): Use strtol and verify the conversion,
1828         instead of using sscanf which stops as soon as there is a
1829         non-digit in the input.  Previously, incr(1xyzzy), eval(1,2xyzzy)
1830         and divert(1xyzzy) were all accepted without any warning or error
1831         messages.
1832         * m4.h: Declare strtol as long if not including stdlib.h.
1833         * configure.in: Check for limits.h, and replace strtol if missing.
1834         * lib/Makefile.in: Substitute LIBOBJS.  Distribute strtol.c.
1835         * lib/strtol.c: New file, from elsewhere.
1836         Reported by Andreas Schwab.
1838 Thu Jul  7 22:38:10 1994  Francois Pinard  (pinard@icule)
1840         * macro.c (expand_macro): Cast value to (boolean) prior to
1841         assigning it to traced.
1842         Reported by Tom McConnell.
1844         * Makefile.in (m4): Always make all in lib first.
1845         Reported by Jim Meyering.
1847 Wed Jul  6 13:16:31 1994  Jim Avera (jima@netcom.com)
1849         * stackovf.c: Isolated OS-dependent sections; Improved portability,
1850         adding support for SunOS/BSD (sigvec, sigstack, and 4-parameter signal
1851         handlers), and a default error message if the fault address is not
1852         available (when neither siginfo.h nor BSD sigcontext are supported).
1853         * configure.in: Changes for stackovf.h: Check for sigcontext,
1854         sigaction, sigstack, and define rlim_t as int if necessary.
1855         * acconfig.h: Added HAVE_SIGCONTEXT and rlim_t.
1856         * examples/stackovf.sh: Run m4 -L99999999 to allow stack overflow.
1857         * ansi2knr.c: Fix for func-ptr args; convert "..." to varargs syntax.
1859 Tue Jul  5 19:13:54 1994  Francois Pinard  (pinard@icule)
1861         * configure.in: Use AC_SET_MAKE.
1862         * Makefile.in: Use @SET_MAKE@.
1863         Reported by Jim Meyering.
1865         * checks/check-them: Do not trap on SIGQUIT or SIGALRM.
1866         Reported by Ian Taylor.
1868 Sat Jul  2 00:58:47 1994  Francois Pinard  (pinard@icule)
1870         * configure.in: Remove dependency of USE_STACKOVF on STDC_HEADERS,
1871         because siginfo.h is unrelated to standard headers, and siginfo.h
1872         is already checked for.
1873         Reported by Joseph E. Sacco.
1875         * acconfig.h, aclocal.m4, m4.h: Replace HAVE_PROTOTYPES by
1876         PROTOTYPES.
1877         * aclocal.m4, configure.in: Replace AC_HAVE_PROTOTYPES by
1878         AC_PROTOTYPES.
1880 Wed Jun 29 22:41:53 1994  Francois Pinard  (pinard@icule)
1882         * builtin.c (substitute): Use \& to represent this part of the
1883         string which was matched by the whole regexp, instead of
1884         representing the whole string.  Any usage of \0 issues a warning
1885         and acts like \&, it will disappear in some subsequent release.
1887 Mon Jun 27 14:24:23 1994  Francois Pinard  (pinard@icule)
1889         * m4.c: Complete prototype for forwarded declaration of usage.
1891         * input.c (init_macro_token): Correct own reference in error
1892         message.  Previous name get_macro_func was referred to instead.
1893         (next_char):  Correct own reference in error message.  Previous
1894         name advance_input was referred to instead.
1896         * m4.h: Declare eval_t and unsigned_eval_t typedefs to 32 bits.
1897         * eval.c (logical_or_term, logical_and_term, or_term, xor_term,
1898         and_term, not_term, logical_not_term, cmp_term, shift_term,
1899         add_term, mult_term, exp_term, unary_term, simple_term): Add
1900         prototype to forwarded declarations.  Declare parameter v1 as
1901         eval_t * instead of int *.  Same for local variable v2 in dyadic
1902         functions.  Same for result in exp_term.
1903         * builtin.c (m4_eval): Declare value as eval_t instead of int.
1904         (ntoa): Declare value as eval_t instead of int.  Declare uvalue as
1905         unsigned_eval_t instead of unsigned int.  Change casts accordingly.
1906         (shipout_int): Cast first argument of ntoa to eval_t.
1907         Reported by Thorsten Ohl.
1909         * macro.c: Complete the prototypes of forwarded expand_macro and
1910         expand_token.
1911         Reported by Thorsten Ohl.
1913         * m4.h: Define voidstar as void * or char * depending on __STDC__.
1914         The Ultrix 3.1 compiler cannot do much with void pointers.
1916         * builtin.c (dumpdef_cmp): Replace void * by voidstar.
1917         * m4.c (xfree):  Replace void * by voidstar.
1918         Reported by Tom McConnell.
1920         * ansi2knr.1: New, from elsewhere.
1921         * Makefile.in (DISTFILES): Distribute ansi2knr.1
1923         * Makefile.in (stamp-h.in): Avoid running ./config.status if
1924         stamp-h does not exist yet.  This avoids running it a second time
1925         just after the initial ./configure.
1926         Reported by David MacKenzie and Tom McConnell.
1928         * m4.h: Replace the enum debug_info declaration with a series of
1929         #define's.  The Ultrix 3.1 compiler would otherwise need casting
1930         (int) to most references, when used in expressions.
1931         Reported by Tom McConnell.
1933 Sat Jun 25 00:10:05 1994  Francois Pinard  (pinard@icule)
1935         * aclocal.m4: Replace FP_PROTOTYPES by AC_HAVE_PROTOTYPES,
1936         following an idea from Brook G. Milligan.  AC_HAVE_PROTOTYPES
1937         calls the compiler.  Previously, FP_PROTOTYPES was only calling
1938         the preprocessor; by not being subject to CFLAGS, this was
1939         discouraging those flags asking for ANSI compilation.
1940         * acconfig.h: Document HAVE_PROTOTYPES.
1941         * configure.in: Use AC_HAVE_PROTOTYPES instead of FP_PROTOTYPES.
1942         * m4.h: Define _() according to HAVE_PROTOTYPES, not __STDC__.
1943         Reported by Eric Backus.
1945         * configure.in: Substitute CFLAGS and LDFLAGS, taking their value
1946         from the environment.  Default CFLAGS to -g if not set.
1947         * Makefile.in: Have CFLAGS and LDFLAGS substituted from configure.
1948         * lib/Makefile.in: Have CFLAGS substituted from configure.
1949         Reported by Eric Backus and Tom McConnell.
1951         * configure.in: m4_undefine changeword before using AC_ENABLE.
1953         * m4.h: Declare prototypes for error (for ANSI compilers only),
1954         prefix_all_builtins and reference_error.
1955         Reported by Tom McConnell.
1957         * input.c (set_word_regexp): Do not try to initialize the array
1958         test from a string, this does not work with non-ANSI compilers.
1959         Reported by Eric Backus.
1961         * Makefile.in (dist): Clean examples/ before saving it.
1962         (distclean-local): Also remove stamp-h.
1963         Reported by Eric Backus.
1965         * Makefile.in (_stackovf.c): Goal for compiling stacokovf.c with
1966         non ANSI compilers.
1967         Reported by Tom McConnell.
1969         * checks/Makefile.in (clean): Depends on mostlyclean.
1970         (mostlyclean): New goal.
1972 Fri Jun 24 23:30:31 1994  Francois Pinard  (pinard@icule)
1974         * Makefile.in (DISTFILES): Distribute install.sh.
1975         * install.sh: New file, copied from elsewhere.
1976         Reported by Assar Westerlund and Kaveh R. Ghazi.
1978 Thu Jun 23 00:00:30 1994  Francois Pinard  (pinard@icule)
1980         * configure.in: Define ENABLE_CHANGEWORD if --enable-changeword.
1981         * acconfig.h: Explain ENABLE_CHANGEWORD.
1983         [These modifs all depend upon ENABLE_CHANGEWORD and are adapted
1984         from code provided by Pete Chown]
1985         * m4.h: Add original_text field to u_t variant of union u.
1986         Declare TOKEN_DATA_FUNC macro.
1987         * builtin.c: Declare changeword.
1988         (m4_changeword): New function.
1989         * input.c: Include "regex.h", define variables with word regexps.
1990         (input_init): Initialize the word regexp.
1991         (set_word_regexp): New.
1992         (next_token): Declare local variables, use the previous code if
1993         default_word_regexp is true.  Else, match using a new code.  Save
1994         the original text.
1995         * macro.c (expand_token): Ship out original text if not a macro
1996         name.
1997         Reported by Krste Asanovic and Pete Chown.
1999         [These modifs all depend upon ENABLE_CHANGEWORD]
2000         * m4.h: Declare external user_word_regexp.
2001         * m4.c: Declare user_word_regexp, and initialize it from
2002         --word-regexp or -W, or NULL if not specified.
2003         * input.c: Use user_word_regexp if specified, instead of
2004         DEFAULT_WORD_REGEXP.
2006         * Makefile.in (m4): Revert Jan 3 1994 change.  I'm unable to
2007         agree with it.
2009         * Makefile.in, lib/Makefile.in: Limit suffixes to .c and .o.
2010         * checks/Makefile.in: Empty the suffix list.
2011         Reported by Geoff Russell, Joel Sherrill and Roland McGrath.
2013         * m4.c: Declare nesting_limit and initialize it to 250.
2014         Implement -LNUMBER or --nesting-limit=NUMBER to change its
2015         value.
2016         * m4.h: Declare nesting_limit as external.
2017         * macro.c (expand_macro): Stop execution whenever nesting limit
2018         is exceeded.
2019         Reported by Bengt Mertensson.
2021         * eval.c (evaluate): Diagnose excess characters in eval input.
2022         Things like `eval(08)' used to return 0 with no diagnostic.
2024         * m4.h: Capitalize first letter of all macro arguments in
2025         definitions.
2027         * m4.c: Declare warning_status, initialize it to 0.  Add new
2028         option -E, or --fatal-warnings, which sets warning_status to
2029         EXIT_FAILURE instead.
2030         * m4.h: Declare external warning_status.  Define EXIT_SUCCESS and
2031         EXIT_FAILURE if not otherwise done by header files.
2032         * m4.c: Delete declarations for EXIT_SUCCESS and EXIT_FAILURE.
2033         * m4.c, input.c, output.c, symtab.c, builtin.c, macro.c, debug.c,
2034         eval.c: Replace 0 by warning_status and 1 by EXIT_FAILURE in first
2035         argument of all M4ERROR calls.
2036         Reported by Noah Friedman.
2038         * examples/incl-test.m4: Renamed from incl_test.m4.
2039         * examples/include.m4: Include incl-test.m4 instead of
2040         incl_test.m4.
2041         * examples/multiquotes.m4: Renamed from multi-quotes.m.
2043 Wed Jun 22 21:58:54 1994  Francois Pinard  (pinard@icule)
2045         * configure.in: Avoid USE_STACKOVF if <siginfo.h> not found.  Note
2046         that Jim developped stackovf.c on a 486 running SVR4.0 (ESIX), and
2047         also tested it on a Sun Sparc workstation running SunOS 4.x.
2049         * format.c (format): When not HAVE_EFGCVT, m4 was failing the
2050         49.format check, abusing a `union values' argument with sprintf
2051         without selecting the proper field.  Now, save the formatting type
2052         first, delaying the fetch of the corresponding argument.
2053         Reported by Joseph E. Sacco and Tom Quinn.
2055         * format.c (format): Remove const from char *fmt declaration when
2056         not HAVE_EFGCVT, because a NUL may be forced into it.
2058         * m4.h: Declare atof() when not STDC_HEADERS.
2059         Reported by Joseph E. Sacco.
2061         * Regenerate configure using Autoconf 1.11, this corrects a
2062         problem about an incorrect cpp seting on NeXT 3.1.
2063         Reported by Alexander Lehmann.
2065 Sun Jun  5 16:25:19 1994  Francois Pinard  (pinard@icule)
2067         * m4.h (_): Change argument from `x' to `Args'.
2069 Wed May  4 23:59:39 1994  Francois Pinard  (pinard@icule)
2071         * Makefile.in: Remove all occurrences of $(MFLAGS), which were
2072         bringing more evil than good on a few systems.
2073         Reported by Greg A. Woods.
2075 Fri Apr 22 15:59:35 1994  Francois Pinard  (pinard@icule)
2077         * m4.h: Rename Args() to _().
2078         * m4.h: Remove extern specifier from all function declarations.
2080 Fri Apr 22 15:51:21 1994  Jim Avera (jima@netcom.com)
2082         * stackovf.c: New file implementing stack-overflow detection.
2083         * configure.in: Check for getrlimit, sigaction.  If all of
2084         standard headers, getrlimit and sigaction, define USE_STACKOVF and
2085         substitute ${U}stackovf.o for STACKOVF.
2086         * acconfig.h: Declare USE_STACKOVF.
2087         * Makefile.in: Distribute stackovf.c, link with $(STACKOVF).
2088         * m4.h: Declare setup_stackovf_trap().
2089         * m4.c: Call setup_stackovf_trap().
2090         * tests/stackovf_test.sh: New file.
2092 Wed Apr 13 14:10:30 1994  Francois Pinard  (pinard@icule)
2094         * checks/Makefile.in: Rename .all-stamp to stamp-checks.
2096         * Makefile.in (Makefile, etc.): Adapt for Autoconf 1.8.
2098 Sun Jan 30 14:24:19 1994    (pinard at icule)
2100         * m4.h: Remove definition of volatile, not used anymore.
2101         Reported by Jim Meyering and Joseph E. Sacco.
2103         * m4.h: Consistently use `do { ... } while (0)' in macros, instead
2104         of `if ... else /* nothing */' for if macros.
2105         Reported by Jim Meyering.
2107         * builtin.c (m4_regexp): Reorganize the code for avoiding a
2108         warning from gcc about `repl' possibly used before defined.
2109         Reported by Jim Meyering.
2111         * m4.h: Avoid a pre-ANSI <memory.h> together with <string.h>.
2112         Reported by Jim Meyering.
2114 Tue Jan 25 18:39:37 1994  Francois Pinard  (pinard at icule)
2116         * m4.h: Move the conditional definition of volatile after the
2117         inclusion of system files, because they may define it first.
2119 Tue Jan  4 19:46:50 1994  Francois Pinard  (pinard@icule)
2121         * checks/Makefile.in (CHECKS): Add a useless `*' before `[', to
2122         get around a problem with Alpha make seeing a syntax error, there.
2123         Reported by Vern Paxson.
2125 Mon Jan  3 00:21:45 1994  Francois Pinard  (pinard@icule)
2127         * Makefile.in: Do not define LDFLAGS, use CFLAGS on link calls.
2128         Reported by Richard Stallman.
2130 Sat Dec 25 08:06:05 1993  Francois Pinard  (pinard@icule)
2132         * configure.in: Correct test for strerror, AC_FUNC_CHECK was used
2133         instead of AC_HAVE_FUNCS.
2134         Reported by Noah Friedman.
2136 Wed Dec  1 09:37:53 1993  Francois Pinard  (pinard@icule)
2138         * m4.c: Initialize show_help and show_version to zero.
2140         * m4.c: Ensure EXIT_SUCCESS and EXIT_FAILURE are defined.
2141         Use them in exit() and usage() calls.
2143 Sat Nov 27 10:43:24 1993  Francois Pinard  (pinard@icule)
2145         * m4.h: Delete extern sys_nerr, sys_errlist declarations, and
2146         syserr() macro.  Delete errref, add reference_error and M4ERROR.
2147         * m4.c: Replace errref, which was returning an input reference
2148         string, with reference_error, which prints it on standard error.
2149         * builtin.c, output.c: Use errno as second parameter to error,
2150         instead of using syserr() with %s.
2151         * *.c: Use M4ERROR instead of error: no more errref() with %s.
2152         Doing so, the program name appears after the input reference
2153         instead of before, which eases M-x next-error processing.
2155 Wed Nov 24 22:16:15 1993  Francois Pinard  (pinard@icule)
2157         * checks/get-them: Escape braces with backslashes in patterns,
2158         because HPUX-9.01 awk needs this.
2159         Reported by Jim Meyering.
2161 Mon Nov 22 10:55:52 1993  Francois Pinard  (pinard@icule)
2163         * builtin.c: Declare "FILE *popen ();".
2165         * m4.h: Remove MESSAGE{,1,2}, WARNING1, FATAL{,1}, INTERNAL_ERROR
2166         macros, replace error_message_prefix() declaration by errref()'s.
2167         Declare xrealloc, for use in errref().
2168         * m4.c: Delete error_message_prefix() function, add errref().
2169         * *.c: Use error() systematically in place of all error macros,
2170         now that error() flushes stdout first.  Make needed adjustments.
2172         * m4.h: Remove const in sys_errlist[] declaration, it creates
2173         conflicts on SGI and Alpha.
2174         Reported by Kaveh R. Ghazi.
2176 Sat Nov 20 08:26:15 1993  Francois Pinard  (pinard@icule)
2178         * m4.c: Include <getopt.h> instead of "getopt.h".
2180         * configure.in: Output to config.h.  Use HAVE_FUNCS preferably.
2181         * acconfig.h: New, for documenting HAVE_EFGCVT.
2182         * Makefile.in: Distribute acconfig.h, .stamp-h.in and config.h.in,
2183         use them wherever appropriate.  Also use -I. for compilations.
2184         * lib/Makefile.in: Use -I.. for compilations.
2185         * *.c: Include <config.h> or "config.h".
2187         * m4.h: Test for HAVE_MEMORY_H instead of NEED_MEMORY_H.
2188         * configure.in: Use AC_HAVE_HEADERS(memory.h), delete AC_MEMORY_H.
2190 Wed Nov 17 09:34:55 1993  Francois Pinard  (pinard@icule)
2192         * builtin.c (m4_eval): Cast strlen to (int) before comparing.
2194         * input.c (input_init): Initialize quote and comment strings
2195         explicitely instead of calling set_quotes and set_comment: by
2196         doing so, we ensure we do not free uninitialized variables.
2198         * checks/check-them: Reverse arguments to both diff, so the
2199         expected is on the left and the obtained on the right.
2201         * m4.h: Add MESSAGE{,1,2}, WARNING1, FATAL{,1} and INTERNAL_ERROR
2202         macros. Delete declarations for m4error, warning, fatal and
2203         internal_error, add declaration for error_message_prefix.
2204         * m4.c:  Delete m4error, warning, fatal and internal_error
2205         routines, add error_message_prefix routine.
2206         * *.c: Replace m4error routine calls with MESSAGE* macro calls,
2207         warning with WARNING*, fatal with FATAL* and internal_error with
2208         INTERNAL_ERROR*.
2209         * Makefile.in (_m4.c): Do not adjust ansi2knr output for va_alist,
2210         this is not needed anymore.
2212         * m4.h: Declare extern FILE *debug.  Add DEBUG_PRINT{1,3} and
2213         DEBUG_MESSAGE{,1,2} macros.  Delete declarations for debug_print
2214         and debug_message, add declaration for debug_message_prefix.
2215         * debug.c: Remove static specifier for FILE *debug declaration.
2216         Delete debug_print and debug_message routines, add
2217         debug_message_prefix routine.
2218         * builtin.c, debug.c: Replace debug_print routine calls with
2219         DEBUG_PRINT* macro calls.
2220         * input.c, path.c: Replace debug_message routine calls with
2221         DEBUG_MESSAGE* macro calls.
2223         * m4.h: Remove inclusion of <varargs.h>.
2224         * debug.c: Include <stdarg.h> or <varargs.h>.
2225         (trace_format): Use stdarg instead of varargs if __STDC__.
2227         * configure.in: Remove checks for vfprintf and _doprnt.  These
2228         implementations use varargs tricks which are not portable enough.
2229         * lib/vfprintf.c: Deleted.
2230         * lib/_doprnt.c: Deleted.
2231         * lib/Makefile.in: Adjusted accordingly.  Remove LIBOBJS.
2232         Reported by Joel Sherrill.
2234         * path.c (add_include_directory): Use xstrdup.
2236         * builtin.c (find_builtin_by_name): Declare static.
2238         * *.[ch]: Add const to a few "char *" declarations.
2240         * configure.in: Remove commented tests for fileno() and fstat().
2241         * debug.c: Remove comments about HAVE_FILENO and HAVE_FSTAT.
2243         * debug.c (debug_flush_files): New.
2244         * m4.h: Declares it.
2245         * builtin.c (m4_syscmd, m4_esyscmd): Use it.
2246         Reported by Nicolas Pioch.
2248 Fri Nov 12 10:02:26 1993  Francois Pinard  (pinard@icule)
2250         * Makefile.in (m4.dvi): Use m4.texinfo instead of m4.texi.
2251         Reported by Joel Sherrill.
2253         * builtin.c (prefix_all_builtins): Instead of the table size, use
2254         the null entry at end for stopping the loop.  It was overwritten.
2255         Reported by Andreas Schwab and Jim Meyering.
2257         * builtin.c (prefix_all_builtins): Cast xmalloc to (char *).
2258         Reported by Kaveh R. Ghazi.
2260         * macro.c (call_macro): Add * in (*SYMBOL_FUNC (sym)) (...).
2261         Reported by Karl Vogel.
2263 Tue Nov  9 09:31:47 1993  Francois Pinard  (pinard@icule)
2265         * m4.h: Do not define volatile if already defined.
2266         Reported by Rene' Seindal.
2268         * lib/Makefile.in: Add a forgotten ALLOCA=@ALLOCA@.  Grrr!
2270         Reported by Bernhard Daeubler, Eric Backus, Hal Peterson, Hoang
2271         Uong, Ian Taylor, Kaveh R. Ghazi, Tom McConnell and Walter Wong.
2273 Mon Nov  8 21:11:44 1993  Francois Pinard  (pinard@icule)
2275         * m4.h: Define strchr and strrchr in terms of index and rindex,
2276         instead of the other way around.
2277         * builtin.c, m4.c, path.c: Use strchr instead of index.
2279         * input.c (next_char): Remove a "break;" after a "return ...;".
2280         Reported by Tom McConnell.
2282 Mon Nov  8 12:45:34 1993  Francois Pinard  (pinard@icule)
2284         * Release 1.1
2286         * configure.in: Do not copy check files in the build hierarchy.
2287         * checks/check-them: Identify the m4 version being checked.  For
2288         finding m4, look in $PATH instead of in the parent directory.
2289         * Makefile.in (check): Prepend `pwd` to $PATH before checking.
2290         * checks/Makefile.in (.all-stamp): Always create check files in
2291         the source hierarchy, not anymore in the build hierarchy.
2292         (check): cd to the source hierarchy before performing checks.
2293         Do not copy nor clean COPYING anymore, take it from `..'.
2294         Reported by Tom McConnell.
2296         * Makefile.in (Makefile): Use $(SHELL).
2297         (config.status): Use $(SHELL).  Use "config.status --recheck"
2298         instead of "configure --no-create", which is obsolete.
2299         Reported by Tom McConnell.
2301 Fri Nov  5 09:49:30 1993  Francois Pinard  (pinard@compy.IRO.UMontreal.CA)
2303         * m4.c (usage): Use "%s" instead of "m4" in format string.
2304         Reported by Jim Meyering.
2306         * Makefile.in: Distribute mkinstalldirs.
2307         Reported by Pierre Gaumond.
2308         Reported by Jim Meyering.
2309         Reported by Tom McConnell.
2310         Reported by Andreas Gustafsson.
2312         * checks/check-them: Renamed from checks/check_them.
2313         * checks/get-them: Renamed from checks/get_them.
2314         * checks/.all-stamp: Renamed from checks/.all_stamp.
2315         * checks/Makefile.in: Changed accordingly.
2316         Reported by Jim Meyering.
2318 Thu Nov  4 13:50:52 1993  Francois Pinard  (pinard@lagrande.IRO.UMontreal.CA)
2320         * lib/Makefile.in (dist): Correct permissions on files.
2322         * output.c: Declare tmpfile, some systems don't.
2324 Wed Nov  3 09:09:16 1993  Francois Pinard  (pinard@icule)
2326         * checks/Makefile.in (dist): Correct permissions on files.
2328         * Makefile.in (dist): Ensure recursive linking for subdirectory
2329         `examples', also set read/write permissions on all its files.
2331         * mkinstalldirs: New, from elsewhere.
2332         * Makefile.in: Use it.
2334         * debug.c: Synchronize debug messages and regular output when
2335         the debug file and stdout are redirected to the same file.
2336         * configure.in: Add (commented) checks for fileno and fstat.
2337         Reported by Jim Avera.
2339         * builtin.c (m4_ifelse): Diagnose excess arguments if 5, 8, 11,
2340         etc., arguments, then ignore the superfluous one.  m4 used to
2341         diagnose missing arguments and return the empty string.
2342         Reported by Nick S. Kanakakorn.
2344 Tue Nov  2 00:55:41 1993  Francois Pinard  (pinard@icule)
2346         * m4.c (main): At end of all input, ensure all undiverted text
2347         goes to the main output stream.
2348         Reported by Andreas Gustafsson.
2350         * m4.c (main): exit (0), instead of return 0.
2352         * m4.c: Implement -P and --prefix-builtins.
2353         * builtin.c: Delete const specifier on builtin_tab.
2354         (prefix_all_builtins): New.
2355         Reported by Noah Friedman.
2356         Reported by Scott Bartram.
2358         * c-boxes.el: New, from elsewhere.
2359         * Makefile.in: Distribute it.
2361         * m4.h: Do not define bcopy if <string.h> defines it.
2362         Reported by Stephen Perkins.
2364         * builtin.c (define_macro): Allow a missing second argument, in
2365         which case it is implied empty.  Affects define and pushdef.
2366         Reported by Eric Allman.
2368 Mon Nov  1 07:45:24 1993  Francois Pinard  (pinard@icule)
2370         * m4.h: Add blind_if_no_args in struct builtin, blind_no_args in
2371         struct symbol adn SYMBOL_BLIND_NO_ARGS macro.
2372         * builtin.c: Initialize all the blindness fields in builtin_tab.
2373         (define_builtin): Copy the blindness of a builtin into its symbol.
2374         * macro.c (expand_token): Avoid processing a blind builtin if the
2375         next character is not an opening parenthesis.
2376         Reported by David MacKenzie.
2377         Reported by Noah Friedman.
2379         * configure.in: Ensure an exit status of 0 on completion.
2380         Reported by Vivek P. Singhal.
2382         * eval.c (eval_lex): Admit both lower and upper case letters for
2383         bases greater than 10.  Only lower case letters were accepted.
2385         * eval.c (eval_lex): Recognize 0bDIGITS and 0rRADIX:DIGITS syntax.
2386         Reported by Krste Asanovic.
2388         * eval.c:  Rename NOT to LNOT.  Add XOR, NOT, LSHIFT and RSHIFT.
2389         * eval.c (logical_not_term): New name for not_term.
2390         * eval.c (xor_term): New, between or_term and and_term.
2391         * eval.c (not_term): New, between and_term and logical_not_term.
2392         * eval.c (shift_term): New, between cmp_term and add_term.
2393         Reported by Krste Asanovic: ~, ^, <<, >>.
2394         Reported by Ben A. Mesander: ** vs ^.
2396         * m4.c: Delete xmalloc.c, xrealloc.c, xstrdup.c.
2397         * m4.h: Delete xrealloc.c.
2398         * lib/xmalloc.c: New, from elsewhere.
2399         * lib/xstrdup.c: New, from elsewhere.
2400         * lib/Makefile.in: Distribute and compile them.
2402         * m4.c: Change progname to program_name.
2403         * builtin.c, eval.c, m4.c, m4.h: Rename error to m4error.
2404         * lib/error.c: New, from elsewhere.
2405         * lib/Makefile.in: Distribute and compile error.c.
2406         * configure.in: Check AC_VPRINTF and for strerror.
2407         * m4.c: Delete cmd_error.  Use error instead.
2408         * m4.c: Change label capitalisation to "ERROR", "Warning", etc.
2410         * m4.h: Delete #define const, let Autoconf takes care of this.
2412         * m4.c: Remove all code conditionalized by IMPLEMENT_M4OPTS.
2413         Merge parse_args into main.  Declare argv to be `char *const *',
2414         then remove superfluous casts.
2416         * m4.c: Rename --no-gnu-extensions to --traditional.
2417         Reported by Ben A. Mesander.
2419         * m4.c (usage): Add a status parameter.  Supply one in various
2420         calls.  Add --help processing.  Remove -V for --version.
2422         * lib/Makefile.in: Put $(CFLAGS) last in .c.o rule.
2424         * lib/Makefile.in: Have an AR=ar declaration.
2425         Reported by Eric Backus.
2426         Reported by Bjorn R. Bjornsson.
2427         Reported by Tom Tromey.
2428         Reported by Kristine Lund.
2429         Reported by Marion Hakanson.
2431 Sat Oct 30 12:51:47 1993  Francois Pinard  (pinard@icule)
2433         * Makefile.in (m4.info): Use -I$(srcdir) on $(MAKEINFO).
2434         Reported by Noah Friedman.
2436 Mon Oct 25 14:58:48 1993  Francois Pinard  (pinard@icule)
2438         * Makefile.in: Remove MDEFINES and cleanup.
2440 Wed Jun  9 14:59:46 1993  Francois Pinard  (pinard@icule)
2442         * Makefile.in (dist): Replace "echo `pwd`" by a mere "pwd".
2443         Create a gzip file.
2445 Sat Feb  6 14:59:22 1993  Francois Pinard  (pinard@icule)
2447         * Makefile.in, lib/Makefile.in, check/Makefile.in: In dist goals,
2448         ensure 777 mode for directories, so older tar's will restore file
2449         modes properly.
2451 Sun Jan 17 15:38:05 1993  Francois Pinard  (pinard@icule)
2453         * Makefile.in, lib/Makefile.in: Put $(CFLAGS) after $(CPPFLAGS),
2454         so the installer can override automatically configured choices.
2455         Reported by Karl Berry.
2457 Fri Jan 15 16:07:00 1993  Francois Pinard  (pinard@icule)
2459         * lib/vfprintf.c: Stolen from Oleo distribution and adapted.  The
2460         previous version was not working properly on m68k-hp-bsd4.3.
2461         Reported by Roland McGrath.
2463         * lib/_doprnt.c: Stolen from Oleo distribution.
2464         * configure.in: Check for _doprnt.c if vfprintf.c selected.
2465         * lib/Makefile.in: Distribute _doprnt.c.
2466         Do not distribute regex.[ch].old anymore.
2468 Fri Jan  1 19:42:23 1993  Francois Pinard  (pinard at icule)
2470         * Makefile.in, lib/Makefile.in: Reinstate $(CPPFLAGS), use it.
2471         Richard wants it there.
2473 Sun Dec 27 07:01:54 1992  Francois Pinard  (pinard at icule)
2475         * Makefile.in: Add DEFS to MDEFINES.
2476         * lib/Makefile.in (.c.o): Remove $(CPPFLAGS).
2477         (libm4.a): Remove the library before creating it.
2478         (distclean): Remove tags and TAGS too.
2480 Wed Dec 23 12:46:55 1992  Francois Pinard  (pinard at icule)
2482         * Makefile.in (dvi, m4.dvi): New goals.
2484         * builtin.c, eval.c, format.c, input.c, m4.[ch], m4.texinfo,
2485         macro.c, output.c, path.c, symtab.c: Change Copyright from
2486         1989-1992 to the explicit enumeration 1989, 1990, 1991, 1992.
2488         * examples/divert.m4: Deleted, this bug has been corrected.
2490         * Makefile.in (texclean, mostlyclean): New goals.
2492         * Makefile.in (clean): Remove clutter from ansi2knr.
2493         Reported by Pierre Gaumond.
2494         Reported by Greg A. Woods.
2496 Sun Dec 20 10:40:20 1992  Francois Pinard  (pinard at icule)
2498         * Makefile.in: Remove $(CPPFLAGS) from the .c.o rule.  The user
2499         might well use CFLAGS is s/he needs it.
2501         * Makefile.in: Allow installation of info files from a separate
2502         build directory.
2503         Reported by Jason Merrill.
2504         Reported by David MacKenzie.
2505         Reported by Skip Montanaro.
2506         Reported by Erez Zadok.
2507         Reported by Assar Westerlund.
2509 Sat Dec 19 08:21:34 1992  Francois Pinard  (pinard at icule)
2511         * Release 1.0.3
2512         This is still a beta release for the future GNU m4 version 1.1.
2514         * lib/alloca.c: New, from elsewhere.
2515         * lib/Makefile.in: Distribute it.  Define and use $(ALLOCA).
2517         * m4.h: Do not define index/rindex if already defined.  If
2518         FALSE/TRUE are already defined, do not redefine them, but merely
2519         define boolean typedef to int.
2521         * Makefile.in: Use $(DEFS) while compiling ansi2knr.
2522         * ansi2knr.c: Rewrite #ifdef HAVE_STRING_H || STDC_HEADERS,
2523         because some C compilers do not like connectives with #ifdef.
2524         * m4.h: Define `volatile' only if __GNUC__, instead of once for
2525         __GNUC__ and once for __STDC__.
2526         * lib/regex.h: Leave const alone, AC_CONST will take care of it.
2528         * checks/Makefile.in: Use .all_stamp instead of $(CHECKS) for
2529         Makefile dependencies.  Without it, make keeps destroying and
2530         remaking $(CHECKS) in a loop (why?).  Distribute .all_stamp.
2532         * m4.h, m4.c, builtin.c, output.c: Change all divertion/DIVERTION
2533         to diversion/DIVERSION, this was a spelling error.
2535         * m4.c: Declare version[], remove #include "version.h".
2536         * version.h: Deleted.
2537         * Makefile.in: Remove references to version.h.
2539         * output.c (shipout_text): Centralize all `#line NUM ["FILE"]'
2540         production, by using a simpler and more robust algorithm.  This
2541         solves the problem of synclines sometimes written in the middle of
2542         an output line.  Delete sync_line() and output_lines variable.
2543         * m4.h: Remove sync_line prototype and output_lines declaration.
2544         * input.c (next_char), output.c (shipout_text): Remove references
2545         to output_lines.
2546         * input.c (push_file, pop_file): Merely put the value -1 in
2547         output_current_line instead of calling sync_line, for delaying a
2548         single `#line NUM FILE' before next output line.  Do not test
2549         for sync_output, because this is unnecessary clutter.
2550         * output.c (make_divertion, insert_divertion): Idem.
2551         * input.c: Rename must_advance_line to start_of_input_line, for
2552         consistency.
2554         * debug.c (trace_header): Select a new debug line format, which
2555         better complies with GNU standards for formatting error messages.
2556         With option `-dfl', M-x next-error might be used on the output.
2557         * m4.c (vmesg): Adjust format of error output to GNU standards.
2558         * m4.texinfo: Adjust examples for `make check' to work.
2560         * m4.h, builtin.c, debug.c, input.c, macro.c, path.c: Use upper
2561         case for enum debug_info constants, which were all lower case.
2563         * builtin.c (m4_regexp, m4_patsubst): Use re_search instead of
2564         re_search_2.
2565         * lib/regex.[ch]: Use new version from textutils 1.3.6, with some
2566         collected patches.  I tried a few times using newer regex.[ch], it
2567         mysteriously stopped aborting with this one.  Insecure feeling...
2568         * lib/Makefile.in: Distribute regex.[ch].old, just in case!
2570 Fri Dec 18 11:08:03 1992  Francois Pinard  (pinard at icule)
2572         * m4.c: Change `--no-warnings' to `--silent'.
2573         Reported by David MacKenzie.
2575         * m4.c: Put all M4OPTS code upon IMPLEMENT_M4OPTS control, and
2576         leave it off for now.  See comment in m4.c for justification.
2577         Reported by David MacKenzie.
2579         * configure.in: Replace AC_USG by AC_HAVE_HEADERS(string.h).
2580         * m4.h, ansi2knr.c, lib/regex.h: Replace USG by HAVE_STRING_H.
2582         * Makefile.in: Add a new `info' goal.  Use macro MAKEINFO.
2584         * Makefile.in: Ensure recursive cleaning is done before local
2585         cleaning for all clean goals.
2587         * builtin.c (ntoa): Ensure the value is always interpreted as a
2588         signed quantity, whatever the radix is.
2590 Wed Nov 18 07:57:19 1992  Jim Meyering  (meyering@idefix)
2592         * builtin.c, format.c, input.c: Split long lines.
2593         * m4.c: Use typedef macro_definition instead of struct
2594         macro_definition.
2595         * symtab.c: Use typedef symbol instead of struct symbol.
2597 Tue Nov 17 01:58:40 1992  Francois Pinard  (pinard at icule)
2599         * *.[ch]: Remove all trailing whitespace, in code and comments.
2601         * configure.in: Find some awk.
2602         * Makefile.in: Add $(AWK) to MDEFINES.
2603         * checks/Makefile.in: Transmit $(AWK) to get_them.
2604         * checks/get_them: Use $AWK instead of gawk.  Add a close in the
2605         awk script when switching files, because without this, mawk runs
2606         out of file descriptors.
2608 Mon Nov 16 20:42:56 1992  Francois Pinard  (pinard at icule)
2610         * Makefile.in (realclean): Delete m4.info*.
2611         Reported by Jim Meyering.
2613         * Makefile.in: Adjust and link with checks/Makefile.
2614         * checks/Makefile.in: New.
2615         * configure.in: Output checks/Makefile.
2617         * checks/get_them: Have the dnl header of each test more
2618         recognizable by next-error, also use a better message.
2620 Mon Nov 16 07:48:52 1992  Jim Meyering  (meyering@idefix)
2622         * m4.h [__GNUC__]: Use __volatile__ instead of `volatile.'
2623         And use that only if __GNUC__ since we're using it's GCC-specific
2624         semantics that tell the compiler the associated function doesn't
2625         return.
2627         * builtin.c (substitute): Don't use character as an array index.
2628         (dumpdef_cmp): Make formal arguments `const void *' to avoid
2629         warnings with gcc -W -Wall on systems with qsort prototype.
2630         (m4_errprint): Cast obstack_finish to `char *' to avoid warnings
2631         from gcc -W -Wall.
2633         * eval.c (most functions): Add parentheses to assignments used
2634         as truth values go avoid warnings from gcc -Wall.
2636         * input.c, m4.c, output.c, path.c, symtab.c: Declare static
2637         any functions that don't need external scope.
2639         * builtin.c, debug.c, format.c, m4.c, m4.h, macro.c, symtab.c
2640         (many functions and arrays): Declare `const'.
2642 Sun Nov 15 09:42:09 1992  Francois Pinard  (pinard at icule)
2644         * *.[ch]: Rename nil to NULL, using the declaration from <stdio.h>,
2645         removing the declaration from m4.h.  Also rename false to FALSE
2646         and true to TRUE.
2648         * lib/Makefile.in (Makefile): New goal.
2650         * Makefile.in, lib/Makefile.in: Add a .c.o rule, so CFLAGS is not
2651         so heavily loaded.  It gets more easily overridable, calling make.
2652         Reported by Jim Meyering.
2654         * Makefile.in (dist): Get .fname from the current directory name,
2655         instead of from version.h.  I need updating many files manually,
2656         when the version changes, version.h is just one of them.
2658 Sat Nov 14 11:01:20 1992  Francois Pinard  (pinard at icule)
2660         * m4.h: Remove the tag `boolean' on the enum introducing typedef
2661         `boolean'.  This tag conflicts with <sys/types.h> on SVR4.
2662         Reported by Tom McConnell.
2664 Fri Nov 13 00:12:50 1992  Francois Pinard  (pinard at icule)
2666         * m4.texinfo: Correct the examples for 33.divert, 38.divnum,
2667         39.cleardiv, which were describing missing or spurious newlines.
2668         Modify examples 52.eval, 53.esyscmd and 54.sysval so the results
2669         do not depend on machine word size, `/bin/false' implementation,
2670         or `wc' output format.  `make check' is more dependable, now.
2672         * checks/check_them: Summarize the failed tests by listing their
2673         name, at end.  If none, issue `All checks successful'.  Output
2674         `Checking' instead of `Input file:'.
2676         * checks/get_them, checks/check_them: Reindented.
2678         * Makefile.in (dist): chmod a+r before making the tar file.
2680 Thu Nov 12 14:42:57 1992  Francois Pinard  (pinard at icule)
2682         * builtin.c (m4_dnl): Diagnose any parameter to `dnl'.
2684         * input.c (next_token): Reinitialize token_buttom just after using
2685         it as a watermark with obstack_free.  Or else, a future token, big
2686         enough for triggering reallocation of the obstack chunk, could
2687         void the initialized value of token_buttom, later causing panic in
2688         obstack_free.  Rename token_buttom to token_bottom everywhere.
2690         * m4.h: Before declaring errno, first include <errno.h> and
2691         ensure that it does not define errno.
2692         Reported by Richard Stallman.
2694 Wed Nov 11 17:40:35 1992  Francois Pinard  (pinard at icule)
2696         * builtin.c: Define and use DECLARE macro for builtins.
2698         * builtin.c (m4_ifelse): Avoid any diagnostic when exactly one
2699         argument, this is a common idiom for introducing long comments.
2701         * builtin.c (m4_ifelse): If 3n + 2 arguments, diagnose missing
2702         arguments.  The last argument was silently ignored.
2704         * m4.c (cmd_error): Add a missing semicolon before va_end().
2706 Tue Nov 10 08:57:05 1992  Francois Pinard  (pinard at icule)
2708         * Makefile.in: Now handle protoized sources.  Define and use U.
2709         Compile and use ansi2knr with old compilers.  Update DISTFILES.
2710         Add `aclocal.m4' to `configure' dependencies.
2711         * ansi2knr.c: New, from Ghostscript distribution.
2712         * configure.in: Define U through FP_PROTOTYPES for old compilers.
2713         Add AC_ISC_POSIX, AC_CONST, AC_SIZE_T.
2714         * aclocal.m4: New, provide FP_PROTOTYPES.
2715         * m4.h: Conditionnaly protoized through Args, save for varags.
2716         * builtin.c: Protoized.  Then:
2717         Include <sys/types.h> if size_t is not defined, before "regex.h".
2718         (m4_ifelse): Fetch built-in name properly for diagnostic.
2719         (m4_dumpdef): Remove wrong (char *) cast calling dump_symbol.
2720         (m4_regexp): Add const to `msg' declaration.
2721         (m4_patsubst): Add const to `msg' declaration.
2722         * debug.c: Protoized, save for varargs.
2723         * eval.c: Protoized.
2724         * format.c: Protoized.
2725         * input.c: Protoized.
2726         * m4.c: Protoized, save for varargs.  Then:
2727         (xfree): Accept void * instead of char *.
2728         (xmalloc): Return void * instead of char *.
2729         (xrealloc): Accept and return void * instead of char *.
2730         * macro.c: Protoized.
2731         * output.c: Protoized.
2732         * path.c: Protoized.  Then cast some (char *) over xmalloc's.
2733         * symtab.c: Protoized.
2735 Fri Nov  6 02:05:21 1992  Francois Pinard  (pinard at icule)
2737         * m4.texinfo: Remove directory from diagnostics in 30.include,
2738         51.eval, 56.errprint and 57.m4exit tests.
2740         * m4.h: Remove declarations for int or void system functions, they
2741         cause more conflicting trouble than they make good.
2743         * configure.in: Avoid configuration header file.  Add some tests.
2744         * m4.h: Remove #include "config.h".
2745         * Makefile.in, lib/Makefile.in: Implement Autoconf interface.
2746         Then, rewritten for better compliance with GNU standards.
2748 Thu Nov  5 12:37:13 1992  Francois Pinard  (pinard at icule)
2750         * format.c (format): Avoid syntax error if not HAVE_EFGCVT,
2751         because of a misplaced #endif.
2753         * Many *.[hc] files: Correct intra-line spacing here and there,
2754         according to GNU indent 1.6 advice.
2756         * configure.in: New, using Autoconf 1.2.
2757         * m4.h: Reverse NO_MEMORY_H to NEED_MEMORY_H.
2758         * Delete old configure.in, configure, etc/configure.in,
2759         etc/configure, lib/configure.in, lib/configure and config/*.
2760         Reported by Jason Merrill.
2762         * symtab.c (hash): Change (char) NULL to '\0'.
2763         Reported by Jason Merrill.
2765         * Delete .vers, etc/newdist.sh, etc/newvers.sh and
2766         etc/nextvers.sh.  Release numbers will be edited `by hand'.
2767         * version.h: De-automatize, force value in.
2769         * m4.c: Changes in order to use a newer getopt.h.
2770         Reported by David MacKenzie.
2772         * checks/: New name for examples/.
2773         * checks/get_them: New location for etc/get_examples.
2774         * checks/check_them: New location for etc/check_examples.
2775         * Makefile.in, checks/get_them, checks/check_them: Adjust.
2776         * lib/vfprintf.c: New location for etc/vfprintf.c.
2777         * Delete empty etc/.
2778         * examples/: New name for test/.
2780 Tue Mar 10 00:29:46 1992  Francois Pinard  (pinard at icule)
2782         * Makefile.in (check): Add m4 as dependency.
2784         * m4.c: Accept --no-warnings instead of --no_warnings, and
2785         --no-gnu-extensions instead of --no_gnu_extensions.  Make the
2786         usage message more informative.
2787         Reported by David MacKenzie.
2789 Mon Mar  9 14:53:40 1992  Francois Pinard  (pinard at icule)
2791         * etc/check_examples: New name for check_examples.sh.
2792         * etc/get_examples: New name for get_examples.sh.
2793         * Makefile.in, etc/Makefile.in: Use new names.
2795         * Makefile.in: Transmit $(CC) while making in lib.
2797         * Many *.[hc] files: GNU indent'ed, with further fine tuning of
2798         code disposition by hand.
2800 Sun Mar  8 11:01:55 1992  Francois Pinard  (pinard at icule)
2802         * m4.h: Delete definitions for abort() and exit().
2803         Reported by Richard Stallman.
2805         * config/hmake-unicos, config/s-unicos.h: New files.
2806         Reported by Hal Peterson.
2808         * eval.c (exp_term): Have N^0 return 1.
2809         Reported by Michael Fetterman.
2811         * eval.c, input.c, m4.h: Remove last comma in enums.
2812         Reported by Mike Lijewski.
2814         * Transfer of maintenance duties from Rene' to Franc,ois.
2816 Thu Oct 24 15:18:46 1991  Rene' Seindal (seindal at diku.dk)
2818         * Release 1.0.  Many thanks to those, who provided me with bug
2819         reports and feedback.
2821         * Uses GNU configure, taken from the gdb distribution.
2823         * Uses GNU getopt(), with long option names.
2825         * The -Q/+quiet option is added, which suppresses warnings about
2826         missing or superflous arguments to built-in macros.
2828         * Added default options via the M4OPTS environment variable.
2830         * The built-in format can now be configured to use sprintf as
2831         the formatting engine, for systems without [efg]cvt(3).
2833         * GNU library code is moved to the ./lib subdirectory; other
2834         utility files are now in ./etc.
2836         * Several minor bugs have been fixed.
2838 Fri Jul 26 15:28:42 1991  Rene' Seindal (seindal at diku.dk)
2840         * Fixed various bugs.  Release 0.99, manual 0.09.  Many thanks to
2841         Francois Pinard and Roland H. Pesch for providing me with reports.
2843         * The builtins incr and decr are now implemented without use of
2844         eval.
2846         * The builtin indir is added, to allow for indirect macro calls
2847         (allows use of "illegal" macro names).
2849         * The debugging and tracing facilities has been enhanced
2850         considerably.  See the manual for details.
2852         * The -tMACRO option is added, marks MACRO for tracing as soon
2853         as it is defined.
2855         * Builtins are traced after renaming iff they were before.
2857         * Named files can now be undiverted.
2859         * The -Nnum option can be used to increase the number of
2860         divertions available.
2862         * Calling changecom without arguments now disables all comment
2863         handling.
2865         * The function m4_patsubst() is now consistently declared
2866         static.
2868         * A bug in dnl is fixed.
2870         * A bug in the multi-character quoting code is fixed.
2872         * Several typos in the manual has been corrected.  More probably
2873         persist.
2875         * The m4.info file is now installed along with the program.
2877 Thu Nov 15 21:51:06 1990  Rene' Seindal (seindal at diku.dk)
2879         * Updated and enhanced version.  Release 0.75, manual 0.07.
2881         * Implemented search path for include files (-I option and
2882         M4PATH envronment variable).
2884         * Implemented builtin "format" for printf-like formatting.
2886         * Implemented builtin "regexp" for searching for regular
2887         expressions.
2889         * Implemented builtin "patsubst" for substitution with regular
2890         expressions.
2892         * Implemented builtin "esyscmd", which expands to a shell
2893         commands output.
2895         * Implemented "__file__" and "__line__" for use in error
2896         messages.
2898         * Implemented character ranges in "translit".
2900         * Implemented control over debugging output.
2902         * Implemented multi-character quotes.
2904         * Implemented multi-character comment delimiters.
2906         * Changed predefined macro "gnu" to "__gnu__".
2908         * Changed predefined macro "unix" to "__unix__", when the -G
2909         option is not used.  With -G, "unix" is still defined.
2911         * Changed "shift", "$@" and "$*" to not insert spaces afters
2912         commas.
2914         * Added program name to error messages.
2916         * Fixed two missing null bytes bugs.
2918 Mon Jan 22 21:08:52 1990  Rene' Seindal (seindal at diku.dk)
2920         * Initial beta release.  Release 0.50, manual 0.05.
2922         -----
2924         $Revision$ $Date$
2926         Local Variables:
2927         coding: utf-8
2928         End:
2930         Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000, 2001, 2003,
2931         2005, 2006 Free Software Foundation, Inc.
2933         Copying and distribution of this file, with or without
2934         modification, are permitted provided the copyright notice
2935         and this notice are preserved.