* lisp/progmodes/cc-awk.el: Remove unneeded cc-bytecomp use.
[emacs.git] / lib-src / ChangeLog
blob4ca0c7e5319779214cdff8011794bb7dac125c61
1 2014-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3         --enable-silent-rules now suppresses more chatter.
4         * Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_CC, am__v_CC_)
5         (am__v_CC_0, am__v_CC_1, AM_V_CCLD, am__v_CCLD_, am__v_CCLD_0)
6         (am__v_CCLD_1): New macros, taken from Automake.
7         (regex.o, etags${EXEEXT}, ctags${EXEEXT}, ebrowse${EXEEXT})
8         (profile${EXEEXT}, make-docfile${EXEEXT}, movemail${EXEEXT})
9         (pop.o, emacsclient${EXEEXT}, emacsclientw${EXEEXT})
10         (emacsclientw${EXEEXT}, ntlib.o, hexl${EXEEXT})
11         (update-game-score${EXEEXT}): Use them.
13         * etags.c (emacs_strchr, emacs_strrchr): Remove.
14         All uses replaced by strchr and strrchr, which are on all
15         target platforms now.
17 2014-07-15  Paul Eggert  <eggert@cs.ucla.edu>
19         Use "b" flag more consistently; avoid "t" (Bug#18006).
20         * make-docfile.c (READ_TEXT): Remove; all uses replaced by "r".
21         (READ_BINARY): Remove; all uses replaced by "rb".
23 2014-07-14  Paul Eggert  <eggert@cs.ucla.edu>
25         Use binary-io module, O_BINARY, and "b" flag (Bug#18006).
26         * etags.c, hexl.c, make-docfile.c:
27         Include binary-io.h instead of fcntl.h and/or io.h.
28         (main): Use set_binary_mode or SET_BINARY
29         in place of handcrafted code.
30         * etags.c (main) [DOS_NT]:
31         * movemail.c (main) [WINDOWSNT]:
32         Don't mess with _fmode.
33         * etags.c (main, process_file_name, analyse_regex):
34         Use fopen/popen's "b" flag instead.
35         * movemail.c (main, popmail): Use open/lk_open/mkostemp's O_BINARY
36         instead.
38 2014-07-13  Paul Eggert  <eggert@cs.ucla.edu>
40         * make-docfile.c: Simplify a bit, to simplify further refactoring.
41         (outfile): Remove static var.  All uses changed to use stdout,
42         since it's always stdout anyway.  While we're at it, prefer
43         putchar/puts/fputs to printf when there are no format strings.
44         (main): Use freopen rather than fopen, so that stdout is reused.
45         Move O_BINARY stuff after the freopen, so it affects the
46         reopened file.
47         (write_c_args): Omit first arg, since it's always stdout now.
48         All uses changed.
50 2014-07-12  Paul Eggert  <eggert@cs.ucla.edu>
52         * etags.c (Lisp_functions): Also record cl-defun etc. (Bug#17965)
54 2014-06-26  Glenn Morris  <rgm@gnu.org>
56         * Makefile.in (blessmail): Depend on lisp/mail/blessmail.el.
57         Use $<, $@.
58         (regex.o, etags${EXEEXT}, ctags${EXEEXT}, ebrowse${EXEEXT})
59         (profile${EXEEXT}, make-docfile${EXEEXT}, movemail${EXEEXT})
60         (pop.o, emacsclient${EXEEXT}, emacsclientw${EXEEXT}, ntlib.o)
61         (hexl${EXEEXT}, update-game-score${EXEEXT}, emacsclient.res): Use $<.
62         (ctags${EXEEXT}): Add $srcdir to dependency rather than using VPATH.
64 2014-06-17  Paul Eggert  <eggert@cs.ucla.edu>
66         Omit redundant extern decls.
67         * emacsclient.c (getenv): Remove decl.
68         * make-docfile.c (write_globals): Add ATTRIBUTE_CONST for
69         Fbyteorder, Ftool_bar_height, Fmax_char, Fidentity.
71 2014-06-15  Glenn Morris  <rgm@gnu.org>
73         * Makefile.in (LDFLAGS): Explicitly set via configure.
75 2014-06-15  Eli Zaretskii  <eliz@gnu.org>
77         * Makefile.in (CPPFLAGS): Define.
79 2014-06-15  Glenn Morris  <rgm@gnu.org>
81         * Makefile.in (../lib/libgnu.a):
82         Use `make -C' rather than `cd && make'.
84         * Makefile.in (bootstrap-clean): New.
86 2014-06-13  Glenn Morris  <rgm@gnu.org>
88         * Makefile.in (../lib/libgnu.a):
89         GNU make automatically passes command-line arguments to sub-makes.
91 2014-05-26  Eli Zaretskii  <eliz@gnu.org>
93         * ntlib.h (lseek): Don't redirect to _lseek.
95 2014-05-26  Paul Eggert  <eggert@cs.ucla.edu>
97         Fix rcs2log problems with CVS.
98         Problem reported by Glenn Morris in
99         <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00277.html>.
100         Plus, fix some security and filename quoting problems.
101         * rcs2log (logdir): Prefer mktemp if available.
102         (logdir, llogdir): Work even if TMPDIR begins with '-' or has spaces.
103         (output_authors, main awk script): Parse more-recent CVS output format.
105 2014-05-19  Paul Eggert  <eggert@cs.ucla.edu>
107         Remove dependencies on getline and getdelim.
108         Also, remove update-game-scores's limits on game scores and
109         simplify its file-locking code.
110         * update-game-score.c (struct score_entry): Unify the username and
111         data members to a single user_data member, since they don't need to be
112         changed independently and getdelim and getline aren't helpful.
113         Make the score member char *, not intmax_t, so that scores are not
114         limited to intmax_t.  All uses changed.
115         (lose_syserr): A zero errno stands for invalid data in score file.
116         (normalize_integer): New function.
117         (main): Use it.  Check for invalid scores.  Omit redundant stat check.
118         (read_score): First arg is now a string, not a FILE *.  All uses
119         changed.  Do not use getdelim or getline; that's way simpler.
120         (read_scores): Read the whole file, and let read_score handle each
121         line.
122         (score_compare): Compare strings representing integers, not integers.
123         (write_scores) [DOS_NT]: Eliminate unnecessary chmod.
124         (lock_file): Simplify locking code, eliminating goto.
125         Check for unlink failure.
127 2014-05-18  Paul Eggert  <eggert@cs.ucla.edu>
129         Port ctags+etags build to Sun C 5.12.
130         * Makefile.in (etags_args): Remove, replacing with ...
131         (etags_cflags, etags_libs): New macros.  All uses changed.
132         (ctags${EXEEXT}): Don't compile etags.c, as compiling etags.c in
133         parallel (once for ctags, once for etags) breaks parallel makes
134         with compilers that use the source file name to name temporaries,
135         such as Sun C 5.12.  Instead, compile ctags.c.
136         * ctags.c: New file.
138 2014-05-04  Paul Eggert  <eggert@cs.ucla.edu>
140         Handle systems without WCONTINUED consistently.  (Bug#15110, 17339)
141         * emacsclient.c (WCONTINUED): Move to ../src/syswait.h.
143 2014-04-30  Glenn Morris  <rgm@gnu.org>
145         * Makefile.in ($(DESTDIR)${archlibdir}):
146         Avoid non-portable "`\" nesting.  (Bug#17339)
148 2014-04-16  Eli Zaretskii  <eliz@gnu.org>
150         * update-game-score.c (write_scores): Condition fchmod call on
151         DOS_NT, not WINDOWSNT.
153 2014-03-22  Glenn Morris  <rgm@gnu.org>
155         * Makefile.in (etags_deps, etags_args): New, to reduce duplication.
156         (etags${EXEEXT}, ctags${EXEEXT}): Use etags_deps, etags_args.
158         * Makefile.in (etags${EXEEXT}, ebrowse${EXEEXT}, ctags${EXEEXT})
159         (profile${EXEEXT}, make-docfile${EXEEXT}, movemail${EXEEXT})
160         (emacsclient${EXEEXT}, emacsclientw${EXEEXT}, hexl${EXEEXT})
161         (update-game-score${EXEEXT}, emacsclient.res): Use $@.
163         * Makefile.in (../lib/libgnu.a): Explicitly pass MFLAGS.
165         * Makefile.in (DONT_INSTALL): Remove test-distrib.
166         (test-distrib${EXEEXT}): Remove rule.
168         * test-distrib.c, testfile: Remove.
170 2014-03-10  Juanma Barranquero  <lekktu@gmail.com>
172         * emacsclient.c (main): #ifdef out previous change on Windows.
174 2014-03-09  Paul Eggert  <eggert@cs.ucla.edu>
176         Fix emacsclient terminal corruption when in background (Bug#16892).
177         * emacsclient.c (handle_sigcont): Check for tcgetpgrp failure.
178         Cancel the continue only if tty.  Send SIGTTIN to the process
179         group, not SIGSTOP to self, as this is what the glibc manual
180         recommends.
181         (main): If tty, and if started in the background, send SIGTTIN
182         to the process group.
184 2014-02-25  Andreas Amann  <a.amann@ucc.ie>  (tiny change)
186         Fix emacsclient's handling of SIGCONT (Bug#16883).
187         * emacsclient.c (handle_sigcont): Cancel the continue only if tty.
189 2014-01-22  Eli Zaretskii  <eliz@gnu.org>
191         * update-game-score.c (write_scores) [WINDOWSNT]: Use chmod
192         instead of fchmod.
194 2014-01-22  Paul Eggert  <eggert@cs.ucla.edu>
196         Fix miscellaneous update-game-score bugs.
197         * update-game-score.c (difftime) [!HAVE_DIFFTIME]: Remove.
198         (read_score) [HAVE_GETDELIM]: Don't access uninitialized storage,
199         as that leads to undefined behavior, which is a bad thing
200         particularly in a setuid program.
201         (read_scores, write_scores): Check for fclose failure; on some
202         systems, I/O errors are not reported by primitives like getc and
203         putc, but instead are delayed until fclose, so fclose failures
204         should be diagnosed like other read and write errors.
205         (write_scores): Use fchmod, not chmod, to avoid a race.
206         Otherwise, if the lock is broken by some other process,
207         update-game-score might try to change the permission on someone
208         else's file or on a nonexistent file, and incorrectly report an
209         error when this fails.
210         (lock_file): Fix test for out-of-date lock file; it was reversed.
211         That is, it incorrectly broke locks when they were more than an
212         hour into the future, instead of when they were more than an hour
213         in the past.  Use ordinary subtraction rather than difftime; since
214         we're already assuming POSIX we don't need to worry about the
215         possibility of time_t being a magic cookie, and since timestamps
216         are positive we don't need to worry about integer overflow when
217         subtracting them.  Put two spaces, not just one, after a sentence
218         end in a comment.
220 2014-01-19  Paul Eggert  <eggert@cs.ucla.edu>
222         update-game-score fixes for -m and integer overflow (Bug#16428)
223         * update-game-score.c: Include inttypes.h, stdbool.h.
224         (min): New macro, if not already defined.
225         (MAX_SCORES, main): Limit the maximum number of scores only from
226         limits imposed by the underyling platform, instead of the
227         arbitrary value 200.
228         (struct score_entry, main, read_score, write_score):
229         Scores are now intmax_t, not long.
230         (get_user_id): Reject user names containing spaces or newlines,
231         as they would mess up the score file.
232         Allow uids that don't fit in 'long'.
233         Increase the size of the buffer, to avoid overrun in weird cases.
234         (get_prefix, main): Use bool for boolean.
235         (main): Rewrite expr to avoid possibility of signed integer
236         overflow.  Don't allow newlines in data, as this would mess up
237         the score file.  Check for memory allocation failure when adding
238         the new score, or when unlockint the file.  Implement -m.
239         (read_score): Check for integer overflow when reading a score.
240         (read_score) [!HAVE_GETDELIM]: Check for integer overflow when
241         data gets very long.  Check only for space to delimit names,
242         since that's what's done in the HAVE_GETDELIM case.
243         (read_scores): New parameter ALLOC.  Change counts to ptrdiff_t.
244         All uses changed.  Use push_score to add individual scores;
245         that's simpler than repeating its contents.
246         (score_compare_reverse): Simplify.
247         (push_score): New parameter SIZE.  Change counts to ptrdiff_t.
248         All uses changed.  Check for integer overflow of size calculation.
249         (sort_scores, write_scores): Change counts to ptrdiff_t.
250         (unlock_file): Preserve errno on success, so that storage
251         exhaustion is diagnosed correctly.
253 2014-01-05  Paul Eggert  <eggert@cs.ucla.edu>
255         Spelling fixes.
256         * Makefile.in (regex.o): Remove reference to no-longer-used macros
257         CONFIG_BROKETS and INHIBIT_STRING_HEADER.  "BROKETS" was a
258         misspelling anyway....
260 2013-12-14  Paul Eggert  <eggert@cs.ucla.edu>
262         Use bool for boolean, focusing on headers.
263         * emacsclient.c, etags.c, hexl.c (FALSE, TRUE):
264         Remove.  All uses replaced with uncapitalized version.
265         * emacsclient.c (message):
266         * etags.c (make_tag, pfnote, consider_token, make_C_tag, lang_names):
267         * hexl.c (un_flag, iso_flag, endian):
268         * pop.c (pop_debug, pop_open, pop_multi_first, pop_multi_next)
269         (pop_trash):
270         Use bool for boolean.
271         * etags.c (bool): Remove.
272         * etags.c (globals, members, declarations, no_line_directive)
273         (no_duplicates): Use 'int' for boolean values that getopt requires
274         to be 'int'.  Formerly, these were 'bool' and 'bool' was 'int',
275         but we can no longer rely on this implementation.
276         * pop.h (struct _popserver): Use bool_bf for boolean bit-fields.
278 2013-11-14  Paul Eggert  <eggert@cs.ucla.edu>
280         * ebrowse.c (xstrdup):
281         * etags.c (savenstr): Prefer tail calls.
282         * etags.c (concat): Omit unnecessary assignment.
284 2013-10-24  Glenn Morris  <rgm@gnu.org>
286         * Makefile.in ($(DESTDIR)${archlibdir}):
287         Avoid non-portable "`\" nesting.
289         * Makefile.in (abs_top_srcdir): New, set by configure.
291 2013-10-23  Glenn Morris  <rgm@gnu.org>
293         * Makefile.in ($(DESTDIR)${archlibdir}, need-blessmail, install)
294         (uninstall): Quote entities that might contain whitespace.
296 2013-10-10  Glenn Morris  <rgm@gnu.org>
298         * make-docfile.c (search_lisp_doc_at_eol):
299         Use int rather than char with getc.  (Bug#15481)
301 2013-09-20  Paul Eggert  <eggert@cs.ucla.edu>
303         A simpler, centralized INLINE.
304         * profile.c (INLINE): New macro.
305         (SYSTIME_INLINE): Remove.
307 2013-08-28  Paul Eggert  <eggert@cs.ucla.edu>
309         * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
310         for portability to hosts where /bin/sh has problems.
312 2013-08-10  Eli Zaretskii  <eliz@gnu.org>
314         * update-game-score.exe.manifest: New file.
316         * Makefile.in (UPDATE_MANIFEST): New variable.
317         (SCRIPTS): Add $(UPDATE_MANIFEST).
319 2013-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
321         * makefile.w32-in (lisp2): Add nadvice.elc.
323 2013-08-05  Eli Zaretskii  <eliz@gnu.org>
325         * update-game-score.c (read_score): Try reading a character before
326         probing the stream for EOF.  Initialize score->score to zero,
327         before reading and accumulating the score.
328         (read_scores): Fix logic that determines which value to return.
329         Close the input stream when finished reading the scores (avoids
330         failures in overwriting the file with a new one on MS-Windows,
331         since a file that is open cannot be deleted).
333         * ntlib.h (rename): Don't undefine.
335         * ntlib.c (sys_rename): New function, needed for
336         update-game-score.
338 2013-08-04  Eli Zaretskii  <eliz@gnu.org>
340         * ntlib.h: Include fcntl.h.
341         (mkostemp): Declare prototype.
342         (mktemp): Don't redefine.
344         * ntlib.c (mkostemp): New function.  (Bug#15015)
346 2013-08-04  Paul Eggert  <eggert@cs.ucla.edu>
348         Fix some minor races in hosts lacking mkostemp (Bug#15015).
349         * movemail.c (main):
350         * update-game-score.c (write_scores):
351         Use mkostemp (which now works on all platforms, due to changes
352         in the portability layer) rather than mktemp (which has a race)
353         or mkstemp (which we no longer bother with).
355 2013-07-10  Paul Eggert  <eggert@cs.ucla.edu>
357         Port to C89.
358         * ebrowse.c (USAGE): Remove macro with too-long string literal ...
359         (usage_message): ... and replace it with this new static constant
360         containing multiple literals.  All uses changed.
361         * emacsclient.c (print_help_and_exit):
362         Rewrite to avoid string literals longer than the C89 limits.
363         (start_daemon_and_retry_set_socket):
364         Rewrite to avoid non-constant array initializer.
365         * make-docfile.c (enum global_type): Omit trailing comma.
367 2013-07-02  Paul Eggert  <eggert@cs.ucla.edu>
369         Prefer plain 'static' to 'static inline' (Bug#12541).
370         I missed these instances of 'static inline' in an earlier sweep.
371         * ebrowse.c (putstr):
372         * etags.c (hash):
373         * make-docfile.c (put_char): No longer inline.
374         * etags.c (hash): Prefer int to unsigned when either will do.
376 2013-06-21  Paul Eggert  <eggert@cs.ucla.edu>
378         Use C99-style flexible array members if available.
379         * ebrowse.c: Include <stddef.h>, for offsetof.
380         (struct member, struct alias, struct sym):
381         Use FLEXIBLE_ARRAY_MEMBER.
382         (add_sym, add_member, make_namespace, register_namespace_alias):
383         Use offsetof (struct, flex_array_member), not sizeof (struct), as
384         that ports better to pre-C99 non-GCC.
386 2013-05-29  Eli Zaretskii  <eliz@gnu.org>
388         * Makefile.in (mostlyclean): Remove *.res files.
390 2013-05-18  Paul Eggert  <eggert@cs.ucla.edu>
392         Port --enable-gcc-warnings to clang.
393         * etags.c: Omit unnecessary forward decls.
394         (print_version, print_help): Declare _Noreturn.
395         * pop.c (socket_connection) [HAVE_GETADDRINFO]: Simplify.
397 2013-05-16  Eli Zaretskii  <eliz@gnu.org>
399         * update-game-score.c [WINDOWSNT]: Include "ntlib.h".
401         * ntlib.h (sleep): Update prototype.
402         (geteuid): Add prototype.
404         * ntlib.c (sleep): Now returns an unsigned value.
405         (getgid): New function.
407         * Makefile.in (CLIENTW, LIB_WSOCK32, LIBS_ECLIENT, NTLIB)
408         (CLIENTRES, WINDRES, NTINC, NTDEPS): New variables.
409         (INSTALLABLES): Add $(CLIENTW).
410         (LIBS_MOVE): Use $(LIB_WSOCK32).
411         ($(DESTDIR)${archlibdir}): Use $(EXEEXT) on update-game-score.
412         (test-distrib${EXEEXT}): Use $(EXEEXT) on test-distrib.
413         (etags${EXEEXT}, ebrowse${EXEEXT}, ctags${EXEEXT})
414         (profile${EXEEXT}, make-docfile${EXEEXT}, movemail${EXEEXT})
415         (emacsclient${EXEEXT}, hexl${EXEEXT}, update-game-score${EXEEXT}):
416         Add $(NTLIB) to prerequisites.  Use $(EXEEXT).
417         (pop.o): Add pop.h to prerequisites.
418         (emacsclientw${EXEEXT}, ntlib.o): New targets.
419         (emacsclient.res): New target.
421 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
423         * makefile.w32-in ($(DOC)): Use DOC rather than DOC-X.
425 2013-05-06  Paul Eggert  <eggert@cs.ucla.edu>
427         * make-docfile.c (search_lisp_doc_at_eol) [DEBUG]: Fix typo,
428         by removing references to no-longer-existing locals.
430 2013-03-26  Eli Zaretskii  <eliz@gnu.org>
432         Fix incompatibilities between MinGW.org and MinGW64 headers.
433         * ntlib.c (struct timespec) [!_TIMEZONE_DEFINED]: Define the
434         struct only if _TIMEZONE_DEFINED is not defined.
436 2013-03-23  cg  <chengang31@gmail.com>  (tiny change)
438         * makefile.w32-in (LIB_SRC): Move before first use.
440 2013-03-16  Paul Eggert  <eggert@cs.ucla.edu>
442         * pop.c: Fix ERRMAX typo (Bug#13925).
443         (socket_connection) [!HAVE_KRB5_ERROR_TEXT && HAVE_KRB5_ERROR_E_TEXT]:
444         Use ERROR_MAX, not ERRMAX.
446 2013-03-13  Paul Eggert  <eggert@cs.ucla.edu>
448         File synchronization fixes (Bug#13944).
449         * Makefile.in (LIB_FDATASYNC): New macro.
450         (emacsclient${EXEEXT}): Use it.
451         * emacsclient.c (main): Use fdatasync, not fsync, since we don't
452         care about metadata.  Keep trying if interrupted.
453         * movemail.c (main, popmail): Don't worry about BSD_SYSTEM, since
454         fsync is available everywhere (or there is a substitute).
455         Don't report an error if fsync returns EINVAL.
457         Static checking by Sun C 5.12.
458         * etags.c (analyse_regex): Omit unreachable code.
460         * movemail.c (main): Call umask on all systems.
461         This is OK since Emacs already assumes umask elsewhere.
462         Don't grant more read permissions than necessary.
463         The old 0333 dates back to before we called setuid,
464         so it was needed back then to ensure user-readability,
465         but 0377 should suffice now.
467 2013-02-08  Paul Eggert  <eggert@cs.ucla.edu>
469         * movemail.c (getenv): Remove decl (unused since 1994).
471 2013-01-15  Paul Eggert  <eggert@cs.ucla.edu>
473         * make-docfile.c (write_globals): Make it a bit clearer (Bug#13448).
474         This pacifies GCC 4.7.2 when Emacs is configured with
475         --enable-link-time-optimization and --enable-gcc-warnings.
477 2013-01-01  Juanma Barranquero  <lekktu@gmail.com>
479         * makefile.w32-in (lisp1): Add macroexp.elc (bug#13320).
481 2012-12-11  Juanma Barranquero  <lekktu@gmail.com>
483         * makefile.w32-in (SYSWAIT_H): Update dependencies.
485 2012-12-10  Eli Zaretskii  <eliz@gnu.org>
487         * makefile.w32-in (obj): Add w32notify.o.  Add missing X and Unix
488         sources.
490 2012-12-02  Kevin Ryde  <user42@zip.com.au>
492         * etags.c (Lisp_functions): Skip (defvar foo) declarations unless
493         the --declarations flag is enabled (Bug#5600).
494         (Lisp_help): Update.
495         (skip_name): New function.
497 2012-12-01  Kevin Ryde  <user42@zip.com.au>
499         * etags.c (Perl_functions): Support "use constant" (Bug#5055).
501 2012-11-27  Paul Eggert  <eggert@cs.ucla.edu>
503         Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
504         * movemail.c (main): Assume EAGAIN and EBUSY.
506 2012-11-23  Paul Eggert  <eggert@cs.ucla.edu>
508         movemail: treat EACCES etc. failures as permanent
509         * movemail.c (main): Treat any link failure other than EEXIST as a
510         permanent failure, not just EPERM.  EACCES, for example.
512 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
514         Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
515         * emacsclient.c (getcwd): Remove decl.
516         (get_current_dir_name): Assume getcwd exists.
517         * etags.c (HAVE_GETCWD): Remove.
518         (getcwd): Remove decl.
519         (NO_LONG_OPTIONS): Remove this.  All uses removed.
520         Emacs always has GNU getopt.
521         (etags_getcwd): Assume getcwd exists.
522         * movemail.c (F_OK, X_OK, W_OK, R_OK): Remove.
524 2012-11-20  Paul Eggert  <eggert@cs.ucla.edu>
526         * emacsclient.c (handle_sigcont, handle_sigtstp): Use raise (sig)
527         rather than kill (getpid (), sig), as it's simpler and safer.
529 2012-11-17  Juanma Barranquero  <lekktu@gmail.com>
531         * makefile.w32-in (SYSWAIT_H): New macro.
532         ($(BLD)/movemail.$(O)): Update dependencies.
534 2012-11-17  Paul Eggert  <eggert@cs.ucla.edu>
536         Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
537         * movemail.c, update-game-score.c: Assume <fcntl.h> exists.
539 2012-10-26  Glenn Morris  <rgm@gnu.org>
541         * Makefile.in (uninstall): No INSTALLABLES live in archlibdir.
543         * Makefile.in (install, uninstall): Transformations should not be
544         applied to $EXEEXT.
546 2012-10-23  Eli Zaretskii  <eliz@gnu.org>
548         * makefile.w32-in (lisp2): Add cp51932.el and eucjp-ms.el, to
549         follow src/lisp.mk.
551 2012-10-21  Glenn Morris  <rgm@gnu.org>
553         * make-docfile.c (scan_lisp_file): Add cp51932.el and eucjp-ms.el.
555 2012-10-20  Eli Zaretskii  <eliz@gnu.org>
557         * make-docfile.c (IS_SLASH, DEF_ELISP_FILE): New macros.
558         (scan_lisp_file): Only pass a .el file if its basename matches a
559         known file in its entirety.  Use IS_SLASH and DEF_ELISP_FILE.
561 2012-10-20  Andreas Schwab  <schwab@linux-m68k.org>
563         * make-docfile.c (scan_lisp_file): Add bounds checking.
565 2012-10-20  Eli Zaretskii  <eliz@gnu.org>
567         Prevent silent omission of doc strings from uncompiled Lisp files.
568         * make-docfile.c (scan_lisp_file): Barf if called with a .el file
569         other than one of a small list of supported un-compiled files.
571         * makefile.w32-in (lisp1, lisp2): Name .elc files wherever they
572         exist.  (Bug#12395)
574 2012-10-17  Eli Zaretskii  <eliz@gnu.org>
576         * ntlib.c: Include <mbstring.h>, to avoid compiler warning about
577         _mbspbrk.
579 2012-10-08  Eli Zaretskii  <eliz@gnu.org>
581         * makefile.w32-in (obj): Add cygw32.o.
583 2012-10-08  Daniel Colascione  <dancol@dancol.org>
585         * emacsclient.c: Include windows.h when HAVE_NTGUI.
586         (alt_display): New variable.  We send the display held by this
587         variable when the primary display is either unsupported or not
588         present.
589         (longopts): Allow display everywhere.
590         (w32_set_user_model_id): Move lower in file, inside HAVE_NTGUI
591         section.
592         (decode_options): Use alt_display.  Explain why.
593         (main): Retry connection with alt_display if connection with main
594         display fails.
596 2012-10-01  Fabrice Popineau  <fabrice.popineau@gmail.com>
598         * make-docfile.c (write_globals): Special-case
599         Fexit_recursive_edit and Fabort_recursive_edit as well, as
600         functions that are _Noreturn, to be consistent with
601         src/keyboard.c.
603 2012-09-30  Eli Zaretskii  <eliz@gnu.org>
605         * ntlib.c (gettimeofday): Copy from src/w32.c.  lib/gettime.c
606         needs this function.
608 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
610         * makefile.w32-in (obj): Add profiler.o.
612 2012-09-17  Glenn Morris  <rgm@gnu.org>
614         * ebrowse.c (version):
615         * etags.c (print_version): Use COPYRIGHT.
617 2012-09-11  Paul Eggert  <eggert@cs.ucla.edu>
619         * pop.c (socket_connection) [HAVE_GETADDRINFO]:
620         Prefer assignment to memcpy when either will do.
622 2012-08-31  Andreas Schwab  <schwab@linux-m68k.org>
624         * etags.c (consider_token): Always zero-terminate token buffer.
625         (Bug#12306)
627 2012-08-19  Paul Eggert  <eggert@cs.ucla.edu>
629         Rely on <config.h> + <unistd.h> to declare 'environ'.
630         * emacsclient.c (environ): Remove decl.
632 2012-08-17  Juanma Barranquero  <lekktu@gmail.com>
634         * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
636 2012-08-15  Paul Eggert  <eggert@cs.ucla.edu>
638         * etags.c (Pascal_functions): Fix parenthesization typo.
640 2012-08-14  Paul Eggert  <eggert@cs.ucla.edu>
642         * make-docfile.c (enum global_type): Sort values roughly in
643         decreasing alignment, except put functions last.
644         (compare_globals): Use this new property of enum global_type.
645         (write_globals): Use bool, not int, for booleans.
647 2012-08-10  Glenn Morris  <rgm@gnu.org>
649         * make-docfile.c (IF_LINT):
650         * emacsclient.c (IF_LINT): Remove (in config.h now).
652         * make-docfile.c (main)
653         (fopen) [!WINDOWSNT]:
654         (chdir) [!DOS_NT]: No more need to undef.
656         * movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP):
657         * make-docfile.c (DIRECTORY_SEP, IS_DIRECTORY_SEP):
658         * emacsclient.c (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP):
659         Remove (they are in config.h now).
661         * ebrowse.c (PATH_LIST_SEPARATOR):
662         Remove, and replace with SEPCHAR from config.h.
664 2012-08-03  Juanma Barranquero  <lekktu@gmail.com>
666         * makefile.w32-in (LOCAL_FLAGS): Remove WINDOWSNT and DOS_NT,
667         they are always defined in config.h.
669 2012-08-03  Eli Zaretskii  <eliz@gnu.org>
671         * ntlib.c (lstat): New function, calls 'stat'.
673 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
675         Use C99-style 'extern inline' if available.
676         * profile.c (SYSTIME_INLINE): Define.
678 2012-08-02  Glenn Morris  <rgm@gnu.org>
680         * makefile.w32-in (MS_W32_H): Update for new ms-w32.h location.
682 2012-08-01  Glenn Morris  <rgm@gnu.org>
684         * Makefile.in (config_h): New variable.
685         Use throughout in place of ../src/config.h.
687 2012-08-01  Juanma Barranquero  <lekktu@gmail.com>
689         * makefile.w32-in (CONFIG_H): Update dependencies.
690         (CONF_POST_H): New macro.
692 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
694         Update .PHONY listings in makefiles.
695         * Makefile.in (.PHONY): Add all, need-blessmail, maybe-blessmail,
696         install, uninstall, mostlyclean, clean, distclean,
697         maintainer-clean, extraclean, check, tags.
699 2012-07-29  Eli Zaretskii  <eliz@gnu.org>
701         * makefile.w32-in ($(BLD)/profile.$(O)): Depend on stamp_BLD.
703 2012-07-12  Paul Eggert  <eggert@cs.ucla.edu>
705         * movemail.c: Add missing 'defined'.
706         Suggested by Sven Joachim in
707         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00218.html>.
709 2012-07-11  Paul Eggert  <eggert@cs.ucla.edu>
711         Port 'movemail' again to Solaris and similar hosts.
712         See Susan Cragin's report in
713         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00199.html>.
714         * movemail.c (xmalloc): Also define if !DISABLE_DIRECT_ACCESS &&
715         !MAIL_USE_MMDF && !MAIL_USE_SYSTEM_LOCK.  Move up, so it doesn't
716         need a forward declaration.
717         (main): Rewrite to avoid no-longer-present function 'concat', if
718         !DISABLE_DIRECT_ACCESS && !MAIL_USE_MMDF && !MAIL_USE_SYSTEM_LOCK.
720         Assume strerror.
721         * emacsclient.c, movemail.c, update-game-score.c (strerror)
722         [!HAVE_STRERROR]: Remove.
724 2012-07-10  Paul Eggert  <eggert@cs.ucla.edu>
726         EMACS_TIME simplification (Bug#11875).
727         * profile.c (TV2): Remove no-longer-needed static var.
729         Simplify by avoiding confusing use of strncpy etc.
730         * etags.c (write_classname, C_entries):
731         Use sprintf rather than strncpy or strncat.
732         * etags.c (consider_token, C_entries, HTML_labels, Prolog_functions)
733         (Erlang_functions, substitute, readline_internal, savenstr):
734         * movemail.c (mail_spool_name):
735         Use memcpy rather than strncpy or strncat when either will do.
736         * make-docfile.c (write_c_args):
737         Use memcmp rather than strncmp when either will do.
738         * movemail.c (pop_retr):
739         * pop.c (pop_stat, pop_list, pop_multi_first, pop_last)
740         (socket_connection, pop_getline, sendline, getok):
741         Use snprintf rather than strncpy or strncat.
742         * movemail.c (concat): Remove; no longer needed.
743         (xmalloc): Define only if needed, now that concat has gone away.
744         Return void *.  All uses changed.
746 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
748         Add GCC-style 'const' attribute to functions that can use it.
749         * etags.c (number_len): Add ATTRIBUTE_CONST.
751 2012-07-09  Juanma Barranquero  <lekktu@gmail.com>
753         * emacsclient.c (w32_execvp): Declare execvp to silence the compiler.
755 2012-07-09  Juanma Barranquero  <lekktu@gmail.com>
757         * makefile.w32-in ($(BLD)/test-distrib.exe): Use LIB_SRC, not SRC.
758         (LIB_SRC, NT_INC, GNU_LIB, MS_W32_H, CONFIG_H, INTTYPES_H, NTLIB_H)
759         (SYSTIME_H): New macros.
760         (SRC): Redefine to point to src/, not current directory.
761         ($(BLD)/ctags.$(O), $(BLD)/ebrowse.$(O), $(BLD)/emacsclient.$(O))
762         ($(BLD)/etags.$(O), $(BLD)/hexl.$(O), $(BLD)/make-docfile.$(O))
763         ($(BLD)/movemail.$(O), $(BLD)/ntlib.$(O), $(BLD)/pop.$(O))
764         ($(BLD)/profile.$(O), $(BLD)/test-distrib.$(O)): Update dependencies.
765         ($(BLD)/regex.$(O)): New dependency.
767 2012-07-09  Juanma Barranquero  <lekktu@gmail.com>
769         * makefile.w32-in (ALL): Add profile.exe.
770         (PROFILEOBJS): New macro.
771         ($(BLD)/profile.exe): New target.
772         (install): Copy profile.exe.
773         ($(BLD)/alloca.$(O), $(BLD)/tcp.$(O)): Remove, obsolete.
775 2012-07-07  Juanma Barranquero  <lekktu@gmail.com>
777         * makefile.w32-in ($(BLD)/ctags.$(O), $(BLD)/etags.$(O)):
778         Update dependencies.
780 2012-07-06  Paul Eggert  <eggert@cs.ucla.edu>
782         Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
783         * etags.c: Include c-strcase.h.
784         (etags_strcasecmp, etags_strncasecmp): Remove.
785         All uses replaced with c_strcasecmp and c_strncasecmp.
787 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
789         * make-docfile.c (write_globals): Warn about duplicate function
790         definitions with differing signatures.
792 2012-07-03  Paul Eggert  <eggert@cs.ucla.edu>
794         * make-docfile.c (scan_c_file): Suppress GCC warning.
796 2012-06-29  Tom Tromey  <tromey@redhat.com>
798         * make-docfile.c (enum global_type) <FUNCTION>: New constant.
799         (struct global) <value>: New field.
800         (add_global): Add 'value' argument.
801         (compare_globals): Sort functions at the end.
802         (close_emacs_globals): New function.
803         (write_globals): Handle functions.
804         (scan_c_file): Call add_global for DEFUN.
806 2012-06-30  Juanma Barranquero  <lekktu@gmail.com>
808         * makefile.w32-in (CTAGS_CFLAGS): Remove EMACS_NAME;
809         already defined in ETAGS_CFLAGS.
811 2012-06-27  Glenn Morris  <rgm@gnu.org>
813         * makefile.w32-in (lisp2): Remove paths.el.
815 2012-06-26  Paul Eggert  <eggert@cs.ucla.edu>
817         Clean out last vestiges of the old HAVE_CONFIG_H stuff.
818         * Makefile.in (BASE_CFLAGS):
819         * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
820         * etags.c, hexl.c, pop.c: Include <config.h> unconditionally.
821         * etags.c (DOS_NT):
822         * pop.c (MAIL_USE_POP, h_errno):
823         Remove code that was conditioned on !HAVE_CONFIG_H.
825 2012-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
827         * etags.c (etags_strcasecmp, etags_strncasecmp): Define to
828         library functions strcasecmp and strncasecmp if available.
830 2012-06-24  Paul Eggert  <eggert@cs.ucla.edu>
832         Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
833         * ebrowse.c (usage, version):
834         * emacsclient.c (print_help_and_exit, fail):
835         * etags.c (suggest_asking_for_help, fatal, pfatal):
836         * hexl.c (usage):
837         * make-docfile.c (fatal):
838         * movemail.c (fatal, pfatal_with_name, pfatal_and_delete):
839         * update-game-score.c (usage):
840         * ebrowse.c (usage, version):
841         * emacsclient.c (print_help_and_exit, fail):
842         Use _Noreturn rather than NO_RETURN.
843         No need for separate decl merely because of _Noreturn.
845 2012-06-24  Samuel Bronson  <naesten@gmail.com>
847         * emacsclient.c (set_local_socket): Fix compiler warning (Bug#7838).
849 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
851         Support higher-resolution time stamps (Bug#9000).
852         * Makefile.in (LIB_CLOCK_GETTIME): New macro.
853         (profile${EXEEXT}): Use it.
854         * profile.c: Include inttypes.h, intprops.h.
855         (time_string): Size conservatively; do not guess size.
856         (get_time): Now prints nanoseconds.
857         (gettimeofday): Remove replacement function; gnulib now does this.
859 2012-06-08  Andreas Schwab  <schwab@linux-m68k.org>
861         * make-docfile.c (search_lisp_doc_at_eol): Unget last read
862         character.
864 2012-06-06  Glenn Morris  <rgm@gnu.org>
866         * Makefile.in (STAMP_INST_SCRIPTS, STAMP_SCRIPTS, insrcdir)
867         (stamp-rcs2log, stamp-grep-changelog): Remove.
868         (all, clean): Remove references to stamps.
870         * vcdiff: Remove file.
871         * Makefile.in (SCRIPTS, STAMP_SCRIPTS): Remove vcdiff.
872         (stamp-vcdiff): Remove.
874 2012-06-05  Glenn Morris  <rgm@gnu.org>
876         * makefile.w32-in ($(BLD)/getdate.$(O), $(BLD)/leditcfns.$(O))
877         ($(BLD)/make-path.$(O), $(BLD)/qsort.$(O))
878         ($(BLD)/timer.$(O)): Remove cruft.
880 2012-06-03  Glenn Morris  <rgm@gnu.org>
882         * rcs-checkin: Remove file.
883         * Makefile.in (INSTALLABLE_SCRIPTS, STAMP_INST_SCRIPTS):
884         Remove rcs-checkin.
885         (stamp-rcs-checkin): Remove.
887 2012-05-31  Eli Zaretskii  <eliz@gnu.org>
889         * makefile.w32-in ($(BLD)/emacsclientw.exe): Use $(MWINDOWS)
890         instead of a literal -mwindows, which is not supported by MSVC.
891         (Bug#11405)
893 2012-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
895         * make-docfile.c: Improve comment style.
896         (search_lisp_doc_at_eol): New function.
897         (scan_lisp_file): Use it.
899 2012-05-26  Glenn Morris  <rgm@gnu.org>
901         * Makefile.in (INSTALL_DATA): Remove; unused.
903 2012-05-22  Paul Eggert  <eggert@cs.ucla.edu>
905         Remove src/m/*.
906         * makefile.w32-in: Remove dependencies on
907         $(EMACS_ROOT)/src/m/intel386.h.
909 2012-05-22  Glenn Morris  <rgm@gnu.org>
911         * Makefile.in (install): Remove unneeded chmods.
913 2012-05-21  Paul Eggert  <eggert@cs.ucla.edu>
915         Assume C89 or later.
916         * etags.c (static, const): Remove macros.
917         (PTR): Remove; all uses replaced with void *.  Omit needless casts.
919 2012-05-21  Glenn Morris  <rgm@gnu.org>
921         * Makefile.in (insrcdir, $(DESTDIR)${archlibdir}):
922         Scrap superfluous subshells.
924 2012-05-18  Glenn Morris  <rgm@gnu.org>
926         * Makefile.in (install): Ensure $bindir exists.
928 2012-05-17  Glenn Morris  <rgm@gnu.org>
930         * Makefile.in (ns_appbindir): New, set by configure.
932 2012-05-12  Glenn Morris  <rgm@gnu.org>
934         * Makefile.in (MKDIR_P): New, set by configure.
935         ($(DESTDIR)${archlibdir}): Use $MKDIR_P.
937 2012-05-10  Paul Eggert  <eggert@cs.ucla.edu>
939         etags: pacify gcc -Wstack-protector on Ubuntu 12.04 x86
940         * etags.c: Include <stdarg.h>.
941         (error): Declare as printf-style, as that's what it really is.
942         All uses changed.
943         (add_regex): Use single char rather than array-of-one char.
945 2012-05-05  Jim Meyering  <meyering@redhat.com>
947         * pop.c (pop_stat, pop_list, pop_multi_first, pop_last):
948         NUL-terminate the error buffer (Bug#11372).
950 2012-05-02  Juanma Barranquero  <lekktu@gmail.com>
952         * emacsclient.c (min): Undef before redefining it.
954 2012-05-02  Jim Meyering  <jim@meyering.net>
956         * emacsclient.c (send_to_emacs): Avoid invalid strcpy upon partial
957         send (Bug#11374).
959 2012-04-29  Andreas Schwab  <schwab@linux-m68k.org>
961         * make-docfile.c (scan_lisp_file) [DEBUG]: Also skip if and
962         byte-code forms.  (Bug#11380)
964 2012-04-20  Chong Yidong  <cyd@gnu.org>
966         * emacsclient.c (decode_options): Move -t -n corner case handling
967         into server.el (Bug#11102).
968         (main): Send -tty to Emacs under more circumstances (Bug#8314).
970 2012-04-18  Paul Eggert  <eggert@cs.ucla.edu>
972         configure: new option --enable-gcc-warnings (Bug#11207)
973         * Makefile.in (C_WARNINGS_SWITCH): Remove.
974         (WARN_CFLAGS, WERROR_CFLAGS): New macros.
975         (BASE_CFLAGS): Use new macros rather than old.
977 2012-04-16  Paul Eggert  <eggert@cs.ucla.edu>
979         Assume less-ancient POSIX support.
980         * update-game-score.c: Include <getopt.h> rather than rolling our
981         own decls for optarg, optind, opterr.  See
982         <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html>.
984 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
986         * emacsclient.c (decode_options) [WINDOWSNT]:
987         Call ttyname instead of passing its address (typo in 2011-12-04T17:13:01Z!lekktu@gmail.com).
989 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
991         * makefile.w32-in (obj): Add xml.o.
993 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
995         * makefile.w32-in (ALL): Now the list of executables, not of phony
996         targets.
997         (.PHONY): Only make-docfile is its prerequisite now.
998         (make-docfile): Don't depend on stamp_BLD.  Add a comment about
999         the need in this target.
1000         (ctags, etags, ebrowse, hexl, movemail, emacsclient)
1001         (test-distrib): Phony targets removed.
1002         ($(BLD)/test-distrib.exe): Run test-distrib as part of the recipe.
1003         (all): Don't depend on stamp_BLD.
1004         (ALL): Include $(BLD)/test-distrib.exe.
1006 2012-03-11  Andreas Schwab  <schwab@linux-m68k.org>
1008         * emacsclient.c (main): Handle -print-nonl command.
1010         * emacsclient.c (main): Handle multiple messages in a single
1011         datagram.
1013         * emacsclient.c (socket_name): Add const.
1014         (get_server_config): Add parameter config_file, use it instead of
1015         global server_file.
1016         (set_tcp_socket): Add parameter local_server_file, pass it down to
1017         get_server_config.
1018         (set_local_socket): Add parameter local_socket_name, use it
1019         instead of global socket_name.
1020         (set_socket): Adjust calls to set_local_socket and set_tcp_socket.
1021         Don't clobber global server_file or socket_name.
1022         (main): No longer reset server_file or socket_name.
1024 2012-01-05  Glenn Morris  <rgm@gnu.org>
1026         * ebrowse.c (version) <emacs_copyright>:
1027         * etags.c (print_version) <emacs_copyright>:
1028         * rcs2log (Copyright): Update short copyright year to 2012.
1030 2011-12-25  Andreas Schwab  <schwab@linux-m68k.org>
1032         * etags.c (C_entries): Properly skip over string and character
1033         constants and comments inside brackets.  (Bug#10357)
1035 2011-12-04  Juanma Barranquero  <lekktu@gmail.com>
1037         * emacsclient.c (decode_options) [WINDOWSNT]: Don't force tty = 0;
1038         instead, treat both -c and -t as always requesting a new "tty" frame,
1039         and let server.el decide which kind is actually required.
1040         Reported by Uwe Siart <usenet@siart.de> in this thread:
1041         http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00303.html
1043 2011-11-30  Chong Yidong  <cyd@gnu.org>
1045         * emacsclient.c (main): Condition last change on WINDOWSNT
1046         (Bug#10155).
1048 2011-11-27  Eli Zaretskii  <eliz@gnu.org>
1050         * makefile.w32-in (LOCAL_FLAGS): Add $(EMACS_EXTRA_C_FLAGS).
1052         * emacsclient.c (main) <environ>: Remove declaration, already
1053         pulled in by unistd.h on POSIX hosts and stdlib.h on MS-Windows.
1055 2011-11-24  Glenn Morris  <rgm@gnu.org>
1057         * make-docfile.c (scan_lisp_file): Treat defcustom like defvar.
1059 2011-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
1061         * Makefile.in (all): Make sure "all" is the first target.
1063 2011-10-27  Juanma Barranquero  <lekktu@gmail.com>
1065         * emacsclient.c (w32_getenv): Silence compiler warnings.
1067 2011-09-07  Glenn Morris  <rgm@gnu.org>
1069         * etags.c (Fortran_functions): Handle "elemental" functions.
1071 2011-09-07  Dieter Schuster  <didischuster@arcor.de>  (tiny change)
1073         * etags.c (Fortran_functions): Handle "pure" functions.  (Bug#9359)
1075 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
1077         * Makefile.in ($(DESTDIR)${archlibdir}): install-sh moved
1078         to build-aux (Bug#9169).
1080 2011-09-04  Paul Eggert  <eggert@cs.ucla.edu>
1082         Integer and memory overflow issues (Bug#9397).
1084         * emacsclient.c (xmalloc): Accept size_t, not unsigned int, to
1085         avoid potential buffer overflow issues on typical 64-bit hosts.
1086         Return void *, not long *.
1087         (get_current_dir_name): Report a failure, instead of looping
1088         forever, if buffer size calculation overflows.  Treat malloc
1089         failures like realloc failures, as that has better behavior and is
1090         more consistent.  Do not check whether xmalloc returns NULL, as
1091         that's not possible.
1092         (message): Do not arbitrarily truncate message to 2048 bytes when
1093         sending it to stderr; use vfprintf instead.
1094         (get_server_config, set_local_socket)
1095         (start_daemon_and_retry_set_socket): Do not alloca
1096         arbitrarily-large buffers; that's not safe.
1097         (get_server_config, set_local_socket): Do not use sprintf when its
1098         result might not fit in 'int'.
1099         (set_local_socket): Do not assume uid fits in 'int'.
1101         * etags.c (xmalloc, xrealloc): Accept size_t, not unsigned int,
1102         to avoid potential buffer overflow issues on typical 64-bit hosts.
1103         (whatlen_max): New static var.
1104         (main): Avoid buffer overflow if subsidiary command length is
1105         greater than BUFSIZ or 2*BUFSIZ + 20.  Do not use sprintf when its
1106         result might not fit in 'int'.
1108         * movemail.c (main): Do not use sprintf when its result might not fit
1109         in 'int'.  Instead, put the possibly-long file name into the
1110         output of pfatal_with_name.
1112         * update-game-score.c: Include <limits.h>
1113         (get_user_id): Do not assume uid fits in 'int'.  Simplify.
1115 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
1117         Assume freestanding C89 headers, string.h, stdlib.h.
1118         * ebrowse.c: Include stdlib.h unconditionally.
1119         * etags.c, update-game-score.c:
1120         Include string.h and stdlib.h unconditionally.
1121         * makefile.w32-in (LOCAL_CFLAGS): Don't define STDC_HEADERS.
1122         * movemail.c, pop.c: Include string.h unconditionally.
1123         * update-game-score.c: No need to include stdarg.h; not used.
1125         Assume support for memcmp, memcpy, memmove, memset.
1126         * etags.c (absolute_filename): Assume memmove exists.
1128 2011-07-09  Andreas Schwab  <schwab@linux-m68k.org>
1130         * update-game-score.c (usage): Update usage line.
1132 2011-07-02  Jason Rumney  <jasonr@gnu.org>
1134         * emacsclient.c (decode_options) [WINDOWSNT]: Avoid tty mode on
1135         Windows (Bug#5486).
1137 2011-06-25  Glenn Morris  <rgm@gnu.org>
1139         * emacsclient.c (decode_options) <opt>: Add `F:'.
1140         (print_help_and_exit): Mention --frame-parameters.
1142 2011-06-25  Andreas Rottmann  <a.rottmann@gmx.at>
1144         * emacsclient.c (longopts, decode_options, main): Add frame-parameters.
1146 2011-06-10  Paul Eggert  <eggert@cs.ucla.edu>
1148         * movemail.c: Fix race condition and related bugs (Bug#8836).
1149         (main) [!MAIL_USE_SYSTEM_LOCK]: Prefer mkstemp to mktemp, as this
1150         fixes some race conditions.  Report mkstemp/mktemp errno rather
1151         than a possibly-garbage errno.  Reinitialize the template each
1152         time through the loop, as earlier mkstemp/mktemp calls could have
1153         trashed it.  Pass 0600 (not 0666) to mktemp, for consistency
1154         with mkstemp; the permissions don't matter anyway.
1156 2011-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
1158         * emacsclient.c (socket_status): Use constant pointer.
1160 2011-05-28  Paul Eggert  <eggert@cs.ucla.edu>
1162         Use 'inline', not 'INLINE'.
1163         * etags.c (hash): Now inline unconditionally.
1164         * make-docfile.c (put_char): inline, not INLINE.
1166 2011-05-25  Glenn Morris  <rgm@gnu.org>
1168         * Makefile.in (.c.o): Remove (every .o file has an explicit rule).
1169         (insrcdir): New.
1170         (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff):
1171         Use $insrcdir to suppress unaesthetic ignored errors.
1172         (clean): Simplify list of things to delete.
1173         (all, clean): Use $EXE_FILES.
1175         * Makefile.in (movemail${EXEEXT}): Build in one step, not via .o file.
1177         * Makefile.in (REGEXPOBJ, REGEXPDEPS): Remove.  Replace by expansion.
1178         (etags${EXEEXT}): Just depend on regex.o, not regex.h as well.
1180 2011-05-24  Glenn Morris  <rgm@gnu.org>
1182         * Makefile.in (update-game-score${EXEEXT}): Use a single rule.
1184 2011-05-19  Glenn Morris  <rgm@gnu.org>
1186         * makefile.w32-in (echolisp): Remove rule that is no longer needed.
1187         (clean): No more echolisp.tmp.
1189 2011-05-18  Glenn Morris  <rgm@gnu.org>
1191         * fakemail.c: Remove file.
1192         * makefile.w32-in ($(BLD)/fakemail.exe, fakemail)
1193         ($(BLD)/fakemail.$(O)): Remove.
1194         * Makefile.in (UTILITIES): Remove fakemail${EXEEXT}.
1195         (fakemail${EXEEXT}): Remove rule.
1197 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
1199         * makefile.w32-in (obj): Add gnutls.o.
1201 2011-04-16  Paul Eggert  <eggert@cs.ucla.edu>
1203         Static checks with GCC 4.6.0 and non-default toolkits.
1205         * movemail.c (mail_spool_name): Protoize.
1206         (main): Remove unused var.  Mark var as initialized.
1207         Move locals to avoid shadowing, and use time_t for times.
1209         * fakemail.c (xmalloc, xreallc): Use standard C prototypes
1210         with void *.  This avoids warnings about pointer casts.
1212         * emacsclient.c (main): Don't use uninitialized var.
1213         (IS_ANY_SEP): Remove; unused.
1214         (get_current_dir_name): Add an extern decl.
1216 2011-04-06  Paul Eggert  <eggert@cs.ucla.edu>
1218         Fix more problems found by GCC 4.6.0's static checks.
1220         * emacsclient.c (message): Mark it as a printf-like function.
1222         * make-docfile.c (IF_LINT): New macro, copied from emacsclient.c.
1223         (write_c_args): Use it to suppress GCC warning.
1225 2011-03-30  Paul Eggert  <eggert@cs.ucla.edu>
1227         Fix a problem found by GCC 4.6.0's static checks.
1228         * etags.c (just_read_file): Remove dummy variable and simplify.
1230 2011-03-27  Glenn Morris  <rgm@gnu.org>
1232         * emacsclient.c: Replace SIGTYPE with void.
1234 2011-03-23  Juanma Barranquero  <lekktu@gmail.com>
1236         * ntlib.c: Include <ctype.h>.
1238 2011-03-23  Glenn Morris  <rgm@gnu.org>
1240         * Makefile.in ($(DESTDIR)${archlibdir}):
1241         Use `install-sh -d' rather than mkinstalldirs.
1243 2011-03-23  Paul Eggert  <eggert@cs.ucla.edu>
1245         * ebrowse.c: Use size_t, not int, for sizes.
1246         This avoids a warning with gcc -Wstrict-overflow, and works
1247         better for very large objects.
1248         (inbuffer_size): Now size_t.  All uses changed.
1249         (xmalloc, xrealloc, operator_name, process_file): Use size_t for
1250         sizes.  Don't bother testing whether a size_t value can be negative.
1252         * etags.c (Ada_funcs): Redo slightly to avoid overflow warning.
1254         etags: In Prolog functions, don't assume int fits in size_t.
1255         This avoids a warning with gcc -Wstrict-overflow.
1256         * etags.c (Prolog_functions, prolog_pr, prolog_atom): Use size_t,
1257         not int, to store sizes.
1258         (prolog_atom): Return 0, not -1, on error.  All callers changed.
1260         update-game-score: fix bug with -r
1261         * update-game-score.c (main): Don't set 'scores' to garbage when
1262         -r is specified and scorecount != MAX_SCORES (Bug#8310).  This bug
1263         was introduced in the 2002-04-10 change, and was found with gcc
1264         -Wstrict-overflow (GCC 4.5.2, x86-64).
1266         fakemail: Remove dependency on ignore-value.
1267         This undoes some of the recent fakemail-related changes.
1268         It is made possible due to recent changes to gnulib's stdio module.
1269         * Makefile.in (fakemail${EXEEXT}): Do not depend on ignore-value.h.
1270         * fakemail.c: Do not include ignore-value.h.
1271         (put_line): Do not use ignore_value.
1273 2011-03-07  Chong Yidong  <cyd@stupidchicken.com>
1275         * Version 23.3 released.
1277 2011-03-03  Drake Wilson  <drake@begriffli.ch>  (tiny change)
1279         * emacsclient.c (longopts): Add quiet.
1280         (decode_options): Handle q/quiet.
1281         (print_help_and_exit): Add q/quiet.
1282         (main): Suppress some messages if quiet option is used.
1284 2011-02-26  Eli Zaretskii  <eliz@gnu.org>
1286         * Makefile.in (fakemail${EXEEXT}): Depend on lib/ignore-value.h.
1288         * emacsclient.c (xstrdup) [WINDOWSNT]: Function added back.
1289         (w32_getenv): Use xstrdup to return all values in malloc'ed
1290         storage.
1292 2011-02-26  Paul Eggert  <eggert@cs.ucla.edu>
1294         * ebrowse.c (parse_qualified_param_ident_or_type): Make it clear
1295         to reader (and to the compiler) that the loop always executes at
1296         least once.  This prevents a warning with recent GCC.
1297         (BROWSE_STRUCT): Remove unused macro.
1299         * fakemail.c: Include <ignore-value.h>.
1300         (put_line): Explicitly ignore fwrite return value, for benefit of
1301         recent glibc + gcc.
1302         (close_the_streams): Diagnose output errors instead of merely
1303         exiting with nonzero status.
1304         (my_fclose, main): Diagnose input errors, and exit with nonzero status.
1305         Formerly, input errors were silently ignored.
1307         * ebrowse.c (putstr): Rename from PUTSTR and turn into a function.
1308         All callers changed.  This is cleaner, and avoids GCC warnings about
1309         passing NULL to fputs.
1310         (insert_keyword): Rename parameter to avoid shadowing diagnostic.
1312 2011-02-25  Paul Eggert  <eggert@cs.ucla.edu>
1314         * emacsclient.c (main): Avoid dangling 'if'.
1315         (xstrdup): Remove; no longer needed.
1316         (get_current_dir_name, w32_getenv, get_server_config, find_tty)
1317         (set_local_socket, main):
1318         Use const char *, not char *, for pointers that are not assigned
1319         through.
1320         (IF_LINT): New macro.
1321         (set_local_socket, main): Use it to suppress warnings with
1322         GCC -Wuninitialized.
1324         * emacsclient.c: Redo local variables to avoid shadowing problems.
1325         (message, socket_status, start_daemon_and_retry_set_socket):
1326         Rename locals.
1327         (main): Move decl of "i".
1329         * etags.c (ISUPPER): Move to inside the only #ifdef where it's used.
1330         This avoids an unused-macro warning with some GCC settings.
1332         * make-docfile.c (write_globals): Change char * to char const *
1333         to avoid a GCC "assignment discards qualifiers" diagnostic
1334         in some configurations.
1335         (scan_c_file): Refactor local variable decls to make their scope
1336         more accurate and to avoid a GCC -Wuninitialized diagnostic.
1338 2011-02-22  Eli Zaretskii  <eliz@gnu.org>
1340         * etags.c (canonicalize_filename, ISUPPER): Fix last change.
1342         * makefile.w32-in ($(BLD)/ebrowse.$(O), $(BLD)/pop.$(O)):
1343         Depend on ../lib/min-max.h.
1345 2011-02-22  Paul Eggert  <eggert@cs.ucla.edu>
1347         etags: Downcase drive letters, for consistency with Emacs proper.
1348         * etags.c (upcase): Remove; no longer used.
1349         (canonicalize_filename): Downcase drive letters.
1351         Assume S_ISLNK etc. work, since gnulib supports this.
1352         * etags.c (S_ISREG): Remove.
1354 2011-02-22  Paul Eggert  <eggert@cs.ucla.edu>
1356         Assume S_ISLNK etc. work, since gnulib supports this.
1357         * etags.c (S_ISREG): Remove.
1359 2011-02-22  Juanma Barranquero  <lekktu@gmail.com>
1361         * makefile.w32-in (obj): Remove filemode.o.
1363 2011-02-21  Paul Eggert  <eggert@cs.ucla.edu>
1365         New file "lib/min-max.h".
1366         * ebrowse.c (min, max): Define them by including <min-max.h>
1367         instead of defining it ourselves.
1368         * pop.c (min): Likewise.
1369         * Makefile.in (ebrowse${EXEEXT}, pop.o): Depend on min-max.h.
1371         * movemail.c (popmail): Report fchown failure instead of ignoring it.
1372         But if the file already has the right ownership, don't worry about it.
1374         * make-docfile.c (input_buffer): Rename variables to avoid shadowing.
1375         * test-distrib.c (buf): Make this local, to avoid shadowing.
1377         * movemail.c (main, pop_retr): Rename locals to avoid shadowing.
1378         (progname, sfi, sfo, ibuffer, obuffer): Remove unused vars.
1379         (DONE): Remove unused macro.
1380         (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_FROM_LINE):
1381         Define these macros only in the contexts that need them.
1382         * pop.c (index): Remove unused macro.
1383         (KPOP_PORT): Define only if KERBEROS is defined.
1385         Declare file-scope functions and variables static if not exported.
1386         This is more consistent, and is nicer with gcc -Wstrict-prototypes.
1387         * ebrowse.c, emacsclient.c, fakemail.c, make-docfile.c, movemail.c:
1388         * profile.c, test-distrib.c, update-game-score.c:
1389         Declare non-'main' functions and variables to be static.
1390         * ebrowse.c: Omit redundant function prototypes.
1392 2011-02-21  Eli Zaretskii  <eliz@gnu.org>
1394         * makefile.w32-in ($(BLD)/ctags.$(O), $(BLD)/emacsclient.$(O))
1395         ($(BLD)/etags.$(O), $(BLD)/movemail.$(O), $(BLD)/ntlib.$(O)):
1396         Depend on $(EMACS_ROOT)/nt/inc/sys/stat.h.
1398 2011-02-21  Ben Key  <bkey76@gmail.com>
1400         * make-docfile.c (scan_c_file): Adapt DEFVAR_PER_BUFFER case to
1401         the new BVAR macro.
1403 2011-02-20  Juanma Barranquero  <lekktu@gmail.com>
1405         * makefile.w32-in (obj): Remove md5.o.
1407 2011-02-18  Karl Chen  <Karl.Chen@quarl.org>
1409         * emacsclient.c (main): Loop while `recv' return EINTR.
1411 2011-02-09  Paul Eggert  <eggert@cs.ucla.edu>
1413         * make-docfile.c (EMACS_INTEGER): Rename from EMACS_INT.
1414         This avoids collision with config.h's EMACS_INT on some
1415         configurations.  All uses changed.
1417 2011-02-08  Tom Tromey  <tromey@redhat.com>
1419         * make-docfile.c: Unconditionally include stdlib.h.
1420         (generate_globals): New global.
1421         (xrealloc): New function.
1422         (main): Handle '-g'.  Call start_globals, write_globals.
1423         (scan_file): Conditionally call put_filename.
1424         (start_globals): New function.
1425         (struct global): New.
1426         (num_globals, globals): New globals.
1427         (add_global, compare_globals, write_globals): New functions.
1428         (scan_c_file): Update for "-g".
1429         (scan_lisp_file): Fail if "-g".
1431 2011-02-05  Paul Eggert  <eggert@cs.ucla.edu>
1433         * emacsclient.c: Conform to C89 pointer rules.
1434         (file_name_absolute_p): Accept const char *, not const unsigned
1435         char *, to satisfy C89 rules.
1437 2011-02-02  Eli Zaretskii  <eliz@gnu.org>
1439         * makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS):
1440         Add ``-DEMACS_NAME="\"GNU Emacs\""''.
1441         (obj): Remove strftime.o.
1443 2011-01-31  Eli Zaretskii  <eliz@gnu.org>
1445         * makefile.w32-in (VERSION): Don't define, defined on nt/config.nt.
1446         (ECLIENT_CFLAGS): Remove -DVERSION.
1447         ($(BLD)/emacsclient.$(O)): Don't depend on makefile.w32-in.
1449 2011-01-31  Paul Eggert  <eggert@cs.ucla.edu>
1451         src/emacs.c now gets version number from configure.in
1452         * ebrowse.c: Adjust comment to say that.
1454 2011-01-30  Jim Meyering  <meyering@redhat.com>
1456         * make-docfile.c: Don't corrupt heap for an invalid .elc file
1457         "printf '#@1a' > in.elc; ./make-docfile in.elc" would store 0
1458         one byte before just-malloc'd saved_string buffer.
1459         * make-docfile.c (scan_lisp_file): Diagnose an invalid dynamic
1460         doc string length.  Also fix an always-false while-loop test.
1462 2011-01-29  Eli Zaretskii  <eliz@gnu.org>
1464         * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
1465         (GETOPTOBJS, GETOPTDEPS): Remove targets.
1466         (MOVEMAILOBJS): Replace $(GETOPTOBJS) with ../lib/$(BLD)/libgnu.$(A).
1467         ($(BLD)/movemail.exe): Depend on ../lib/getopt.h.
1468         (ECLIENTOBJS, ETAGSOBJ, CTAGSOBJ, EBROWSEOBJ): Replace getopt.o
1469         and getopt1.o with ../lib/$(BLD)/libgnu.$(A).
1470         (clean): Don't remove getopt.h.
1471         (getopt.h, $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O)): Remove targets.
1472         ($(BLD)/ctags.$(O), $(BLD)/etags.$(O)): Replace getopt.h with
1473         $(EMACS_ROOT)/lib/getopt.h.
1475 2011-01-28  Chong Yidong  <cyd@stupidchicken.com>
1477         * ntlib.c (setregid): New stub, renamed from setegid.
1479         * ntlib.h: Update prototype.
1481 2011-01-25  Chong Yidong  <cyd@stupidchicken.com>
1483         * movemail.c (main): Use setregid instead of setegid, which is
1484         missing on older systems.  Suggested by Peter O'Gorman (Bug#6811).
1486 2011-01-23  Paul Eggert  <eggert@cs.ucla.edu>
1488         Check return values of some library calls.
1489         * hexl.c (main): Check fread result.
1490         * make-docfile.c (main): Check chdir result.
1491         (scan_c_file): Check fscanf result.
1492         * movemail.c (main): Check ftruncate result.
1494 2011-01-17  Paul Eggert  <eggert@cs.ucla.edu>
1496         Include <unistd.h> unilaterally.
1497         * emacsclient.c, etags.c, fakemail.c, make-docfile.c, movemail.c:
1498         * pop.c, test-distrib.c, update-game-score.c:
1499         Include <unistd.h> without worrying about HAVE_UNISTD_H, since
1500         unistd.h is always present now, possibly supplied by gnulib.
1502         Include <getopt.h> not "getopt.h".
1503         * ebrowse.c, emacsclient.c: Include <getopt.h>, not "getopt.h".
1504         Since getopt.h is no longer in this directory, there's no point
1505         using the form with double-quotes.
1507         Remove unused files.
1508         * getopt.c, getopt1.c, getopt_.h, getopt_int.h: Remove.
1509         These files are now in ../lib, copied from gnulib.
1511         Use gnulib's getopt-gnu module.
1512         * Makefile.in (mostlyclean): Do not clean getopt.h or getopt.h-t,
1513         as these are now done by gnulib.
1514         (GETOPT_H, getopt.h, GETOPTOBJS, GETOPTDEPS, getopt.o, getopt1.o):
1515         Remove; now done by gnulib.  All uses removed.
1517         Automate syncing from gnulib.
1518         * Makefile.in (EXE_FILES): New macro.
1519         (BASE_CFLAGS): Add -I../lib and -I${srcdir}/../lib,
1520         for gnulib's .h files.
1521         (LOADLIBES): Add ../lib/libgnu.a.
1522         ($(EXE_FILES)): Depend on ../lib/libgnu.a.
1523         (../lib/libgnu.a): New rule.
1525 2011-01-08  Paul Eggert  <eggert@cs.ucla.edu>
1527         * Makefile.in (EXECUTABLES): Remove; macro unused since 1993.
1529 2011-01-08  Glenn Morris  <rgm@gnu.org>
1531         * Makefile.in (EMACSOPT): Add --no-site-lisp.
1533         * Makefile.in (EMACSOPT): Remove --multibyte, it does nothing any more.
1535 2011-01-02  Glenn Morris  <rgm@gnu.org>
1537         * ebrowse.c (version) <emacs_copyright>:
1538         * etags.c (print_version) <emacs_copyright>:
1539         * rcs2log (Copyright): Set short copyright year to 2011.
1541 2010-11-27  Joe Matarazzo  <joe.matarazzo@gmail.com>  (tiny change)
1543         * ebrowse.c (yylex): If end of input buffer encountered while
1544         searching for a newline after "//", return YYEOF.  (Bug#7446)
1546 2010-11-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1548         * emacsclient.c (set_local_socket) [DARWIN_OS]: Add fall-back
1549         definition of _CS_DARWIN_USER_TEMP_DIR for Mac OS X 10.4 and older.
1551 2010-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
1553         * test-distrib.c: Remove include guards for config.h and fcntl.h.
1554         (O_RDONLY): Do not define.
1555         (cool_read): Fix type for variable "sofar".
1557 2010-10-25  Glenn Morris  <rgm@gnu.org>
1559         * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove easymenu.elc.
1561 2010-10-23  Glenn Morris  <rgm@gnu.org>
1563         * digest-doc.c, sorted-doc.c: Remove files.
1564         * Makefile.in (UTILITIES): Remove digest-doc and sorted-doc.
1565         (digest-doc${EXEEXT}, sorted-doc${EXEEXT}): Remove rules.
1566         * makefile.w32-in (ALL): Remove digest-doc and sorted-doc.
1567         ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe, sorted-doc, digest-doc)
1568         ($(BLD)/digest-doc.$(O), $(BLD)/sorted-doc.$(O)): Remove rules.
1569         (install): Don't install digest-doc.exe or sorted-doc.exe.
1571 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
1573         * Makefile.in (PROFILING_LDFLAGS): Remove, not needed.
1575 2010-10-09  Glenn Morris  <rgm@gnu.org>
1577         * b2m.c, b2m.pl: Remove files.
1578         * Makefile.in (INSTALLABLES): Remove b2m.
1579         * makefile.w32-in ($(BLD)/b2m.$(O)): Remove.
1581 2010-10-08  Glenn Morris  <rgm@gnu.org>
1583         * emacsclient.c (set_local_socket) [DARWIN_OS]: Try as a fall-back
1584         DARWIN_USER_TEMP_DIR.  (Bug#3992)
1586 2010-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
1588         * test-distrib.c (cool_read):
1589         * movemail.c (main, concat):
1590         * make-docfile.c (scan_file, write_c_args):
1591         * emacsclient.c (get_server_config): Fix -Wconversion warning.
1592         (egetenv): Move conditional definition earlier.
1593         (progname): Use const.
1594         * sorted-doc.c (xstrdup): Use const.
1596         * Makefile.in: Remove ^L, old makes choke on it.
1598 2010-10-02  Wolfgang Schnerring  <wosc@wosc.de>  (tiny change)
1600         * emacsclient.c (main): Return EXIT_FAILURE if Emacs sends us an
1601         error string (Bug#6963).
1603 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
1605         * makefile.w32-in (tags): Remove target.
1607 2010-10-01  Eli Zaretskii  <eliz@gnu.org>
1609         * makefile.w32-in (tags, TAGS): New targets.
1611 2010-09-30  Juanma Barranquero  <lekktu@gmail.com>
1613         * emacsclient.c (get_server_config): Don't read Emacs pid from
1614         the authentication file.
1616 2010-09-29  Juanma Barranquero  <lekktu@gmail.com>
1618         * makefile.w32-in (../src/config.h): Remove target, it is stale.
1620         * emacsclient.c (main): Remove unused variables.
1621         (start_daemon_and_retry_set_socket): Use EXIT_FAILURE.
1623 2010-09-25  Ulrich Mueller  <ulm@gentoo.org>
1625         * etags.c (compressors, print_language_names): Support xz compression.
1627 2010-08-11  Jan Djärv  <jan.h.d@swipnet.se>
1629         * fakemail.c: Include stdlib.h for getenv.  Remove declaration of
1630         popen, fclose and pclose.
1631         (my_name, fatal, error, put_line): Use const char*.
1632         (main): Remove extern getenv, mail_program_name is const char*.
1634         * update-game-score.c (get_prefix, write_scores, main): Use const char*.
1636         * sorted-doc.c (error, fatal, states): Use const char *.
1638         * pop.h (pop_multi_first): Use const char *.
1639         (_ARGS): Remove.
1641         * pop.c (pop_multi_first, socket_connection, sendline): Use const char*.
1643         * movemail.c (fatal, error, concat): Use const char *.
1645         * make-docfile.c (error, fatal, scan_c_file, scan_lisp_file):
1646         Use const char *.
1648         * etags.c (compressor, language, Ada_suffix, Ada_help, Asm_suffixes)
1649         (Asm_help, default_C_suffixes, default_C_help, Cplusplus_suffixes)
1650         (Cplusplus_help, Cjava_suffixes, Cobol_suffixes, Cstar_suffixes)
1651         (Erlang_suffixes, Erlang_help, Forth_suffixes, Forth_help)
1652         (Fortran_suffixes, Fortran_help, HTML_suffixes, HTML_help)
1653         (Lisp_suffixes, Lisp_help, Lua_suffixes, Lua_help)
1654         (Makefile_filenames, Makefile_help, Objc_suffixes, Objc_help)
1655         (Pascal_suffixes, Pascal_help, Perl_suffixes, Perl_interpreters)
1656         (Perl_help, PHP_suffixes, PHP_help, plain_C_suffixses, PS_suffixes)
1657         (PS_help, Prolog_suffixes, Prolog_help, Python_suffixes, Python_help)
1658         (Scheme_suffixes, Scheme_help, TeX_suffixes, TeX_help, Texinfo_suffixes)
1659         (Texinfo_help, Yacc_suffixes, Yacc_help, auto_help, none_help)
1660         (no_lang_help, print_language_names)
1661         (get_language_from_interpreter, get_language_from_filename)
1662         (init, make_tag, struct C_stab_entry, write_classname, TEX_defenv)
1663         (TEX_decode_env, nocase_tail, savestr, savenstr, fatal, pfatal)
1664         (concat): Use const char*.
1666         * emacsclient.c (message, sock_err_message, send_to_emacs)
1667         (quote_argument, set_local_socket)
1668         (start_daemon_and_retry_set_socket): Use const char*.
1670         * ebrowse.c (struct member): filename, def_filename is const.
1671         (struct sym): filename, sfilename is const.
1672         (struct kw): name is const.
1673         (add_sym, yyerror, token_string, insert_keyword, main): Use const char*.
1675         * b2m.c (concat, fatal): Use const char*.
1676         (main): Don't assign labels a string literal.
1678 2010-08-07  Juanma Barranquero  <lekktu@gmail.com>
1680         * ebrowse.c (usage, version, mark_virtual):
1681         Remove duplicate declarations.
1683 2010-08-06  Dan Nicolaescu  <dann@ics.uci.edu>
1685         * emacsclient.c: Move socket related #includes together with the
1686         rest of the #includes.  Move WINDOWSNT includes closer together.
1687         (HAVE_CONFIG_H): Remove.
1688         (NO_RETURN): Remove, defined in config.h.
1689         (main): Convert definition to standard C.
1691 2010-07-29  Juanma Barranquero  <lekktu@gmail.com>
1693         * make-docfile.c (write_c_args): Warn for old-style empty arglist ().
1695 2010-07-25  Juanma Barranquero  <lekktu@gmail.com>
1697         * emacsclient.c (getcwd): Fix previous change: make getcwd
1698         conditional on HAVE_GETCWD and declare with the correct POSIX
1699         profile (for some reason MinGW headers define its 2nd arg as int,
1700         not size_t; but getcwd is not used on Windows nonetheless).
1702 2010-07-25  Juanma Barranquero  <lekktu@gmail.com>
1704         * emacsclient.c (getcwd, w32_getenv):
1705         * ntlib.h (getlogin, getuid, getegid, getgid): Fix prototypes.
1707 2010-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
1709         * update-game-score.c (usage): Add NO_RETURN specifier.
1710         * movemail.c (fatal, pfatal_with_name, pfatal_and_delete):
1711         * make-docfile.c (fatal):
1712         * hexl.c (usage):
1713         * fakemail.c (fatal):
1714         * etags.c (fatal, suggest_asking_for_help, pfatal):
1715         * emacsclient.c (fatal):
1716         * b2m.c (fatal): Likewise.
1718 2010-07-23  Juanma Barranquero  <lekktu@gmail.com>
1720         * make-docfile.c (write_c_args): Correctly handle prefixes of "defalt".
1722 2010-07-20  Juanma Barranquero  <lekktu@gmail.com>
1724         * emacsclient.c (get_current_dir_name, w32_get_resource)
1725         (w32_getenv, w32_set_user_model_id, w32_window_app, w32_execvp)
1726         (close_winsock, initialize_sockets, w32_find_emacs_process)
1727         (w32_give_focus):
1728         * ntlib.c (getlogin, getuid, getgid, getegid):
1729         Convert definitions to standard C.
1731 2010-07-12  Andreas Schwab  <schwab@linux-m68k.org>
1733         * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
1734         (PROFILING_LDFLAGS): Set from substitution.
1735         (BASE_CFLAGS): Add  ${C_WARNINGS_SWITCH}.
1736         (ALL_CFLAGS, CPP_CFLAGS): Add ${PROFILING_CFLAGS}.
1737         (LINK_CFLAGS): Add ${PROFILING_LDFLAGS}.
1739 2010-07-12  Eli Zaretskii  <eliz@gnu.org>
1741         * makefile.w32-in (lisp2): Change hebrew.el to hebrew.elc (see
1742         2010-07-12T05:25:46Z!handa@etlken).
1744 2010-07-11  Andreas Schwab  <schwab@linux-m68k.org>
1746         * emacsclient.c (set_local_socket): Use strchr, strrchr instead of
1747         index, rindex.
1748         * movemail.c (mail_spool_name, popmail): Likewise.
1749         * pop.c (pop_list): Likewise.
1751 2010-07-11  Eli Zaretskii  <eliz@gnu.org>
1753         * makefile.w32-in (obj): Add menu.o, bidi.o, w32uniscribe.o,
1754         and unexw32.o.  (Bug#6603)
1756 2010-07-10  Eli Zaretskii  <eliz@gnu.org>
1758         * Makefile.in ($(DESTDIR)${archlibdir}): Convert spaces to TABs.
1760 2010-07-09  Andreas Schwab  <schwab@linux-m68k.org>
1762         * make-docfile.c (write_c_args): Restructure scanning loop.
1764 2010-07-09  Dan Nicolaescu  <dann@ics.uci.edu>
1766         * make-docfile.c (write_c_args): Deal with type names in DEFUN
1767         arguments.
1769 2010-07-08  Dan Nicolaescu  <dann@ics.uci.edu>
1771         * update-game-score.c (P_): Remove macro.
1772         * ebrowse.c: Remove include guards.
1773         (P_): Remove macro.
1775 2010-07-07  Andreas Schwab  <schwab@linux-m68k.org>
1777         * ebrowse.c (add_sym, make_namespace): Replace bcopy, bzero by
1778         memcpy, memmove, memset.
1779         * pop.c (pop_retrieve, socket_connection, pop_getline): Likewise.
1781 2010-07-06  Andreas Schwab  <schwab@linux-m68k.org>
1783         * movemail.c: Add MAIL_USE_POP around prototypes.
1784         Include <string.h> if HAVE_STRING_H.
1785         (strerror): Only declare if !HAVE_STRERROR.
1786         (fatal): Make static.
1787         (error): Likewise.
1788         (pfatal_with_name): Likewise.
1789         (pfatal_and_delete): Likewise.
1790         (concat): Likewise.
1791         (xmalloc): Likewise.
1792         (popmail): Likewise.
1793         (pop_retr): Likewise.
1794         (mbx_write): Likewise.
1795         (mbx_delimit_begin): Likewise.
1796         (mbx_delimit_end): Likewise.
1798 2010-07-04  Dan Nicolaescu  <dann@ics.uci.edu>
1800         * fakemail.c (action): Convert function definitions to standard C.
1801         (add_a_stream):
1802         * test-distrib.c (cool_read, main): Likewise.
1804 2010-07-03  Andreas Schwab  <schwab@linux-m68k.org>
1806         * sorted-doc.c (cmpdoc): Fix signature.
1807         (qsort_compare): Delete.
1808         (main): Remove cast.
1810 2010-07-03  Juanma Barranquero  <lekktu@gmail.com>
1812         * ebrowse.c (match_qualified_namespace_alias): Check for null pointer.
1814 2010-07-03  Juanma Barranquero  <lekktu@gmail.com>
1816         Fix prototype warnings.
1818         * ebrowse.c (match_qualified_namespace_alias):
1819         Pass sym* to find_namespace, not link*.
1821         * emacsclient.c (send_to_emacs, quote_argument): Arg s is HSOCKET.
1823         * sorted-doc.c (qsort_compare): New typedef.
1824         (main): Use it to cast cmpdoc.
1826 2010-07-03  Dan Nicolaescu  <dann@ics.uci.edu>
1828         * update-game-score.c: Convert function definitions to standard C.
1829         * sorted-doc.c:
1830         * profile.c:
1831         * pop.c:
1832         * movemail.c:
1833         * make-docfile.c:
1834         * hexl.c:
1835         * fakemail.c:
1836         * etags.c:
1837         * ebrowse.c:
1838         * digest-doc.c:
1839         * b2m.c: Likewise.
1841 2010-07-02  Dan Nicolaescu  <dann@ics.uci.edu>
1843         * make-docfile.c (xmalloc, xrealloc, concat, readline, fatal):
1844         * b2m.c (scan_file, scan_lisp_file, scan_c_file): Convert to
1845         standard C prototypes.
1847 2010-07-02  Jan Djärv  <jan.h.d@swipnet.se>
1849         * ebrowse.c: Remove P_ and __P.
1850         * etags.c:
1851         * movemail.c:
1852         * pop.c:
1853         * update-game-score.c: Likewise.
1855 2010-06-24  Juanma Barranquero  <lekktu@gmail.com>
1857         * movemail.c (error): Avoid warning when there are no args.
1859 2010-06-11  Juanma Barranquero  <lekktu@gmail.com>
1861         * makefile.w32-in (lisp2): Fix references to vc/vc-hooks.elc
1862         and vc/ediff-hook.elc.
1864 2010-06-06  Dan Nicolaescu  <dann@ics.uci.edu>
1866         * ntlib.h: Remove code dealing with BSTRING.
1868 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
1870         * emacsclient.c (longopts, decode_options, print_help_and_exit):
1871         New arg `-parent-id'.
1872         (main): Send parent-id to Emacs.
1874 2010-05-27  Glenn Morris  <rgm@gnu.org>
1876         * Makefile.in (distclean): No more Makefile.c.
1878 2010-05-22  Jan Djärv  <jan.h.d@swipnet.se>
1880         * Makefile.in (STAMP_INST_SCRIPTS, STAMP_SCRIPS): New (Bug #6246).
1881         (all): Depend onSTAMP_INST_SCRIPTS, STAMP_SCRIPS (Bug #6246).
1882         (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff):
1883         New rules (Bug #6246).
1884         (clean): Remove stamp-* (Bug #6246).
1886 2010-05-12  Glenn Morris  <rgm@gnu.org>
1888         * Makefile.in (INSTALLABLES): Remove @LIB_SRC_EXTRA_INSTALLABLES@.
1890 2010-05-11  Glenn Morris  <rgm@gnu.org>
1892         * Makefile.in (.m.o): Remove, there are no .m files.
1893         (BASE_CFLAGS): New variable.
1894         (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use $BASE_CFLAGS.
1895         (check): Update the message.
1896         (update-game-score${EXEEXT}): Do not use $MOVE_FLAGS.
1898         * Makefile.in: Convert comments to makefile format.
1900         * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
1901         (config.h) [MSDOS]: Do not include.
1903 2010-05-10  Glenn Morris  <rgm@gnu.org>
1905         * Makefile.in (LIBS_SYSTEM): Set with configure, not cpp.
1906         (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
1907         (NOT_C_CODE): Remove, no longer used.
1908         (config.h) [!MSDOS]: No longer include.
1909         (LOADLIBES): Use LIBS_SYSTEM as a variable.
1911         * Makefile.in (BLESSMAIL_TARGET): Set with configure, not cpp.
1913 2010-05-08  Glenn Morris  <rgm@gnu.org>
1915         * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
1917 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
1919         * Version 23.2 released.
1921 2010-05-06  Glenn Morris  <rgm@gnu.org>
1923         * Makefile.in: Minimize blessmail-related cpp usage.
1924         (BLESSMAIL_TARGET): New variable.
1925         (MOVEMAIL_NEEDS_BLESSING): Remove, replace by above variable.
1926         (blessmail): Always define this rule.
1927         (need-blessmail): New rule, split out from maybe-blessmail.
1928         (maybe-blessmail): Use BLESSMAIL_TARGET.
1930 2010-05-04  Glenn Morris  <rgm@gnu.org>
1932         * Makefile.in: Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
1933         @c_switch_system@, @c_switch_machine@.
1935 2010-04-26  Dan Nicolaescu  <dann@ics.uci.edu>
1937         * Makefile.in (LIBS_MACHINE): Remove all uses, unused.
1939 2010-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
1941         * Makefile.in (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Move to the
1942         non-cpp section.
1944 2010-04-11  Dan Nicolaescu  <dann@ics.uci.edu>
1946         * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE): Define using
1947         autoconf, not cpp.
1948         (ALL_CFLAGS): Use them as make variables.
1950 2010-04-07  Christoph Scholtes  <cschol2112@googlemail.com>
1952         * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis
1953         for macros for nmake compatibility.
1955 2010-04-03  Juanma Barranquero  <lekktu@gmail.com>
1957         Add stubs for Windows, required after CVE-2010-0825 change.
1958         * ntlib.c (getgid, getegid, setegid): New stubs.
1959         * ntlib.h (getgid, getegid, setegid): Declare them.
1961 2010-04-02  Dan Rosenberg  <dan.j.rosenberg@gmail.com>  (tiny change)
1963         * movemail.c (main): Check return values of setuid.
1964         Avoid possibility of symlink attack when movemail is setgid mail
1965         (CVE-2010-0825).
1967 2010-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
1969         Remove extern errno declarations.
1970         * movemail.c:
1971         * etags.c:
1972         * emacsclient.c: Remove extern errno declarations.
1974 2010-03-20  Glenn Morris  <rgm@gnu.org>
1976         * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
1977         (LIBHESIOD, LIBRESOLV): Make previous change a bit more friendly by
1978         defining these as Makefile variables.
1979         (LIBS_MOVE): Add LIBS_MAIL into this.
1980         (movemail${EXEEXT}): Just use LIBS_MOVE, not LIBS_MAIL as well.
1982 2010-03-18  Glenn Morris  <rgm@gnu.org>
1984         * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
1985         (HESIODLIB, LIBS_MAIL): Set using autoconf rather than cpp.
1986         (BASE_CFLAGS): Remove (identical to CPP_CFLAGS).
1988 2010-03-18  Tetsurou Okazaki  <okazaki@be.to>  (tiny change)
1990         * Makefile.in (uninstall): Handle the case where archlibdir does not
1991         exist.  (Bug#5720)
1993 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
1995         * Branch for 23.2.
1997 2010-02-20  Kevin Ryde  <user42@zip.com.au>
1999         * etags.c (Scheme_functions): Don't loop past a null character
2000         (Bug#5601).
2002 2010-01-29  Kester Habermann  <kester@linuxtag.org>  (tiny change)
2004         * etags.c (Fortran_functions): Handle recursive keyword (Bug#5484).
2006 2010-01-11  Glenn Morris  <rgm@gnu.org>
2008         * ebrowse.c (version):
2009         * etags.c (print_version):
2010         * rcs2log (Copyright): Set copyright year to 2010.
2012 2009-12-09  David Robinow  <drobinow@gmail.com>  (tiny change)
2014         * makefile.w32-in: Use parenthesis for macros for nmake
2015         compatibility.
2017 2009-11-23  Tobias Ringström  <tobias@ringis.se>  (tiny change)
2019         * etags.c (absolute_filename): Use memmove if we have it for
2020         overlapping copy.
2022 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
2024         * make-docfile.c (scan_lisp_file): Also look for `defvaralias'.
2026 2009-10-15  Juanma Barranquero  <lekktu@gmail.com>
2028         * .gitignore: Add echolisp.tmp.
2030 2009-10-15  Glenn Morris  <rgm@gnu.org>
2032         * emacsclient.c (print_help_and_exit): Fix bug report instructions.
2034         * makefile.w32-in (echolisp): New rule.
2035         (clean): Delete echolisp.tmp.
2037 2009-09-27  Eli Zaretskii  <eliz@gnu.org>
2039         * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Add term/internal.elc,
2040         term/pc-win.elc, emacs-lisp/easymenu.elc, and term/ns-win.elc, to
2041         be consistent with src/Makefile.in.
2043 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2045         * update-game-score.c (main): Sort scores before trimming them,
2046         reported by Jason Feng <jfeng@ozbert.com> (bug#4397).
2048 2009-09-09  Glenn Morris  <rgm@gnu.org>
2050         * Makefile.in ($(DESTDIR)${archlibdir}): Set umask to world-readable
2051         before creating directories and game score files.
2053 2009-08-19  Glenn Morris  <rgm@gnu.org>
2055         * cvtmail.c: Remove file.
2056         * Makefile.in (UTILITIES): Remove cvtmail.
2057         (cvtmail${EXEEXT}): Remove.
2059 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
2061         * b2m.c (main): Ensure that each message ends in two newlines.
2063 2009-07-03  Jason Rumney  <jasonr@gnu.org>
2065         * emacsclient.c (w32_set_user_model_id): Use standard types.
2067 2009-07-03  Eli Zaretskii  <eliz@gnu.org>
2069         * makefile.w32-in (WINNT_SUPPORT): Add common-win.elc, like
2070         src/Makefile.in did.
2072 2009-06-30  Jason Rumney  <jasonr@gnu.org>
2074         * emacsclient.c (w32_give_focus): Use GetModuleHandle for library
2075         that is already loaded.
2076         (w32_set_user_model_id): New function.
2077         (main): Use it to associate emacsclient with emacs (bug#1849).
2079 2009-06-29  Jim Meyering  <meyering@redhat.com>
2081         Remove useless if-before-free test.
2082         * make-docfile.c (scan_lisp_file): Remove useless test.
2084 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
2086         * Makefile.in (movemail.o): Don't pass -Demacs, unused.
2088 2009-06-21  Chong Yidong  <cyd@stupidchicken.com>
2090         * Branch for 23.1.
2092 2006-06-09  Adrian Robert  <Adrian.B.Robert@gmail.com>
2094         * mac-fix-env.m:
2095         * Makefile.in (mac-fix-env): Remove.
2097 2006-06-06  David Reitter  <david.reitter@gmail.com>
2099         * Makefile.in (mac-fix-env): Compile it using ALL_CFLAGS.
2101 2009-04-20  Juanma Barranquero  <lekktu@gmail.com>
2103         * emacsclient.c (print_help_and_exit): Fix typo and tabify (careful
2104         spacing is required in the message output, as the comment suggests).
2106 2009-04-20  Chong Yidong  <cyd@stupidchicken.com>
2108         * emacsclient.c (print_help_and_exit): Clarify argument placement
2109         for short option names.
2111 2009-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
2113         * emacsclient.c (print_help_and_exit): Fix typo.
2115 2009-03-21  Eli Zaretskii  <eliz@gnu.org>
2117         * ntlib.c (setuid): Argument is now unsigned.
2118         (getuid): Return value is now unsigned.
2119         (getpwuid): Argument is now unsigned.
2120         (fchown): UID and GID arguments are now unsigned.
2122         * ntlib.h (fchown): UID and GID arguments are now unsigned.
2123         (getuid): Return value is now unsigned.
2124         (setuid): Argument is now unsigned.
2125         (getpwuid): Remove prototype (it's declared in nt/inc/pwd.h).
2127 2009-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2129         * emacsclient.c (main): Revert part of last change, so
2130         drive-relative file names again work on Windows.
2132 2009-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2134         * emacsclient.c (main): Always pass cwd via "-dir".  Pass the file
2135         names without prepending cwd to them, so Emacs uses its customary
2136         rules to determine how to interpret the file name.
2138 2009-03-04  Glenn Morris  <rgm@gnu.org>
2140         * movemail.c (main) [MAIL_USE_POP]: Add -r to usage message.
2142 2009-02-13  Sven Joachim  <svenjoac@gmx.de>
2144         * movemail.c: Include time.h unconditionally.
2145         (main): Use time_t for time variables.
2147 2009-02-11  Glenn Morris  <rgm@gnu.org>
2149         * movemail.c (mbx_delimit_begin): Also write the current time.
2151 2009-02-10  Glenn Morris  <rgm@gnu.org>
2153         * movemail.c (mbx_delimit_begin, mbx_delimit_end): Write mbox rather
2154         than Babyl format.  (Bug#2196)
2156 2009-01-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
2158         * emacsclient.c (decode_options): Use a dummy display name under
2159         NS/Cocoa.
2161 2009-01-14  Lars Rasmusson  <lars.rasmusson@gmail.com>  (tiny change)
2163         * ebrowse.c (matching_regexp): Fix OB1 error.
2165 2009-01-05  Glenn Morris  <rgm@gnu.org>
2167         * ebrowse.c (version):
2168         * etags.c (print_version):
2169         * rcs2log (Copyright): Update copyright for 2009.
2171 2009-01-01  Chong Yidong  <cyd@stupidchicken.com>
2173         * movemail.c (main): Fatal if hard links cannot be created.
2175 2008-12-18  Dan Nicolaescu  <dann@ics.uci.edu>
2177         * emacsclient.c (start_daemon_and_retry_set_socket): Improve error
2178         checking.
2180 2008-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
2182         * emacsclient.c: Include syswait.h instead of sys/types.h.
2184 2008-12-11  Dhruva Krishnamurthy  <dhruvakm@gmail.com>  (tiny change)
2186         * emacsclient.c (WCONTINUED): New compatibility define
2187         for older systems.
2189 2008-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
2191         * emacsclient.c (main): Fix previous change.
2193 2008-12-10  Juanma Barranquero  <lekktu@gmail.com>
2195         * emacsclient.c (main): Fix mindless breakage where emacsclient
2196         does not work *at all* on Windows, even if it *can* connect.
2198 2008-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
2200         * emacsclient.c (EMACS_DAEMON): Remove definition.
2201         (decode_options): Do not allow an empty alternate_editor on
2202         WINDOWSNT.
2203         (print_help_and_exit): Replace EMACS_DAEMON with WINDOWSNT.
2204         (start_daemon_and_retry_set_socket): Likewise.
2205         (main): Fail in case of not being able to connect.
2207 2008-12-10  Juanma Barranquero  <lekktu@gmail.com>
2209         * emacsclient.c [!WINDOWSNT] (EMACS_DAEMON): New define.
2210         Changes when EMACS_DAEMON is not defined:
2211         (print_help_and_exit): Don't add daemon information to help.
2212         (start_daemon_and_retry_set_socket): Make a no-op.
2213         (main): Don't set `start_daemon_if_needed' (which is initialized to 0).
2215 2008-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
2217         * emacsclient.c (print_help_and_exit): Describe what an empty
2218         string argument does for --alternate-editor.
2219         (set_socket): Make it possible to not exit in case of an error.
2220         (start_daemon_and_retry_set_socket): New function.
2221         (main): Use it.  Restore the NULL value for socket_name and
2222         server_file after the set_socket call.
2224 2008-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
2226         * emacsclient.c: Include <arpa/inet.h>.
2228 2008-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
2230         * make-docfile.c (scan_lisp_file): Use xmalloc instead of malloc.
2232 2008-11-22  Derek Peschel  <dpeschel@eskimo.com>  (tiny change)
2234         * etags.c (add_regex): Pass correct length to re_compile_pattern.
2236 2008-11-02  Chong Yidong  <cyd@stupidchicken.com>
2238         * emacsclient.c (window_system): Delete redundant variable.
2239         (decode_options): Don't use it.
2240         (find_tty): New function.
2241         (main): Use find_tty, and don't use window_system.
2243 2008-11-01  Eli Zaretskii  <eliz@gnu.org>
2245         * emacsclient.c (main) [WINDOWSNT]: Don't ifdef away the call to
2246         `ttyname'.
2247         (w32_getenv): Treat $TERM specially: if not found in the
2248         environment and in the Registry, return "w32console".
2249         (ttyname) [WINDOWSNT]: New function.
2251 2008-10-31  Andreas Schwab  <schwab@suse.de>
2253         * emacsclient.c (main): Don't force sending tty when in eval mode.
2255 2008-10-30  Chong Yidong  <cyd@stupidchicken.com>
2257         * emacsclient.c (main): If using the current frame, send tty
2258         information to Emacs in case daemon mode needs to occupy this tty.
2260 2008-10-29  Juanma Barranquero  <lekktu@gmail.com>
2262         * emacsclient.c (EXTRA_SPACE): New macro.
2263         (get_server_config, set_local_socket): Use it.
2265         * makefile.w32-in ($(BLD)/sorted-doc.$(O)): Remove spurious backslash.
2266         Reported by Guillaume Conjat <gconjat.ext@orange-ftgroup.com>.
2268 2008-10-29  Ulrich Mueller  <ulm@gentoo.org>
2270         * emacsclient.c (set_local_socket): Use TMPDIR (default /tmp)
2271         instead of hardcoded /tmp.
2273 2008-10-13  Dan Nicolaescu  <dann@ics.uci.edu>
2275         * emacsclient.c (longopts, print_help_and_exit): Add -nw.
2276         (decode_options): Use getopt_long_only.
2278 2008-09-30  Eli Zaretskii  <eliz@gnu.org>
2280         * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove ccl.elc and
2281         codepage.elc.
2283 2008-09-19  Dan Nicolaescu  <dann@ics.uci.edu>
2285         * emacsclient.c (main): Use stdout rather than stdin to obtain the
2286         terminal (bug#427).
2288 2008-08-25  Francesco Potortì  <pot@gnu.org>
2290         * etags.c (main): Do not use static space for the tagfile string.
2292 2008-08-17  Francesco Potortì  <pot@gnu.org>
2294         * etags.c (main): Use canonicalize_filename on tags file name.
2295         (relative_filename): Revert 3.85: do not collapse slashes here.
2296         (absolute_dirname): Remove useless call to canonicalize_filename.
2297         (canonicalize_filename): Collapse multiple slashes here.
2299 2008-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
2301         * Makefile.in (INSTALLABLES): Add LIB_SRC_EXTRA_INSTALLABLES.
2302         Do not special case for NS_IMPL_COCOA.
2304 2008-08-06  Adrian Robert  <Adrian.B.Robert@gmail.com>
2306         * Makefile.in (CFLAGS): Drop -universal under NS_IMPL_COCOA.
2307         (.m.o): Dispense with GNUstep-specific flags.
2309 2008-08-05  Ulrich Mueller  <ulm@gentoo.org>
2311         * pop.c (socket_connection): Add conditionals for
2312         HAVE_KRB5_ERROR_TEXT and HAVE_KRB5_ERROR_E_TEXT to support
2313         compilation with MIT Kerberos and Heimdal, respectively.
2315 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2317         * etags.c:
2318         * emacsclient.c: Remove VMS support.
2320 2008-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
2322         Remove support for Mac Carbon.
2323         * makefile.w32-in:
2324         * emacsclient.c: Remove code for Carbon.
2326 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
2328         * Makefile.in (mac-fix-env): Remove #ifdef around rule.
2330 2008-07-17  Andreas Schwab  <schwab@suse.de>
2332         * Makefile.in (INSTALL_SCRIPT): Remove duplicate definition.
2333         (LIB_STANDARD_LIBSRC): Don't define.
2334         (LOADLIBES): Remove LIB_STANDARD_LIBSRC.
2336 2008-07-16  Adrian Robert  <Adrian.B.Robert@gmail.com>
2338         * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
2339         NS_IMPL_COCOA.
2341 2008-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
2343         * ntlib.h (fcloseall, fgetchar, flushall, fputchar, putw):
2344         Remove, unused.
2346 2008-07-15  Adrian Robert  <Adrian.B.Robert@gmail.com>
2348         * .cvsignore: Add mac-fix-env.
2349         * mac-fix-env.m: New file, automatically update
2350         ~/.MacOSX/environment.plist on OS X systems to expose environment
2351         variables inside Emacs started from icon.
2352         * Makefile.in: Add -universal to CFLAGS on OS X, add mac-fix-env to
2353         programs to build.
2354         * make-docfile.c: Add .m to list of file extensions.
2356 2008-07-12  Dan Nicolaescu  <dann@ics.uci.edu>
2358         * movemail.c (main): Use int instead of WAITTYPE.
2360 2008-07-05  Juanma Barranquero  <lekktu@gmail.com>
2362         * makefile.w32-in (OTHER_PLATFORM_SUPPORT):
2363         Remove vmsproc.el and vms-patch.el.
2365 2008-06-26  Juanma Barranquero  <lekktu@gmail.com>
2367         * makefile.w32-in (obj): Remove w32bdf.o.
2369 2008-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
2371         * fakemail.c: Remove references to obsolete variables.
2373 2008-06-02  Jim Meyering  <meyering@redhat.com>
2375         * ebrowse.c (xfree): Remove definition; s/xfree/free/.
2377         Remove useless if-before-free tests.
2378         * ebrowse.c (xfree): Likewise.
2379         * etags.c (process_file_name, free_tree, free_fdesc): Likewise.
2380         (popclass_above, Prolog_functions, Erlang_functions): Likewise.
2381         * pop.c (pop_quit): Likewise.
2383 2008-05-30  Juanma Barranquero  <lekktu@gmail.com>
2385         * makefile.w32-in (lisp2): Add minibuffer.elc.
2387 2008-05-29  Tom Tromey  <tromey@redhat.com>
2389         * etags.c (relative_filename): Treat "///" like "/" in filenames.
2391 2008-05-09  Eli Zaretskii  <eliz@gnu.org>
2393         * ntlib.c: Include sys/types.h, sys/stat.h, and errno.h.
2394         (IS_DIRECTORY_SEP): New macro.
2395         (convert_time, is_exec, stat): New functions.
2397 2008-05-08  Eli Zaretskii  <eliz@gnu.org>
2399         * makefile.w32-in (lisp2): Rename epa-file-hook.elc to epa-hook.elc.
2401 2008-05-03  Eli Zaretskii  <eliz@gnu.org>
2403         * makefile.w32-in (lisp2): Add epa-file-hook.elc, to track the
2404         corresponding change in src/Makefile.in.
2406 2008-04-24  Adam GoÅ‚Ä™biowski  <adamg@pld-linux.org>  (tiny change)
2408         * Makefile.in (etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo.
2410 2008-04-10  Jason Rumney  <jasonr@gnu.org>
2412         * makefile.w32-in (CLIENTRES): New variable and target.
2413         (TRES): Remove.
2414         ($(BLD)/emacsclientw.exe): Use $(CLIENTRES) instead of $(TRES).
2416 2008-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2418         * vcdiff: Use "sccs get" rather than "get"; leave PATH alone.
2420 2008-04-18  Steve Grubb  <sgrubb@redhat.com>  (tiny change)
2422         * vcdiff: Use mktemp (CVE-2008-1694).
2424 2008-04-09  Jason Rumney  <jasonr@gnu.org>
2426         * makefile.w32-in (distclean, maintainer-clean): New targets.
2428 2008-03-13  Glenn Morris  <rgm@gnu.org>
2430         * makefile.w32-in (VERSION): Set to 23.0.60.
2432 2008-03-04  Juanma Barranquero  <lekktu@gmail.com>
2434         * .cvsignore: Add oo.
2436 2008-02-27  Yuri Shtil  <yuris@juniper.net>  (tiny change)
2438         * etags.c (Perl_functions): Fix call to skip_spaces.
2440 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
2442         * Makefile.in (NO_SHORTNAMES):
2443         * emacsclient.c (NO_SHORTNAMES):
2444         * fakemail.c (NO_SHORTNAMES):
2445         * make-docfile.c (NO_SHORTNAMES):
2446         * movemail.c (NO_SHORTNAMES):
2447         * pop.c (NO_SHORTNAMES): Remove references to obsolete variable.
2449 2008-02-23  Jason Rumney  <jasonr@gnu.org>
2451         * makefile.w32-in (MOUSE_SUPPORT): Remove duplicate tooltip.elc.
2452         (MSDOS_SUPPORT, VMS_SUPPORT): Remove.
2453         (OTHER_PLATFORM_SUPPORT): Replace above.  Add X specific files too.
2454         (lisp2): Add new languages.
2455         ($(DOC)): Use OTHER_PLATFORM_SUPPORT.
2457 2008-02-22  Juanma Barranquero  <lekktu@gmail.com>
2459         * makefile.w32-in (lisp2): Remove devanagari.el, kannada.el,
2460         malayalam.el, and tamil.el.  Add sinhala.el.
2462 2008-02-20  Juanma Barranquero  <lekktu@gmail.com>
2464         * emacsclient.c (main) [WINDOWSNT]: Understand DRIVE:NAME,
2465         where NAME is relative to DRIVE'S current directory.
2467 2008-02-15  Juanma Barranquero  <lekktu@gmail.com>
2469         * emacsclient.c (print_help_and_exit): Show -d option on Windows.
2471 2008-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
2473         * fakemail.c: Undo previous change.
2475 2008-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
2477         * fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional.
2478         (main): Replace MAIL_PROGRAM_NAME with its value.
2480         * Makefile.in (REGEXP_IN_LIBC): Remove reference to obsolete variable.
2482 2008-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2484         * emacsclient.c (decode_options): Pass --display implicitly if -c
2485         is specified.  Only set tty if -t or -c is specified.
2487 2008-02-04  Jason Rumney  <jasonr@gnu.org>
2489         * makefile.w32-in (lisp1): Use (), not {}.
2491 2008-02-04  Tom Tromey  <tromey@redhat.com>
2493         * etags.c: Add "GTY" as synonym for __attribute__.
2494         Update gperf output.
2496 2008-02-01  Jason Rumney  <jasonr@gnu.org>
2498         * makefile.w32-in (obj): Sync with src/Makefile.in.
2499         (TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
2500         (WINNT_SUPPORT): Add term/w32-win.elc.
2501         (lisp1, lisp2): Sync with lisp in src/Makefile.in.
2503 2008-02-01  Jason Rumney  <jasonr@gnu.org>
2505         * makefile.w32-in (obj): Add font.o and w32font.o.
2507 2008-02-01  Zhang Wei  <id.brep@gmail.com>  (tiny change)
2509         * makefile.w32-in (lisp1): Delete ucs-tables.elc,
2510         utf-8.elc, and latin-*.el.
2512 2008-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2514         * emacsclient.c (decode_options): Default to NULL display, as Emacs-22.
2515         Allow the -d option under w32 again, for those rare cases where it
2516         actually does make sense.
2518 2008-01-25  Juanma Barranquero  <lekktu@gmail.com>
2520         * emacsclient.c (set_tcp_socket): Don't send "\n" after
2521         the authentication string; there's no need to haste.
2523 2008-01-22  Chong Yidong  <cyd@stupidchicken.com>
2525         * pop.c (pop_stat, pop_last): Fix last fix.
2527 2008-01-18  Dan Nicolaescu  <dann@ics.uci.edu>
2529         * movemail.c: Remove references to XENIX.
2531 2008-01-13  Dan Nicolaescu  <dann@ics.uci.edu>
2533         * movemail.c:
2534         * make-docfile.c: Remove reference to symbols defined by systems
2535         not supported anymore: MAC_OS8, XENIX and STRIDE.
2537 2008-01-12  Eli Zaretskii  <eliz@gnu.org>
2539         * emacsclient.c (decode_options) [WINDOWSNT]: Don't use the value
2540         of DISPLAY in the environment.  Don't support -d.
2541         (print_help_and_exit) [WINDOWSNT]: Don't show the --display option.
2542         (longopts) [WINDOWSNT]: Remove --display.
2544 2008-01-10  Chong Yidong  <cyd@stupidchicken.com>
2546         * pop.c (pop_stat, pop_last): Check validity of string-to-integer
2547         conversion.  Mistakes spotted by Nico Golde.
2549 2008-01-09  Glenn Morris  <rgm@gnu.org>
2551         * emacsclient.c: Add missing final newlines to message calls.
2553 2008-01-09  Daniel Hackney  <dan@haxney.org>  (tiny change)
2555         * emacsclient.c (set_socket): Add final newline to socket error message.
2557 2008-01-04  Glenn Morris  <rgm@gnu.org>
2559         * ebrowse.c (version) <emacs_copyright>: New variable.
2560         Just use current year for copyright.
2562         * etags.c (print_version):
2563         * rcs2log (Copyright): Update to 2008.
2565 2007-11-28  Jason Rumney  <jasonr@gnu.org>
2567         * makefile.w32-in (VMS_SUPPORT): No longer byte-compiled.
2569 2007-11-27  Jan Djärv  <jan.h.d@swipnet.se>
2571         * pop.c (socket_connection): Remove AI_ADDRCONFIG.
2573 2007-11-19  Jan Djärv  <jan.h.d@swipnet.se>
2575         * pop.c (socket_connection): Move realhost out of #ifdefs.
2576         Set realhost both for HAVE_GETADDRINFO and !HAVE_GETADDRINFO.
2578 2007-11-18  Jan Djärv  <jan.h.d@swipnet.se>
2580         * pop.c (socket_connection): Use getaddrinfo if available.
2582 2007-11-22  Francesco Potortì  <pot@gnu.org>
2584         * etags.c (default_C_help) [CTAGS]: Differentiate the help string,
2585         as the defaults in ctags are different from etags.
2587 2007-11-15  Francesco Potortì  <pot@gnu.org>
2589         * etags.c: Make prototypes for extern definitions, and add all
2590         that are needed to quench warnings on 64-bit.
2591         (main): Use the same defaults for ctags as for etags: find
2592         typedefs, structure tags, macro constants, enum constants, struct
2593         members and global variables.
2594         (make_C_tag) [DEBUG]: Add debugging printout.
2595         (C_entries): In case '}' decrement bracelev before testing it.
2597 2007-11-15  Masatake YAMATO  <jet@gyve.org>
2599         * etags.c (C_entries): In case '}', set fvdef to fvnone
2600         unconditioned to (!ignoreindent && lp == newlb.buffer + 1).
2602 2007-11-01  Dan Nicolaescu  <dann@ics.uci.edu>
2604         * makefile.w32-in (obj): Remove sunfns.o.
2606 2007-10-28  Juanma Barranquero  <lekktu@gmail.com>
2608         * makefile.w32-in (obj): Remove abbrev.o.
2610 2007-10-26  Juanma Barranquero  <lekktu@gmail.com>
2612         * emacsclient.c: Add a wrapper for getenv so it also checks the
2613         registry on Windows.  Suggestion and algorithm by Eli Zaretskii.
2614         Code partially based on w32_get_resource and init_environment (w32.c).
2615         (egetenv): New wrapper for getenv.
2616         (get_current_dir_name, decode_options, get_server_config)
2617         (set_local_socket, set_socket, main): Use egetenv, not getenv.
2618         (w32_get_resource, w32_getenv) [WINDOWSNT]: New functions.
2620 2007-10-25  Jason Rumney  <jasonr@gnu.org>
2622         * emacsclient.c (sock_err_message): New function.
2623         (set_tcp_socket): Use it.
2625 2007-10-09  Juanma Barranquero  <lekktu@gmail.com>
2627         * emacsclient.c (print_help_and_exit): Fix space to improve
2628         alignment in output messages.
2630 2007-09-27  Jason Rumney  <jasonr@gnu.org>
2632         * makefile.w32-in (emacsclient, emacsclientw): Link to COMCTL32.
2634         * emacsclient.c (w32_window_app): Init common controls when windowed.
2636 2007-09-21  Glenn Morris  <rgm@gnu.org>
2638         * emacstool.c: Remove file.
2639         * Makefile.in (emacstool, nemacstool, xvetool, xveterm):
2640         Delete targets built from emacstool.
2642 2007-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2644         * emacsclient.c (decode_options): -t implies -c.
2646 2007-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2648         * emacsclient.c (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP)
2649         (IS_ANY_SEP): Only define if !defined(HAVE_GET_CURRENT_DIR_NAME).
2650         (main_argc): Remove.
2651         (strprefix): Use strncmp.
2653 2007-09-20  Jason Rumney  <jasonr@gnu.org>
2655         * emacsclient.c (main) [SIGSTOP]: Change conditional from WINDOWSNT.
2657 2007-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2659         * emacsclient.c (current_frame): Change the default.
2660         (longopts): Replace --current-frame by --create-frame.
2661         (decode_options): Reverse the meaning of -c.
2662         (print_help_and_exit): Update help text accordingly.
2663         (main): Remove the -version and -good-version messages.
2665 2007-09-12  Glenn Morris  <rgm@gnu.org>
2667         * Makefile.in (SOURCES, unlock, relock): Delete.
2669 2007-08-29  Glenn Morris  <rgm@gnu.org>
2671         * makefile.w32-in (VERSION): Increase to 23.0.50.
2673 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
2675         * emacsclient.c (w32_execvp): Move definition before use.
2676         (decode_options): Don't use a tty on mac carbon or windows.
2678 2007-08-29  Jason Rumney  <jasonr@gnu.org>
2680         * emacsclient.c (SEND_STRING, SEND_QUOTED): Remove obfuscation macros.
2681         (quote_argument, set_tcp_socket, handle_sigcont, handle_sigtstp)
2682         (main): Expand removed macros inline.
2683         (main) [WINDOWSNT]: Don't call ttyname.  Don't recognize -suspend
2684         option.
2685         (main) [NO_SOCKETS_IN_FILE_SYSTEM]: Don't call init_signals.
2687 2007-08-29  Károly LÅ‘rentey  <lorentey@elte.hu>
2689         * emacsclient.c (signal.h): New include.
2690         (sys/stat.h, errno.h): Always include, even on WINDOWSNT.
2691         (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
2692         Copy definitions here from src/lisp.h.
2693         (main_argc, main_argv, current_frame, window_system, tty): New vars.
2694         (longopts): Add tty, current-frame.
2695         (xmalloc, xstrdup): New functions.
2696         (get_current_dir_name): New function, copied from src/sysdep.c.
2697         (decode_options): Set display from environment.  Add tty and
2698         current_frame options.  Make --no-wait imply --current-frame,
2699         except when it is the only option given.  Make sure no frame is
2700         opened when --current-frame is set.
2701         (print_help_and_exit): Document tty and current-frame options.
2702         (fail): Change arguments to void.
2703         (main): When sockets are not defined, set main_argc, main_argv,
2704         and call fail() with no arguments.
2705         (emacs_socket): New variable (moved out from main `s').
2706         (quote_file_name): Rename to quote_argument.
2707         (quote_argument): New name for old quote_file_name.
2708         (unquote_argument, strprefix, pass_signal_to_emacs)
2709         (handle_sigcont, handle_sigtstp, init_signals): New functions.
2710         (set_local_socket): Initialize saved_errno to 0.  If socket-name
2711         is too long, call `fail' rather than `exit'.
2712         (main): Doc update.  Set main_argc, main_argv.  New var `str'.
2713         Don't need a filename or argument if tty or window_system set.
2714         Call fail with no arguments.  Use get_current_dir_name to send
2715         over the current directory.  Send version number to Emacs for
2716         verification.  If tty is set, check TERM, and pass name and type
2717         to Emacs.  Pass window_system to Emacs.  Move sending of eval to
2718         optind loop.  Send -position, -file to Emacs.  Call fsync after
2719         fflush.  Check for a client/server version match.
2720         Handle -emacs-pid, -window-system-unsupported, -print, -error, and
2721         -suspend commands.  Don't exit prematurely on --no-wait, let Emacs
2722         close the connection for us.  When creating a new frame, send
2723         environment and pwd to Emacs.  Send current-frame to Emacs.
2725 2007-08-25  Eli Zaretskii  <eliz@gnu.org>
2727         * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
2728         Prepend "-" to the command, in case srcdir=. and file is copied
2729         into itself.
2731 2007-07-25  Glenn Morris  <rgm@gnu.org>
2733         * Relicense all FSF files to GPLv3 or later.
2735         * COPYING: Switch to GPLv3.
2737 2007-07-17  Francesco Potortì  <pot@gnu.org>
2739         * etags.c (C_entries): Reset the fvdef machine when out of function.
2740         (PRINT_UNDOCUMENTED_OPTIONS_HELP): #define as FALSE if undefined.
2741         (print_help): Use it in if() rather than #if.
2742         (print_help): Conditionally print help about --no-line-directive.
2744 2007-07-16  Eli Zaretskii  <eliz@gnu.org>
2746         * makefile.w32-in (clean): Don't delete *~.
2748 2007-06-07  Glenn Morris  <rgm@gnu.org>
2750         * etags.c (print_version): Add `emacs_copyright' string, for
2751         easier automatic updating.
2753 2007-05-18  Francesco Potortì  <pot@gnu.org>
2755         * etags.c: Extern definitions of some more pointer functions for
2756         standalone compilation, especially important for 64bit platforms.
2757         (main, print_help): --members is now the default for etags.
2758         (C_entries): Parse start of C comment as a space == end of token.
2759         This is not necessary for C++ comment, already parsed as newline.
2761 2007-04-26  Glenn Morris  <rgm@gnu.org>
2763         * makefile.w32-in (VERSION): Increase to 22.1.50.
2765 2007-06-02  Chong Yidong  <cyd@stupidchicken.com>
2767         * Version 22.1 released.
2769 2007-02-26  Francesco Potortì  <pot@gnu.org>
2771         * Makefile.in (etags, ctags): Define EMACS_NAME as "GNU Emacs".
2773 2007-02-20  Ulrich Mueller  <ulm@kph.uni-mainz.de>  (tiny change)
2775         * Makefile.in (EMACS, EMACSOPT): New variables.
2776         (blessmail): Use `--no-site-file' when compiling.
2778 2007-02-05  Francesco Potortì  <pot@gnu.org>
2780         * etags.c (default_C_help, Cplusplus_help, PHP_help, print_help)
2781         (main): Now --members is the default for etags, not for ctags yet.
2783 2007-02-04  Per Cederqvist  <ceder@ingate.com>  (tiny change)
2785         * etags.c (gperf, in_word_set): Change attribute for Java to
2786         (C_JAVA & ~C_PLPL).  The previous change introduced 2004-09-13 was
2787         broken, as (C_JAVA & !C_PLPL) always evaluates to 0.  This caused
2788         import, package, extends, implements and interface to be treated
2789         specially for all kinds of C-style files, not just Java files.
2791 2007-01-02  Francesco Potortì  <pot@gnu.org>
2793         * etags.c (longopts): New undocumented option --no-duplicates.
2794         (no_duplicates): Static variables for the above option.
2795         (print_help): Do not print help for --no-warn, now undocumented.
2796         (add_node): Allow duplicate tags in ctags mode unless --no-duplicates.
2797         (main): Pass the -u option to sort in ctags mode.
2799 2006-12-28  Francesco Potortì  <pot@gnu.org>
2801         * etags.c (readline): When creating a relative file name from a
2802         #line directive, leave the file name alone.  The previous
2803         behavior was to make it relative to the tags file directory,
2804         under the hypothesis that the #line directive file name was
2805         relative to the directory of the tagged file.  That hypothesis is
2806         wrong with Cpp and Lex.
2807         (Makefile_targets): Do not include spaces in tag names.
2809 2006-12-22  Eli Zaretskii  <eliz@gnu.org>
2811         * makefile.w32-in (make-docfile, ctags, etags, ebrowse, hexl)
2812         (movemail, fakemail, sorted-doc, digest-doc, emacsclient)
2813         (test-distrib, $(DOC), all): Depend on stamp_BLD instead of $(BLD).
2814         ($(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O))
2815         ($(BLD)/sorted-doc.$(O) $(BLD)/digest-doc.$(O))
2816         ($(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS))
2817         ($(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O))
2818         ($(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O)): Depend on stamp_BLD.
2819         (clean): Delete stamp_BLD.
2821 2006-12-20  Francesco Potortì  <pot@gnu.org>
2823         * etags.c (C_entries): DEFUN names were longer by one: corrected.
2825 2006-12-18  Juanma Barranquero  <lekktu@gmail.com>
2827         * emacsclient.c [WINDOWSNT] (set_fg, get_wc): New variables.
2828         [WINDOWSNT] (w32_find_emacs_process, w32_give_focus): New functions.
2829         (main) [WINDOWSNT]: Remove code to release the focus; call
2830         w32_give_focus instead.
2832 2006-12-15  Juanma Barranquero  <lekktu@gmail.com>
2834         * emacsclient.c (w32_execvp): New function; wrapper for `execvp'.
2835         (execvp) [WINDOWSNT]: Redefine to `w32_execvp'.
2836         (fail): Remove Windows-specific fix (subsumed into w32_execvp).
2837         Suggestions and comment by Eli Zaretskii.
2839 2006-12-06  Christoph Conrad  <christoph.conrad@gmx.de>
2841         * makefile.w32-in ($(BLD)/emacsclient.exe, $(BLD)/emacsclientw.exe):
2842         Use $(USER32) for compatibility with Visual Studio .NET 2003.
2844 2006-11-30  Juanma Barranquero  <lekktu@gmail.com>
2846         * emacsclient.c (emacs_pid): New variable.
2847         (message): Remove leftover code.
2848         (get_server_config): Set emacs_pid.  Don't allow Emacs to grab the
2849         focus yet; emacsclient can still display an informational message
2850         before sending requests to Emacs.
2851         (main): Allow Emacs to grab the focus.  Simplify message() call.
2853 2006-11-30  Michael Mauger  <mmaug@yahoo.com>
2855         * emacsclient.c (message): Make sure the message is properly
2856         written even if it contains printf escapes, and flush the result.
2857         (set_tcp_socket): Make the message for non-local connections
2858         informational rather than an error.
2860 2006-11-28  Kevin Ryde  <user42@zip.com.au>
2862         * etags.c (readline): Check for double quote after #line.
2864 2006-11-28  Jan Djärv  <jan.h.d@swipnet.se>
2866         * etags.c (readline): sscanf could in principle return 2.
2868 2006-11-28  Francesco Potortì  <pot@gnu.org>
2870         * etags.c (readline): lno is unsigned.
2871         (TeX_commands): Use p++ (rather than *p++) to increment p.
2872         (Lua_functions): Explicitly discard LOOKING_AT's return value.
2874 2006-11-27  Juanma Barranquero  <lekktu@gmail.com>
2876         * makefile.w32-in (TRES): New macro (copied from nt/makefile.w32-in).
2877         ($(TRES)): New rule (copied from nt/makefile.w32-in).
2878         ($(BLD)/emacsclientw.exe): Add dependency.
2880 2006-11-27  Eli Zaretskii  <eliz@gnu.org>
2882         * makefile.w32-in ($(BLD)/emacsclient.$(O)): Depend on makefile.w32-in.
2884 2006-11-25  Juanma Barranquero  <lekktu@gmail.com>
2886         * makefile.w32-in (VERSION): New macro.
2887         (ECLIENT_CFLAGS): Add -DVERSION.
2889 2006-11-25  Jason Rumney  <jasonr@gnu.org>
2891         * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Use isalpha().
2893 2006-11-24  Michael Mauger  <mmaug@yahoo.com>
2895         * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Support absolute
2896         file names with forward slashes.
2898 2006-11-23  Juanma Barranquero  <lekktu@gmail.com>
2900         * emacsclient.c (print_help_and_exit): Tweak message contents and
2901         tabs/spaces to improve alignment in message boxes.
2903 2006-11-22  Lennart Borgman  <lennart.borgman.073@student.lu.se>
2905         * emacsclient.c: Include <stdarg.h>.
2906         [WINDOWSNT]: Include <windows.h>.
2907         (w32_check_console_app): New function.
2908         (message): New function.
2909         (decode_options, print_help_and_exit, fail, main)
2910         (initialize_sockets, get_server_config, set_tcp_socket)
2911         (set_local_socket, set_socket): Use message().
2913 2006-11-13  Jason Rumney  <jasonr@gnu.org>
2915         * emacsclient.c [WINDOWSNT]: Let config.h define HAVE_SOCKETS and
2916         HAVE_INET_SOCKETS.
2918 2006-11-13  Juanma Barranquero  <lekktu@gmail.com>
2920         * makefile.w32-in (emacsclient): Depend also on emacsclientw.exe.
2921         ($(BLD)/emacsclientw.exe): New target.
2922         (install): Install emacsclientw.exe.
2923         ($(BLD)/cvtmail.$(O), $(BLD)/emacstool.$(O)): Remove obsolete targets.
2924         (ECLIENT_CFLAGS): Remove redundant flags.
2926         * emacsclient.c [WINDOWSNT]: Undef _WINSOCKAPI_ and _WINSOCK_H.
2928 2006-11-13  Jason Rumney  <jasonr@gnu.org>
2930         * makefile.w32-in ($(BLD)/emacsclient.$(O)): Use CFLAGS.
2932 2006-11-10  David Reitter  <david.reitter@gmail.com>
2934         * emacsclient.c [!WINDOWSNT]: Include <sys/types.h>.
2936 2006-11-08  Juanma Barranquero  <lekktu@gmail.com>
2938         * emacsclient.c (get_server_config) [WINDOWSNT]: Declare set_fg as
2939         FARPROC to avoid a compiler warning.
2941 2006-11-07  Juanma Barranquero  <lekktu@gmail.com>
2943         * emacsclient.c (get_server_config) [WINDOWSNT]: Look for the server
2944         file on APPDATA if it doesn't exist on HOME, even if HOME is defined.
2946         * emacsclient.c (get_server_config): Extract also the Emacs pid
2947         from the server file.  On Windows, try to force the Emacs frame to
2948         the foreground.
2950 2006-11-06  Juanma Barranquero  <lekktu@gmail.com>
2952         * emacsclient.c (longopts) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't show
2953         option --socket-name.
2954         (decode_options): Don't get EMACS_SERVER_FILE here, it could override
2955         command line options.
2956         (decode_options) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't parse "-s" option.
2957         (fail): Don't check for missing arguments, it is now done in set_socket.
2958         (file_name_absolute_p): New function (loosely based on the one in
2959         fileio.c).
2960         (initialize_sockets): Don't check for duplicate loading of Winsock.
2961         (get_server_config): Only try relative paths in the default
2962         directory locations.
2963         (set_tcp_socket): Don't call INITIALIZE().  Warn when connecting to
2964         a remote server.
2965         (set_socket): Call INITIALIZE().  Search explicit command-line
2966         arguments, then environment variable EMACS_SERVER_FILE, then implicit
2967         socket paths, before trying the alternate editor.
2968         (main): Use file_name_absolute_p.
2970 2006-11-04  Eli Zaretskii  <eliz@gnu.org>
2972         * makefile.w32-in (../src/$(BLD)/temacs.exe): Create as temporary
2973         file if it doesn't already exist.
2975 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
2977         * emacsclient.c (initialize_sockets): Don't initialize Winsock
2978         more than once.
2980 2006-11-03  Mark Davies  <mark@mcs.vuw.ac.nz>
2982         * Makefile.in (INSTALL_SCRIPT): New macro.
2983         ($(DESTDIR)${archlibdir}, install): Use it, instead of INSTALL_PROGRAM.
2985 2006-11-02  Juanma Barranquero  <lekktu@gmail.com>
2987         * grep-changelog: When called with no arguments (not even a
2988         filter), show help instead of blindingly dumping every single
2989         ChangeLog available.  Doc fix.  Update version.
2991 2006-11-02  Tim Van Holder  <tim.vanholder@gmail.com>  (tiny change)
2993         * emacsclient.c [WINDOWSNT]: Define HAVE_INET_SOCKETS.
2994         [!WINDOWSNT]: Include <netinet/in.h> if available.
2995         [HAVE_SOCKETS]: Also require HAVE_INET_SOCKETS.
2996         (IOCTL, IOCTL_BOOL_ARG): Remove.
2997         (set_tcp_socket): Don't set the socket in blocking mode.
2998         Remove c_arg.
3000 2006-11-01  Juanma Barranquero  <lekktu@gmail.com>
3002         * emacsclient.c (fail) [WINDOWSNT]: Force the first argv passed to
3003         execvp to point to alternate_editor (otherwise .BAT scripts can't run).
3005 2006-10-31  Ã“scar Fuentes  <ofv@wanadoo.es>  (tiny change)
3007         * emacsclient.c [WINDOWSNT]: Include <malloc.h> and <stdlib.h>.
3008         (close_winsock): Declare as __cdecl.
3010 2006-10-31  Jan Djärv  <jan.h.d@swipnet.se>
3012         * emacsclient.c [!WINDOWSNT]: Include <fcntl.h> if available.
3013         (set_tcp_socket): Prefer O_NONBLOCK, then O_NDELAY, then FIONBIO
3014         to set the socket in non-blocking mode.
3016 2006-10-31  Tim Van Holder  <tim.vanholder@gmail.com>  (tiny change)
3018         * emacsclient.c [!WINDOWSNT]: Include <netinet/in.h> and <sys/ioctl.h>.
3019         (INVALID_SOCKET): Define.
3020         (initialize_sockets): Put #endif at the right place.
3021         (set_local_socket): Use progname, not argv[0].
3023 2006-10-31  Juanma Barranquero  <lekktu@gmail.com>
3025         * makefile.w32-in (ALL): Add emacsclient.
3026         (ECLIENT_CFLAGS, ECLIENTOBJS): New macros.
3027         (emacsclient, $(BLD)/emacsclient.exe): New targets.
3028         (install): Install emacsclient.
3030         * emacsclient.c: Add support for TCP sockets.
3031         (SEND_STRING, SEND_QUOTED, HSOCKET, CLOSE_SOCKET, IOCTL)
3032         (INITIALIZE): New macros.
3033         (IOCTL_BOOL_ARG): New typedef.
3034         (server_file): New global variable.
3035         (longopts): New option --server-file.
3036         (decode_options): Process new option --server-file and environment
3037         variable EMACS_SERVER_FILE.
3038         (print_help_and_exit): Document new option.
3039         (fail): If no connection available and no alternate editor,
3040         suggest using options to make them explicit.
3041         (AUTH_KEY_LENGTH, SEND_BUFFER_SIZE): New constants.
3042         (send_buffer, sblen): New variables.
3043         (send_to_emacs): New function to buffer output and send it with `send'.
3044         (quote_file_name): Use SEND_STRING.
3045         (close_winsock, initialize_sockets): New functions to load and
3046         unload Winsock.
3047         (get_server_config, set_tcp_socket): New functions to create and
3048         set up TCP sockets.
3049         (set_local_socket): New function to create and set up Unix
3050         socket (code moved from previous implementation).
3051         (set_socket): New function to choose between TCP and Unix sockets.
3052         (main): Use SEND_STRING and SEND_QUOTED.  Most code moved to
3053         set_local_socket.  Use set_socket.  Get answers from server.el with
3054         recv(), not file stream functions.
3056 2006-10-09  Eli Zaretskii  <eliz@gnu.org>
3058         * makefile.w32-in (../src/config.h): Fix error message.
3060 2006-09-30  Eli Zaretskii  <eliz@gnu.org>
3062         * .cvsignore: Add blessmail.
3064 2006-09-15  Jay Belanger  <belanger@truman.edu>
3066         * COPYING: Replace "Library Public License" by "Lesser Public
3067         License" throughout.
3069 2006-08-09  Jan Djärv  <jan.h.d@swipnet.se>
3071         * etags.c (readline): Expect sscanf returns >= 1.
3072         (readline): Change position on %n and \" in sscanf.
3074 2006-08-07  Masatake YAMATO  <jet@gyve.org>
3076         * etags.c (readline): Expect sscanf returns 2, not 1.
3078 2006-08-07  Masatake YAMATO  <jet@gyve.org>
3080         * etags.c (TEX_mode): Check getc returns EOF.
3081         File ended without newline causes infinite loop.
3083 2006-07-30  Adrian Aichner  <adrian@xemacs.org>  (tiny change)
3085         * etags.c: It's XEmacs, not Xemacs: change all the occurrences.
3087 2006-07-30  Francesco Potortì  <pot@gnu.org>
3089         * etags.c [ETAGS_REGEXPS]: Now is unconditionally defined.
3090         [LONG_OPTIONS]: Changed to NO_LONG_OPTIONS, which is undefined.
3091         (Objc_suffixes): Suggest using --lang=c for full help.
3092         (C_entries): Initialize savetoken to 0 to shut up the compiler.
3094 2006-07-20  Andreas Schwab  <schwab@suse.de>
3096         * fakemail.c (fatal): Drop second parameter and treat first
3097         parameter as a plain string.  Callers changed.
3099 2006-07-18  Dan Nicolaescu  <dann@ics.uci.edu>
3101         * ebrowse.c (usage, version): Mark as NO_RETURN.
3103         * emacsclient.c (print_help_and_exit): Likewise.
3105 2006-07-10  Francesco Potortì  <pot@gnu.org>
3107         * etags.c (absolute_filename): Free unused space (cosmetic change).
3108         (in_word_set): In C, also tag #undef symbols.
3110 2006-06-09  Eli Zaretskii  <eliz@gnu.org>
3112         * yow.c: Remove file.
3114         * makefile.w32-in ($(BLD)/yow.$(O)): Remove target.
3116         * Makefile.in (UTILITIES): Remove yow${EXEEXT}.
3117         yow${EXEEXT}: Remove target.
3119 2006-06-04  Masatake YAMATO  <jet@gyve.org>
3121         * ebrowse.c (main): Exit with EXIT_FAILURE if BROWSE file
3122         doesn't exist, is not seekable, not is failed in ftall.
3124 2006-06-03  Eli Zaretskii  <eliz@gnu.org>
3126         * makefile.w32-in (ALL): Add sorted-doc and digest-doc.
3127         ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe)
3128         ($(BLD)/test-distrib.exe): New targets.
3129         (sorted-doc, digest-doc, test-distrib): New targets.
3130         (install): Install sorted-doc.exe and digest-doc.exe.
3131         ($(BLD)/sorted-doc.$(O)): Update dependencies.
3133         * digest-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
3134         (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
3135         terminal device.
3137         * sorted-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
3138         [WINDOWSNT] <top level>: Don't redeclare malloc.
3139         (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
3140         terminal device.
3141         (main): Initialize bp, to avoid compiler warnings.
3143         * makefile.w32-in: Delete traces of leditcfns.c.
3145         * leditcfns.c: Remove file.
3147 2006-05-23  Francesco Potortì  <pot@gnu.org>
3149         * pop.c (pop_open, socket_connection, KPOP_SERVICE):
3150         Add comments explaining why the "kpop" service is never used.
3152 2006-05-13  Eli Zaretskii  <eliz@gnu.org>
3154         * makefile.w32-in (lisp1): Add fringe.elc.
3156 2006-05-02  Francesco Potortì  <pot@gnu.org>
3158         * etags.c (Perl_functions): Free space allocated for var package.
3159         (Erlang_functions): Possibly free space allocated for var last.
3160         (Prolog_functions): Possibly free space allocated for var last.
3162 2006-04-29  Dan Nicolaescu  <dann@ics.uci.edu>
3164         * sorted-doc.c (main): Initialize docs to NULL.
3166         * yow.c (yow): Free buf.
3168         * etags.c: Delete c-indentation-style local variable.
3170 2006-04-29  Richard Stallman  <rms@gnu.org>
3172         * movemail.c (main): Check for negative value from `read'.
3174         * fakemail.c (read_header): Give fatal error if input has no header.
3176 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
3178         * b2m.c (main): Don't include <limits.h>.
3179         (TM_YEAR_BASE): New macro.
3180         (TM_YEAR_IN_ASCTIME_RANGE): Don't define if already defined, so
3181         that s/ files can override this.  Use the more-conservative range
3182         1000-9999.
3183         (main): Check for asctime returning NULL.
3184         * fakemail.c: Likewise.
3186 2006-03-27  Paul Eggert  <eggert@cs.ucla.edu>
3188         * b2m.c: Include <limits.h>.
3189         (TM_YEAR_IN_ASCTIME_RANGE): New macro.
3190         (main): Check for out-of-range time stamps.
3191         * fakemail.c: Likewise.
3193 2006-03-18  Andre Spiegel  <spiegel@gnu.org>
3195         * vcdiff: Use "echo" as a default for $echo, otherwise we'll
3196         execute $DIFF twice, and once with the wrong options.
3198 2006-02-23  Claudio Fontana  <claudio@gnu.org>
3200         * Makefile.in (install, uninstall): Add DESTDIR variable to
3201         support staged installations.
3203 2005-12-30  Eli Zaretskii  <eliz@gnu.org>
3205         * makefile.w32-in (MOUSE_SUPPORT): Add tooltip.elc.
3206         (lisp1): Add rfn-eshadow.elc, international/utf-16.elc, image.elc,
3207         international/fontset.elc, dnd.elc, mwheel.elc, and tool-bar.elc.
3208         Rearrange the list to be similar to $(shortlisp) in
3209         src/Makefile.in.
3210         (lisp2): Add language/kannada.el, emacs-lisp/syntax.elc,
3211         emacs-lisp/timer.elc, jka-cmpr-hook.elc, font-lock.elc,
3212         jit-lock.elc.  Rearrange the list to be similar to $(shortlisp) in
3213         src/Makefile.in.
3215 2005-12-22  Richard M. Stallman  <rms@gnu.org>
3217         * Makefile.in (update-game-score.o): Delete spurious final `\'.
3219 2005-11-18  Hideki IWAMOTO  <h-iwamoto@kit.hi-ho.ne.jp>  (tiny change)
3221         * etags.c (main): Cxref mode writes to stdout: do not close tagf,
3222         which was never opened.
3224 2005-10-20  Olli Savia  <ops@iki.fi>  (tiny change)
3226         * etags.c: Undef STDIN if defined.  (LynxOS defines it in system
3227         header files.)
3229 2005-09-27  Francesco Potortì  <pot@gnu.org>
3231         * etags.c: Preliminary Forth support.
3232         (prolog_pr): Cast strlen to int before comparison.
3233         (LOOKING_AT, LOOKING_AT_NOCASE): Let the preprocessor check that
3234         the second argument is indeed a literal string.
3235         (main): In append mode, sort the tags file after writing it.
3237 2005-09-27  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
3239         * etags.c (longopts, print_help, main): The -a (--append) option
3240         can be used in ctags also; for one, the Linux make file uses it.
3242 2005-09-20  Chong Yidong  <cyd@stupidchicken.com>
3244         * ebrowse.c (add_sym): Compare namespace names instead of
3245         namespace objects.  This prevents the parser from incorrectly
3246         treating classes whose superclass is in another namespace.
3248 2005-09-15  Richard M. Stallman  <rms@gnu.org>
3250         * Makefile.in (update-game-score.o): New target.
3251         Compile and link this program separately.
3252         (update-game-score${EXEEXT}): Use GETOPTDEPTS.
3254 2005-09-11  Jason Rumney  <jasonr@gnu.org>
3256         * makefile.w32-in (../src/config.h): Don't overwrite.  Print a
3257         message instead.
3258         (../src/paths.h): Remove.
3260 2005-07-27  Juanma Barranquero  <lekktu@gmail.com>
3262         * .cvsignore: Don't ignore fns-* and fns.el, which are no longer
3263         generated.  Ignore also ctags.c and getopt.h.
3265         * makefile.w32-in (clean): Delete getopt.h.
3266         (getopt.h): New rule.
3268 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
3270         Merge gnulib getopt implementation into Emacs.
3272         * Makefile.in (mostlyclean): Remove getopt.h, getopt.h-t.
3273         (GETOPT_H): New macro, from gnulib.
3274         (getopt.h): New rule, from gnulib.
3275         (GETOPTOBJS): Now autoconfigured.
3276         (GETOPTDEPS): getopt.h is now autoconfigured.
3277         (getopt.o, getopt1.o): Depend on $(GETOPT_H), not ${srcdir}/getopt.h.
3278         (getopt.o): Depend on ${srcdir}/gettext.h.
3279         (movemail.o): Depend on $(GETOPT_H).
3280         * getopt.c, getopt1.c: Sync from gnulib.
3281         * getopt_.h, getopt_int.h, gettext.h: New files, from gnulib.
3282         * getopt.h: Removed (now is getopt_.h).
3284 2005-07-13  Ken Raeburn  <raeburn@gnu.org>
3286         * pop.c: Don't include des.h (or variants thereof); krb.h will do it.
3287         (sendline): Add the \r\n to the line in a temporary buffer, and write
3288         it all at once.
3290 2005-07-04  Lute Kamstra  <lute@gnu.org>
3292         Update FSF's address in GPL notices.
3294 2005-06-13  Eli Zaretskii  <eliz@gnu.org>
3296         * makefile.w32-in ($(DOC)): Fix last change.
3298 2005-06-12  Eli Zaretskii  <eliz@gnu.org>
3300         * makefile.w32-in ($(DOC)): Depend on make-docfile.exe,
3301         temacs.exe, and the preloaded *.elc files.  This avoids
3302         unnecessary dumping and DOC rebuilding.
3304 2005-06-04  Eli Zaretskii  <eliz@gnu.org>
3306         * ntlib.h (fileno): Don't define if already defined.
3308 2005-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
3310         * yow.c (setup_yow): Use EXIT_FAILURE in case no separators found.
3311         (yow): Use EXIT_FAILURE in case of memory error.
3313 2005-05-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3315         * make-docfile.c (DIRECTORY_SEP): New macro.
3316         (IS_DIRECTORY_SEP): Use it.
3318 2005-03-18  Jan Djärv  <jan.h.d@swipnet.se>
3320         * emacsclient.c: Avoid expansion of getcwd when defined as a macro.
3322 2005-03-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3324         * make-docfile.c: Undo previous change.
3326 2005-02-04  Andreas Schwab  <schwab@suse.de>
3328         * movemail.c (fatal): Accept third parameter and pass down to error.
3329         (pfatal_with_name): Pass error string as format parameter instead of
3330         as part of format string.
3331         (pfatal_and_delete): Likewise.
3332         (main): Adjust call to fatal.
3333         (xmalloc): Likewise.
3335 2005-01-29  Richard M. Stallman  <rms@gnu.org>
3337         * movemail.c (popmail): Don't use Errmsg as format string.
3339 2004-12-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3341         * make-docfile.c: Include stdlib.h even if WINDOWSNT is not defined.
3343 2004-12-15  Andreas Schwab  <schwab@suse.de>
3345         * etags.c (main): Fix typo in conversion of LONG_OPTIONS from
3346         preprocessing to compile time constant.
3348 2004-11-17  Kim F. Storm  <storm@cua.dk>
3350         * etags.c: Undo last change.
3352 2004-11-09  Kim F. Storm  <storm@cua.dk>
3354         * make-docfile.c (scan_c_file): Set defvarperbufferflag to
3355         silence compiler.
3357         * hexl.c (main): Init local var c to silence compiler.
3359         * etags.c (main, consider_token, C_entries): Add misc switch
3360         default targets to silence compiler.
3362 2004-11-09  Jan Djärv  <jan.h.d@swipnet.se>
3364         * makefile.w32-in (obj): Add all files (X and Mac) to doc so the
3365         resulting DOC file can be used on Unix/Mac also.
3367 2004-09-13  Francesco Potortì  <pot@gnu.org>
3369         * etags.c (main): When relative file names are given as argument,
3370         make them relative to the current working dir, rather than
3371         relative to the output tags file, if the latter is in /dev.
3373 2004-09-13  Francesco Potortì  <pot@gnu.org>
3375         * etags.c [EXIT_SUCCESS, EXIT_FAILURE]: Define them when no
3376         <stdlib.h> is available.
3377         (enum sym_type): New st_C_attribute value for parsing
3378         gcc's __attribute__.  Deleted st_C_typespec value.
3379         (gperf, in_word_set): Use gperf 3, options changed.  Added the
3380         __attribute__ keyword, removed all the st_C_typespec keywords,
3381         changed attribute for Java to (C_JAVA & !C_PLPL).
3382         (inattribute): New global bool, part of the C state machine.
3383         (cblev): Identifier renamed to bracelev throughout.
3384         (consider_token, C_entries): Numerous changes for making the
3385         parser more robust and adding support for __attribute__.
3387 2004-09-13  David A. Capello  <dacap@users.sourceforge.net>  (tiny change)
3389         * etags.c (Lua_suffixes, Lua_help, lang_names, Lua_functions):
3390         Support the Lua scripting language <http://www.lua.org>.
3392 2004-09-08  Francesco Potortì  <pot@gnu.org>
3394         * etags.c [LONG_OPTIONS]: Make it TRUE (ifdef) or FALSE (ifndef)
3395         for ease of use.
3397 2004-07-17  Richard M. Stallman  <rms@gnu.org>
3399         * emacsclient.c (quote_file_name): Pass COPY thru %s to output it.
3401 2004-06-01  Juanma Barranquero  <lektu@terra.es>
3403         * makefile.w32-in (obj): Add image.c.
3405 2004-05-10  Thien-Thi Nguyen  <ttn@gnu.org>
3407         * test-distrib.c (main): For failing cases, exit with `EXIT_FAILURE'.
3409 2004-05-08  Jason Rumney  <jasonr@gnu.org>
3411         * makefile.w32-in (lisp1, lisp2): Split lisp to avoid long
3412         command-lines.
3414 2004-05-08  Thien-Thi Nguyen  <ttn@gnu.org>
3416         * cvtmail.c: Throughout, replace 0 destined for `exit' arg
3417         with `EXIT_SUCCESS'.  Likewise, replace 1 with `EXIT_FAILURE'.
3418         (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
3420         * ebrowse.c, emacsclient.c, fakemail.c, hexl.c,
3421         * make-docfile.c, movemail.c, profile.c, sorted-doc.c,
3422         * test-distrib.c, update-game-score.c, yow.c: Likewise.
3424 2004-05-08  Thien-Thi Nguyen  <ttn@gnu.org>
3426         * Makefile.in (emacsclient${EXEEXT}): Use makefile var `version'.
3428 2004-05-07  Thien-Thi Nguyen  <ttn@gnu.org>
3430         * b2m.c (GOOD, BAD): Delete macros.  Throughout,
3431         replace w/ `EXIT_SUCCESS' and `EXIT_FAILURE', respectively.
3432         (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
3434         * etags.c: Likewise.
3436 2004-05-03  Jason Rumney  <jasonr@gnu.org>
3438         * makefile.nt: Remove.
3440 2004-04-26  Eli Zaretskii  <eliz@gnu.org>
3442         * make-docfile.c (IS_DIRECTORY_SEP): New macro.
3443         (put_filename): Remove unused variable len.  Use IS_DIRECTORY_SEP
3444         instead of a literal '/'.
3446 2004-04-23  Juanma Barranquero  <lektu@terra.es>
3448         * makefile.w32-in: Add "-*- makefile -*-" mode tag.
3450 2004-04-17  Paul Eggert  <eggert@gnu.org>
3452         * rcs2log (Help): Clarify wording of the usage message.
3453         Problem reported by Alan Mackenzie in
3454         <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-04/msg00188.html>.
3456 2004-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3458         * make-docfile.c (xmalloc): Fix return type.
3459         (put_filename): New fun.
3460         (scan_file): Use it.
3462 2004-03-09  Juanma Barranquero  <lektu@terra.es>
3464         * grep-changelog: Changes to support ChangeLog.10+.
3465         (main): Tidy up usage string.  Fix "Use of uninitialized value"
3466         warning.  Set version to 0.2.  Parse the directory listing to get
3467         any ChangeLog.n file, not just 1..9.
3468         (header_match_p, entry_match_p, print_log, parse_changelog):
3469         Remove Perl prototypes (their purpose is to help the parser, which
3470         isn't needed here, not declare arguments).
3471         (parse_changelog): Make --reverse faster on big batches by not
3472         modifying the entries list.
3474 2004-03-01  Juanma Barranquero  <lektu@terra.es>
3476         * makefile.w32-in (obj): Add fringe.c.
3478 2004-02-14  Paul Eggert  <eggert@twinsun.com>
3480         * rcs2log: Work correctly if CVSROOT specifies :fork: or
3481         :local: methods, or omits the colon between the hostname
3482         and the path.  Allow :/ in repository path, since CVS does.
3483         Fix typo: "pository" should be set from $CVSROOT, not $repository.
3484         This fixes a bug reported by Wolfgang Scherer in
3485         <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-02/msg00085.html>,
3486         along with some related bugs I discovered by inspecting how
3487         CVS itself parses $CVSROOT.
3489 2004-02-04  Jérôme Marant  <jmarant@nerim.net>  (tiny change)
3491         * emacsclient.c (decode_options): Fix handling of alternate editor.
3493 2004-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3495         * emacsclient.c (main): Don't use the hostname in the socket name.
3496         Look for relative socket names in the /tmp dir rather than in cwd.
3498 2004-01-24  Richard M. Stallman  <rms@gnu.org>
3500         * emacsclient.c (main): Restore errno from saved_errno,
3501         so the error message comes from socket_status.
3503 2004-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3505         * emacsclient.c (main): Stop if socket name too long.
3506         Only try su-fallback if the socket name was not explicit.
3507         Check socket name length in su-fallback case as well.
3509 2004-01-08  Andreas Schwab  <schwab@suse.de>
3511         * emacsclient.c (main): Save errno from socket_status.
3513 2004-01-04  Andreas Schwab  <schwab@suse.de>
3515         * emacsclient.c (main): Fix socket name when using another user.
3517 2003-12-27  Paul Eggert  <eggert@twinsun.com>
3519         * rcs2log (rlog_options): Append -rbranchtag if CVS/Tag indicates
3520         a tag, and if the user has not specified an rlog option.
3521         Adapted from a suggestion by Martin Stjernholm in
3522         <http://mail.gnu.org/archive/html/bug-gnu-emacs/2003-07/msg00066.html>.
3523         (Copyright): Update to 2003.
3525 2003-12-24  Thien-Thi Nguyen  <ttn@gnu.org>
3527         * make-docfile.c (main): For return code, no longer special-case VMS.
3528         Instead, use `EXIT_SUCCESS' and `EXIT_FAILURE' from stdlib.h.
3530 2003-09-28  Andreas Büsching  <crunchy@tzi.de>  (tiny change)
3532         * emacsclient.c (quote_file_name): Print the result instead of
3533         returning it.  Fix the return type accordingly.
3534         (main): With --eval, if no file name, read from stdin.
3535         Quote file names.
3537 2003-09-10  Richard M. Stallman  <rms@gnu.org>
3539         * emacsclient.c (main): Use socket_name.
3541 2003-09-10  Andreas Büsching  <crunchy@tzi.de>  (tiny change)
3543         * emacsclient.c (socket_name): New variable.
3544         (longopts, decode_options, print_help_and_exit):
3545         Handle --socket-name argument.
3547 2003-08-25  Takaaki Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
3549         * etags.c (consider_token): Check C++ `operator' only when the
3550         token len is long enough.
3552 2003-08-20  Dave Love  <fx@gnu.org>
3554         * Makefile.in: Remove obsolete references to alloca.
3556 2003-07-29  Ken Brush  <ken@wirex.com>
3558         * emacsclient.c (main)
3559         * etags.c (suggest_asking_for_help)
3560         * movemail.c (main): Fix having macros in a printf statement.
3562 2003-05-31  Juanma Barranquero  <lektu@terra.es>
3564         * makefile.w32-in (lisp): Fix references to byte-run.el,
3565         float-sup.el and map-ynp.el, which are now in emacs-lisp.
3567 2003-05-22  Dave Love  <fx@gnu.org>
3569         * update-game-score.c (difftime) [!HAVE_DIFFTIME]: Define.
3570         (strerror) [!HAVE_STRERROR && !WINDOWSNT]: New.
3572 2003-05-20  Dave Love  <fx@gnu.org>
3574         * movemail.c: Check HAVE_LIBLOCKFILE like HAVE_LIBMAIL.
3576         * Makefile.in [HAVE_LIBLOCKFILE]: Define LIBS_MAIL=-llockfile.
3578 2003-04-27  Oliver Scholz  <alkibiades@gmx.de>
3580         * update-game-score.c (read_scores): Fix corruption of scores on read.
3582 2003-04-12  Stefan Monnier  <monnier@cs.yale.edu>
3584         * emacsclient.c (main): Use new safe location for socket.
3586 2003-03-12  Tom Tromey  <tromey@redhat.com>
3588         * emacsclient.c (print_help_and_exit): Print to stdout.
3589         Exit successfully.  Added some blank lines for readability.
3590         (decode_options): Don't call print_help_and_exit in default case.
3591         Print version information to stdout.
3592         (main): Don't call print_help_and_exit.
3594 2003-02-15  Richard M. Stallman  <rms@gnu.org>
3596         * cvtmail.c: Cast result of malloc and realloc.
3597         Don't include stdlib.h, because config.h does.
3598         (malloc, realloc): Declarations deleted.
3600         * yow.c (yow): Cast result of malloc and realloc.
3601         (malloc, realloc): Declarations deleted.
3603 2003-02-11  Juanma Barranquero  <lektu@terra.es>
3605         * makefile.w32-in (lisp): Add malayalam.el and tamil.el.
3607 2003-02-08  Andreas Schwab  <schwab@suse.de>
3609         * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
3610         instead of the substitution.
3612 2003-02-04  Richard M. Stallman  <rms@gnu.org>
3614         * update-game-score.c (push_score, read_scores): Cast values
3615         of malloc and realloc.
3616         (main, lock_file): Avoid assignment inside if.
3618 2003-01-31  Joe Buehler  <jhpb@draco.hekimian.com>
3620         * Makefile.in: Use @EXEEXT@ for Cygwin.
3622 2003-01-21  Dave Love  <fx@gnu.org>
3624         * etags.c (Cplusplus_help, Cjava_help): Re-phrase and avoid
3625         column-0 `('.
3627         * yow.c: Don't include string.h.
3629 2003-01-20  Richard M. Stallman  <rms@gnu.org>
3631         * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
3632         New targets.
3634 2003-01-06  Kim F. Storm  <storm@cua.dk>
3636         * pop.c (__P): Rename from _P to avoid problems on Cygwin.
3637         All uses changed.
3639 2002-12-18  Andrew Innes  <andrewi@gnu.org>
3641         * makefile.w32-in ($(DOC)): Use -o and -a options to make-docfile,
3642         because GNU make doesn't append when using >> redirection.
3644 2002-12-12  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
3646         * b2m.pl: Make sure every message ends with a blank line, because
3647         some mbox parsers require a blank line before "From " lines.
3649 2002-12-08  Richard M. Stallman  <rms@gnu.org>
3651         * getopt.c: Do include libintl.h if HAVE_LIBINTL_H.
3652         (_): Test only HAVE_LIBINTL_H to decide what to do.
3654 2002-12-05  Richard M. Stallman  <rms@gnu.org>
3656         * getopt.c: Comment out include of libintl.h or gettext.h.
3658 2002-12-04  Richard M. Stallman  <rms@gnu.org>
3660         * Update getopt from gnulib version; changes described below.
3662         * getopt1.c: Conditionally find getopt.h.
3663         [_LIBC] (getopt_long, getopt_long_only): Do libc_hidden_def.
3665         * getopt.c (const): Move outside !HAVE_CONFIG_H conditional.
3666         (libintl.h): Include this if _LIBC.  Otherwise include gettext.h.
3667         (wchar.h): Include, maybe.
3668         (attribute_hidden): Define if not defined.
3669         (__getopt_initialized): Use attribute_hidden.
3670         (__libc_argc, __libc_argv): Rename from original_argc, etc.
3671         (__getopt_nonoption_flags, nonoption_flags_max_len)
3672         (nonoption_flags_len): Conditional on USE_NONOPTION_FLAGS.
3673         (SWAP_FLAGS): New definitions.
3674         (exchange): Test USE_NONOPTION_FLAGS.
3675         (_getopt_initialize): Test USE_NONOPTION_FLAGS.
3676         (_getopt_internal): Error if argc < 1.  New local var print_errors.
3677         Improve test for ambiguous long option.
3678         Add LIBIO support for error message output.
3679         (NONOPTION_P): Test USE_NONOPTION_FLAGS.
3681         * getopt.h: Maybe include ctype.h.
3682         Treat __cplusplus like __STDC__.
3683         (decls): Use __ in arg names.
3685 2002-12-02  Stephen Eglen  <stephen@gnu.org>
3687         * emacsclient.c (main): Tell user how to start server within Emacs
3688         if socket could not be found.
3690 2002-12-02  Richard M. Stallman  <rms@gnu.org>
3692         * emacsclient.c (main): Test HAVE_GETCWD rather than BSD_SYSTEM.
3694 2002-11-19  Ben Key  <bkey1@tampabay.rr.com>
3696         * makefile.w32-in: Fixed a bug that caused the documentation for
3697         the built in function play-sound-internal not to be included in
3698         /etc/DOC.
3700 2002-11-18  Dave Love  <fx@gnu.org>
3702         * update-game-score.c: Include unistd.h, string.h, stdlib.h,
3703         fcntl.h, stdarg.h conditionally.
3704         (_GNU_SOURCE, __attribute__): Don't define.
3705         (optarg, optind, opterr): Declare.
3706         (lose, lose_syserr): Use NO_RETURN.
3707         (get_user_id): Use P_.
3709 2002-11-17  Richard M. Stallman  <rms@gnu.org>
3711         * Makefile.in (${archlibdir}): Ignore errors operating on $(gamedir).
3713 2002-11-14  Dave Love  <fx@gnu.org>
3715         * movemail.c (pop_retr): Declare comment.
3717         * make-docfile.c (read_c_string_or_comment): Declare msgno.
3719         * Makefile.in (YACC): Delete.
3721 2002-10-19  Andreas Schwab  <schwab@suse.de>
3723         * Makefile.in (${archlibdir}): Always create $(gamedir).
3724         (update-game-score): Pass $(gamedir) as HAVE_SHARED_GAME_DIR.
3726 2002-10-04  Juanma Barranquero  <lektu@terra.es>
3728         * makefile.w32-in (lisp): Load devanagari.el, not .elc.
3730 2002-09-30  Markus Rost  <rost@math.ohio-state.edu>
3732         * emacsclient.c (main): Remove reference to SERVER_HOME_DIR
3733         completely.
3735 2002-09-27  Stefan Monnier  <monnier@cs.yale.edu>
3737         * emacsclient.c: Remove SYSV support.
3738         (eval, display): New vars.
3739         (longopts): Add --eval and --display.
3740         (decode_options): Add -e and -d processing.
3741         (print_help_and_exit): Update the usage string.
3742         (main): Add support for --eval and --display.
3743         (main): Always use /tmp and non-qualified hostname.
3745 2002-09-25  Stefan Monnier  <monnier@cs.yale.edu>
3747         * emacsserver.c: Remove.
3749 2002-09-17  Stefan Monnier  <monnier@cs.yale.edu>
3751         * emacsclient.c (quote_file_name): Quote \n.
3752         (main): Print a final \n when needed.
3754 2002-09-03  Francesco Potortì  <pot@gnu.org>
3756         * etags.c (regex_tag_multiline, readline): Never pass pfnote a
3757         string that cannot be freed.
3759 2002-08-30  Francesco Potortì  <pot@gnu.org>
3761         * etags.c (consider_token, C_entries): Switch to C++ parsing when
3762         auto-detection is enabled and the `::' qualifier is met.
3763         (consider_token, C_entries): Several bugs corrected that tagged
3764         some declarations even though --declarations was not used.
3765         (plainc): New macro.
3766         (C_entries): Use it.
3767         (C_entries): Several cosmetic changes.
3768         (C_entries): Invalidate the token is some cases.
3770 2002-08-29  Francesco Potortì  <pot@gnu.org>
3772         * etags.c (C_entries): Correct a problem with const C++ funcs.
3773         (ignoreindent): Rename from noindentypedefs.
3774         (cjava, cplpl): They are now macros instead of local vars.
3776 2002-08-28  Francesco Potortì  <pot@gnu.org>
3778         * etags.c (HTML_labels): Tag ID= also.
3780 2002-08-27  Francesco Potortì  <pot@gnu.org>
3782         * etags.c (Ada_funcs): Do not tag "use type Xxxx;".
3784         * etags.c (HTML_labels): New language HTML.
3785         (etags_strcasecmp): Like BSD's, for compatibility.
3786         (strcaseeq): Make it into a macro.
3788         * etags.c (make_tag): Never generate null length tag names.
3789         (linebuffer_init): Rename from initbuffer.  All callers changed.
3790         (pattern): Structure renamed to `regexp', member regex renamed to
3791         pattern.
3792         (node_st): Member pat renamed to regex.
3793         (pattern); New member force_explicit_name, for future use.
3794         Now always set to true, cannot be reset.
3795         (add_regex, regex_tag_multiline, readline): Use it.
3796         (main): Free some global structures.
3797         (fdesc): New member `written'.
3798         (readline, process_file): Initialize it.
3799         (put_entries): Set it.
3800         (main): Use it to create entries for files without tags.
3801         (total_size_of_entries): Do not count invalid tags.
3803 2002-08-19  Stefan Monnier  <monnier@cs.yale.edu>
3805         * make-docfile.c (scan_keyword_or_put_char, write_c_args): Use `fn'
3806         for the function name in the usage info.
3808 2002-07-31  Colin Walters  <walters@gnu.org>
3810         * update-game-score.c (P_): New macro.  Use it for all prototypes.
3811         (lose): Don't use varargs.
3812         (lose_syserr): New function.
3814         * update-game-score.c: Change all functions to K&R style.
3816 2002-07-30  Andreas Schwab  <schwab@suse.de>
3818         * Makefile.in (localstatedir): New variable.
3820 2002-07-29  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
3822         * b2m.pl: Fix regexp for finding return address fields.
3824 2002-07-15  Stefan Monnier  <monnier@cs.yale.edu>
3826         * make-docfile.c (scan_c_file): Warn about missing `usage' info.
3828 2002-07-05  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
3830         * b2m.pl: Obey the rmail file and use the unpruned header properly.
3832 2002-06-26  Pavel Janík  <Pavel@Janik.cz>
3834         * b2m.pl: New file.
3836 2002-06-21  Francesco Potortì  <pot@gnu.org>
3838         * etags.c (F_getit, Fortran_functions, Ada_getit, Asm_labels)
3839         (Python_functions, PHP_functions, PHP_functions, PHP_functions)
3840         (PHP_functions, PHP_functions, Cobol_paragraphs)
3841         (Makefile_targets, Postscript_functions, Texinfo_nodes)
3842         (prolog_pr, erlang_func, erlang_attribute)
3843         (Perl_functions, Perl_functions, Pascal_functions)
3844         (TeX_commands, get_tag): Use make_tag instead of pfnote.
3845         (get_tag): Prototype changed, all callers changed.
3847 2002-06-20  Francesco Potortì  <pot@gnu.org>
3849         * etags.c: Implement implicit tag names, that is, unnamed tags
3850         whose name is automatically deduced by etags.el.  The advantage is
3851         that there is no explicit tag name in most tags, so the size of
3852         the tags file is reduced, yet find-tag is able to do a match as
3853         accurate as with named tags.  See the comment in make_tag for details.
3854         (make_tag): New function (was the disabled function new_pfnote).
3855         (make_C_tag): Use it.
3857 2002-06-19  Francesco Potortì  <pot@gnu.org>
3859         * etags.c (add_regex): Invalid regexp modifiers are ignored.
3860         (Makefile_targets): Tag variables unless --no-globals.
3861         (LOOP_ON_INPUT_LINES): Serious bug corrected.
3863 2002-06-13  Francesco Potortì  <pot@gnu.org>
3865         * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
3866         (invalidate_nodes): Bug corrected.
3867         (print_help): Better help for regexps.
3869 2002-06-13  Juanma Barranquero  <lektu@terra.es>
3871         * makefile.w32-in (lisp): Add international/ucs-tables.elc and
3872         font-core.elc.
3874 2002-06-12  Francesco Potortì  <pot@gnu.org>
3876         * etags.c: New multi-line regexp and new regexp syntax.
3877         (arg_type): at_icregexp label removed (obsolete).
3878         (pattern): New member multi_line for multi-line regexps.
3879         (filebuf): A global buffer containing the whole file as a string
3880         for multi-line regexp matching.
3881         (need_filebuf): Global flag raised if multi-line regexps used.
3882         (print_help): Document new regexp modifiers, remove references to
3883         obsolete option --ignore-case-regexp.
3884         (main): Do not set regexp syntax and translation table here.
3885         (main): Treat -c option as a backward compatibility hack.
3886         (main, find_entries): Init and free filebuf.
3887         (find_entries): Call regex_tag_multiline after the regular parser.
3888         (scan_separators): Check for unterminated regexp and return NULL.
3889         (analyse_regex, add_regex): Remove the ignore_case argument, which
3890         is now a modifier to the regexp.  All callers changed.
3891         (add_regex): Manage the regexp modifiers.
3892         (regex_tag_multiline): New function.  Reads from filebuf.
3893         (readline_internal): If necessary, copy the whole file into filebuf.
3894         (readline): Skip multi-line regexps, leave them to regex_tag_multiline.
3896 2002-06-11  Francesco Potortì  <pot@gnu.org>
3898         * etags.c (add_regex): Better check for null regexps.
3899         (readline): Check for regex matching null string.
3900         (find_entries): Reorganization.
3902 2002-06-07  Francesco Potortì  <pot@gnu.org>
3904         * etags.c (scan_separators): Support all character escape
3905         sequences supported by Gcc.
3906         (find_entries): Rewind unconditionally.
3907         (find_entries): Do not call language functions directly, now calls
3908         itself.
3909         (find_entries): Do general initializations here.
3910         (CNL_SAVE_DEFINEDEF, C_entries, LOOP_ON_INPUT_LINES, F_getit)
3911         (Ada_getit, Pascal_functions, Pascal_functions)
3912         (prolog_skip_comment): Do not do them here.
3913         (readline_internal): Increment lineno here.
3914         (readline): Conditionally undo readline_internal increment.
3915         (readline): Do not return a value.
3917 2002-06-06  Francesco Potortì  <pot@gnu.org>
3919         * etags.c: New option --parse-stdin=FILE.
3920         (enum arg_type): New label at_stdin.
3921         (STDIN): New constant.
3922         (parsing_stdin): New flag.
3923         (longopts): New option --parse-stdin=NAME.
3924         (print_help): Document it.
3925         (main): Handle it.
3926         (process_file): Split into process_file and process_file_name.
3927         (process_file_name): New function.
3929         * etags.c: Improvements and bug squashing in TeX handling.
3930         (TeX_commands): Skip comments.
3931         (TEX_defenv): Now contains more constructs.
3932         (TEX_cmt): Make it a static char and move it before TeX_commands.
3933         (TeX_commands): Shorten the tag to the brace after the name.
3934         (TeX_commands): Names now include the initial backslash.
3935         (TeX_commands): Names do not include numeric args #n.
3936         (TeX_commands): Correct line char number in tags.
3937         (TEX_tabent, TEX_token): Delete.
3938         (TeX_commands, TEX_decode_env): Streamlined.
3940 2002-06-05  Francesco Potortì  <pot@gnu.org>
3942         * etags.c (main): Avoid a buffer overrun with sprintf.
3944 2002-05-30  Richard M. Stallman  <rms@gnu.org>
3946         * Makefile.in (LIBS_MAIL): Rename from LIB_MAIL.
3947         (LIBS_MOVE): Rename from MOVE_LIBS.
3949 2002-05-26  Paul Eggert  <eggert@twinsun.com>
3951         Reinstate the following change from 2002-03-22, which was
3952         inadvertently lost on 2002-04-13.
3954         * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
3955         `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
3956         the latter usage.
3958 2002-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
3960         * pop.c (socket_connection): Move the code to resolve the POP
3961         host right before trying to connect with it.
3963 2002-05-05  Eli Zaretskii  <eliz@is.elta.co.il>
3965         * tcp.c: Delete file since the TCP emulation is no longer in use on any
3966         platform.
3968 2002-04-28  Colin Walters  <walters@verbum.org>
3970         * Makefile.in (${archlibdir}): Don't conditionalize on
3971         HAVE_SHARED_GAME_DIR.  Instead, test at installation time whether
3972         or not we have access to the specified game user.
3974         * update-game-score.c (SCORE_FILE_PREFIX): Delete.
3975         (main): New argument -d, for specifying directory.
3976         (usage): Document.
3977         (get_user_id): Compute.
3978         (get_home_dir): Delete.
3979         (get_prefix): New function, taken from main.
3980         (main): Check whether or not we are running setuid.  Move prefix
3981         computation to get_prefix.  Don't call getpwent; we don't need to
3982         any more.  Instead, move it to get_user_id().
3984 2002-04-24  Pavel Janík  <Pavel@Janik.cz>
3986         * ebrowse.c (skip_initializer): Return void.
3988 2002-04-23  Colin Walters  <walters@verbum.org>
3990         * update-game-score.c (read_score) [HAVE_GETDELIM]: Trim trailing
3991         space.
3993 2002-04-22  Francesco Potortì  <pot@gnu.org>
3995         * etags.c (last_node): Make it a global variable.
3996         (process_file): Print the tags from the nodes as soon as
3997         possible, and delete the nodes.  This brings down the memory
3998         occupancy as etags to almost the same level as when the #line
3999         directives were not parsed.
4000         (free_fdesc): New function.
4001         (find_entries): Use it.
4002         (invalidate_nodes): In etags mode, do not just mark the nodes as
4003         invalid, do delete them.
4005 2002-04-21  Gerd Moellmann  <gerd@gnu.org>
4007         * ebrowse.c (add_declarator): Test *CLS instead of CLS.
4009 2002-04-16  Eli Zaretskii  <eliz@is.elta.co.il>
4011         * update-game-score.c: Move config.h before the other headers, to
4012         avoid compiler warnings.
4014 2002-04-16  Francesco Potortì  <pot@gnu.org>
4016         * etags.c (find_entries): Bug fix in list management.
4018 2002-04-15  Francesco Potortì  <pot@gnu.org>
4020         * etags.c (get_language_from_filename): Add one argument.
4021         (strcaseeq): New function.
4022         (get_language_from_filename): Use it to do a case insensitive
4023         comparison if called with appropriate args.
4024         (find_entries): Try with case insensitive match.
4025         (process_file): Bug fixed.
4027 2002-04-13  Francesco Potortì  <pot@gnu.org>
4029         * etags.c (find_entries): Delete tags previously obtained from
4030         file xxx.c's #line directives when parsing file xxx.y.  This is
4031         generally done for automatically generated files containing
4032         #line directives.  This handles the case when xxx.y is tagged
4033         before xxx.c, and the entries of xxx.c pointing to xxx.y should
4034         be discarded.
4035         (language): Add the metasource member.  Initializers changed.
4036         (invalidate_nodes): New function.
4037         (readline): Discard lines after having found a #line
4038         directive pointing to an already tagged file.  This handles the
4039         case when xxx.y is tagged before xxx.c, and the entries of
4040         xxx.c pointing to xxx.y should be discarded.
4041         (fdesc): New structure for keeping track of input files.
4042         (fdesc): Remove `file' member (a string) and use instead a pointer
4043         to a file description structure.
4044         (curfile, curfiledir, curtagfname, curlang, nocharno)
4045         (forced_lang): Global variables removed in favor of fdhead and
4046         curfdp, pointers to file description structures.
4047         (longopts, main, print_help): Use the CTAGS conditional to include
4048         or exclude options that work on etags or ctags only.
4049         (process_file, find_entries, pfnote, add_node, put_entries)
4050         (readline): Use fdhead and curfdp.
4051         (process_file, find_entries): Do not take an arg string, all
4052         callers changed.
4054         * etags.c (longopts, print_help, main): Test CTAGS to disallow
4055         options that are not right for either etags or ctags.
4057         * etags.c (number_len, total_size_of_entries): Define them also
4058         in CTAGS mode, because gcc does not compile all refs away.
4060 2002-04-14  Colin Walters  <walters@debian.org>
4062         * update-game-score.c (lock_file): If the lock file is older than
4063         an hour, delete it.  Reset attempts to zero if we have to break
4064         the lock.
4066 2002-04-14  Andreas Schwab  <schwab@suse.de>
4068         * update-game-score.c (read_score): Fix type of second parameter
4069         of getdelim to be of type size_t instead of int.  Use 0 instead of
4070         ESUCCES.
4072 2002-04-10  Colin Walters  <walters@verbum.org>
4074         * update-game-score.c (toplevel): Include stdarg.h.
4075         (MAX_DATA_LEN, MAX_SCORES): New.
4076         (SCORE_FILE_PREFIX): If HAVE_SHARED_GAME_DIR is not defined,
4077         default to ~/.emacs.d/games.
4078         (get_user_id): Don't zero uid in the case where we can't get the
4079         username.
4080         (lose): New function.
4081         (main): Actually use `max', and default it to MAX_SCORES.
4082         Correctly handle new default for SCORE_FILE_PREFIX.  Use `lose'
4083         function.
4084         (read_score): Handle the case of reading unamelen characters, then
4085         finishing.  Use mktemp if mkstemp isn't available.
4086         (lock_file, unlock_file): Delete unused versions.
4087         (lock_file): Always sleep, even if we unlinked the lock file.
4089         * Makefile.in (gamedir, gameuser): New variables.
4090         (toplevel, UTILITIES): Add update-game-score.
4091         (${archlibdir}): Handle HAVE_SHARED_GAME_DIR.
4093 2002-04-07  Colin Walters  <walters@verbum.org>
4095         * update-game-score.c (SCORE_FILE_PREFIX): Don't hardcode.
4096         (get_user_id): Take struct passwd as an argument.
4097         (get_home_dir): New function.
4098         (main): Read in user information here.  Discover home directory if
4099         necessary.
4100         (read_score): Trim newline only in `getline' case.
4102 2002-04-05  Colin Walters  <walters@debian.org>
4104         * update-game-score.c (toplevel): Include pwd.h.
4105         (struct score_entry): Add username field.
4106         (push_score): Use it.
4107         (get_user_id): New function.
4108         (main): Don't malloc excessively.
4109         (main): Use username field.
4110         (read_score): Read it.
4111         (push_score): Handle it.
4112         (write_scores): Write it.
4113         (read_score): Handle arbitrary length data.
4115 2002-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
4117         * ebrowse.c (add_declarator): Fix the first call to add_member_defn.
4119 2002-03-29  Gerd Moellmann  <gerd@gnu.org>
4121         * ebrowse.c (add_declarator, skip_initializer): New functions.
4122         (declaration): Use them.
4124 2002-03-28  Jason Rumney  <jasonr@gnu.org>
4126         * makefile.w32-in (lisp): Move backquote.elc into emacs-lisp.
4128 2002-03-27  Colin Walters  <walters@debian.org>
4130         * update-game-score.c: New file.
4132 2002-03-22  Paul Eggert  <eggert@twinsun.com>
4134         * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
4135         `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
4136         the latter usage.
4138 2002-03-12  Francesco Potortì  <pot@gnu.org>
4140         * etags.c (Python_functions): Skip spaces at beginning of lines.
4141         (Python_functions, PHP_functions): Name tags, for ctags' sake.
4142         (TeX_commands): Name tags.  Correction of old disabled code.
4144         * etags.c (curfiledir, curtagfname): New global variables.
4145         (process_file): Initialize them.
4146         (readline): Canonicalize the name found in #line directive.
4148 2002-03-06  Jason Rumney  <jasonr@gnu.org>
4150         * etags.c (put_entries): Use #if !CTAGS, to fix link error on
4151         compilers that don't optimize out dead code.
4153 2002-03-05  Francesco Potortì  <pot@gnu.org>
4155         * etags.c: Honor #line directives.
4156         (no_line_directive): New global var; set it for old behavior.
4157         (main): Remove some #ifdef in the getopt switch.
4158         (add_node, put_entries): Code added to merge different chunks of
4159         nodes referring to the same file.  Currently the tags are just
4160         appended, without any check for duplicates.
4161         (Perl_functions): Do not special case ctags.
4162         (readline): Identify #line directives and do the right thing.
4163         (nocharno, invalidcharno): New global vars.
4164         (process_file): Reset nocharno.
4165         (readline): Set nocharno.
4166         (pfnote): Read nocharno and maybe put invalidcharno in node.
4167         (total_size_of_entries, put_entries): Use invalidcharno.
4169         * etags.c: Keep the whole tag table in memory, even in etags mode.
4170         (main): Call put_entries here even in CTAGS mode.
4171         (main, process_file): Check the return values of fclose and pclose.
4172         (process_file): Do not call put_entries after parsing each file.
4173         (process_file): Canonicalize file names even for ctags.
4174         (process_file): Set curfile here...
4175         (find_entries): ... not here any more.
4176         (add_node): In etags mode, build a linked list of entries (on
4177         right pointer) for each file, and link the first entry of each
4178         file on left nodes.
4179         (put_entries): Print here the name of the file.
4180         (put_entries): Print the entries starting from the first file.
4181         (number_len, total_size_of_entries): Define these only in etags
4182         mode, make the second work only on the right nodes.
4184         * etags.c: Make all global variables static.
4186 2002-02-25  Juanma Barranquero  <lektu@terra.es>
4188         * makefile.w32-in (lisp): Add missing backslash.
4190 2002-02-24  Jason Rumney  <jasonr@gnu.org>
4192         * makefile.w32-in (WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to
4193         using .elc files.
4194         (lisp): Sync with list in src/Makefile.in.
4195         (VMS_SUPPORT, MSDOS_SUPPORT): Define, so DOC files can be shared.
4197 2002-02-10  Paul Eggert  <eggert@twinsun.com>
4199         * rcs-checkin: Use `sort -k 2', not `sort +1', as POSIX 1003.1-2001
4200         disallows the old syntax.
4202 2002-02-03  Paul Eggert  <eggert@twinsun.com>
4204         * rcs2log (Copyright): Update to 2002.
4205         (AWK, TMPDIR): Work around portability problem in broken shells that
4206         don't understand `: ${VAR=val}'.
4207         (SORT_K_OPTIONS): New var, for hosts that conform to POSIX 1003.1-2001.
4208         Prefer the new -k option to the traditional +M -N option.
4210 2002-01-01  Pavel Janík  <Pavel@Janik.cz>
4212         * b2m.c (main): Parenthesize assignment when used as truth value
4213         to prevent gcc warnings.
4215         * fakemail.c: Include <config.h>.
4217 2001-12-29  Pavel Janík  <Pavel@Janik.cz>
4219         * cvtmail.c, emacsclient.c, emacsserver.c, pop.c, sorted-doc.c,
4220         * yow.c: Include <config.h>.
4222 2001-12-21  Francesco Potortì  <pot@gnu.org>
4224         * etags.c (Perl_functions): Tag packages and use them in sub tags.
4225         (get_tag): Return a pointer to the tag that is found.
4227         * etags.c (LOOKING_AT): Use !intoken instead of iswhite.
4228         (F_takeprec): Rename from takeprec.  All callers changed.
4229         (F_getit): Rename from getit.  All callers changed.
4230         (nocase_tail): Rename from tail.  All callers changed.
4231         (Ada_getit): Rename from adagetit.  All callers changed.
4232         (L_getit): Simplify by using get_tag.
4233         (Perl_functions, Postscript_functions, erlang_attribute): Use the
4234         modified LOOKING_AT.
4235         (notinname): Remove '[' and added ')' to the recognized chars.
4236         (LOOKING_AT, get_tag, PHP_functions): Use notinname.
4237         (Ada_getit, Ada_funcs, Python_functions, Scheme_functions):
4238         Clarified, using strneq or notinname.
4239         (L_isdef, L_isquote): Remove.
4240         (Lisp_functions, L_getit): Clarified.
4242         * etags.c (P_): Rename to __P for consistency with config.h.
4243         [HAVE_CONFIG_H]: Let config.h deal with __P.
4244         [__STDC__] [!HAVE_CONFIG_H]: Define PTR as in config.h.
4245         [!__STDC__] [!HAVE_CONFIG_H]: Do not undefine static, because
4246         gperf code needs it.
4247         [HAVE_CONFIG_H] [!PTR]: Define PTR (for use with XEmacs).
4248         [HAVE_CONFIG_H] [!__P]: Define __P (for use with XEmacs).
4249         (xmalloc, xrealloc): Use PTR instead of long *.
4250         (bool): Make it a define, not a typedef, for C++ compilers.
4251         (pattern): Members renamed to avoid name clash in some C++ compilers.
4252         (get_language_from_langname): Use const argument.
4254 2001-12-22  Pavel Janík  <Pavel@Janik.cz>
4256         * makefile.nt, makefile.w32-in: Remove mocklisp files.
4258 2001-12-19  Pavel Janík  <Pavel@Janik.cz>
4260         * emacsserver.c: Conditionally include config.h.
4262         * fakemail.c: Likewise.
4264         * emacsclient.c: Include "config.h", not <../src/config.h>.
4265         (main): Parenthesize assignment when used as truth value to
4266         prevent gcc warnings.
4268         * ebrowse.c: Include stdlib.h and string.h conditionally.
4270 2001-12-18  Eli Zaretskii  <eliz@is.elta.co.il>
4272         * yow.c (main): Use time_t, not long, to avoid a compiler warning.
4274 2001-12-18  Pavel Janík  <Pavel@Janik.cz>
4276         * test-distrib.c: Fix previous change.
4278 2001-12-18  Dave Love  <fx@gnu.org>
4280         * test-distrib.c: Conditionally include fcntl.h.
4282         * fakemail.c: Include "config.h", not <../src/config.h>.
4283         (_XOPEN_SOURCE): Define as 500.
4285         * emacsserver.c: Include "config.h", not <../src/config.h>.
4287         * cvtmail.c: Include config.h, stdlib.h.
4288         (xmalloc, xrealloc, skip_to_lf sysfail): Prototype.
4290         * yow.c: Conditionally include various headers.  Use "epaths.h",
4291         not <../src/epaths.h>.
4292         (malloc, realloc) [!HAVE_STDLIB_H]: Prototype.
4294 2001-12-12  Francesco Potortì  <pot@gnu.org>
4296         * etags.c (PHP_functions): New function for parsing PHP.
4297         (LOOKING_AT): New macro.
4298         (Perl_functions, Python_functions, PHP_functions)
4299         (Scheme_functions, Texinfo_nodes): Use it.
4300         (Perl_functions): Use strneq.
4301         (prolog_pred): Rename to prolog_pr.
4302         (prolog_pr): Recognize Prolog rules in addition to predicates.
4303         [ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent
4304         unmodified compile, as Cygwin's regex.h is incompatible with us.
4305         [!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string.
4307 2001-12-11  Richard M. Stallman  <rms@gnu.org>
4309         * Makefile.in (clean): Don't delete ../etc/DOC*.
4311 2001-12-11  Pavel Janík  <Pavel@Janik.cz>
4313         * COPYING: Moved back.
4315 2001-11-30  Andrew Innes  <andrewi@gnu.org>
4317         * makefile.w32-in (FACE_SUPPORT, MOUSE_SUPPORT, FLOAT_SUPPORT)
4318         (WINNT_SUPPORT, lisp): Reference .el files instead of .elc files,
4319         to simplify bootstrapping.
4320         ($(DOC)): Change dependency to just `make-docfile'.
4322 2001-11-29  Pavel Janík  <Pavel@Janik.cz>
4324         * COPYING: Removed.
4326 2001-11-28  Paul Eggert  <eggert@twinsun.com>
4328         * rcs2log (Copyright): Add '(C)' as per coding guidelines.
4330         The following changes are derived from suggestions by Bob Chapman
4331         <rechapman@compuserve.com>.
4333         * rcs2log (printlogline): Also allow tab and newline to separate
4334         '(function):' from the rest of a comment.
4335         (reformat the sorted log entries): Require date and author to
4336         match the clumpname.
4338 2001-11-16  Gerd Moellmann  <gerd@gnu.org>
4340         * ebrowse.c (matching_regexp): Escape '\\'.
4342 2001-11-15  Pavel Janík  <Pavel@Janik.cz>
4344         * Makefile.in: Add support for --program-prefix, --program-suffix
4345         and --program-transform-name options.
4347 2001-11-03  Richard M. Stallman  <rms@gnu.org>
4349         * cvtmail.c (xrealloc): Always pass two args to `fatal'.
4351         * movemail.c (popmail): Always pass two args to `error'.
4353 2001-10-24  Ken Raeburn  <raeburn@gnu.org>
4355         * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
4356         -lhesiod and maybe -lresolv.
4357         (CRYPTOLIB) [HAVE_LIBK5CRYPTO]: Use -lk5crypto for Kerberos
4358         support if it's available.
4360 2001-10-21  Miles Bader  <miles@gnu.org>
4362         * make-docfile.c (struct rcsoc_state): New type.
4363         (read_c_string_or_comment): Add SAW_USAGE
4364         parameter, and implement scanning for a `usage:' keyword.
4365         Use a variable of type `rcsoc_state' to hold most of our state.
4366         (put_char): Add STATE parameter, and remove all other parameters
4367         except CH.  Use STATE to get access to all needed state.
4368         (scan_keyword_or_put_char): New function.
4369         (scan_c_file): Pass SAW_USAGE argument to read_c_string_or_comment.
4370         Don't output a usage-string if there was one in the doc-string.
4372 2001-10-20  Gerd Moellmann  <gerd@gnu.org>
4374         * (Version 21.1 released.)
4376 2001-10-19  Pavel Janík  <Pavel@Janik.cz>
4378         * b2m.c: Properly spell the name of Emacs.
4380 2001-10-17  Miles Bader  <miles@gnu.org>
4382         * make-docfile.c (put_char): New function.
4383         (read_c_string_or_comment): Strip trailing spaces and newlines.
4385 2001-10-16  Miles Bader  <miles@gnu.org>
4387         * make-docfile.c (scan_c_file): Handle `new style' doc strings in
4388         comments [with `doc:' keyword prefix].
4390 2001-10-15  Gerd Moellmann  <gerd@gnu.org>
4392         * make-docfile.c (read_c_string_or_comment): Don't drop a '*'
4393         in a C doc comment.
4395 2001-10-13  Gerd Moellmann  <gerd@gnu.org>
4397         * make-docfile.c (read_c_string_or_comment): Rename from
4398         read_c_string.  Add parameter COMMENT.  Read C-style comments.
4399         (scan_c_file): Handle doc strings in C comments.
4401 2001-10-12  Andrew Innes  <andrewi@gnu.org>
4403         * makefile.nt (ALL): Do not include fakemail.
4405         * makefile.w32-in (install): Do not copy fakemail.
4407 2001-10-10  Jason Rumney  <jasonr@gnu.org>
4409         * makefile.w32-in (ALL): Do not include fakemail.
4411         * makefile.nt (install): Ditto.
4413 2001-10-09  Gerd Moellmann  <gerd@gnu.org>
4415         * emacsserver.c (main): Cast geteuid in sprintf to int.
4417         * emacsclient.c (main): Cast isdigit argument to unsigned char.
4419 2001-10-07  Pavel Janík  <Pavel@Janik.cz>
4421         * profile.c: Include config.h, not ../src/config.h.
4422         Include systime.h, not ../src/systime.h.
4424 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
4426         * Branch for 21.1.
4428 2001-10-01  Alexander Zhuckov  <zuav@int.spb.ru>
4430         * ebrowse.c (struct alias): Add two new struct members: NAMESP and
4431         ALIASEE to help work with namespace aliases.
4432         (struct sym): Remove struct member NAMESP_ALIASES.
4433         (namespace_alias_table): New variable.
4434         (make_namespace): Add parameter CONTEXT.
4435         (check_namespace): New function.
4436         (find_namespace): Add parameter CONTEXT.
4437         (check_namespace_alias): New function.
4438         (register_namespace_alias): Change type of parameter OLD_NAME.
4439         Search for already defined alias in NAMESPACE_ALIAS_TABLE.
4440         (check_namespace): New function.
4441         (enter_namespace): Call find_namespace with CONTEXT parameter.
4442         (match_qualified_namespace_alias): New function.
4443         (parse_qualified_ident_or_type): Fix typo in comment.
4444         While parsing qualified ident or type update namespace context and
4445         restore it on exit.
4446         (parse_qualified_param_ident_or_type): Fix typo in comment.
4447         (globals): Change handling of namespace aliases.
4448         (version): Add year 2001.
4450 2001-09-15  Eli Zaretskii  <eliz@is.elta.co.il>
4452         * etags.c (analyse_regex): If regex_arg is NULL, return
4453         immediately after a call to free_patterns.
4455 2001-09-05  Paul Eggert  <eggert@twinsun.com>
4457         * rcs2log (Help, mainline code): Add new option -L FILE.
4458         (Copyright): Update year.
4459         (LANG, LANGUAGE, LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES)
4460         (LC_NUMERIC, LC_TIME): New shell vars, to make sure we live in the
4461         C locale.
4462         (mainline code): Handle nonstandard -u option differently, by
4463         transforming it to standard form.  Check for "Working file: ", not
4464         "Working file:".  Allow file names with spaces.
4465         (SOH, rlogfile): New shell vars.
4466         (rlogout): Remove.  Its old functionality is mostly migrated to
4467         rlogfile.
4469         Append ';;' to the last arm of every case statement, for
4470         portability to ancient broken BSD shells.
4472         (logins): Fix bug; was not being computed at all, lowering performance.
4473         (pository): New var.  This fixes some bugs where repositories are
4474         remote, or have trailing slashes.
4475         (authors): $llogout is never an empty shell var, so don't worry
4476         about that possibility.
4477         (printlogline, mainline code): Fix bug with SOH's being put into
4478         the output.
4480 2001-09-01  Eli Zaretskii  <eliz@is.elta.co.il>
4482         * ebrowse.c (SEEK_END): #define if not defined by system headers.
4483         Suggested by Dave Love <d.love@dl.ac.uk>.
4485 2001-08-29  Eli Zaretskii  <eliz@is.elta.co.il>
4487         * makefile.nt (lisp): Synchronize with src/Makefile.in.
4488         * makefile.w32-in (lisp): Ditto.
4490 2001-07-25  Juanma Barranquero  <lektu@terra.es>
4492         * grep-changelog (parse_changelog): Remove unused local variable.
4494         * grep-changelog (main): Add new option --reverse.
4495         (print_log): Use it.
4496         (parse_changelog): Use it.
4498 2001-07-20  Gerd Moellmann  <gerd@gnu.org>
4500         * grep-changelog: Remove RCS Id keyword.
4502 2001-07-20  Juanma Barranquero  <lektu@terra.es>
4504         * grep-changelog (parse_changelog): Add tests for defined values
4505         to quiet warning from Perl 5.005 or above.
4506         (entry_match_p, header_match_p): Fix handling of null or empty
4507         argument to prevent duplicate headers.
4509         * grep-changelog (main, parse_changelog): Make "use strict"-clean.
4511 2001-07-17  Jan Nieuwenhuizen  <janneke@gnu.org>
4513         * emacsclient.c (print_help_and_exit): Fix help message for
4514         +LINE:COLUMN option.
4516 2000-07-17  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
4518         * emacsclient.c (main): Add support for +LINE:COLUMN command line
4519         argument.
4521 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
4523         * ebrowse.c (main): Check that the output file exists and
4524         is non-empty if invoked with `--append'.
4526 2001-05-14  Francesco Potortì  <pot@gnu.org>
4528         * etags.c (add_regex): Reset the whole newly allocated pattern
4529         buffer instead of the individual members.  It's safer and works
4530         with XEmacs.
4532         * etags.1: Markups corrected.
4534 2001-05-08  Gerd Moellmann  <gerd@gnu.org>
4536         * ebrowse.c (enter_namespace): Fix reallocation of namespace_stack.
4538 2001-05-03  Gerd Moellmann  <gerd@gnu.org>
4540         * ebrowse.c (globals): Fix handling of namespace aliases.
4542 2001-04-27  Eli Zaretskii  <eliz@is.elta.co.il>
4544         * etags.c (print_help): Enclose the regexp in the help text
4545         example in quotes.
4547 2001-04-05  Dave Love  <fx@gnu.org>
4549         * emacsclient.c (fail): Don't return a value.
4550         (main): Cast uid values for sprintf.
4552 2001-04-03  Gerd Moellmann  <gerd@gnu.org>
4554         * emacsclient.c (fail, main): Don't use implicit int return type.
4556         * b2m.c (main): Always return a value.
4558 2001-03-02  Gerd Moellmann  <gerd@gnu.org>
4560         * ebrowse.c (parse_qualified_param_ident_or_type): Return a
4561         freshly allocated object in *LAST_ID.
4562         (read_line): Accept \r\n line endings.
4564 2001-02-24  Andrew Innes  <andrewi@gnu.org>
4566         * makefile.w32-in: Fix copyright notice.
4568 2001-02-23  Francesco Potortì  <pot@gnu.org>
4570         * etags.c (enum sym_type): New label st_C_template.
4571         (gperf input): Use it for switching to C++ from C.
4572         (consider_token): Do it.
4573         (C_entries): Initialize typdefcblev to quiet compilers.
4574         [!HAVE_CONFIG_H] [!__STDC__]: #define static as nothing.
4576 2001-02-22  Andrew Innes  <andrewi@gnu.org>
4578         * makefile.nt ($(BLD)\movemail.obj): Remove reference to
4579         VMS header files.
4580         ($(BLD)\profile.obj): Ditto.
4582         * makefile.w32-in ($(BLD)/movemail.$(O)): Remove reference to
4583         VMS header files.
4584         ($(BLD)/profile.$(O)): Ditto.
4586 2001-02-05  Andrew Innes  <andrewi@gnu.org>
4588         * makefile.w32-in ($(DOC)): Use $(THISDIR) instead of . in
4589         invocation of make-docfile, to work with Windows 2000.
4591 2001-01-31  Dave Love  <fx@gnu.org>
4593         * etags.c (in_word_set): Use `static' in definition (for pcc).
4595 2001-01-31  Francesco Potortì  <pot@gnu.org>
4597         * etags.c [NDEBUG]: #undef assert and #define it as ((void)0), for
4598         the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
4599         (C_entries): Tag token renamed to still_in_token because sunos4
4600         pcc wants to expand it as the token() macro even though it has no
4601         arguments.
4603 2001-01-30  Andrew Innes  <andrewi@gnu.org>
4605         * etags.c (assert) [__MINGW32__]: Redefine assert to work around a
4606         bug in the Mingw32 assert.h header file.
4608 2001-01-30  Francesco Potortì  <pot@gnu.org>
4610         * etags.c [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
4611         #define it for the sake of XEmacs.
4612         [WINDOWSNT]: #undef HAVE_NTGUI even if built without
4613         HAVE_CONFIG_H.  This change only affects a standalone etags.
4614         [WINDOWSNT]: #undef DOS_NT and #define it even if built with
4615         HAVE_CONFIG_H.  This change does nothing in Emacs, as DOS_NT is
4616         always defined when HAVE_CONFIG_H and WINDOWS are both defined.
4617         [!HAVE_UNISTD_H]: Use defined(WINDOWSNT) instead of the bare
4618         WINDOWSNT, as this is the correct way to use it.
4620 2001-01-28  Francesco Potortì  <pot@gnu.org>
4622         * etags.c: Be capable to parse nested struct-like structures.
4623         (structdef, structtag): Struct state machine revisited.
4624         (struct tok): Revisited.
4625         (cstack, nestlev, instruct): New struct and macros.
4626         (pushclass_above, popclass_above, write_classname): New functions
4627         for dealing with nested class names.
4628         (consider_token, make_C_tag, C_entries): Many changes for dealing
4629         with arbitrarily nested structures.
4630         (etags_getcwd): #if MSDOS, not #ifdef MSDOS!
4631         (C_entries): Consider templates in C++.
4632         (sym_type): New constant st_C_class for detecting "class" also in
4633         C mode.
4634         (C_AUTO): New macro for automatic detection of C++.
4635         (consider_token): Automatic set C++ mode.
4636         (C_entries): New security check for yacc.
4637         (print_language_names, print_help): Mention the autodetect
4638         feature, do not show help for the -C option, now mostly useless.
4639         (C_entries): Tag C++ forward declarations if --declarations.
4640         (C_entries): Don't be fooled by things like XDEFUN.
4641         (consider_token): Discard asm pseudo function.
4643 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
4645         * etags.c: Add a coding: tag.
4647 2001-01-26  Gerd Moellmann  <gerd@gnu.org>
4649         * ebrowse.c (matching_regexp_buffer, matching_regexp_end_buf):
4650         New variables.
4651         (matching_regexp): Use them instead of static variables in
4652         function scope.
4654 2001-01-25  Francesco Potortì  <pot@gnu.org>
4656         * etags.c (struct tok): Rename from struct token.
4657         (token): Rename from tok.
4658         (structtype): Make it a local variable.
4659         [DEBUG]: Use assert.
4660         (xrnew): Change the synopsis.
4661         (typedefs_or_cplusplus): Rename from typedefs_and_cplusplus.
4662         (grow_linebuffer): Don't call xrnew when not needed.
4663         (token): Buffer renamed to line.
4664         (C_entries): Three calls to inibuffer moved here from main.
4665         (C_entries): Remove all references to var methodlen, delete it.
4666         (linebuffer_setlen): Was grow_buffer, now also sets len.
4667         (consider_token, C_entries, Pascal_functions): Use it.
4668         (C_entries): Preventing problems relative to extern "C".
4669         (C_entries): Can tag more than one variable or func separated by
4670         comma when --declarations is used.
4671         (C_entries): More accurate tagging of members and declarations.
4672         (yacc_rules): Was global, made local to C_entries.
4673         (next_token_is_func): Remove.
4674         (fvdef): New constants fdefunkey, fdefunname.
4675         (consider_token, C_entries): Use them.
4676         (C_entries): Build proper lisp names for Emacs DEFUNs.
4678 2001-01-22  Gerd Moellmann  <gerd@gnu.org>
4680         * ebrowse.c (xfree): New function.
4681         (member, declaration, globals): Use xmalloc instead of alloca.
4683 2001-01-15  Francesco Potortì  <pot@gnu.org>
4685         * etags.c (print_language_names): Print filenames in addition to
4686         suffixes.
4688 2001-01-14  Francesco Potortì  <pot@gnu.org>
4690         * etags.c (get_language_from_langname): Rename from
4691         get_language_from_name.
4692         (get_language_from_filename): Rename from get_language_from_suffix.
4693         Now first looks for the complete file name.
4694         (language): New member char **filenames.
4695         (Makefile_filenames): List of possible filenames for makefiles.
4696         (lang_names): Add a NULL member for every entry, added an entry
4697         for makefiles.
4698         (Makefile_targets): New function.
4699         (Texinfo_nodes): Rename from Texinfo_functions and made
4700         it conformant to the style of the rest of the code.
4702 2001-01-13  Gerd Moellmann  <gerd@gnu.org>
4704         * make-docfile.c (write_c_args): Print newlines as spaces.
4706 2001-01-06  Andrew Innes  <andrewi@gnu.org>
4708         * makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
4709         of *.pdb.
4711 2001-01-03  Paul Eggert  <eggert@twinsun.com>
4713         * rcs2log: Avoid security hole allowing attacker to
4714         cause user of rcs2log to overwrite arbitrary files, fixing
4715         a bug reported by Morten Welinder.
4717         Don't put "exit 1" at the end of the exit trap; it's
4718         ineffective in POSIX shells.
4720 2001-01-02  Gerd Moellmann  <gerd@gnu.org>
4722         * ebrowse.c (yyerror): Change to take two arguments.
4723         Add prototype.  Change callers.
4725 2001-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
4727         * ebrowse.c (enter_namespace, main): Cast variables to shut up
4728         compiler warnings.
4729         (yyerror): Change parameter declarations to be of type long, so
4730         that they can take pointers on 64-bit platforms.
4732         * emacsclient.c (main): Remove unused local variable statbfr.
4733         (main) <homedir>: Make its declaration conditional on
4734         SERVER_HOME_DIR, to avoid compiler warnings.
4736         * emacsserver.c (main) <homedir>: Make its declaration conditional
4737         on SERVER_HOME_DIR, to avoid compiler warnings.
4739         * fakemail.c (readline): Cast buffer to "long *" to pacify
4740         over-zealous compilers.
4742 2000-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
4744         * etags.c (canonicalize_filename) [DOS_NT]: Fix last change.
4746 2000-12-15  Gerd Moellmann  <gerd@gnu.org>
4748         * ebrowse.c (operator_name): Cast argument of isalpha to
4749         unsigned char.
4751         * etags.c (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
4752         Use them throughout instead of ctype functions/macros.
4753         (lowcase): Cast to unsigned char.
4754         (UPCASE): New macro.
4755         (canonicalize_filename): Use UPCASE instead toupper.
4757         * fakemail.c (get_keyword): Make sure that isspace and
4758         similar aren't called with a negative argument.
4760 2000-12-13  Dave Love  <fx@gnu.org>
4762         * ebrowse.c (ensure_scope_buffer_room): Fix xrealloc call.
4764 2000-12-06  Andrew Innes  <andrewi@gnu.org>
4766         * makefile.w32-in (LOCAL_FLAGS): Remove -DVERSION flag, since we
4767         don't know the real version, and I can't seem to get the quoting
4768         right in all circumstances.
4770         * ebrowse.c (VERSION): Provide default definition, like etags.c
4771         does, because Windows build can't snarf this from version.el.
4773 2000-11-30  Andrew Innes  <andrewi@gnu.org>
4775         * makefile.w32-in ($(BLD)/ebrowse.exe): Use tabs not spaces.
4776         (install): Ditto.
4778 2000-11-23  Jason Rumney  <jasonr@gnu.org>
4780         * makefile.w32-in: Add targets for ebrowse.exe.
4781         (LOCAL_FLAGS): Add -DVERSION flag.
4783 2000-09-25  Dave Love  <fx@gnu.org>
4785         * sorted-doc.c: Include config.h.
4786         [!HAVE_STDLIB_H]: Declare malloc.
4788 2000-09-14  Andrew Innes  <andrewi@gnu.org>
4790         * makefile.w32-in: Revert to Unix line endings.
4792 2000-09-04  Dave Love  <fx@gnu.org>
4794         * movemail.c (index, rindex): Prototype conditionally.
4796 2000-09-03  Andrew Innes  <andrewi@gnu.org>
4798         * makefile.w32-in: Change to DOS line endings.
4800 2000-09-01  Eli Zaretskii  <eliz@is.elta.co.il>
4802         * movemail.c (toplevel): Remove redundant fcntl.h.
4803         [!F_OK]: Provide default definitions only after including both
4804         fcntl.h and unistd.h.
4806 2000-08-29  Dave Love  <fx@gnu.org>
4808         * movemail.c: Revert previous change.
4810 2000-08-29  Eli Zaretskii  <eliz@is.elta.co.il>
4812         * Makefile.in (profile, make-docfile, hexl): Depend on config.h.
4814 2000-08-28  Dave Love  <fx@gnu.org>
4816         * movemail.c (toplevel) [HAVE_STRING_H]: Include string.h.
4817         (toplevel) [HAVE_STRINGS_H]: Include strings.h.
4819 2000-08-22  Andrew Innes  <andrewi@gnu.org>
4821         * ntlib.h (WIN32): Remove unnecessary definition.
4822         (sleep): Make argument unsigned long.
4823         (_WINSOCK_H): Undefine so normal winsock definitions can be used.
4825         * ntlib.c (sleep): Make argument unsigned long.
4827         * movemail.c (main) [WINDOWSNT]: Force binary mode for fileio.
4829         * makefile.w32-in: New file.
4831 2000-08-20  Eli Zaretskii  <eliz@is.elta.co.il>
4833         * etags.c (canonicalize_filename) [DOS_NT]: Upcase the first
4834         letter only if it is a drive letter.
4836 2000-07-14  Gerd Moellmann  <gerd@gnu.org>
4838         * ebrowse.c (xrealloc, xmalloc): Rename from yrealloc and ymalloc.
4840         * etags.c (xmalloc, xrealloc): Make externally visible, for use
4841         by alloca.o.
4843         * Makefile.in (alloca.o): Add -Demacs so that alloca will use xmalloc.
4845 2000-07-10  Gerd Moellmann  <gerd@gnu.org>
4847         * ebrowse.c (yylex): Accept string literals with newlines in them.
4848         (process_pp_line): Handle case of string literal with newline
4849         in it in replacement text, which counts as continuing the
4850         replacement text in GNU C.
4852 2000-07-02  Gerd Moellmann  <gerd@gnu.org>
4854         * ebrowse.c (token_string): Add missing tokens.
4855         (parm_list): Handle case of qualified pointers.
4857 2000-06-23  Dave Love  <fx@gnu.org>
4859         * ebrowse.c: Move config.h before other includes (which may use
4860         feature tests).
4862 2000-06-14  Jim Meyering  <meyering@lucent.com>
4864         * grep-changelog: Fix typos in comments.  Remove trailing blanks.
4866 2000-06-11  Jason Rumney  <jasonr@gnu.org>
4868         * makefile.nt: Add targets for ebrowse.
4870         * ebrowse.c [WINDOWS_NT]: Use stricmp instead of strcasecmp to
4871         compare filenames.
4873 2000-06-06  Gerd Moellmann  <gerd@gnu.org>
4875         * ebrowse.c (ymalloc): Rename from xmalloc.
4876         (yrealloc): Rename from xrealloc.
4878 2000-05-21  Dave Love  <fx@gnu.org>
4880         * movemail.c: Include config.h, not ../src/config.h.
4881         (Errmsg): Bump length.
4883         * pop.c (ERROR_MAX): Increase to 160.
4885 2000-05-04  Gerd Moellmann  <gerd@gnu.org>
4887         * ebrowse.c (DEFAULT_OUTFILE): Set to `BROWSE'.
4889 2000-05-02  Eli Zaretskii  <eliz@is.elta.co.il>
4891         * ebrowse.c (PATH_LIST_SEPARATOR) [__MSDOS__ || WINDOWSNT]:
4892         Define to semi-colon.
4893         (FILENAME_EQ): New macro, for comparing file names.
4894         (add_member_decl, add_global_decl, add_member_defn): Use FILENAME_EQ.
4895         (process_file): Don't assume that fread always reads as many bytes
4896         as it was told to (DOS-style CR-LF text files fail this logic).
4897         (open_file): Allocate enough space for path->path plus the file
4898         name and the slash.
4900 2000-04-19  Dave Love  <fx@gnu.org>
4902         * etags.c (Texinfo_functions): New function.
4903         (lang_names): Install it.
4904         (Texinfo_suffixes): New variable.
4906 2000-04-19  Gerd Moellmann  <gerd@gnu.org>
4908         * ebrowse.c (xmalloc, xrealloc): Rewritten.
4909         (declaration): Remove parameter IS_EXTERN.
4910         (class_definition): Remove unused variable.
4912 2000-04-09  Gerd Moellmann  <gerd@gnu.org>
4914         * Makefile.in (INSTALLABLES): Add ebrowse.
4915         (ebrowse): New target.
4917         * ebrowse.c: New file.
4919 2000-03-29  Andreas Schwab  <schwab@suse.de>
4921         * make-docfile.c (scan_lisp_file): Also look for `defsubst'.
4923 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
4925         * etags.c (lisp_suffixes): Add `LSP'.
4927 2000-02-10  Francesco Potortì  <pot@gnu.org>
4929         * etags.c (iswhite): Redefine not to consider '\0' as white
4930         space, and use it throughout in place of isspace, thus preventing a
4931         potential signed char to int conversion problem.
4932         (MSDOS): #undefine before redefining.
4934 2000-02-04  Francesco Potortì  <pot@gnu.org>
4936         * etags.c (many functions): Add prototypes.
4938 2000-02-10  Dave Love  <fx@gnu.org>
4940         * etags.c (pfnote, new_pfnote, C_entries, prolog_pred)
4941         (erlang_func): Add `static' to definitions to keep pcc happy.
4943 2000-01-31  Francesco Potortì  <pot@gnu.org>
4945         * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
4946         (get_compressor_from_suffix, process_file): Use MSDOS in if clause.
4947         (etags_strchr, etags_strrchr): Use const char * and int as arguments.
4948         (getenv, getcwd): Only declare them if necessary.
4949         (EMACS_NAME): New constant macro.
4950         (print_version): Use it.
4951         (P_) [__STDC__]: Macro for defining function prototypes.
4953 2000-01-18  Fabrice Popineau  <Fabrice.Popineau@supelec.fr>
4955         * etags.c [WINDOWSNT]: #include <direct.h>
4957 2000-01-18  Martin Buchholz  <martin@xemacs.org>
4959         * etags.c (all functions): Made them static.
4960         (all functions): Write prototypes.
4962 2000-01-29  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4964         * movemail.c (main): Improve error message if can't create lock file.
4966 2000-01-28  Eric Hanchrow  <offby1@blarg.net>
4968         * emacsclient.c (socket_status): New function.
4969         (main): If $LOGNAME or $USER exist and differ from our euid, look
4970         for a socket based on the UID associated with the name.
4972 2000-01-12  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
4974         * emacsclient.c: Add option -a EDITOR and environment variable
4975         ALTERNATE_EDITOR.  Exec this editor if we fail to contact Emacs.
4977 1999-12-10  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4979         * movemail.c (popmail): Allow mailbox specifications of the
4980         form `po:username:hostname'.
4982 1999-11-19  Francesco Potortì  <pot@gnu.org>
4984         * etags.c (_GNU_SOURCE): Define only if undefined.
4985         (get_scheme): Declaration deleted.
4986         (main): Error was called with an integer as second arg, instead of
4987         a char pointer.
4988         (canonicalize_filename): Bug removed.
4990 1999-11-18  Dave Love  <d.love@dl.ac.uk>
4992         * etags.c (C_entries): Rename label `intoken', avoiding K&R
4993         lossage from name clash with macro.
4995 1999-11-13  Gerd Moellmann  <gerd@gnu.org>
4997         * Makefile.in (b2m): Add dependency on GETOPTDEPS.
4999 1999-11-03  Gerd Moellmann  <gerd@gnu.org>
5001         * etags.c (print_help): Change email address to send bugs to.
5003 1999-11-01  Francesco Potortì  <pot@gnu.org>
5005         * etags.c: Add suffix psw for PSWrap.
5006         (L_getit): Generalize a "cp!=' '" into "!isspace(*cp)".
5007         (Postscript_functions): Add code for PSWrap.
5008         (Scheme_functions): Use local pointer and new get_tag function.
5009         (get_tag): New name for old get_scheme.
5010         (process_file): Do not free NULL when file does not exist.
5011         (typdef): ttypedefseen renamed to tkeyseen, new label ttypeseen.
5012         (C_entries): Modifications that make --members tag even inside
5013         typedefs and C nested structs (one level only).
5014         (consider_token): Correct a bug which prevented tagging of enum
5015         constants.
5016         (C_stab_entry): Add if, for, while, switch, return as
5017         st_C_ignore.  This makes it simpler to work when cblev!=0.
5019         * etags.c (C_entries): Tag member function declarations when
5020         --declarations is used.
5022         * etags.c (C_entries, consider_token): C++ `operator' now is
5023         tagged in most cases.
5024         As before, :: is not recognized if surrounded by spaces.
5026         * etags.c (relative_filename): Account for DOS file names such
5027         that is impossible to make one relative to another.
5029         * etags.c (sym_type): New st_C_extern tag.
5030         (gperf input): Use it for spotting external declarations.
5031         (print_help): Document the new behavior of --declarations.
5032         (fvextern): New global variable.
5033         (consider_token, C_entries): Use it.
5035         * etags.c (HAVE_GETCWD) [WINDOWSNT]: Define if undefined.
5036         (etags_getcwd): Remove test for WINDOWSNT.
5038         * etags.c (process_file) [MSDOS]: If foo.c.gz is not found, try
5039         foo.cgz, foo.cz, etc.
5041         * etags.c (declarations): New global switch.
5042         (longopts): Describe it.
5043         (print_help): Document it.
5044         (C_entries): Use it.
5045         (process_file): Don't process a file twice.
5047         * etags.c (Fortran_functions): No tags for "procedure".
5049 1999-11-01  Eli Zaretskii  <eliz@is.elta.co.il>
5051         * etags.c (get_compressor_from_suffix): Second argument EXTPTR, if
5052         non-zero, returns a pointer to where the extension begins; callers
5053         changed.
5054         [MSDOS]: Support DOS file names by handling e.g. foo.cgz as if it
5055         were foo.c.gz.
5057 1999-11-01  Francesco Potortì  <pot@gnu.org>
5059         * etags.c (sym_type, C_stab_entry): New constant st_C_operator.
5060         (fvdev): New constant foperator.
5061         (consider_token): Use it to get "operator" in C++.
5062         (C_entries): Extend length of operator@ function name.
5063         (C_entries): Use foperator when necessary.
5065         * etags.c (main) [!ETAGS_REGEXPS]: Do not call free_patterns.
5067         * etags.c (compressor): New struct for compressed files.
5068         (get_compressor_from_suffix): New function.
5069         (get_language_from_suffix): Use it.  Also, semantics changed.
5070         (process_file): Consider compressed files, close file.
5071         (find_entries): Use different call arg for get_language_from_suffix,
5072         don't close file.
5074         * etags.c (main): Call free_tree.
5075         (find_entries): Do not free curfile.
5076         (pfnote): Cosmetic change: NULL and '\0' where appropriate.
5077         (prolog_pred, erlang_func, substitute): Cast strlen to int when
5078         comparing.
5079         (canonicalize_filename): Shut up compiler warning.
5080         (Perl_functions): Make tag significant.
5082 1999-11-01  Dave Love  <d.love@dl.ac.uk>
5084         * etags.c (longopts, optstring): New option --ignore-case-regex (-c).
5085         (argument_type): New member at_icregexp.
5086         (lc_trans): New global.
5087         (main): Fill lc_trans.  Process -c args.
5088         (add_regex): New arg determining whether to use translation table.
5089         (analyse_regex): New arg.  Use it for add_regex.
5091 1999-11-01  Francesco Potortì  <pot@gnu.org>
5093         * etags.c (init): Cosmetic change: NULL --> '\0'.
5094         (erlang_attribute): Bug corrected (uninitialized variable).
5095         (filename_is_absolute): New function replaces absolutefn macro and
5096         corrects a bug.  All callers changed.
5097         (canonicalize_filename): New function.
5098         (process_file, etags_getcwd, absolute_dirname): Use it.
5099         (relative_filename, absolute_filename): Remove var shadowing.
5100         (C_entries, Pascal_functions): Add fake initializations to keep
5101         compilers quiet.
5102         (TeX_functions, Prolog_functions, Erlang_functions): Cleanup.
5104         * etags.c (xrnew): New macro.  All callers of xrealloc changed.
5105         (language): New typedef (was struct lang_entry).
5106         (curlang): New global variable.
5107         (node): Typedef renamed from NODE.
5108         (linebuffer): New typedef (was struct linebuffer).
5109         (pattern): New typedef (was struct pattern).  Some members added.
5110         Now used as element of a linked list.
5111         (patterns, num_patterns): Global variables deleted.
5112         (p_head): New global variable.
5113         (forced_lang): New global variable (replaces lang_func).
5114         (get_language_from_name, get_language_from_interpreter)
5115         (get_language_from_suffix): Semantics changed.  All callers changed.
5116         (last_node): New global variable.
5117         (free_tree, add_node, put_entries, total_size_of_entries):
5118         Change name of local vars to avoid clashes with typedef node.
5119         (number_len): Rewritten for elegance.
5120         (token): New typedef replaces TOKEN.
5121         (analyse_regex, add_regex): Rewritten for new functionality.
5122         (free_patterns): New function called from main and add_regex.
5123         (initbuffer, readline_internal, readline, grow_linebuffer):
5124         Change name of local vars to avoid clashes with typedef linebuffer.
5125         (readline): Rewritten for new functionality.
5127         * etags.c (Scheme_suffixes): New suffix ".ss".
5128         (print_help): --globals is now used for more than C-type languages.
5129         (Perl_functions): Tag global variables ("my" and "local").
5131         * etags.c (print_help): Some messages clarified.
5132         (LOOP_ON_INPUT_LINES): New macro.
5133         (just_read_file, Fortran_functions, Asm_labels, Perl_functions)
5134         (Python_functions, Cobol_paragraphs, Pascal_functions)
5135         (Lisp_functions, Postscript_functions, Scheme_functions)
5136         (TeX_functions, Prolog_functions, Erlang_functions): Use it.
5137         (Cobol_paragraphs, Postscript_functions, TeX_functions)
5138         (Prolog_functions, Erlang_functions): Use a local variable instead
5139         of the global variable dbp.
5140         (Pascal_functions, L_isquote, Scheme_functions): Use GNU coding
5141         standard indentation.
5143         * etags.c (Python_suffixes, lang_names, Python_functions):
5144         Python support.
5145         (skip_spaces, skip_non_spaces): Utility functions.
5146         (find_entries, takeprec, getit, Fortran_functions, Perl_functions)
5147         (Python_functions, L_getit, Lisp_functions, Scheme_functions)
5148         (prolog_pred, erlanf_func, erlang_attribute): Use them.
5149         (eat_white): Delete.
5151         * etags.c (CHAR, init): Keep into account non US-ASCII
5152         characters and compilers with default signed chars.
5153         (L_getit): Tag "(defstruct (foo", "(defun (operator" and similar
5154         constructs.
5155         (C_stab_entry): "interface" in Java behaves like "class".
5157         * etags.c (HAVE_NTGUI) [WINDOWSNT]: #undef if HAVE_CONFIG_H.
5158         (main): Put interval syntax here.
5159         (add_regex): And remove it from here.
5161         * etags.c (suggest_asking_for_help): Provide a
5162         meaningful help message with and without LONG_OPTIONS.
5164         * etags.c (<io.h>) [MSDOS]: Include it, don't include string.h.
5165         <stdlib.h, string.h>: Don't test MSDOS when including them.
5166         (white, nonam, endtk): Like elsewhere, use \r instead of \013.
5167         (put_entries): Correctly use %ld instead of %d in printf.
5169         * etags.c (<unistd.h>) [HAVE_UNISTD_H]: Include conditionally, else
5170         declare getcwd if HAVE_GETCWD.
5171         (consider_token): Dead break instruction removed.
5173 1999-10-19  Paul Eggert  <eggert@twinsun.com>
5175         Add support for large files.  Merge glibc 2.1.2.
5177         * b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
5178         * movemail.c, pop.c:
5179         Do not include <stdlib.h>, as <config.h> does this now.
5181         * b2m.c, emacsserver.c, etags.c, profile.c:
5182         Include <config.h> before any system include files.
5184         * emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
5185         * test-distrib.c:
5186         (read, write, open, close): Do not undef.
5188         * getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
5189         (const): Do not define if HAVE_CONFIG_H; that's config.h's job.
5191         * getopt.h: Adopt glibc 2.1.2.
5193 1999-10-15  Dave Love  <fx@gnu.org>
5195         * Makefile.in (pop.o): Depend on config.h.
5197 1999-10-11  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5199         * pop.c: Use "pop3" as the POP service name on all platforms,
5200         instead of using "pop" on Unix and "pop3" on Windows NT.  "pop3"
5201         has been the standard service name since RFC 1340 was published in
5202         July 1992, so I think it's safe to start using it by default.
5204 1999-09-27  Dave Love  <fx@gnu.org>
5206         * make-docfile.c (scan_lisp_file): Fix typo causing infloop.
5208 1999-09-19  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
5210         * make-docfile.c (scan_lisp_file): Fix previous changes;
5211         swallow CRLF like just CR or just LF.
5213 1999-09-03  Richard Stallman  <rms@gnu.org>
5215         * make-docfile.c: Include config.h not ../src/config.h.
5216         (main, fopen, chdir): Add #undef.
5217         (read_c_string, scan_c_file, skip_white, read_lisp_symbol)
5218         (scan_lisp_file): Handle \r like \n.
5220 1999-08-30  Andreas Schwab  <schwab@gnu.org>
5222         * make-docfile.c, fakemail.c: Include <stdlib.h> if available.
5224         * emacsserver.c: Include <stdlib.h> if available.  Don't declare
5225         errno if it's a macro.
5227         * test-distrib.c: Include <unistd.h> if available.
5229 1999-08-29  Richard Stallman  <rms@gnu.org>
5231         * emacsclient.c (print_help_and_exit): Mention --version.
5233 1999-08-25  Richard M. Stallman  <rms@gnu.org>
5235         * emacsclient.c (decode_options): Update version output.
5236         (print_help_and_exit): Update bug report address.
5238 1999-08-13  Richard M. Stallman  <rms@gnu.org>
5240         * emacsclient.c (main): Move the dynamic allocation of
5241         system_name outside of the SERVER_HOME_DIR conditional.
5242         * emacsserver.c (main): Likewise.
5244 1999-08-10  Gerd Moellmann  <gerd@gnu.org>
5246         * grep-changelog: New.
5247         * Makefile.in (INSTALLABLE_SCRIPTS): Add it.
5249 1999-07-12  Richard Stallman  <rms@gnu.org>
5251         * Version 20.4 released.
5253 1999-06-30  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
5255         * Makefile.in (clean): Remove fns*.el.
5257 1999-06-23  Dave Love  <fx@gnu.org>
5259         * etags.c (erlang_attribute): Fix undefined variable usage (after
5260         Potortì).
5262 1999-05-02  Andrew Innes  <andrewi@gnu.org>
5264         * movemail.c (main) [WINDOWSNT]: Call ftruncate, which is now
5265         mapped to _chsize.
5267 1999-04-29  Richard M. Stallman  <rms@gnu.org>
5269         * emacsclient.c (main, both versions): Use quote_file_name on cwd.
5271 1999-03-30  Dave Love  <fx@gnu.org>
5273         * sorted-doc.c (main): Split up tables.  Modify the preamble
5274         somewhat.
5276 1999-03-05  Geoff Voelker  <voelker@cs.washington.edu>
5278         * makefile.nt: Remove common multiple file compilation commands.
5280 1999-02-26  Richard Stallman  <rms@gnu.org>
5282         * Makefile.in (yow): Depend on epaths.h, not paths.h.
5284         * yow.c: Refer to epaths.h.
5286 1999-02-22  Simon Josefsson  <jas@pdc.kth.se>
5288         * emacsserver.c (perror_1, fatal_error): Don't compile unless needed.
5290 1999-01-27  Andrew Innes  <andrewi@gnu.org>
5292         * makefile.nt: Do make version comparison as strings.
5294 1999-01-25  Richard Stallman  <rms@gnu.org>
5296         * emacsclient.c (xmalloc): Fix previous change.
5298 1999-01-24  Richard M. Stallman  <rms@borg.ai.mit.edu>
5300         * emacsclient.c (xmalloc): Declare to return long.
5302 1999-01-22  Geoff Voelker  <voelker@cs.washington.edu>
5304         * etags.c (etags_getcwd, absolute_filename) [DOS_NT]: Canonicalize
5305         the case of the drive letter.
5307 1999-01-15  Richard Stallman  <rms@psilocin.ai.mit.edu>
5309         * emacsserver.c (main): Eliminate arbitrary limit on
5310         length of system_name.
5312         * emacsclient.c (main): Eliminate arbitrary limit on
5313         length of system_name.
5314         (xmalloc): Define unconditionally.
5316 1999-01-12  Darrin B. Jewell  <jewell@mit.edu>
5318         * etags.c (relative_filename): Stop backward search at beginning
5319         of string, since non-Unix systems can have absolute paths with no
5320         initial slash.
5322 1998-12-08  Geoff Voelker  <voelker@cs.washington.edu>
5324         * makefile.nt: Do string comparison of _NMAKE_VER.
5326 1998-11-03  Theodore Jump  <tjump@cais.com>
5328         * makefile.nt: Compile multiple source files when possible.
5330 1998-10-13  Richard Stallman  <rms@psilocin.ai.mit.edu>
5332         * Makefile.in: Replace tabs with spaces
5333         when they might confuse some Make versions.
5335 1998-10-10  Richard Stallman  <rms@psilocin.ai.mit.edu>
5337         * emacsclient.c (main): Null-terminate system_name.
5339         * emacsserver.c (main): Null-terminate system_name.
5341 1998-09-21  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5343         * movemail.c (popmail, pop_retr) [MAIL_USE_POP]: When displaying
5344         an error message from POP, mention that it's from POP, to
5345         distinguish it from local error messages.
5347 1998-09-04  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5349         * movemail.c [MAIL_USE_POP]: Add the "-r" flag to reverse the
5350         order of messages downloaded from a POP server (e.g., if the
5351         server stores messages in mailboxes in reverse order).
5353 1998-08-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
5355         * Version 20.3 released.
5357 1998-08-11  Paul Eggert  <eggert@twinsun.com>
5359         * rcs2log: Update copyright date and bug report address.
5360         (initialize_fullname): Prefer getent if available.
5362 1998-07-30  Paul Eggert  <eggert@twinsun.com>
5364         * Makefile.in (REGEXPDEPS, regex.o):
5365         Prepend $(srcdir)/ to rule dependencies outside this dir.
5367 1998-06-09  Andrew Innes  <andrewi@harlequin.co.uk>
5369         * etags.c (etags_getcwd) [WINDOWSNT]: Use getcwd on Windows.
5371 1998-06-06  Richard Stallman  <rms@psilocin.ai.mit.edu>
5373         * Makefile.in: Properly terminate a comment.
5375 1998-06-01  Andrew Innes  <andrewi@mescaline.gnu.org>
5377         * movemail.c (sys_wait): Rename to wait.
5379         * ntlib.h: Undefine _WINSOCKAPI_.
5381         * makefile.nt (LOCAL_FLAGS): Define HAVE_CONFIG_H.
5383 1998-05-30  Geoff Voelker  <voelker@cs.washington.edu>
5385         * ntlib.c (getppid): Look for EM_PARENT_PROCESS_ID.
5387 1998-05-01  Andrew Innes  <andrewi@harlequin.co.uk>
5389         * movemail.c [WINDOWSNT]: Undefine DISABLE_DIRECT_ACCESS.
5390         Force all file i/o to be in binary mode.  Include ntlib.h.
5392 1998-04-27  Andreas Schwab  <schwab@delysid.gnu.org>
5394         * make-docfile.c: Include <unistd.h> for chdir.
5396 1998-04-25  Richard Stallman  <rms@psilocin.gnu.org>
5398         * etags.c (TEX_decode_env): Don't free the value getenv returns.
5400 1998-04-17  Geoff Voelker  <voelker@cs.washington.edu>
5402         * makefile.nt (obj): Update with new files in src.
5403         (clean): Delete patch scratch files, optimized compilation dir.
5405 1998-04-08  Dave Love  <fx@gnu.org>
5407         * emacsclient.c: Move inclusion of unistd.h to top, else fails on
5408         Irix6, at least.
5410 1998-04-06  Andreas Schwab  <schwab@gnu.org>
5412         Silence -Wimplicit:
5413         * movemail.c: Move cancelations up.  Include <stdlib.h> if
5414         available.
5415         * fakemail.c (_XOPEN_SOURCE): Define for declaration of cuserid.
5416         (parse_header): Explicitly declare return type.
5417         * emacsserver.c: Include <unistd.h> if available.
5418         (main, handle_signals, perror_1, fatal_error): Explicitly declare
5419         return types.  Add forward declarations.
5420         * emacsclient.c: Include <stdlib.h> and <unistd.h> if available.
5421         Don't declare geteuid.
5422         (print_help_and_exit): Change return type to void.
5423         Forward declare it.
5424         * b2m.c: Include <stdlib.h> if available.
5425         (main): Explicitly declare return type.
5427 1998-04-03  Richard Stallman  <rms@psilocin.gnu.org>
5429         * etags.c (put_entries): Use %ld.
5431         * b2m.c (fatal): Declare the arg.
5433 1998-03-26  Richard Stallman  <rms@psilocin.gnu.org>
5435         * pop.c (pop_getline): Rename from getline.
5437 1998-03-05  Richard Stallman  <rms@psilocin.gnu.org>
5439         * Makefile.in (install): Use INSTALL_STRIP with INSTALL_PROGRAM
5440         for the utilities.
5442 1998-01-23  Dave Love  <d.love@dl.ac.uk>
5444         * etags.c (getit, Cobol_paragraphs, Pascal_functions,
5445         Postscript_functions, prolog_pred, erlang_func, erlang_attribute):
5446         Always make named tags.
5447         (Fortran_functions): Grok BLOCK DATA.
5449 1998-01-23  Andreas Schwab  <schwab@gnu.org>
5451         * movemail.c (main): Fix interwoven brace and cpp conditional
5452         nesting.
5454 1997-12-03  Paul Eggert  <eggert@delysid.gnu.org>
5456         * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which quotes
5457         with a '>' any lines starting with "From " read from the POP server,
5458         but leave the code in place, wrapped in #ifdef
5459         MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
5460         because it turns out that something is depending on it.
5461         Change suggested by Paul Eggert <eggert@twinsun.com>.
5462         Convert the character \037 (^_) at the beginning of a line into
5463         the character '^' followed by the character '_', because otherwise
5464         Emacs can't parse the resulting file as a valid BABYL file.
5465         Change suggested by Paul Eggert <eggert@twinsun.com>.
5467 1997-12-03  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5469         * movemail.c, pop.c, pop.h: Allow messages retrieved from the POP
5470         server to contain embedded nulls.
5472 1997-12-02  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5474         * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which
5475         quotes with a '>' any lines starting with "From " read from the
5476         POP server, but leave the code in place, wrapped in #ifdef
5477         MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
5478         because it turns out that something is depending on it.
5479         Change suggested by Paul Eggert <eggert@twinsun.com>.
5481         Convert the character \037 (^_) at the beginning of a line into
5482         the character '^' followed by the character '_', because otherwise
5483         Emacs can't parse the resulting file as a valid BABYL file.
5484         Change suggested by Paul Eggert <eggert@twinsun.com>.
5486 1997-11-22  Richard Stallman  <rms@gnu.org>
5488         * b2m.c: Include getopt.h.
5489         (main): Use getopt_long to handle --version and --help.
5491         * Makefile.in (b2m): Define VERSION.  Link with $(GETOPTOBJS).
5493 1997-10-31  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5495         * pop.c (fullwrite): Get rid of an extra call to write.
5496         Problem pointed out by Chiaki Ishikawa.
5498 1997-10-16  Dave Love  <d.love@dl.ac.uk>
5500         * etags.c (L_getit): Always make named tags so that Emacs
5501         completion on symbols containing `:' etc. works.
5502         (get_scheme): Likewise.
5504 1997-09-24  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5506         * pop.c: Use system header files instead of declaring C-library
5507         functions explicitly.
5509 1997-09-19  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5511         * Version 20.2 released.
5513 1997-09-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5515         * Version 20.1 released.
5517 1997-09-02  Andrew Innes  <andrewi@harlequin.co.uk>
5519         * makefile.nt (movemail.exe): Link wsock32.lib before LIBS.
5521         * ntlib.c (getpid): Delete function.
5523 1997-08-28  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5525         * make-docfile.c (scan_lisp_file): Handle custom-declare-variable.
5527 1997-08-26  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5529         * emacsclient.c [HAVE_SYSVIPC]: Include errno.h, as in the other case.
5530         (main) [!BSD_SYSTEM]: Fix error message for getcwd failure.
5532 1997-08-14  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5534         * emacsserver.c (main): Use SOCKLEN_TYPE for fromlen, if it is defined.
5536 1997-08-13  Kazushi (Jam) Marukawa  <jam@poboxes.com>
5538         * profile.c (get_time): Cast arg to fprintf.
5540         * hexl.c (main): Use %08lx instead of %08x in printf because the
5541         variable named addresses is long.
5543 1997-08-08  Geoff Voelker  <voelker@cs.washington.edu>
5545         * makefile.nt (lisp): Update paths to lisp files that have moved.
5547 1997-08-08  Andrew Innes  <andrewi@harlequin.co.uk>
5549         * makefile.nt (ctags.obj): New target.
5550         (etags.obj, getopt.obj, make-docfile.obj): Update dependencies.
5552         * ntlib.h: Add includes.
5553         Undo definitions of crt routines from config.h.
5555 1997-08-06  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5557         * etags.c (Yacc_suffixes, Asm_suffixes): Add some alternatives.
5559 1997-07-22  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5561         * pop.c: Support auto-configuration of both Kerberos V4 and
5562         Kerberos V5 for movemail, including detection of V4 and V5 header
5563         files and libraries.
5564         Include <string.h> when STDC_HEADERS is defined, to get
5565         declarations of string functions.
5566         [KERBEROS5] (socket_connection): Support the current MIT Kerberos
5567         V5 API rather than the old one.
5568         [KERBEROS] (socket_connection): Change a constant name from
5569         SOCKET_ERROR to POP_SOCKET_ERROR to avoid a namespace conflict
5570         with a constant in a header file.
5572         * Makefile.in: Support auto-configuration of both Kerberos V4 and
5573         Kerberos V5 for movemail, including detection of V4 and V5 header
5574         files and libraries.
5576 1997-07-17  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5578         * fakemail.c [HAVE_UNISTD_H]: Include unistd.h.
5580         * etags.c [HAVE_UNISTD_H]: Include unistd.h.
5582 1997-07-09  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5584         * emacsclient.c [C_ALLOCA] (xmalloc): New function.
5586 1997-07-04  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5588         * movemail.c (rindex): Add declaration.
5590 1997-07-01  Geoff Voelker  <voelker@cs.washington.edu>
5592         * makefile.nt (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
5593         (movemail.exe): Depend upon and link with getopt files.
5594         (obj): Include new source files.
5595         (FACE_SUPPORT, MOUSE_SUPPORT, FLOAT_SUPPORT, WINNT_SUPPORT): Define.
5596         (lisp): Include new and reorganized elisp files.
5598 1997-06-27  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5600         * Makefile.in (blessmail): Find blessmail.el in mail subdirectory.
5602 1997-06-25  Paul Eggert  <eggert@twinsun.com>
5604         * rcs2log: Don't assign to $0 in awk; some awks don't allow this.
5606 1997-06-14  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5608         * b2m.c (readline): Terminate buffer properly when EOF seen.
5609         Test for valid pointer before dereferencing it.
5611 1997-05-30  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5613         * Makefile.in (etags): Remove -DETAGS_REGEXPS, because now it is
5614         defined inside etags.c if HAVE_CONFIG_H is defined.
5616 1997-05-29  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5618         * etags.c (logical): Type name changed to bool.
5619         (ETAGS_REGEXPS, LONG_OPTIONS) [HAVE_CONFIG_H]: #define them.
5620         (<getopt.h>) [LONG_OPTIONS]: Include conditionally.
5621         (getopt_long) [!LONG_OPTIONS]: Redefine as macro.
5622         (main): Accepted options depend on ETAGS_REGEXPS and LONG_OPTIONS.
5623         (longopts): New long options without short counterpart are
5624         globals, members, no-globals, no-members.  Regexp options are now
5625         defined  conditionally to ETAGS_REGEXPS.
5626         (print_help): Update.
5628 1997-05-22  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5630         * etags.c (C_entries): Use "." instead of "::" for Java.
5631         (consider_token): is_func renamed to is_func_or_var.
5632         (C_entries): is_func renamed to funorvar.
5633         (C_entries): Initialize tok.named.
5634         (sym_type, C_stab_entry, consider_token): st_C_ignore is used to
5635         get rid of "import", "package" and "friend".
5636         (fvdef): Rename from funcdef.  Also some constants renamed.
5637         All users changed.
5638         (C_entries): Make separate tags for variables separated by comma.
5639         (globals, members): New flags.
5640         (main, C_entries): Use them.
5641         (make_C_tag, C_entries): Make tok a global variable.
5643 1997-05-16  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5645         * etags.c (funcdef): New vignore constant.
5646         (consider_token, C_entries): Use it to tag global variables.
5647         (print_help): Update for global variables.
5648         (consider_token, C_entries): Set the len member of token_name.
5649         (prolog_pred): Cleanup according to GNU coding standards.
5650         (Cobol_suffixes, lang_names, Cobol_paragraphs): Cobol support.
5651         (prolog_white, erlang_white): Rename to eat_white, callers changed.
5653 1997-05-15  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5655         * etags.c (CHARS, CHAR): New constant and macro.
5656         (iswhite, begtoken, intoken, endtoken): Use them.
5657         (notinname, _nin, nonam): New macro, array, string.
5658         (init): Cleanup and init _nin.
5659         (new_pfnote): New function.
5660         (make_C_tag) [traditional_tag_style]: Use it.
5661         (traditional_tag_style): Constant set to TRUE for now.
5663 1997-05-14  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5665         * etags.c (C_entries, Pascal_functions): Cleanup.
5666         (TeX_functions): NULL as a function arg needs a cast.
5667         (Erlang_functions, erlang_func, erlang_attribute): Cleanup.
5669 1997-05-13  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5671         * etags.c (TeX_functions): Cleaned up.
5672         (tex_getit): Remove.
5674 1997-05-13  Paul Eggert  <eggert@twinsun.com>
5676         * rcs2log (files): When computing arguments automatically, ignore
5677         non-files within the RCS subdirectory.
5679 1997-05-13  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5681         * etags.c (C_JAVA): New #define.
5682         (Cjava_suffixes): .java is Java.
5683         (Cjava_entries): New function.
5684         (lang_names): Add Java.
5685         (sym_type): Add st_C_javastruct for Java.
5686         (C_stab_entry): Add `extends' and `implements' keywords.
5687         (consider_token, C_entries): Recognize Java structures.
5689 1997-05-12  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5691         * etags.c (Cplusplus_suffixes): .pdb is PostScript with C syntax.
5692         (Postscript_suffixes): .ps is PostScript.
5693         (lang_names): Add postscript.
5694         (Postscript_functions): New function.
5695         (TEX_decode_env): Close minor memory leak.
5696         (just_read_file): Correct the char number of the tag.
5698 1997-05-11  Paul Eggert  <eggert@twinsun.com>
5700         * rcs2log (loginFullnameMailaddrs, logins, rlog_options, files):
5701         Don't prepend $nl since this causes some shells to generate the
5702         empty string when IFS is $nl.
5703         (printlogline): Use SOH (octal code 1), not CR, since some
5704         PC-based shells mishandle CR.
5705         (initialize_fullname): Set NIS_PATH to the empty string before invoking
5706         nismatch, in case it's set to some nonstandard value.
5708 1997-05-06  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5710         * pop.c (getline): Don't miss CRLF pairs when the CR and LF are
5711         read in separate blocks.
5713 1997-04-30  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5715         * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
5716         (struct linebuffer): New member `len' is the length of the string.
5717         (find_entries, Pascal_functions, TeX_functions, TEX_getit):
5718         Use it instead of strlen.
5719         (TEX_getit): Declare and define unconditionally as static.
5720         (TeX_functions): Use if instead of #if TeX_named_tokens.
5721         (add_regex): Set RE_INTERVALS flag for regex compilation.
5722         (substitute): Code cleanup.
5723         (readline_internal): Code cleanup, set new member `len'.
5724         (readline): Bug corrected.
5726 1997-04-23  Geoff Voelker  <voelker@cs.washington.edu>
5728         * makefile.nt: Change references of windowsnt.h to ms-w32.h.
5729         (obj): Change references of nt*.c files to w32*.c files.
5731 1997-04-15  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5733         * etags.c (xnew): Add support for debugging with chkmalloc.
5734         (error): Use this instead of printf whenever possible.
5735         (main): Only call xnew after having initialized progname.
5736         (substitute): Bad memory corruption error corrected.
5738 1997-04-08  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5740         * etags.c (add_regex): Undo previous change.
5741         (relative_filename): Small memory leak closed.
5742         (absolute_filename): Cleaned up the code, possibly closing a bug.
5743         (absolute_dirname): Always return a newly allocated string.
5745 1997-03-21  Paul Eggert  <eggert@twinsun.com>
5747         * rcs2log (files): Ignore files in RCS directory whose names are
5748         of the form ,*, or *_; they are probably RCS lock files.
5749         Also, ignore files named .rcsfreeze.log or .rcsfreeze.ver;
5750         they are used by rcsfreeze.
5752 1997-03-14  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5754         * etags.c (add_regex): Reset *putbuf before using it.
5756 1997-02-23  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5758         * movemail.c (popmail): Remove some unnecessary function
5759         declarations.
5760         (popmail, pop_retr): Since popmail always passes mbx_write and mbf
5761         into pop_retr, there's no reason to pass in mbx_write, and the
5762         file argument can be declared FILE * explicitly.  This fixes a
5763         compilation problem on systems with 64-bit pointers.
5765 1997-02-13  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
5767         * movemail.c: Delete duplicate inclusion of fcntl.h
5768         and duplicate #undefs of open, read, write, close.
5770 1997-01-20  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
5772         * movemail.c (main): Do not display "[POP-password]" in the usage
5773         message when movemail is compiled without POP support.
5774         (main, popmail): Add the optional "-p" argument, which causes
5775         movemail to leave mail in the inbox after copying it into the
5776         output file.
5778         * Makefile.in (movemail): Link with getopt.
5780 1997-01-20  Paul Eggert  <eggert@twinsun.com>
5782         * rcs2log (--help, --version): New options, per GNU coding standards.
5783         (Copyright, Help, Id): New variables, for above.
5784         (rlog): Use -q option with cvs log, to avoid useless chatter.
5786         Treat logs of "Initial revision" (RCS) or "file F was initially added
5787         on branch B." (CVS) as if they said "New file.", for consistency with
5788         change log entries.
5790 1997-01-01  Paul Eggert  <eggert@twinsun.com>
5792         * vcdiff (PATH): Add /usr/xpg4/bin,
5793         where XPG4 SCCS hangs out in Solaris 2.5.
5794         (sid1): Don't use bare -r, since XPG4 `get' does not allow it.
5796 1996-12-19  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
5798         * etags.c (streq, strneq): Use == NULL rather than !.
5800 1996-12-18  Jonathan I. Kamens  <jik@annex-1-slip-jik.cam.ov.com>
5802         * Makefile.in (LIBMAIL): New macro.  Conditionally includes -lmail.
5803         (movemail): Use LIBMAIL, to link against -lmail.
5805         * movemail.c: Include maillock.h (conditionally).
5806         Remove a redundant inclusion of <stdio.h>.
5807         (MAIL_USE_MAILLOCK): New macro, conditionally defined.
5808         (main): Add variable spool_name.
5809         Support the usage of maillock and mailunlock to
5810         lock and unlock mailboxes.
5811         (mail_spool_name): New function.
5813         * movemail.c: Fix an uninitialized variable which could cause
5814         movemail to exit with an error status incorrectly on systems which
5815         use lock files rather than a system locking function to lock
5816         mailboxes.
5818 1996-12-16  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5820         * pop.c (socket_connection): Free realhost after using it.
5822 1996-12-04  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5824         * etags.c (C_entries): Test tok.valid.  This handles some
5825         particular cases involving function declarations that failed.
5827 1996-11-22  Charles Hannum  <mycroft@gnu.ai.mit.edu>
5829         * pop.c (socket_connection):
5830         gethostbyname may return a pointer to static data.
5831         krb_realmofhost can clobber it.  So copy it.
5833 1996-11-14  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5835         * etags.c (pfnote, fatal, error): Callers using a NULL pointer
5836         must cast it to (char *) because we have no prototypes.
5837         (make_C_tag): Macro deleted, new function.
5838         (C_entries): Calls to make_C_tag macro changed to call function.
5840 1996-11-13  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5842         * etags.c (grow_linebuffer): New function.
5843         (GROW_LINEBUFFER): Macro deleted.  All callers changed.
5844         (make_tag): Macro renamed to make_C_tag.  All callers changed.
5845         (<stdlib.h>, <string.h>) [STDC_HEADERS]: New #include's.
5846         (Prolog_functions): prolog_skip_comment was called with wrong
5847         number of arguments.
5848         (xrealloc): fatal was called with wrong number of arguments.
5850 1996-11-08  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5852         * etags.c (relative_filename): Bug corrected.
5853         (etags_getcwd): Avoid warning of unused variable.
5854         (C_entries, consider_token): Add support for enum labels.
5856 1996-11-03  Paul Eggert  <eggert@twinsun.com>
5858         * rcs2log: When processing cvs log output, remove `Attic/' from
5859         repository file names.
5861 1996-10-22  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5863         * emacsserver.c: Fix 1996-09-02 change.
5865 1996-10-12  Paul Eggert  <eggert@twinsun.com>
5867         * rcs2log (rlog_options): Look for ' option' rather than 'unknown
5868         option', since CVS says 'invalid option'.
5869         (datearg): Use the empty string, not '-d>1970-01-01', to extract all
5870         revisions, since some hosts reject 1970-01-01 when east of UTC.
5871         (date): Remove.
5873 1996-10-06  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
5875         * etags.c (etags_getcwd) [WINDOWSNT]: Convert backslashes to slashes.
5877 1996-10-02  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5879         * etags.c (print_version): Print copyright info.
5881         * etags.c (print_help): Print the bug reporting address.
5882         (main): Use return as the last instruction, instead of exit.
5884         * etags.c (main): Don't open the tags file in cxref mode.
5886 1996-09-29  Dave Love  <d.love@dl.ac.uk>
5888         * rcs2log (date): Make default format acceptable to CVS post v1.8
5889         as well as earlier CVSs and RCS.
5891 1996-09-29  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
5893         * movemail.c (main): If the lock call fails with EBUSY or
5894         EAGAIN, retry a few times.
5896 1996-09-25  Paul Eggert  <eggert@twinsun.com>
5898         * rcs2log (rlog_options): Use $rlog, not rlog, when deciding
5899         whether to append -zLT.
5901 1996-09-16  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5903         * fakemail.c: Replaced symbol BSD with BSD_SYSTEM.
5904         * emacsclient.c, movemail.c: Likewise.
5906 1996-09-09  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
5908         * emacsclient.c (longopts): Change nowait to no-wait.
5909         (print_help_and_exit): Fix option name; upcase metavars.
5911 1996-09-06  Erik Naggum  <erik@naggum.no>
5913         * emacsserver.c (main): Declare `fromlen' as size_t.
5915 1996-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
5917         * etags.c (etags_getcwd): Use getcwd if available even if MSDOS.
5919 1996-09-02  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
5921         * emacsclient.c (quote_file_name): Quote with &, not \.
5922         Quote `-' only at start of file name.  Terminate the value string.
5924         * emacsserver.c: Include signal.h properly;
5925         delete the duplicate includes for it.
5927         * emacsserver.c: On fatal signal, delete socket-file:
5928         * emacsserver.c: Include signal.h.
5929         (xmalloc, fatal, error): New functions.
5930         (delete_socket, handle_signals): New functions.
5931         (progname, socket_name): New variables.
5932         [HAVE_SOCKETS] (main): Call handle_signals; set the new variables.
5934 1996-09-01  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
5936         * emacsclient.c (quote_file_name): New function.
5937         (main, both versions): Use quote_file_name.
5938         (decode_options): Don't return a value.
5939         (main, both versions): Use optind.
5940         Don't check for -nowait here.
5942         * emacsclient.c (decode_options): New function.
5943         (main, both versions): Call decode_options.
5944         (print_help_and_exit): New function.
5945         (VERSION): New macro.
5947         * Makefile.in (emacsclient): Link with getopt.
5948         Add -DVERSION so emacsclient knows its version number.
5950 1996-08-31  Geoff Voelker  <voelker@cs.washington.edu>
5952         * makefile.nt (lisp): Include dos-nt.elc.
5954 1996-08-31  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
5956         * Makefile.in (blessmail): Use $srcdir to find blessmail.el.
5958 1996-08-28  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5960         * emacsclient.c (both versions): Handle -nowait and --nowait
5961         by sending data to the server.
5963 1996-08-26  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
5965         * Makefile.in (INSTALL_STRIP): New variable.
5966         (${archlibdir}): Use INSTALL_STRIP.
5968         * Makefile.in (MOVE_LIBS): Use conditionals on KERBEROS,
5969         HAVE_LIBKRB, HAVE_LIBDES, HAVE_LIBCOM_ERR to set it up.
5971         * pop.c: Reverse conditional in previous change.
5973 1996-08-24  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
5975         * pop.c: Include des.h krb.h with no dir name if SOLARIS2.
5977 1996-08-24  Paul Eggert  <eggert@twinsun.com>
5979         * rcs2log: Use ISO 8601 date format, with time zone appended
5980         if change-log-time-zone-rule is non-nil, instead of
5981         traditional Unix date format.
5983         (datearg): When computing default from ChangeLog, handle ISO format
5984         dates in addition to old-fashioned dates from Emacs 19.31 and earlier.
5985         Don't worry about hh:mm:ss since the resolution is now by day.
5986         Use empty datearg, not empty rlog_options, to decide whether to pass
5987         "$datearg" option to $rlog.
5988         (logTZ): New variable, set to TZ specified by change-log-time-zone-rule.
5989         (month_data): Remove `mo'; no longer needed.
5990         (rlog_options): Use -zLT for localtime output, if `rlog' supports it.
5992         Match `revision' line of rlog output more accurately.
5994         Add -c, -v options.
5996 1996-08-23  Eli Zaretskii  <eliz@is.elta.co.il>
5998         * hexl.c: Include <config.h>, so DOS_NT is defined on MSDOS.
6000 1996-08-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
6002         * Version 19.33 released.
6004 1996-07-31  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
6006         * Version 19.32 released.
6008 1996-07-23  Andrew Innes  <andrewi@harlequin.co.uk>
6010         * etags.c (readline_internal) [DOS_NT]: Don't include CRs when
6011         computing character positions in source files.
6013 1996-07-16  Andrew Innes  <andrewi@harlequin.co.uk>
6015         * makefile.nt (clean): Use OBJDIR macro.
6017 1996-07-16  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6019         * cvtmail.c, sorted-doc.c, yow.c, emacsserver.c: Undo previous change.
6021 1996-07-15  David Mosberger-Tang  <davidm@AZStarNet.com>
6023         * cvtmail.c, sorted-doc.c, yow.c [__GNU_LIBRARY__]: Use <string.h>.
6024         * emacsserver.c (main) [__GNU_LIBRARY__]: Use size_t for fromlen.
6025         * etags.c, fakemail.c, profile.c: Declare main as int, not void.
6027 1996-07-15  Andrew Innes  <andrewi@harlequin.co.uk>
6029         * ntlib.h: Correct return type of getwd.
6030         * ntlib.c (getwd): Correct return type.
6032 1996-07-02  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
6034         * emacsserver.c (main) [HAVE_SOCKETS]: Call rewind before writing
6035         to infile.
6037 1996-07-01  Andrew Innes  <andrewi@harlequin.co.uk>
6039         * makefile.nt: Remove all references to wakeup.
6041 1996-06-28  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
6043         * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
6044         explicit, mutable, typename.
6046 1996-06-29  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
6048         * emacsclient.c (main) [HAVE_SOCKETS]: Use two separate stdio
6049         streams, one for sending and one for reading the reply.
6051 1996-06-21  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
6053         * Makefile.in (timer, timer.o, getdate.o, $(srcdir)/getdate.c)
6054         (wakeup): Target deleted.
6055         (UTILITIES): Delete wakeup and timer.
6057         * wakeup.c, timer.c, getdate.y, getdate.c: Files deleted.
6059 1996-06-11  Geoff Voelker  <voelker@cs.washington.edu>
6061         * etags.c (etags_getcwd) [DOS_NT]: Change conditional to MSDOS only.
6062         * makefile.nt (ETAGS_CFLAGS): Define HAVE_GETCWD macro.
6064 1996-06-06  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
6066         * etags.c (main): Copy cwd when appending slash.
6068 1996-05-25  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6070         * Version 19.31 released.
6072 1996-05-17  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
6074         * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
6075         (Pascal_functions): Increase linecharno by the correct number of
6076         chars, inline the GET_NEW_LINE macro and delete its definition.
6078 1996-05-03  Andrew Innes  <andrewi@harlequin.co.uk>
6080         * makefile.nt (OBJDIR, BLD): Remove macro definitions.
6082 1996-05-03  Andrew Innes  <andrewi@harlequin.co.uk>
6084         * makefile.nt (LOCAL_FLAGS): Include path to NT shadow includes.
6085         (movemail.exe, fakemail.exe): Now built under Win32.o.
6087         * ntlib.c: Include ntlib.h.
6088         (nt_sleep): Rename to sleep.
6089         (getwd): Return directory.
6090         (getlogin, cuserid, getuid, setuid, getpwuid, getpass, fchown,
6091         sys_ctime, sys_fopen): New functions.
6093         * ntlib.h: New file.
6095 1996-04-29  Richard Stallman  <rms@delasyd.gnu.ai.mit.edu>
6097         * pop.c (SEND, RECV): Rename from send, recv.
6098         (pop_open, pop_trash): Make the trash_started code unconditional.
6099         (socket_connection): Delete casts to void.
6101 1996-04-28  Richard Stallman  <rms@delasyd.gnu.ai.mit.edu>
6103         * movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP):
6104         Definitions copied from lisp.h.
6106 1996-04-22  Andrew Innes  <andrewi@harlequin.co.uk>
6108         * fakemail.c [WINDOWSNT]: Include ntlib.h.
6110         * hexl.c [DOSNT]: Include fcntl.h.
6111         [WINDOWSNT]: Include io.h.
6112         (main) [MSDOS]: Change conditional to DOS_NT.
6114         * movemail.c (access, unlink) [WINDOWSNT]: Macros undefined.
6115         (fork, syswait, DISABLE_DIRECT_ACCESS) [WINDOWSNT]: Macros defined.
6116         [WINDOWSNT]: Include locking.h.
6117         (main): Update usage message.  Use IS_DIRECTORY_SEP.
6118         (main) [DISABLE_DIRECT_ACCESS]: Don't check access if defined.
6119         (main) [WINDOWSNT]: Invoke locking instead of flock.
6120         (main) [MAIL_USE_SYSTEM_LOCK && WINDOWSNT]: Emulate ftruncate.
6121         (main) [MAIL_USE_POP]: Pass password to popmail if used.
6122         Include winsock.h; don't include unix inet headers.
6123         (popmail): Add password argument and pass it to pop_open.
6124         Open output file in binary mode.
6126         * pop.c [WINDOWSNT]: Include winsock.h and ntlib.h.
6127         Macro SOCKET_ERROR undefined.
6128         Don't declare h_errno.
6129         [!WINDOWSNT]: Define macros recv and send.
6130         [!WINDOWSNT] (POP_SERVICE): Change to pop3.
6131         (pop_open) [WINDOWSNT]: Initialize trash_started.
6132         (have_winsock) [WINDOWSNT]: New variable.
6133         (socket_connection) [WINDOWSNT]: Initialize winsock.
6134         (socket_connection): Use closesocket instead of close.
6135         (getline): Use recv instead of read.
6136         (fullwrite): Use send instead of write.
6137         (pop_trash): Use closesocket instead of close.
6138         (pop_trash) [WINDOWSNT]: Cleanup winsock.
6139         Check if being called recursively by sendline.
6141         * pop.h (struct _popserver): New field trash_started.
6143         * wakeup.c [HAVE_CONFIG_H]: Only include config.h when defined.
6145 1996-04-14  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6147         * hexl.c (main) [DJGPP v2]: Don't change to binary for a tty.
6149 1996-04-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6151         * etags.c [WINDOWSNT]: Include io.h.
6153 1996-04-10  Geoff Voelker  <voelker@cs.washington.edu>
6155         * makefile.nt (CTAGSOBJ): Compile with regexp support.
6157 1996-04-09  Eli Zaretskii  <eliz@is.elta.co.il>
6159         * hexl.c [DJGPP v2]: Include io.h.
6160         (main) [DJGPP v2]: Switch standard streams to binary with setmode.
6162         * b2m.c (main) [MSDOS]: Switch standard streams to binary under
6163         DJGPP v2.
6165 1996-04-02  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6167         * etags.c (absolute_filename): Use absolutefn.
6169 1996-03-31  Eli Zaretskii  <eliz@is.elta.co.il>
6171         * etags.c (absolutefn) [DOS_NT]: Support Novell drives whose drive
6172         letter isn't an alphabetic character.
6173         (main) [DOS_NT]: Use binary mode on redirected `stdout'.
6174         (process_file) [DOS_NT]: Convert all slashes to forward style.
6175         (absolute_filename) [DOS_NT]: Emit error message for relative
6176         paths with a drive letter.
6177         (absolute_filename) [DOS_NT]: Handle absolute pathnames with
6178         DOS/NT drive letters which try to reference the parent of the root.
6179         (absolute_dirname) [DOS_NT]: Convert all slashes to forward style.
6181 1996-03-27  Geoff Voelker  <voelker@cs.washington.edu>
6183         * makefile.nt: Change uses of del to $(DEL).
6185 1996-03-22  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
6187         * etags.c (just_read_file): Reset lineno and charno on entry.
6189 1996-03-15  Anders Lindgren  <andersl@csd.uu.se>
6191         * etags.c: Prolog language totally rewritten.
6192         (Prolog_functions): Rewritten from scratch.
6193         (skip_comment, prolog_getit): Remove.
6194         (prolog_skip_comment): New function, like old skip_comment.
6195         (prolog_pred, prolog_atom, prolog_white): New functions.
6196         (erlang_func, erlang_attributes): Forward declarations added.
6197         (erlang_atom): Check if backslash ends line inside quoted atom.
6199 1996-03-14  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
6201         * etags.c (absolutefn): DOS_NT version corrected.
6202         (main): Append "/" to the dir name only if not already there.
6203         (print_help): Explain the absolute/relative file name issue.
6205 1996-03-08  Anders Lindgren  <andersl@csd.uu.se>
6207         * etags.c: New Language Erlang added.
6208         (Erlang_functions, erlang_func, erlang_attribute, erlang_atom)
6209         (erlang_white): New functions.
6210         (Erlang_suffixes): New suffix list.
6211         (lang_names): Erlang entry added.
6212         (prolog_getit): Accepts headers spanning several lines.
6213         Always name tags.
6214         (Prolog_functions): Remove incorrect compensation for
6215         newline characters.
6216         (readline_internal): Zero-terminate last line.
6218 1996-03-20  Mike Long  <mike.long@analog.com>
6220         * b2m.c (main): Initialize progname variable before using it.
6221         Quote `username' in From_ header.
6223 1996-03-18  Geoff Voelker  <voelker@cs.washington.edu>
6225         * ntlib.c (getpid): New function.
6227 1996-02-21  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
6229         * emacsclient.c (main, both definitions):
6230         Print a newline for normal termination.
6232 1996-02-21  Noah Friedman  <friedman@prep.ai.mit.edu>
6234         * tcp.c (main): Convert port to network byte order.
6236 1996-01-20  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6238         * pop.c (pop_retrieve, getline): Avoid type clashes.
6240 1996-01-19  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6242         * etags.c (enum sym_type, anonymous enum): Delete final comma.
6244 1996-01-15  Paul Eggert  <eggert@twinsun.com>
6246         * rcs2log (initialize_fullname): Add support for NIS+.
6247         (hostname): Fully qualify the default hostname with the domainname
6248         if the hostname lacks a `.'.
6250 1996-01-10  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6252         * etags.c (consider_token): Fix typo in expression.
6254 1996-01-04  Paul Eggert  <eggert@twinsun.com>
6256         * etags.c (substitute): Fix spelling in message.
6258 1996-01-03  George V. Reilly  <georger@microcrafts.com>
6260         * makefile.nt (etags, ctags): Compile with regexp support.
6261         (make-docfile, wakeup, etags, ctags, hexl): Ensure build
6262         subdirectory exists before compiling.
6264 1996-01-02  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6266         * emacsserver.c (main): Do chmod based on existing permission.
6268 1995-12-27  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6270         * Makefile.in (install): Turn on read/execute permission.
6272 1995-12-03  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
6274         * Makefile.in (LIB_STANDARD_LIBSRC): Use this instead of LIB_STANDARD.
6275         (LOADLIBES): Use LIB_STANDARD_LIBSRC.
6277 1995-12-01  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
6279         * Makefile.in (THIS_IS_MAKEFILE): Rename from THIS_IS_YMAKEFILE.
6281 1995-12-07  Francesco Potortì  <pot@cnuce.cnr.it>
6283         * etags.c (pfnote): Don't make a tag for ctags if there is no name.
6284         (getit, Asm_labels, Perl_functions, Pascal_functions, L_getit,
6285         get_scheme, prolog_getit): Name the tag in ctags mode.
6286         (pfnote): Truncate ctags lines to 50 chars, like it worked once.
6287         (Perl_interpreters): Accept "@PERL@" as an interpreter.
6288         (suggest_asking_for_help): New function.
6289         (main, get_language_from_name): Use suggest_asking_for_help.
6290         (main): Let get_language_from_name make language existence check.
6291         (streq, strneq): Check the arguments #if DEBUG.
6293 1995-12-06  Francesco Potortì  <pot@cnuce.cnr.it>
6295         * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
6296         (gperf): Add keywords for Objective C and GNU macros.
6297         (sym_type): Add values to account for Objective C and GNU macros.
6298         (begtk): The '@' character can start a token.
6299         (objdef, methodlen, objtag): New variables for Objective C.
6300         (consider_token, C_entries): Add code for Objective C.
6301         (plain_C_suffixes): Add .m and .lm for Objective C.
6302         (Yacc_suffixes): Add .ym for Objective yacc.
6303         (GROW_LINEBUFFER): New macro.
6304         (consider_token, C_entries, Pascal_functions): Use the new macro.
6305         (consider_token): Take one more argument.  Caller changed.
6306         (consider_token): Use the hashing function to spot GNU macros.
6307         (C_entries): Consider // as a comment start even in plain C for
6308         the sake of Objective C parsing.
6310 1995-12-04  Francesco Potortì  <pot@cnuce.cnr.it>
6312         * Makefile.in (ctags): Depend on etags only for simplicity;
6313         compile with regexp support enabled.
6315 1995-11-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6317         * Version 19.30 released.
6319 1995-11-22  Geoff Voelker  <voelker@cs.washington.edu>
6321         * makefile.nt (DOC, clean): Don't use switches to del not
6322         supported by Windows 95.
6324 1995-11-13  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6326         * Makefile.in (regex.o): Depend on ../src/config.h.
6328 1995-11-12  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6330         * Makefile.in (LIB_STANDARD): Extract this as in src/Makefile.in.
6331         (LOADLIBES): Use LIB_STANDARD.
6333 1995-11-07  Kevin Gallo  <kgallo@microsoft.com>
6335         * makefile.nt (DOC): Include strings from w32term.c, w32xfns.c,
6336         w32fns.c, w32faces.c, w32select.c, w32menu.c, w32reg.c; remove
6337         Windows 95 conditional.
6339 1995-11-06  Francesco Potortì  (pot@cnuce.cnr.it)
6341         * etags.c (get_lang_from_name, get_lang_from_interpreter)
6342         (get_lang_from_suffix): New functions.
6343         (get_language): Function deleted.
6344         (lang_entry): Two members added to struct.
6345         (lang_names): Reflect the new layout of lang_entry.
6346         (print_language_names, main, find_entries): Use the new functions.
6347         (find_entries): Look at the first line for #! if no language.
6348         (C_entries): Invalidate the token when funcdef is reset.
6349         (Perl_functions): New function.
6350         (lang_suffixes): .pl and .pm are Perl suffixes.
6352 1995-11-02  Francesco Potortì  (pot@cnuce.cnr.it)
6354         * etags.c (lowcase): Use the standard tolower function.
6355         (substitute): Remove some wrong and some useless code related with
6356         escape '\' character in regexp replacement string.
6357         (TEX_defenv): Add part, appendix, entry, index.  Remove typeout.
6358         (lang_suffixes): New suffixes: .hpp for C++; .f90 for Fortran;
6359         .bib, .ltx, .TeX for TeX (.bbl, .dtx removed); .ml for Lisp;
6360         .prolog for prolog (.pl removed).
6361         (massage_name, etags_getcwd): Use lowcase instead of tolower.
6362         (C_entries, find_entries): Add comments about memory leakage.
6363         (add_node): Dead code removed.
6365 1995-10-29  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6367         * Makefile.in (getdate.o, movemail.o): Specify -Demacs.
6368         (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Delete -Demacs.
6370 1995-08-30  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6372         * test-distrib.c: Add #undef for open, close, read, write.
6374 1995-08-23  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6376         * test-distrib.c [HAVE_CONFIG_H]: Include config.h.
6377         [! O_RDONLY]: Define it to zero.
6378         (main): Use O_RDONLY instead of explicit zero.
6380 1995-08-17  Francesco Potortì  (pot@cnuce.cnr.it)
6382         * etags.c (Pascal_functions): Close comment bug corrected.
6383         (add_node): Correctly compare node file names.
6384         (Pascal_functions): Correctly allocate and free memory for tline.
6385         (pfnote): Put the definition of fp in the innermost block.
6386         (NODE): `named' member removed.
6387         (pfnote, free_tree, put_entries, total_size_of_entries): Do not
6388         use the `named' member, check whether `name' is NULL instead.
6389         (pfnote): `named' argument removed, all callers changed.
6390         (getit, Asm_labels, Pascal_functions, L_getit, get_scheme,
6391         TeX_functions, TEX_getit, prolog_getit): Useless string allocation
6392         removed from pfnote call, some code cleanup.
6393         (relative_filename): Free temporary space allocated by concat.
6395 1995-08-16  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6397         * Makefile.in (getdate.c): New target.
6398         (getdate.o): Just compile getdate.c.
6400 1995-08-12  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6402         * fakemail.c (xrealloc): Change cast to match return type.
6404 1995-08-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6406         * fakemail.c (xmalloc, xrealloc): Use return-type long *.
6408 1995-08-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6410         * movemail.c (main): Fix previous change.
6411         Add error check for empty OUTNAME.
6413 1995-08-05  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6415         * movemail.c (main): Mention lock file name in error message.
6417 1995-07-30  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6419         * profile.c (gettimeofday): New function, defined if necessary.
6421 1995-07-18  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6423         * Makefile.in: Renamed from Makefile.in.in.
6424         (distclean): Delete Makefile.c, not Makefile.in.
6426 1995-07-17  Michael Shields  <shields@tembel.org>
6428         * Makefile.in.in (tags): Synonym for `TAGS'.
6430 1995-07-16  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6432         * Makefile.in.in (install, maybe-blessmail): Don't cd ..;
6433         configure has already set $(INSTALL) to the proper relative path.
6435 1995-07-08  Paul Eggert  <eggert@twinsun.com>
6437         * rcs2log (datearg): Separate date from time with comma, not space,
6438         to work around CVS 1.5 bug.
6439         (CVSROOT): Don't abort when unset if repository is absolute.
6441 1995-07-07  Paul Eggert  <eggert@twinsun.com>
6443         * rcs-checkin, rcs2log, vcdiff:
6444         Replace `#!/bin/sh' with `#! /bin/sh', for benefit of systems
6445         that interpret `#! /' as a 4-byte magic number.
6447 1995-06-29  Jonathan I. Kamens  <jik@cam.ov.com>
6449         * movemail.c (main) [MAIL_USE_POP]: When a user specifies a
6450         mailbox with "po:mailbox", the mailbox is everything after the
6451         "po:" prefix.
6453 1995-06-28  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6455         * emacsserver.c: Make all error messages start with `Error: '.
6456         (fatal_error, perror_1): New functions, use throughout.
6458 1995-06-28  Paul Eggert  <eggert@twinsun.com>
6460         * rcs2log (CVSROOT, repository):
6461         Allow remote repositories a la CVS 1.4.
6463 1995-06-27  Francesco Potortì  (pot@cnuce.cnr.it)
6465         * etags.c (plain_C_entries): New function.
6466         (lowcase): New macro.
6467         (tail, Fortran_functions, Pascal_functions): Use new macro lowcase.
6468         (lang_suffixes): New suffix ".pc" for Pro*C files.
6469         (consider_token): Don't tag all tokens beginning with DEFUN & Co..
6470         (tail): Look for the end of the token when comparing.
6471         (takeprec): Since now tail behaves differently, use strneq.
6473 1995-06-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6475         * movemail.c (main): Add newline in usage message.
6477 1995-06-21  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6479         * make-docfile.c (scan_file): Make sure it never looks at filename[-1].
6481 1995-06-21  Francesco Potortì  (pot@cnuce.cnr.it)
6483         * etags.c (find_entries): Rewind before rereading the input file.
6485 1995-06-20  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6487         * Version 19.29 released.
6489         * make-docfile.c (main) [MSDOS]: Do set _fmode.
6490         This undoes part of the previous change.
6492 1995-06-19  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6494         * make-docfile.c (main): On MSDOS, don't change stdout
6495         to binary, and insist on an -o option.
6497 1995-06-13  Geoff Voelker  <voelker@cs.washington.edu>
6499         * etags.c (process_file, absolute_filename): Handle filenames
6500         starting with a drive letter.
6502         * makefile.nt (install): Copy wakeup.exe properly.
6504 1995-06-08  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6506         * make-docfile.c [MSDOS]: #undef chdir.
6508 1995-06-04  Paul Eggert  <eggert@twinsun.com>
6510         * rcs2log (output_authors): Allow ':' in time zone,
6511         as per ISO 8601 and RCS 5.6.8 beta.
6513 1995-05-29  Francesco Potortì  (pot@cnuce.cnr.it)
6515         * etags.c (etags_getcwd): Undo the /bin/pwd change.  It may raise
6516         compatibility problems.
6518 1995-05-26  Richard Stallman  <rms@gnu.ai.mit.edu>
6520         * etags.c (etags_getcwd): Don't use #elif.
6521         Have just one function body.
6523 1995-05-25  Geoff Voelker  <voelker@cs.washington.edu>
6525         * makefile.nt (LIBS): Use BASE_LIBS.
6526         (make-docfile.exe, hexl.exe, wakeup.exe, etags.exe): Don't depend
6527         upon LIBS.
6528         (DOC): Use del instead of rm.
6529         (DOC) [WINDOWS95]: Use DOC.
6530         (clean): Handle MSVC aux files.
6531         (config.h, paths.h): Use $(CP) instead of cp.
6532         (config.h): Use $(CONFIG_H)
6533         (make-docfile.obj): Depend upon config.h.
6534         Clean up comments.
6536 1995-05-23  Francesco Potortì  (pot@cnuce.cnr.it)
6538         * etags.c (etags_getcwd): Use /bin/pwd instead of pwd because the
6539         former gives the true path even in the presence of simlinks.
6541 1995-05-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6543         * movemail.c (main): Increase lock timeout to five minutes.
6545 1995-05-06  Geoff Voelker  <voelker@cs.washington.edu>
6547         * makefile.nt (obj): Use .c files.
6549 1995-05-04  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6551         * make-docfile.c: Include config.h.
6552         (NO_SHORTNAMES): New definition.
6553         (xmalloc): Return long *.
6555         * etags.c (C_entries): Cast result of xrealloc.
6556         (xmalloc, xrealloc): Declare them to return long *.
6558         * b2m.c (xmalloc, xrealloc): Declare them long *.
6560         * movemail.c (xmalloc): Declare it to return long *.
6562 1995-04-30  Paul Eggert  <eggert@twinsun.com>
6564         * rcs2log (datearg): If rlog options are specified explicitly,
6565         omit the implicit '-d>DATE' option.
6566         (repository, rlog): Allow absolute paths to CVS repositories.
6567         Look only at the first line of CVS/Repository.
6569 1995-04-26  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6571         * Makefile.in.in (extraclean): Depend on maintainer-clean, not
6572         realclean.
6574 1995-04-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6576         * Makefile.in.in [REGEXP_IN_LIBC] (REGEXPOBJ, REGEXPDEPS):
6577         Alternative (empty) definitions.
6579 1995-04-18  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6581         * emacsclient.c (main): Add argv[0] to an error message.
6583 1995-04-13  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6585         * emacsclient.c (main): Improve error handling.
6586         * cvtmail.c (main, skip_to_lf): Improve error handling.
6587         (sysfail): New function.
6589         * b2m.c (main): Check for trailing ", " before trying to delete it.
6591 1995-04-12  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6593         * Makefile.in.in (all): Build test-distrib and make-docfile.
6595         * make-docfile.c (scan_c_file): At end, restore file name last char
6596         to its original value.
6598 1995-04-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6600         * emacsclient.c, emacsserver.c: Test NO_SOCKETS_IN_FILE_SYSTEM.
6602 1995-04-08  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6604         * Makefile.in.in (BASE_CFLAGS): Rename from ALLOCA_CFLAGS.
6605         (alloca.o, regex.o): Use BASE_CFLAGS.
6607 1995-04-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6609         * emacsclient.c [Berkeley sockets version] (main): Declare getcwd.
6611 1995-04-04  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6613         * Makefile.in.in (aixcc, aixcc.c): Targets deleted.
6614         (SOURCES, distclean): Remove obsolete references to aixcc.
6616 1995-04-02  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6618         * aixcc.lex: File deleted--surely obsolete now.
6620 1995-03-23  Paul Eggert  <eggert@twinsun.com>
6622         * rcs2log (output_authors): Replace /[/]/ by /[\/]/, for
6623         portability to mawk and nawk.
6625 1995-03-21  Paul Eggert  <eggert@twinsun.com>
6627         * rcs2log: Treat -u "login:fullname:mailaddr" as if it were
6628         -u "login<tab>fullname<tab>mailaddr".
6630 1995-03-21  Paul Eggert  <eggert@twinsun.com>
6632         * rcs2log: Add -u "login<tab>fullname<tab>mailaddr" option, which
6633         replaces the (now obsolescent) -n login fullname mailaddr option.
6634         Add -R option for recursive rlog.
6635         (AWK): New environment variable (default `awk') for awk program name.
6636         (output_authors, tab, loginFullnameMailaddrs, recursive): New vars.
6637         Quote authors and fullnames correctly.
6638         Don't omit path from repository root when logging CVS files.
6640 1995-03-15  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6642         * emacsclient.c, emacsserver.c: Use BSD sockets whenever available,
6643         even if HAVE_SYSVIPC.
6644         * emacsclient.c (main): Use getcwd if not BSD.
6646 1995-03-13  Francesco Potortì  (pot@cnuce.cnr.it)
6648         * etags.c (process_file): Free (filename) after using it.
6649         (readline_internal): Do not access the char before start of line.
6651 1995-02-22  Francesco Potortì  (pot@cnuce.cnr.it)
6653         * etags.c (C_entries): token_saved removed.  Initialize tok.valid and
6654         savetok.valid.  Mark token as valid when it is initialized.
6655         (make_tag): Make token only if token is valid and reset validity.
6656         (CNL_SAVE_DEFINEDEF): Test for savetok.valid instead of token_saved.
6657         (TOKEN): Add a new member: valid.
6659 1995-02-15  Francesco Potortì  (pot@cnuce.cnr.it)
6661         * etags.c (C_entries): Bug corrected in xrealloc of token_str.
6662         (main): Do not read twice the last filename in the stdin file list.
6664 1995-02-14  Francesco Potortì  (pot@cnuce.cnr.it)
6666         * etags.c (C_entries): Initialize the new members of TOKEN.
6667         (C_entries): Do not allocate a new space for each token found by
6668         consider_token.  Let make_tag do that instead.
6669         (make_tag): Since now TOKEN has memory of where it is taken from,
6670         this new macro substitutes both make_tag_from_new_lb and
6671         make_tag_from_oth_lb.  All callers changed.
6672         (TOKEN): Add linepos and buffer members.
6673         (main): Initialize token_str.
6674         (lang_extensions): Recognize .c++ and .h++ as C++ file suffixes.
6675         (token_str): New global variable used by C_entries.
6677 1995-02-07  Richard Stallman  <rms@pogo.gnu.ai.mit.edu>
6679         * Makefile.in.in (maintainer-clean): Rename from realclean.
6681 1995-02-01  Francesco Potortì  (pot@cnuce.cnr.it)
6683         * etags.c (pfnote): Initialize been_warned in the node.
6684         (C_entries): Remove a speed hack for the sake of clarity.
6686 1995-01-18  Francesco Potortì  (pot@cnuce.cnr.it)
6688         * etags.c (longopts, print_help, main): Use -I as abbreviation
6689         for the --ignore-indentation option.
6690         (main): Do not print an error message for unknown options.
6692 1995-01-12  Francesco Potortì  (pot@cnuce.cnr.it)
6694         * etags.c (FILEPOS, GET_CHARNO, GET_FILEPOS, max, LINENO): Delete.
6695         (append_to_tagfile, typedefs, typedefs_and_cplusplus)
6696         (constantypedefs, update, vgrind_style, no_warnings)
6697         (cxref_style, cplusplus, noindentypedefs): Were int, now logical.
6698         (permit_duplicates): Was a var, now a #define.
6699         (filename_lb): Was global, now local to main.
6700         (main): Open the tag file when in cxref mode.
6701         Use a BUFSIZ size buffer for making the shell commands.
6702         Look at the return value from the system routine.
6703         Exit when cannot open the tag file.
6704         (process_file): Open the file and pass the FILE* to find_entries.
6705         (find_entries): Now void, because does not open the file itself.
6706         (pfnote): Recovering from lack of memory does not work.  Removed.
6707         Use savenstr and simplify the code.
6708         (free_tree): Only free the name space if node is named.
6709         (structtag): Now a pointer, not a fixed length array of chars.
6710         (consider_token): Don't take a token as argument.  Use savenstr
6711         when saving a tag in structtag.  Callers changed.
6712         (TOKEN): Structure changed.  Now used only in C_entries.
6713         (TOKEN_SAVED_P, SAVE_TOKEN, RESTORE_TOKEN): Delete.
6714         (C_entries): nameb and savenameb deleted.  Use dinamic allocation.
6715         (pfcnt): Delete.  Users updated.
6716         (getit, Asm_labels, Pascal_functions, L_getit, get_scheme)
6717         (TEX_getit, prolog_getit): Use dinamic allocation for storing
6718         the tag instead of a fixed size buffer.
6720 1995-01-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6722         * movemail.c (main): Skip past the colon in inname.
6724 1995-01-10  Francesco Potortì  (pot@cnuce.cnr.it)
6726         * etags.c (pfatal): New function.
6727         (main, etags_getcwd): Use pfatal.
6728         (etags_getcwd): Corrected another bug in the HAVE_GETCWD version.
6730 1995-01-10  Francesco Potortì  (pot@cnuce.cnr.it)
6732         * etags.c (Lang_function): Use void instead to declare the
6733         language functions, because many compilers are buggy.
6734         (etags_getcwd): Fix the previous fix on the #else branch.
6735         (readline_internal): Discard possible \r before \n here.
6736         (C_entries): Do not deal with \r here: undo previous fix.
6738 1995-01-09  Francesco Potortì  (pot@fly)
6740         * b2m.c (concat, xmalloc, xrealloc, readline, xnew): Four new
6741         functions and a macro that allow the program to work on input
6742         lines of whatever length.  Copied from etags.c.
6743         (fatal): Print a fatal error message and exit.
6744         (main): Use the new functions.  Fixed a bug that made a \037 char
6745         appear at the end of the output.
6747 1995-01-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6749         * etags.c (C_entries): Ignore carriage return at end of line.
6751 1994-12-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6753         * fakemail.c (xmalloc, xrealloc): Add casts.
6754         (add_field): Handle <...> and "..." syntax.
6755         (setup_files, get_keyword): Clean up parens and line breaks.
6756         (args_size): Likewise.
6758 1994-12-21  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
6760         * yow.c: Include program name in error messages.
6762 1994-12-21  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6764         * make-docfile.c (scan_lisp_file): Handle dynamic doc strings.
6765         (xmalloc, fatal, error): New functions.
6766         (progname): New variable.
6767         (main): Set progname.
6769 1994-12-05  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6771         * emacsclient.c, emacsserver.c [HAVE_SYSVIPC]: Include sys/utsname.h.
6772         (main): If socket/mqueue name is in home dir, add in the host name.
6773         Rename .emacs_server to .emacs-server....
6775 1994-12-04  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6777         * emacsclient.c [!HAVE_SYSVIPC] (main): Fix error message diction.
6779 1994-11-22  Francesco Potortì  (pot@cnuce.cnr.it)
6781         * etags.c (print_help): Print --regex usage for ctags also.
6782         (main): Use -h in addition to -H as abbreviation for --help.
6784 1994-11-16  Francesco Potortì  (pot@cnuce.cnr.it)
6786         * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
6787         is compiled if this is defined.  The new functions and variables
6788         added #ifdef ETAGS_REGEXP are not listed in this ChangeLog.
6789         [VMS]: All VMS specific code previously contained in
6790         etags-vmslib.c is now included here, modified for dealing with
6791         language and regex options intermixed with filenames.
6792         (header_file): Global variable deleted.
6793         (Lang_Function): New typedef.  All language parser functions
6794         changed to this new type.
6795         (string_numeric_p, substr, prestr): Functions deleted.
6796         (readline_internal): Does the job that readline did previously.
6797         (longopts): --language and --regex options added.
6798         (lang_names, lang_extensions, lang_func, print_language_names):
6799         New structures, variables and functions for choosing languages.
6800         (print_help): Help strings updated.  Calls print_language_names.
6801         (argument_type, ARGUMENT): Typedefs for dealing with language and
6802         regex options intermixed with filenames.
6803         (main): Change the way of dealing with arguments on the command
6804         line to deal with language and regex options intermixed with
6805         filenames.
6806         (get_language, default_C_entries, Cplusplus_entries,
6807         Cstar_entries, Yacc_entries, just_read_file): New functions.
6808         (find_entries): Use the new method for choosing the language.
6809         (Pascal_functions): Allow intermixing of comment styles.
6810         (prolog_getit, skip_comment): Rewritten for speed.
6811         (readline): Rewritten to deal with regexps.
6813 1994-11-16  Francesco Potortì  (pot@cnuce.cnr.it)
6815         * etags.c (<errno.h>): #include added.
6816         (etags_getcwd): Check return value from getcwd.
6818 1994-11-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6820         * profile.c (TV1, TV2): Use EMACS_TIME as type.
6821         (get_time): Use EMACS_SUB_TIME.
6823 1994-10-30  Geoff Voelker  <voelker@cs.washington.edu>
6825         * ntlib.c: New file.
6826         * makefile.nt: New file.
6828         * make-docfile.c (main) [WINDOWSNT]: Set _fmode and stdout to O_BINARY.
6829         [WINDOWSNT]: Include the NT headers.
6830         (READ_TEXT, READ_BINARY): Test DOS_NT, not MSDOS.
6832         * etags.c (main, etags_getcwd): Test DOS_NT instead of MSDOS.
6833         [WINDOWSNT]: Include some NT headers.
6835 1994-10-24  Jonathan I. Kamens  (jik@cam.ov.com)
6837         * pop.c (getline): When a search of already-read input for CRLF
6838         fails, store the fact that we've searched it and don't search it
6839         again after reading more data.
6841         * pop.c (getline): When determining whether or not it's necessary
6842         to grow the input buffer, take into account the null that's stored
6843         at the end of already-read input in the buffer.
6845 1994-10-21  Francesco Potortì  (pot@cnuce.cnr.it)
6847         * etags.c (prestr, substr): Return a logical type.
6848         (consider_token): Comment out "EXFUN".  Use "DEFUN" instead of "DEF".
6849         (consider_token): Set funcdef to fignore when a DEFUN is met.
6850         (C_entries): Now we can use Tom Hageman patch for extern "C".
6852 1994-10-20  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6854         * movemail.c: PopServer renamed to popserver throughout.
6856 1994-10-20  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
6858         * etags.c: Don't declare malloc, since we include config.h.
6859         * fakemail.c: Likewise.
6861 1994-10-19  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6863         * movemail.c: Don't declare malloc.
6865 1994-10-19  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
6867         * rcs-checkin: Use test -r instead of < to check readability, to
6868         avoid syntax error.
6870 1994-10-19  Jonathan I. Kamens  (jik@cam.ov.com)
6872         * pop.c: Only include ../src/config.h if HAVE_CONFIG_H is
6873         defined, and if HAVE_CONFIG_H isn't defined, define
6874         MAIL_USE_POP always (so that this file can be included in
6875         other programs besides emacs).
6877         * pop.c: Only declare h_errno if HAVE_H_ERRNO isn't defined or
6878         HAVE_CONFIG_H isn't defined.
6880         * pop.c (find_crlf, getline): Instead of using strstr, use a
6881         custom function for finding CRLF.
6882         (my_strstr): Function deleted.
6884 1994-10-17  Jonathan I. Kamens  (jik@cam.ov.com)
6886         * pop.c (getline): Fix a segfault because of passing a
6887         non-null-terminated string into strstr().  Fix from
6888         djm@va.pubnix.com (David J. MacKenzie).
6890         * pop.c: Don't include <string.h> and <strings.h>.
6892         * pop.c: Include <des.h> before <krb.h>, rather than after.
6893         They should be interchangeable, and indeed the inclusion is done in
6894         both orders in various files in the Kerberos 4 library sources,
6895         but djm@va.pubnix.com (David J. MacKenzie) reports that BSDI
6896         requires that <des.h> be included first, and I don't see any harm
6897         in changing the order.
6899         * pop.c: Include ../src/config.h, to get HAVE_STRING_H and
6900         STDC_HEADERS, if they're defined.  Undef open, read, write and
6901         close after including it.
6903 1994-10-18  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6905         * pop.c: Fix mismatch in conditionals.
6907         * make-docfile.c (main): Don't process one input file twice.
6908         Never use exit code > 1.
6910         * pop.c (open, close, read, write): Add #undefs.
6912         * pop.c: Don't declare malloc, realloc, free.
6913         Include ../src/config.h.
6914         Don't include string.h or strings.h.
6915         Include des.h before krb.h.
6916         Do declare my_strstr.
6917         (getline): Really use my_strstr.
6918         Leave one empty place in server->buffer,
6919         and put a null at the end of the data in it.
6921 1994-10-17  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6923         * emacsserver.c [SYSV_IPC] (main): Catch SIGHUP as well.
6924         Don't call kill with pid 0.  Handle EINTR when receiving messages.
6926 1994-10-17  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6928         * Makefile.in.in (regex.o): Use full path to find regex.c.
6930 1994-10-17  Francesco Potortì  (pot@fly.cnuce.cnr.it)
6932         * Makefile.in.in (etags): Add dependency on regex.o, link with it.
6933         (REGEXPOBJ, REGEXPDEPS, regex.o): Target and macros added.
6935 1994-10-12  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
6937         * Makefile.in.in (DONT_INSTALL): Remove make-path.
6938         (${archlibdir}): Use mkinstalldirs instead.
6940         * movemail.c: Make functions that return nothing void, not
6941         implicitly int.
6942         (main): Improve usage message.
6943         (error): Write to stderr, not stdout.
6945         * b2m.c, cvtmail.c, digest-doc.c, emacsclient.c, emacsserver.c:
6946         * etags.c, fakemail.c, hexl.c, make-docfile.c, profile.c, sorted-doc.c:
6947         * test-distrib.c, timer.c, wakeup.c, yow.c: Eliminate some -Wall
6948         warnings from unused variables and implicitly declared functions.
6950 1994-10-11  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6952         * Makefile.in.in (clean): rm DOC* and *.tab.[ch].
6953         (distclean): Not here.
6955         * Makefile.in.in (libexecdir): Rename from libdir.
6957 1994-10-11  Francesco Potortì  (pot@cnuce.cnr.it)
6959         * etags.c (C_entries): Name the #define's that are macros.
6961 1994-10-10  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
6963         * emacsserver.c [! SYSVIPC] (main): Fix uses of FD_* macros:
6964         fd_set arg is a pointer, descriptor arg comes first.
6966 1994-09-29  Francesco Potortì  (pot@cnuce.cnr.it)
6968         * etags.c (C_entries): Recognize typedef of ANSI style functions.
6969         (C_entries): Recognize #define inside a struct.
6970         (C_entries): ANSI tells that preprocessor commands do not have to
6971         start on the first column.
6972         (print_help): Documentation corrected for -d and -D.
6973         (white, endtk): ANSI tells the vertical tab is a separator.
6975 1994-09-24  Jonathan I. Kamens  (jik@gza-client1.aktis.com)
6977         * Makefile.in.in (MOVE_FLAGS, MOVE_LIBS): New variables.
6978         (pop.o, movemail.o): New targets.
6979         (movemail): Link in pop.o and movemail.o.  Use MOVE_LIBS, MOVE_FLAGS.
6981         * pop.c, pop.h: New files.
6983         * movemail.c: Improve POP code, move most of it into a separate file.
6984         (mbx_delimit_end, mbx_delimit_begin): Check for errors.
6985         (mbx_write): Check for errors and for From line.
6986         (pop_retr, popmail): Use subroutines in pop.c to do the real work.
6987         (get_errmsg, multiline, getline, putline, pop_stat, pop_command)
6988         (pop_init): Functions deleted.
6990 1994-09-23  Richard Stallman  <rms@churchy.gnu.ai.mit.edu>
6992         * make-path.c (touchy_mkdir): Make dir ugo+rx even if it isn't new.
6993         Rename path to dirname.
6995 1994-09-23  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6997         * Makefile.in.in (UTILITIES):
6998         Remove test-distrib, make-docfile, make-path.
6999         (DONT_INSTALL): New variable--list those files here.
7000         (clean): Delete the files in DONT_INSTALL.
7002 1994-09-20  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7004         * b2m.c (from, labels, data): Use MAX_DATA_LEN as length.
7005         (main): Use fgets, not gets.
7007 1994-09-17  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7009         * timer.c: Don't declare malloc.
7011 1994-09-16  Karl Heuer  <kwzh@gnu.ai.mit.edu>
7013         * emacsserver.c (FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already
7014         defined, use simple 32-bit versions of these macros.
7015         (main) [HAVE_SOCKETS & !HAVE_SYSVIPC]: Use these macros.
7017 1994-09-16  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
7019         * etags.c (etags_getcwd): Use getcwd if available.
7021 1994-09-11  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7023         * Version 19.27 released.
7025 1994-09-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7027         * Version 19.26 released.
7029 1994-08-15  Paul Eggert  <eggert@twinsun.com>
7031         * rcs2log: Add support for CVS.
7032         Work with `rlog's that output ISO 8601 dates.
7034 1994-08-09  Lawrence R. Dodd  <dodd@roebling.poly.edu>
7036         * rcs2log: Use <> to delimit email address.
7038 1994-08-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7040         * emacsserver.c [SYSV_IPC] (main): Make a separate process
7041         so we can listen for multiple requests.
7043 1994-08-04  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7045         * movemail.c: Include config.h first thing.
7047 1994-08-01  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7049         * emacsserver.c (main): Add casts to avoid warnings.
7051 1994-07-29  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7053         * Makefile.in.in (${archlibdir}): Compare the proper dir
7054         before installing the scripts.
7056 1994-07-27  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7058         * emacsclient.c (main): New local var progname saves argv[0].
7060 1994-07-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7062         * emacsclient.c (main): Don't actually modify argv[0].
7063         Modify a copy instead.
7065 1994-07-25  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
7067         * profile.c (reset_watch, get_time): Use EMACS_GET_TIME.
7068         (tzp): Var deleted.
7070         * Makefile.in.in: Add #undef alloca.
7072 1994-07-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7074         * timer.c (xmalloc): New function.
7076 1994-07-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7078         * Makefile.in.in (ALLOCA_CFLAGS): New variable.
7079         (alloca.o): New target.
7081 1994-07-08  Dave Love  (d.love@dl.ac.uk)
7083         * etags.c (takeprec): Recognize `character*(*) function'.
7085 1994-07-08  Francesco Potortì  (pot@cnuce.cnr.it)
7087         * etags.c (main): Don't barf on obsolete -t and -T switches.
7088         (main): Print an explicative message when a switch is not known.
7090 1994-06-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7092         * hexl.c: Don't declare exit or perror.
7094         * emacsserver.c (main): Don't declare geteuid.
7095         Don't declare getenv if convex.
7097 1994-06-07  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7099         * Makefile.in.in (test-distrib): Use ALL_CFLAGS.
7101 1994-06-03  Francesco Potortì  (pot@fly.cnuce.cnr.it)
7103         * etags.c (absolute_filename): Remove infinite loop bug when
7104         accessing files in directories whose name begins with a dot.
7106 1994-06-03  Francesco Potortì  (pot@fly.cnuce.cnr.it)
7108         * etags.c (etags_getcwd): Delete the trailing newline from cwd.
7110 1994-06-01  Morten Welinder  (terra@diku.dk)
7112         * yow.c (rootrelativepath) [MSDOS]: Define, expanding to dynamic
7113         location of data directory.
7115 1994-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7117         * Version 19.25 released.
7119 1994-05-28  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7121         * Makefile.in.in (distclean): Delete Makefile, Makefile.in, blessmail.
7123 1994-05-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7125         * Makefile.in.in (blessmail): Don't depend on ../src/emacs.
7127 1994-05-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7129         * Version 19.24 released.
7131 1994-05-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7133         * make-docfile.c (write_c_args): Put `default' in upper case.
7135 1994-05-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7137         * etags.c (etags_getcwd): Cast result of popen.
7138         (popen): Declaration deleted.
7140 1994-05-17  Karl Heuer  (kwzh@gnu.ai.mit.edu)
7142         * etags.c [!MSDOS]: Declare popen.
7144 1994-05-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7146         * b2m.c (main): Avoid crash if argc is 1.
7148 1994-05-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7150         * Version 19.23 released.
7152         * Makefile.in.in (blessmail): Specify directory for blessmail.el.
7154 1994-05-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7156         * Makefile.in.in (maybe-blessmail): Mention bless-mail is in lib-src.
7158 1994-05-05  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
7160         * Makefile.in.in: Fix out of date comment.
7162 1994-05-05  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7164         * Makefile.in.in: Put in a separator for where to start cpp procssing.
7165         Move all autoconf substitutions above that point.
7166         Above that point, use Make-style comments.
7167         This goes with changes in ../configure.in.
7169 1994-05-03  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7171         * Makefile.in.in (maybe-blessmail): New target to print the blessmail
7172         warning message.
7173         (${archlibdir}): Don't do it here.  Don't depend on blessmail.
7175 1994-05-02  Karl Heuer  (kwzh@gnu.ai.mit.edu)
7177         * Makefile.in.in (${archlibdir}): Be lenient about wc output format.
7179 1994-05-01  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7181         * Makefile.in.in (${archlibdir}): Don't run blessmail; instead
7182         print advice to run it, if it has anything significant to do.
7183         And only if MOVEMAIL_NEEDS_BLESSING.
7184         (blessmail): Use emacs, not temacs.
7185         (configuration): Rename from configname.
7187 1994-04-30  Morten Welinder  (terra@diku.dk)
7189         * etags.c (find_entries): Treat `*.cpp' as C++ files.
7191 1994-04-30  Morten Welinder  (terra@diku.dk)
7193         * etags.c [MSDOS]: #include <sys/param.h> for the following.
7194         [MSDOS] (etags_getcwd): Define simple MSDOS version without spawning
7195         a shell.
7197 1994-04-29  Morten Welinder  (terra@diku.dk)
7199         * hexl.c [MSDOS]: Don't define proto type for exit.
7201 1994-04-28  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7203         * b2m.c: Don't include string.h or strings.h.
7205 1994-04-27  Karl Heuer  (kwzh@gnu.ai.mit.edu)
7207         * Makefile.in.in: C_SWITCH_SYSTEM and C_SWITCH_MACHINE are now cpp
7208         symbols, not make variables.
7210 1994-04-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7212         * Makefile.in.in (etags, ctags): Make VERSION a string constant.
7213         * etags.c (print_version): Print VERSION as a string.
7215 1994-04-20  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7217         * fakemail.c (readline): Fix updating of p when buffer grows.
7219 1994-04-20  Karl Heuer  (kwzh@gnu.ai.mit.edu)
7221         * Makefile.in.in (blessmail): New target.
7222         ${archlibdir}: Use blessmail when installing movemail.
7224 1994-04-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7226         * fakemail.c (readline): When extending the buffer,
7227         calculate end afresh using the new size.
7229 1994-04-18  Francesco Potortì  (pot@fly.cnuce.cnr.it)
7231         * etags.c (main, print_help): Eliminate the -F option.
7233 1994-04-18  Francesco Potortì  (pot@fly.cnuce.cnr.it)
7235         * etags.c (absolute_filename): Compare against '\0' instead of NULL.
7237 1994-04-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7239         * Makefile.in.in: Renamed from Makefile.in.
7240         Makefile.in is now generated from it, and then preprocessed.
7241         Change comments to C syntax.
7242         Include config.h.
7243         (LIBS_SYSTEM, LIBS_MACHINE): Define as empty if not defined.
7244         (LOADLIBES): Define from LIBS_SYSTEM and LIBS_MACHINE.
7246 1994-04-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7248         * movemail.c [HAVE_UNISTD_H]: Include unistd.h.
7250 1994-04-12  Francesco Potortì  (pot@fly.cnuce.cnr.it)
7252         * etags.c (etags_getcwd): Initialize bufsize.
7254 1994-04-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7256         * profile.c (gettimeofday): If system doesn't have this, define it
7257         to give a fatal error.
7259 1994-04-11  Karl Heuer  (kwzh@gnu.ai.mit.edu)
7261         * movemail.c (main): Use setuid, not seteuid.
7263 1994-04-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7265         * etags.c: #undef static.
7267 1994-04-08  Francesco Potortì  (pot@fly.cnuce.cnr.it)
7269         * etags.c (outf, outfiledir): Rename to tagf, tagfiledir.
7270         (PF_funcs, Asm_funcs, L_funcs, PAS_funcs, TEX_funcs)
7271         (Scheme_funcs, prolog_funcs): Rename to Fortran_functions,
7272         Asm_labels, Lisp_functions, Pascal_functions, Scheme_functions,
7273         TeX_functions, Prolog_functions.
7274         (inf): No more a global variable.
7275         (C_entries): Take 2nd parameter `inf' instead of using the global one.
7276         (find_entries): Add the cp1 var for optimization.
7277         (find_entries): Add more suffixes for assembler files.
7278         (Asm_funcs): Now finds labels even without an ending colon.
7280 1994-03-30  Francesco Potortì  (pot@fly.cnuce.cnr.it)
7282         * etags.c (main): Use etags_getcwd for compatibility.
7283         (etags_getcwd): New function.
7285 1994-03-25  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7287         * Makefile.in (etags, ctags): Pass -D for VERSION.
7289 1994-03-25  Francesco Potortì  (pot@cnuce.cnr.it)
7291         * etags.c (emacs_tags_format, ETAGS): Remove.  Use CTAGS instead.
7292         (main): Don't allow the use of -t and -T in etags mode.
7293         (print_help): Don't show options enabled by default.
7294         (print_version): Show the emacs version number if VERSION is #defined.
7295         (find_entries): Add "ss" as suffix for Chez Scheme.
7297 1994-03-23  Francesco Potortì  (pot@cnuce.cnr.it)
7299         * etags.c (cwd, outfiledir): Vars added.
7300         (relative_filename, absolute_filename, absolute_dirname):
7301         functions added to compute filenames in tags files.
7302         (process_file): Filenames in tags file are relative to the
7303         directory where the tags file is (useful with the -o option).
7304         (main): Initialize the outfiledir var.
7305         (TYPEDST): Add the `tignore' value.
7306         (C_entries): Corrected various small bugs.
7308 1994-03-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7310         * Makefile.in (UTILITIES): `env' deleted.
7311         (env): Target deleted.
7312         * env.c: File deleted.
7314 1994-03-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7316         * Makefile.in (install, ${archlibdir}): Switch back to ..
7317         before running INSTALL_PROGRAM.
7319 1994-03-14  Francesco Potortì  (pot@cnuce.cnr.it)
7321         * etags.c (TYPEDST): Add the `tignore' value.
7322         (C_entries): Corrected various bugs, now correctly parses the
7323         `extern "C" {' construction (patch by Tom R.Hageman).
7325 1994-03-05  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7327         * b2m.c: Use <...> to include config.h.
7328         Don't include stdlib.h.
7330 1994-03-03  Heiko Muenkel  (muenkel@tnt.uni-hannover.de)
7332         * b2m.c (main): Change delimiter from "^L" to "^_^L".
7333         Allow for text following "BABYL OPTIONS:".
7334         Add --help option.  Use argv[0] in error messages.
7336 1994-03-01  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7338         * emacsclient.c (main) [HAVE_SYSVIPC]:
7339         Make msgp->mtext longer if necessary.
7340         On HPUX, error if it's more than 512 chars.
7342 1994-02-26  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
7344         * etags-vmslib.c: Use GPL.
7345         * emacstool.c: Use GPL.
7346         * fakemail.c: Update GPL.
7348         * make-path.c (main): Return 1 on error, not -1.
7349         Update GPL.
7351         * cvtmail.c: Declare malloc, realloc, xmalloc, xrealloc, getenv.
7352         (xmalloc, xrealloc): Return char *, not int.
7353         (error): Write to stderr, not stdout.
7354         Update GPL.
7356 1994-02-23  Karl Heuer  (kwzh@gnu.ai.mit.edu)
7358         * profile.c (main, get_time): Don't crash on invalid input.
7360 1994-02-22  Karl Heuer  (kwzh@gnu.ai.mit.edu)
7362         * profile.c (get_time): Simplify; avoid calling index.
7363         (main): Exit on EOF.
7365 1994-02-17  Francesco Potortì  (pot@cnuce.cnr.it)
7367         * etags.c (--absolute-pathnames): Option removed.
7369 1994-02-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7371         * fakemail.c (put_line): Don't break the line if it all fits.
7373 1994-02-14  Francesco Potortì  (pot@fly)
7375         * etags.c (absolute_pathnames, cwd): Add global vars.
7376         (longopts, print_help, main, process_file): Put absolute filenames
7377         in the tag file if the -A --absolute-pathnames option is used.
7378         (print_help): Alphabetically order the options.
7379         (malloc, realloc, strcpy, strncpy, strcmp): Remove extern declar.
7381 1994-02-09  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7383         * Makefile.in (C_SWITCH_MACHINE): Get this from autoconf.
7384         (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use C_SWITCH_MACHINE.
7386 1994-02-07  Christian Lynbech  (lynbech@avignon)
7388         * emacsserver.c (main) [HAVE_SYSVIPC]: Reverse test of fork value.
7390 1994-02-04  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7392         * Makefile.in (UTILITIES): Mention profile.
7393         (profile): New target.
7395         * profile.c: New file.
7397 1994-01-16  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
7399         * make-docfile.c: Make the argument list output look more like the
7400         Lisp docstrings do.
7401         (write_c_args): Take new arg FUNC.  Make output
7402         look like lisp call prototypes: (function ARG1 ARG2), upcasing args.
7403         (scan_c_file): Pass BUF to write_c_args for FUNC arg.
7405 1994-01-14  Francesco Potortì  (pot@cnuce.cnr.it)
7407         * etags.c (stab_entry, stab_create, stab_find, stab_search,
7408         stab_type, add_keyword, C_reate_stab, C_create_stabs): Delete.
7409         Use gperf generated hash table instead of linked list.
7410         (C_stab_entry, hash, in_word_set, get_C_stab, C_symtype): Add.
7411         Mostly code generated by gperf.
7412         (consider_token): Remove unused parameter `lp'.
7413         (PF_funcs, getit): Allow subroutine and similar declarations
7414         to span multiple lines.
7415         (C_entries): Check for newline if inchar to avoid bus errors.
7416         (process_file, find_entries): Distinguish among nonexistent
7417         and not regular file.
7419 1994-01-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7421         * timer.c: Include errno.h; don't include fasync.h.
7422         (schedule): Don't return a value.
7423         (sigcatch): Reestablish the handler first.
7424         (getevent): Always call notify at the end.
7425         (notify): Defer alarms around the whole body of function.
7427 1994-01-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7429         * timer.c (main): Don't request SIGIO, and don't handle it.
7430         Loop calling getevent.
7431         (sigcatch): Delete code to handle SIGIO.
7432         if defer_alarms is set, don't call notify, just set alarm_deferred.
7433         (getevent): Use read, not getchar.  Handle EINTR and EAGAIN.
7434         Set defer_alarms around realloc and schedule.
7435         If alarm_deferred gets set, call notify.
7436         Likewise if this event is the only pending event.
7437         Make buf and buf_size global variables.
7438         Don't malloc buf if it is already non-zero.
7439         (schedule): Just exit if run out of memory.
7440         Return the number of events.
7441         (signal) [_CX_UX]: Add #undef.
7443 1994-01-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7445         * timer.c [USG] (SIGIO): Define as SIGPOLL.
7446         (main) [USG]: Do ioctl to enable SIGPOLL.
7448 1994-01-08  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
7450         * timer.c: Don't declare sys_errlist; declare strerror instead.
7451         (schedule, main): Call strerror instead of using sys_errlist.
7452         * movemail.c (get_errmsg, pfatal_with_name, pfatal_and_delete):
7453         Call strerror instead of using sys_errlist.
7454         * env.c (main): Call strerror instead of using sys_errlist.
7455         * emacsclient.c: Don't declare sys_errlist; declare strerror instead.
7456         (main): Call strerror instead of using sys_errlist.
7457         * emacsclient.c [! HAVE_STRERROR] (strerror): Define the function.
7458         * env.c [! HAVE_STRERROR] (strerror): Likewise.
7459         * timer.c [! HAVE_STRERROR] (strerror): Likewise.
7460         * movemail.c [! HAVE_STRERROR] (strerror): Likewise.
7462 1994-01-05  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7464         * hexl.c: Fix up whitespace.  Get rid of spurious casts to void.
7466         * movemail.c (malloc): Don't declare it.
7467         (xmalloc): Cast result of malloc.
7468         (strcpy): Don't declare it.
7470 1993-11-14  Morten Welinder  (terra@diku.dk)
7472         * hexl.c [MSDOS]: Use binary file modes for non-text side of pipe.
7473         (main): Use fclose to close file opened by fopen.
7475         * fakemail.c (main) [MSDOS]: Dummy stub just to make the file compile.
7477         * movemail.c [MSDOS]: #undef `access'.
7479         * b2m.c (main) [MSDOS]: Open all files as binary.
7480         * etags.c (main) [MSDOS]: Open all files as binary.
7482         * make-docfile.c [MSDOS]: Use text/binary mode as appropriate.
7483         (scan_c_file, scan_lisp_file): Extra parameter for the mode to open
7484         with.
7486 1994-01-02  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7488         * Makefile.in (ALL_CFLAGS): Include LDFLAGS.
7489         Use ALL_CFLAGS in all the rules that compile and link with one cmd.
7490         (LINK_CFLAGS): New variable.
7491         (timer): Use LINK_CFLAGS.
7493 1993-12-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7495         * movemail.c: Include syswait.h.
7496         Fork a subprocess and use it to copy the mail file.
7498 1993-12-07  Richard Stallman  (rms@srarc2)
7500         * make-docfile.c (scan_lisp_file): Don't add newline at end of string.
7502 1993-12-04  Richard Stallman  (rms@srarc2)
7504         * movemail.c (main): When making tempname, cast result of xmalloc.
7505         Include room for EXXXXXX in the size.
7506         Don't use result of strcpy.
7508 1993-12-03  Paul Eggert  (eggert@twinsun.com)
7510         * vcdiff: Add --brief option.
7512 1993-12-02  Richard Stallman  (rms@srarc2)
7514         * Makefile.in (${archlibdir}, install): Use $(INSTALL_PROGRAM)
7515         for all executables and scripts.
7517 1993-11-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7519         * Version 19.22 released.
7521 1993-11-26  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7523         * Makefile.in (mostlyclean): Make it distinct from clean.
7525 1993-11-24  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7527         * Makefile.in (${archlibdir}): Don't do chown or chgrp.
7529 1993-11-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7531         * Version 19.21 released.
7533         * Makefile.in (install): Don't change mode or group when installing.
7535         * etags.c (FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
7537 1993-11-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7539         * make-docfile.c (read_c_string): For "", concatenate the two strings.
7541         * movemail.c (main): Fix error message text.
7543 1993-11-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7545         * Version 19.20 released.
7547 1993-11-08  Tom Hageman  (tom@basil.icce.rug.nl)
7549         * etags.c (C_entries): Keep track of ()-parenthesis level so that
7550         functions returning a pointer to a function, a la `signal', can be
7551         parsed.  This also required new state `fstartlist' to `FUNCST'.
7552         (SAVE_TOKEN, RESTORE_TOKEN, TOKEN_SAVED_P): 1-deep token save stack.
7553         (C_entries, CNL): Use it to isolate preprocessor directive processing
7554         from the other state engines.
7555         (begtk): Add '~', for C++ class destructors.
7557 1993-11-02  Francesco Potortì  (pot@cnuce.cnr.it)
7559         * etags.c (consider_token): Remove unused variable firsttok.
7560         (prolog_getit): Call pfnote with the right number of arguments.
7562 1993-10-19  Paul Eggert  (eggert@twinsun.com)
7564         * rcs2log (printlogline): Don't generate lines containing only
7565         white space.
7567 1993-10-04  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
7569         * Makefile.in (${archlibdir}):
7570         Install ${SCRIPTS} from ${srcdir}, not cwd.
7572 1993-10-03  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
7574         * Makefile.in: Fixed typos or brainos of whoever thought `@' was
7575         the comment character.
7577 1993-10-01  Francesco Potortì  (pot@cnuce.cnr.it)
7579         * etags.c (process_file): Dead code removed.
7580         (S_ISREG): #define it using S_IFREG if not defined.
7581         (process_file): Regular files have nothing to do with symlinks.
7583 1993-09-28  Brian J. Fox  (bfox@ai.mit.edu)
7585         * Makefile.in (${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not
7586         from current directory.  Only chmod and chgrp files that we
7587         installed, which excludes ${INSTALLABLE_SCRIPTS}.  They go in
7588         ${bindir}.
7589         (INSTALLFLAGS): Delete definition, since it is an unused variable
7590         now.
7592 1993-09-27  Brian J. Fox  (bfox@ai.mit.edu)
7594         * Makefile.in (INSTALL, INSTALL_PROGRAM, INSTALL_DATA):
7595         Let configure figure out the correct values for these variables.
7597 1993-09-14  Brian J. Fox  (bfox@ai.mit.edu)
7599         * Makefile.in (archlibdir): Only install executables internally
7600         used by emacs; don't install bindir binaries here.
7602 1993-09-24  Paul Eggert  (eggert@twinsun.com)
7604         * rcs2log: Add -h, -n, -r options.
7605         By default, look for *,v files as well as RCS/*,v files.
7606         Use $TMPDIR (default /tmp) instead of /tmp.
7608 1993-09-20  Francesco Potortì  (pot@fly)
7610         * etags.c (C_entries): is_func is initialized here instead of in
7611         consider_token for the sake of the yacc rules section.
7612         (C_entries): Now class, struct, enum, union and typedef produce
7613         named tags.
7615 1993-09-11  Roland McGrath  (roland@baalperazim.gnu.ai.mit.edu)
7617         * yow.c: Include <src/paths.h>, instead of "src/paths.h".
7619 1993-09-10  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
7621         * Makefile.in: Support configuring in a different directory when
7622         ${srcdir} has already been configured.
7623         (ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir}
7624         -I${srcdir}/../src.
7625         (b2m, movemail, fakemail, env, emacsserver, emacsclient,
7626         getdate.o, timer.o, timer): Remove `-I${srcdir}/../src', since it
7627         is already in CPP_FLAGS.
7628         * etags.c, emacsclient.c, wakeup.c, timer.c, b2m.c, fakemail.c,
7629         movemail.c, emacsserver.c: Include <config.h> instead of "config.h".
7631 1993-08-25  Paul Eggert  (eggert@twinsun.com)
7633         * rcs2log: Change /{/ to /\{/ for POSIX ERE compatibility;
7634         otherwise, HP awk complains.
7636         * vcdiff: Append /usr/ccs/bin and /usr/sccs to PATH, since these
7637         are common hangouts for SCCS commands.
7639 1993-08-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7641         * Version 19.19 released.
7643 1993-08-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7645         * Makefile.in (make-path): Dep on config.h.
7647 1993-08-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7649         * b2m.c (TRUE, FALSE): Don't define if already defined.
7651 1993-08-09  Paul Eggert  (eggert@twinsun.com)
7653         * rcs2log (awkscript):
7654         Some sites put comma-separated junk after the fullname.
7655         Remove it, but leave "Bill Gates, Jr" alone.
7656         Remove the junk from fullnames like "0000-Admin(0000)".
7658 1993-08-08  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7660         * Version 19.18 released.
7662 1993-08-04  Francesco Potortì  (pot@spiff.gnu.ai.mit.edu)
7664         * etags.c (L_isdef, L_isquote, L_getit): Small optimizations.
7665         (L_funcs): The (foo::defmumble stuff now should work.
7666         (consider_token): Function returned random value--corrected.
7667         (C_entries): Corrected == versus = typo.
7669 1993-08-01  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
7671         * etags.c (put_entries): For NODE->rewritten, put pattern before
7672         \177 and name after, not vice versa.
7674 1993-08-01  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7676         * timer.c (main): Generate a SIGIO as soon as we've initialized.
7678 1993-07-30  Francesco Potortì  (pot@cnuce.cnr.it)
7680         * etags.c (FINCST): Add the fignore status.  Means we are
7681         after the parameter list and before the open curly brace.
7682         Allows correct parsing of C++ constructors.
7683         (C_entries, consider_token): Make use of fignore.
7684         (consider_token): Reset funcdef when next_token_is_func: when in
7685         ctags mode makes DEFVAR and others work better.
7686         (L_isquote): Function that recognizes the "(quote" string.
7687         (L_getit): Ignore quoting via "'" or "(quote".  Useful for defalias.
7689 1993-07-29  Paul Eggert  (eggert@twinsun.com)
7691         * rcs-checkin: Don't check whether a file is readable until we have
7692         decided not to ignore it.
7694 1993-07-20  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7696         * Makefile.in (etags): Depend on ../src/config.h.
7698         * emacsserver.c: Include types.h before file.h.
7700 1993-07-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7702         * Makefile.in (install): Use .n, not .new, for temporary filenames.
7704 1993-07-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7706         * Version 19.17 released.
7708 1993-07-15  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7710         * etags.c (print_help): Break up the very long strings containing
7711         the help message into shorter strings, to placate chintzy C
7712         compilers which can't handle strings that long.
7714         * wakeup.c: Use CPP tangle from autoconf manual to #include the
7715         correct combination of <time.h> and <sys/time.h>.
7717 1993-07-08  Francesco Potortì  (pot@cnuce.cnr.it)
7719         * etags.c (alloca): Remove all references to it.
7720         (main): Now calls xnew instead of alloca for portability.
7721         (../src/config.h): Included only if HAVE_CONFIG_H.
7722         (const): Void definition removed--config.h takes care of it.
7724 1993-07-08  Francesco Potortì  (pot@cnuce.cnr.it)
7726         * etags.c (consider_token): Was `==', now is `='.
7727         (consider_token): DEFUNs now treated like funcs in ctags mode.
7729         * etags.c (LEVEL_OK_FOR_FUNCDEF): Remove.
7730         (C_entries): Optimized the test that used LEVEL_OK_FOR_FUNCDEF.
7731         (C_entries): Remove a piece of useless code.
7732         (C_entries): Making typedef tags is delayed until a semicolon
7733         is met.  This handles "typedef int X, Y, Z;" correctly.
7735 1993-07-06  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
7737         * Version 19.16 released.
7739         * b2m.c: #include <sys/types.h>.
7740         (ltoday): Declare this to be time_t.
7742 1993-06-30  Paul Eggert  (eggert@twinsun.com)
7744         * vcdiff: Add -q option.
7746 1993-06-29  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7748         * etags.c: #include "config.h" and the alloca CPP tangle before
7749         #including the system headers and getopt.h.  AIX requires the
7750         #pragma to come before any actual C code.
7752 1993-06-21  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7754         * Makefile.in (ctags): Depend on etags, so that parallel makes
7755         don't write etags.o files on top of each other.
7757 1993-06-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7759         * version 19.15 released.
7761 1993-06-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7763         * etags.c (add_node): Move var last_node to file scope.
7765 1993-06-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7767         * Version 19.14 released.
7769 1993-06-16  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7771         Bring mumbleclean targets into conformance with GNU coding standards.
7772         * Makefile.in (distclean): Call clean to do most of the work.
7773         Delete aixcc.c and TAGS.
7774         (realclean): Just call distclean.
7776         * Makefile.in: Remember, spaces are not tabs.
7778 1993-06-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7780         * Makefile.in (CPP_CFLAGS): New variable.
7781         Use it instead of ALL_CFLAGS when compiling a .c file.
7782         (getopt.o, getopt1.o): Add explicit compilation commands.
7784 1993-06-10  Mark D. Baushke  (mdb@cisco.com)
7786         * etags.c: Reinstate old -f option as an alias for -o for
7787         installed base uses.
7789 1993-06-09  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7791         * emacsserver.c (main): When we're passing a `struct sockaddr_un'
7792         to bind or accept, cast the pointer, to avoid warnings on systems
7793         which declare prototypes for this.
7794         * emacsclient.c (main): Same.
7796         * Makefile.in (YACC): New variable, to be set by top-level Makefile.
7798 1993-06-08  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7800         * Version 19.13 released.
7802         * wakeup.c: Include sys/types.h, too; I think that's where time_t
7803         comes from, not sys/time.h.
7805 1993-06-02  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7807         * wakeup.c: Include sys/time.h.
7809         * etags.c: #undef static.
7811         * Version 19.12 released.
7813         * Makefile.in (all): Exclude INSTALLABLE_SCRIPTS and SCRIPTS from deps.
7815 1993-06-01  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7817         * Version 19.11 released.
7819         * timer.c [LINUX]: #undef signal.
7820         * emacsserver.c: #undef signal.
7822 1993-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7824         * wakeup.c (main): Make when a time_t.
7826 1993-05-30  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7828         * Makefile.in (${archlibdir}): Use `(cd foo && pwd)' instead of
7829         `(cd foo ; pwd)' to get the canonical name of a directory; cd
7830         might fail, and have pwd print out the current directory.
7832         * movemail.c [MAIL_USE_POP] (main): Don't use non-portable
7833         string-handling functions.
7835 1993-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7837         * Version 19.10 released.
7839 1993-05-29  Paul Eggert  (eggert@twinsun.com)
7841         * rcs2log: When given no file arguments, inspect RCS/.* as well
7842         as RCS/*.  Don't report an error if RCS is empty or nonexistent.
7844 1993-05-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7846         * Makefile.in (timer): Link with $(LOADLIBES).
7848 1993-05-28  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7850         * fakemail.c (put_line): Don't output \n\t unless more text follows.
7852 1993-05-28  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
7854         * etags.c: Replace the CPP tangle for alloca with the one from the
7855         autoconf documentation, since that's working elsewhere.
7857 1993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
7859         * Makefile.in (ALL_CFLAGS): Add "-I.", so the system and machine
7860         description files can find their ancestors.
7862 1993-05-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7864         * Makefile.in (install): Get the scripts from ${srcdir},
7865         unlike the executables.
7866         (ALL_CFLAGS): Add -I../src.
7868 1993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
7870         * Version 19.9 released.
7872 1993-05-26  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7874         * Makefile.in (install): Do install the programs listed in
7875         INSTALLABLE_SCRIPTS.  Make the renaming loop use INSTALLABLES and
7876         INSTALLABLE_SCRIPTS, instead of writing the programs out.
7878         * Makefile.in (ALL_CFLAGS): Include -I${srcdir}.
7879         (getopt.o, getopt1.c): Use ${srcdir} as appropriate.
7881 1993-05-25  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7883         * etags.c: Include ../src/config.h.
7885         * Makefile.in (install): Don't handle INSTALLABLE_SCRIPTS
7886         in first loop.  Delete files from bindir before installing new ones.
7887         (ALL_CFLAGS): Use ${srcdir} to find .../src dir.
7889 1993-05-24  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7891         * Version 19.8 released.
7893         * make-docfile.c: Doc fix.
7895 1993-05-24  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7897         * tcp.c: Fix comment syntax at top of file.
7898         (main): Don't call htons with the port number.
7900 1993-05-24  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7902         * Makefile.in (timer.o, sorted-doc.c): Link with alloca.o, if it's
7903         appropriate.
7905         * Makefile.in (install): Refer to the variables INSTALLABLES and
7906         INSTALLABLE_SCRIPTS, instead of writing them out.
7908 1993-05-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7910         * make-path.c (main): Return 0.
7912 1993-05-22  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
7914         * Version 19.7 released.
7916 1993-05-22  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7918         * make-docfile.c (scan_lisp_file): Recognize defalias like fset.
7920 1993-05-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7922         * tcp.c: New file.
7924 1993-05-18  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7926         * Makefile.in (.c.o): Make the rule start with a tab, not spaces.
7928 1993-05-15  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
7930         * timer.c (notify): Don't call sighold or sigrelse; they're USG
7931         only.  We should really fix this later, but let's just make it
7932         compile for now.
7934         Install patches from David J. Mackenzie to make the srcdir option
7935         work.
7936         * Makefile.in (srcdir, VPATH): Get this value from the top-level
7937         Makefile.
7938         (INSTALLABLES): Split this into two lists - INSTALLABLES and
7939         INSTALLABLE_SCRIPTS.
7940         (INSTALLABLE_SCRIPTS): New list.
7941         (EXECUTABLES): Include INSTALLABLE_SCRIPTS.
7942         (${archlibdir}): The scripts to be installed live in the source
7943         tree, not in the object tree.
7944         (test-distrib): Note that the data file lives in the source tree,
7945         not the object tree.
7946         (GETOPTDEPS): Note that getopt.h lives in the source tree.
7947         (all other targets): Change references to source files to use
7948         ${srcdir}, except for config.h, which lives in the object dir.
7949         (timer.o): Note that this depends on ../src/config.h.
7950         * make-docfile.c (main): Add a -d option, to tell it where to find
7951         the source files.
7952         * test-distrib.c (main): Take the name of the distribution file to
7953         test from the command line.
7955         * timer.c: Fix misspellings of get_date function's name.
7957 1993-05-12  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
7959         * etags.c (main):
7960         Don't require that there be input files if -i switches were given.
7962 1993-05-09  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7964         The GNU coding standards specify that CFLAGS should be left for
7965         users to set.
7966         * Makefile.in (CFLAGS): Put this in the "things configure might
7967         edit" section, and have it default to -g.
7968         (ALL_CFLAGS): New variable, set to all the flags which should be
7969         passed to compilations.  Replace all other uses of CFLAGS with
7970         ALL_CFLAGS.
7971         (.c.o): New rule, to pass ALL_CFLAGS to compilations.
7973         * Makefile.in (DEFS): Remove this; it's always just going to be
7974         "-DHAVE_CONFIG_H -Demacs".
7976 1993-05-03  Paul Eggert  (eggert@twinsun.com)
7978         * rcs2log: mawk, SunOS 4.1.3 nawk, and Ultrix/MKS nawk all barf on
7979         /[/]/, so change it to /[\/]/.  This should work on all
7980         POSIX-compliant awks.  It's slightly wrong with traditional awk,
7981         since it matches \ too, but that's a minor problem compared to awk
7982         syntax errors.
7984 1993-05-01  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
7986         * Makefile.in (ALLOCA): New variable, whose value we should
7987         inherit from the top-level makefile.
7988         (etags, ctags): Include ALLOCA in the list of object files that
7989         these executables depend on and link.
7991 1993-04-09  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7993         * Makefile.in (DEFS): Rename from CONFIG_CFLAGS.
7995 1993-04-07  Jim Blandy  (jimb@churchy.gnu.ai.mit.edu)
7997         * make-docfile.c (write_c_args): Print an argument named "defalt"
7998         as "default".
8000 1993-03-24  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
8002         * Makefile.in (C_SWITCH_SYSTEM): New variable.
8003         (CFLAGS): Include C_SWITCH_SYSTEM in the flags to pass to the
8004         compiler.
8006 1993-03-22  Francesco Potortì  (pot@cnuce.cnr.it)
8008         * etags.c (YACC): Flag added to c_ext.
8009         (c_ext): No more a synonim for c_ext&C_PLPL because of YACC.
8010         (find_entries): Consistently use streq when reasonable.
8011         (find_entries): A .y file is a yacc file.
8012         (get_C_stab): c_ext becomes c_ext&C_PLPL.
8013         (C_entries): Logical cplpl means c_ext&C_PLPL.
8014         (C_entries): Logical yacc_rules means we are after the first %%.
8015         (C_entries): Add logic for yacc files.
8017 1993-03-16  Francesco Potortì  (pot@cnuce.cnr.it)
8019         * etags.c (C_entries): ':' case moved to the second switch.
8020         (C_entries): Do not examine token if structdef==scolonseen.
8021         (consider_token): structtag set to null string for enum.
8023 1993-03-12  Francesco Potortì  (pot@cnuce.cnr.it)
8025         * etags.c (GET_COOKIE): And related macros removed.
8026         (logical): Is now int, no more a char.
8027         (reg): Define deleted.
8028         (isgood, _gd, notgd): Delete.
8029         (gotone): Delete.
8030         (TOKEN): Member linestart removed.
8031         (linepos, prev_linepos, lb1): Delete.
8032         (main): Call initbuffer on lbs array instead of lb1.
8033         (init): Remove the initialization of the logical _gd array.
8034         (find_entries): A .sa suffix means assembler file.
8035         (C_create_stab): "auto", "void", "extern", "static" are st_C_typespec.
8036         All C state machines rewritten.
8037         (C_entries): Complete rewrite.
8038         (condider_token): Complete rewrite.
8039         (getline): Delete.
8041 1993-03-01  Francesco Potortì  (pot@fly.CNUCE.CNR.IT)
8043         * etags.c (C_entries): Add the quotednl logical variable.
8044         Used for parsing of #define's spanning multiple lines.
8046 1993-02-23  Francesco Potortì  (pot@fly.CNUCE.CNR.IT)
8048         * etags.c (C_entries): Save the definedef status even when a
8049         newline is met inside a string.
8051 1993-03-19  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)
8053         * Makefile.in (EXECUTABLES): Add rcs-checkin.
8055         * Makefile.in (unlock, relock): New productions.
8057 1993-03-16  Paul Eggert  (eggert@twinsun.com)
8059         * rcs2log: Some awks don't understand "\r".  Code around this.
8060         Unfortunately this requires putting a carriage return in the
8061         source code.  Don't assume that rlog will tolerate times like
8062         `10:10:60'; RCS 5.7 won't allow this.
8064 1993-03-10  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
8066         * timer.c (main): Set the ownership of the stdin file descriptor
8067         to the current process.  Print error messages if either of the
8068         fcntl's fails.
8070         * timer.c (sigcatch): Declare this to return SIGTYPE (defined in
8071         ../src/config.h), not void.
8073 1993-03-06  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
8075         * b2m.c (main): Don't exit upon reading a blank line.
8077 1993-03-01  Francesco Potortì  (pot@fly.CNUCE.CNR.IT)
8079         * etags.c (C_entries): New local variable quotednl.  Used for
8080         parsing of #define's spanning multiple lines.
8082         * etags.c (C_entries): Save the definedef status
8083         even when a newline is met inside a string.
8085 1993-02-26  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
8087         * timer.c (notify): Initialize waitfor properly.
8089 1993-02-22  Francesco Potortì  (pot@CNUCE.CNR.IT)
8091         * etags.c (C_entries): Don't reset definedef when a newline inside a
8092         comment is met.
8094 1993-01-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
8096         * etags.c (find_entries): If filename ends in .f or .for,
8097         don't try anything but Fortran.
8099 1993-01-08  Michael I Bushnell  (mib@geech.gnu.ai.mit.edu)
8101         * timer.c (notify): Flush stdout after writing message to avoid lossage
8102         on terminals.
8104         (notify): Also, write a newline after the token.
8106 1992-12-12  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
8108         * Makefile.in (exec_prefix): New variable.
8109         (bindir, libdir): Use it instead of `prefix'.
8111         * Makefile.in (CFLAGS): #define HAVE_CONFIG_H, too.
8113         * Makefile.in (libdir): Default to ${prefix}/lib.
8114         (archlibdir): Adjust to match.
8116         * Makefile.in (distclean): Don't delete backup or autosave files.
8117         (extraclean): Like realclean, but does delete backup and autosave
8118         files.
8120         * Makefile.in (realclean): Ignore errors from rm.
8122         * Makefile.in (distclean): Don't bother to delete ../arch-lib;
8123         that doesn't exist anymore.
8125 1992-12-11  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
8127         * Makefile.in (prefix, bindir, libdir, srcdir): New variables, as
8128         described in the top-level Makefile.
8129         (UTILITIES): Add make-path to the list of utility programs.
8130         (../arch-lib): Replaced by the ${archlibdir} target, which places
8131         the executables in their permanent home.
8132         (install, install.sysv, install.xenix): Consolidated into one
8133         target which should work under all circumstances, modulo a few
8134         ignored error messages.
8136         * make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
8137         a different number of arguments than other DEFVARs, recognize it
8138         specially, and expect the right number of commas.
8140 1992-12-04  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
8142         * make-path.c: New program, to help with the installation process.
8143         * Makefile.in (make-path): New target.
8145         * make-path.c (touchy_mkdir): Remove debugging output.
8147 1992-11-05  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
8149         * Makefile.in (getdate.o): Add explicit target for this, so we
8150         can indicate that it depends on ../src/config.h.
8152 1992-11-04  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
8154         * Makefile.in (CONFIG_CFLAGS): Let the configure script edit this
8155         instead of CFLAGS.
8156         (CFLAGS): Add -Demacs and -I../src to CONFIG_CFLAGS to produce this.
8158 1992-09-30  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
8160         * getdate.y: Correctly recognize Mt. Xinu BSD running on an HP
8161         9000/300 as BSD; don't include both <sys/time.h> and <time.h> on
8162         that system.
8164         * Makefile.in (arch-lib): Give rm the `-f' option.
8166 1992-09-28  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
8168         * make-docfile.c (write_c_args): Rewritten to correctly print
8169         &optionals before the first identifier, but after the first paren.
8170         This code used to just wait for commas or spaces; now it notices
8171         identifier boundaries.
8173 1992-09-26  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
8175         * rcs2log: When getting date, use %02d instead of %.2d in awk printf.
8177 1992-09-23  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
8179         * make-docfile.c (write_c_args): Print the argument lists properly
8180         when the first argument is optional.
8182 1992-09-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
8184         * sorted-doc.c (main): Redefine special chars to use fonts tensy, teni.
8185         Redefine @item.  Set catcode of +.
8187 1992-08-22  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
8189         * emacsclient.c (main): Set IPC_CREAT in msgget call.
8191 1992-08-20  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
8193         * etags.c (TEX_funcs): Keep just 1 of two redundant nested loops.
8194         (TEX_decode_env): Make `tab' one element longer.
8196 1992-08-20  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8198         * etags.c (PF_funcs): Recognize the "entry" keyword.
8200 1992-08-18  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8202         * Makefile.in: Add rcs2log and vcdiff to the list of utilities.
8204 1992-08-14  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8206         * timer.c (events): Rather than having slots marked as in use or
8207         out of use by the `token' field, keep all pending events at the
8208         beginning of the array.  When we delete an event in the middle of
8209         the array, we move the last event into its place.
8210         (num_events): New variable.
8211         (schedule): It is now cheaper to find a free event slot;
8212         events[num_events] is the first free slot.
8213         (notify): Scan events[0 .. num_events-1], instead of the whole
8214         array.  When an event fires, move the last event in the array into
8215         its spot.  Use num_events to determine whether or not there are
8216         any pending events, not wait_for.
8217         (getevent): Delete unused variable `ep'.
8218         (sigcatch): It's now easier to find all the active events.
8219         (main): Initialize num_events.
8221         * etags.c: Rather than fret about which systems have index and
8222         which systems have strchr, and how to tell the difference between
8223         them, we just write out our own versions.  Big deal.
8224         (index, rindex): Extern declarations removed.
8225         (NEED_INDEX, NEED_RINDEX): Special hacks for hpux removed.
8226         (etags_index, etags_rindex): New declarations.
8227         (process_file, find_entries, pfnote, TEX_funcs, TEX_decode_env,
8228         TEX_getit, substr): Use the etags_*index functions, rather than
8229         the native *index functions.
8230         (rindex, index): Rename to etags_rindex and tags_rindex, and
8231         made them unconditionally defined, rather than having them depend
8232         on NEED_*INDEX.
8234         * etags.c (savenstr): Add declaration for this at top of file.
8235         (TEX_decode_env): Don't declare it local to this function.
8237         * b2m.c: #include "../src/config.h", so we can test for the USG
8238         macro, and decide whether to include <string.h> or <strings.h>.
8239         * Makefile.in: Note that b2m.c depends on ../src/config.h.
8241 1992-08-13  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8243         * timer.c: Reformatted according to the GNU coding standards.
8244         Removed arbitrary limits on the number of events queued and the
8245         length of the tokens used to identify them.
8246         Removed casts to (void).
8247         Removed debugging printfs; they clutter the code, and the need
8248         can be better filled using a real debugger.
8250 1992-08-07  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8252         * timer.c: Installed new version from Eric Raymond; this is more
8253         portable, since it doesn't try to use SIGIO.
8255 1992-07-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
8257         * emacsclient.c (main): If we can't find the socket in this
8258         person's home directory, print a message which asks if they've
8259         started the server, instead of just printing the message from
8260         sys_errmsg; Cygnus finds that people are much less confused by
8261         this.
8263 1992-07-14  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
8265         * etags.c: Rather than defining "notdef" when "hpux" is #defined,
8266         so that index and rindex get defined, why don't we actually
8267         control index and rindex using symbols called "NEED_INDEX" and
8268         "NEED_RINDEX", and define them if hpux is defined?  Isn't that a
8269         little more readable than defining something whose name implies
8270         that it's not?
8272 1992-07-08  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
8274         * movemail.c: Merged changes from Jamie Zawinski's byte compiler
8275         distribution:
8276         Miscellaneous doc fixes.
8277         (skip_white, read_lisp_symbol): New functions.
8278         (scan_lisp_file): Instead of using long hairy strings of ifs, call
8279         read_lisp_symbol and then see what we got.  Call skip_white
8280         instead of writing out a loop to do its job.  Correctly extract
8281         docstrings from "defmacro" declarations.
8283 1992-06-25  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8285         * movemail.c (strcpy): Declare this to return char *.
8287 1992-06-18  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8289         * etags.c (C_entries): When we find a C++ comment, do actually
8290         skip to the end of the line; do a 'break' instead of a 'continue'.
8292 1992-06-11  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
8294         * etags.c (getit): Add missing parenthesis to expression which
8295         decides if this token is an identifier.
8297 1992-06-04  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
8299         * etags.c (consider_token): Recognize `ENTRY' macro used in libc.
8301 1992-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
8303         * etags.c (put_entries): Always put space between name and line num.
8305 1992-05-28  Ken Raeburn  (Raeburn@Cygnus.COM)
8307         * etags.c (getit): Parenthesize &&/|| expression to avoid gcc
8308         warning.
8309         (LEVEL_OK_FOR_FUNCDEF): Ditto.
8311 1992-05-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
8313         * make-docfile.c (write_c_args): Pass both arguments to putc.
8315 1992-05-10  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
8317         * etags.c (C_entries): Fix reading of "..." strings.
8318         (consider_token): Recognize `SYSCALL' and `PSEUDO' macros, used in
8319         the C library source.
8321         * etags.c (C_entries): When we see a backslash inside a quoted
8322         string, skip to the next character.  This allows us to correctly
8323         deal with strings containing quotes.
8325 1992-05-08  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8327         * make-docfile.c (write_c_args): Print the C argument names as
8328         they would be written in Elisp; print '_' as '-'.
8330 1992-05-07  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
8332         * movemail.c [POP]: Get user name via getpwuid.
8334 1992-05-04  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8336         * Makefile.in: Flags in CC invocations rearranged for no reason.
8338 1992-04-20  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8340         * etags.c (print_help): Remember not to embed raw newlines in
8341         strings - end the lines with `\n\'.
8343 1992-04-17  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8345         * timer.c (getevent): Remove declaration of memcpy; since
8346         different systems have different return types, and we're not even
8347         using the return type anyway, it wasn't doing us any good.
8349 1992-04-16  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8351         * emacsserver.c (msgcatch): Use the SIGTYPE macro to declare the
8352         type of this function.
8354 1992-04-08  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8356         * etags.c: "--no-warning" option renamed to "--no-warn",
8357         to be consistent with other GNU programs, like makeinfo.
8359         * Makefile: Renamed to Makefile.in; the configure script
8360         will edit this to produce Makefile.
8362 1992-04-08  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
8364         New directory, with files previously in ../etc. [approximate date]
8365         * README: New file.
8366         * Makefile: Copy here from ../etc/Makefile.
8367         * aixcc.lex, b2m.c, cvtmail.c, digest-doc.c:
8368         * emacsclient.c, emacsserver.c, emacstool.c, env.c:
8369         * etags-vmslib.c, etags.c, fakemail.c, getdate.c, getdate.y:
8370         * getopt.c, getopt.h, getopt1.c, hexl.c, leditcfns.c:
8371         * make-docfile.c, movemail.c, qsort.c, sorted-doc.c:
8372         * test-distrib.c, testfile, timer.c, wakeup.c, yow.c:
8373         Move here from ../etc.
8375 ;; Local Variables:
8376 ;; coding: utf-8
8377 ;; End:
8379   Copyright (C) 1988-1999, 2001-2014 Free Software Foundation, Inc.
8381   This file is part of GNU Emacs.
8383   GNU Emacs is free software: you can redistribute it and/or modify
8384   it under the terms of the GNU General Public License as published by
8385   the Free Software Foundation, either version 3 of the License, or
8386   (at your option) any later version.
8388   GNU Emacs is distributed in the hope that it will be useful,
8389   but WITHOUT ANY WARRANTY; without even the implied warranty of
8390   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8391   GNU General Public License for more details.
8393   You should have received a copy of the GNU General Public License
8394   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.