Define -print-nonl client command
[emacs.git] / lib-src / ChangeLog
blob2384599caf23c3c42fffe365d3302a4e1a78e0a1
1 2012-03-11  Andreas Schwab  <schwab@linux-m68k.org>
3         * emacsclient.c (main): Handle -print-nonl command.
5         * emacsclient.c (main): Handle multiple messages in a single
6         datagram.
8         * emacsclient.c (socket_name): Add const.
9         (get_server_config): Add parameter config_file, use it instead of
10         global server_file.
11         (set_tcp_socket): Add parameter local_server_file, pass it down to
12         get_server_config.
13         (set_local_socket): Add parameter local_socket_name, use it
14         instead of global socket_name.
15         (set_socket): Adjust calls to set_local_socket and set_tcp_socket.
16         Don't clobber global server_file or socket_name.
17         (main): No longer reset server_file or socket_name.
19 2012-01-05  Glenn Morris  <rgm@gnu.org>
21         * ebrowse.c (version) <emacs_copyright>:
22         * etags.c (print_version) <emacs_copyright>:
23         * rcs2log (Copyright): Update short copyright year to 2012.
25 2011-12-25  Andreas Schwab  <schwab@linux-m68k.org>
27         * etags.c (C_entries): Properly skip over string and character
28         constants and comments inside brackets.  (Bug#10357)
30 2011-12-04  Juanma Barranquero  <lekktu@gmail.com>
32         * emacsclient.c (decode_options) [WINDOWSNT]: Don't force tty = 0;
33         instead, treat both -c and -t as always requesting a new "tty" frame,
34         and let server.el decide which kind is actually required.
35         Reported by Uwe Siart <usenet@siart.de> in this thread:
36         http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00303.html
38 2011-11-30  Chong Yidong  <cyd@gnu.org>
40         * emacsclient.c (main): Condition last change on WINDOWSNT
41         (Bug#10155).
43 2011-11-27  Eli Zaretskii  <eliz@gnu.org>
45         * makefile.w32-in (LOCAL_FLAGS): Add $(EMACS_EXTRA_C_FLAGS).
47         * emacsclient.c (main) <environ>: Remove declaration, already
48         pulled in by unistd.h on Posix hosts and stdlib.h on MS-Windows.
50 2011-11-24  Glenn Morris  <rgm@gnu.org>
52         * make-docfile.c (scan_lisp_file): Treat defcustom like defvar.
54 2011-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
56         * Makefile.in (all): Make sure "all" is the first target.
58 2011-10-27  Juanma Barranquero  <lekktu@gmail.com>
60         * emacsclient.c (w32_getenv): Silence compiler warnings.
62 2011-09-07  Glenn Morris  <rgm@gnu.org>
64         * etags.c (Fortran_functions): Handle "elemental" functions.
66 2011-09-07  Dieter Schuster  <didischuster@arcor.de>  (tiny change)
68         * etags.c (Fortran_functions): Handle "pure" functions.  (Bug#9359)
70 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
72         * Makefile.in ($(DESTDIR)${archlibdir}): install-sh moved
73         to build-aux (Bug#9169).
75 2011-09-04  Paul Eggert  <eggert@cs.ucla.edu>
77         Integer and memory overflow issues (Bug#9397).
79         * emacsclient.c (xmalloc): Accept size_t, not unsigned int, to
80         avoid potential buffer overflow issues on typical 64-bit hosts.
81         Return void *, not long *.
82         (get_current_dir_name): Report a failure, instead of looping
83         forever, if buffer size calculation overflows.  Treat malloc
84         failures like realloc failures, as that has better behavior and is
85         more consistent.  Do not check whether xmalloc returns NULL, as
86         that's not possible.
87         (message): Do not arbitrarily truncate message to 2048 bytes when
88         sending it to stderr; use vfprintf instead.
89         (get_server_config, set_local_socket)
90         (start_daemon_and_retry_set_socket): Do not alloca
91         arbitrarily-large buffers; that's not safe.
92         (get_server_config, set_local_socket): Do not use sprintf when its
93         result might not fit in 'int'.
94         (set_local_socket): Do not assume uid fits in 'int'.
96         * etags.c (xmalloc, xrealloc): Accept size_t, not unsigned int,
97         to avoid potential buffer overflow issues on typical 64-bit hosts.
98         (whatlen_max): New static var.
99         (main): Avoid buffer overflow if subsidiary command length is
100         greater than BUFSIZ or 2*BUFSIZ + 20. Do not use sprintf when its
101         result might not fit in 'int'.
103         * movemail.c (main): Do not use sprintf when its result might not fit
104         in 'int'.  Instead, put the possibly-long file name into the
105         output of pfatal_with_name.
107         * update-game-score.c: Include <limits.h>
108         (get_user_id): Do not assume uid fits in 'int'.  Simplify.
110 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
112         Assume freestanding C89 headers, string.h, stdlib.h.
113         * ebrowse.c: Include stdlib.h unconditionally.
114         * etags.c, update-game-score.c:
115         Include string.h and stdlib.h unconditionally.
116         * makefile.w32-in (LOCAL_CFLAGS): Don't define STDC_HEADERS.
117         * movemail.c, pop.c: Include string.h unconditionally.
118         * update-game-score.c: No need to include stdarg.h; not used.
120         Assume support for memcmp, memcpy, memmove, memset.
121         * etags.c (absolute_filename): Assume memmove exists.
123 2011-07-09  Andreas Schwab  <schwab@linux-m68k.org>
125         * update-game-score.c (usage): Update usage line.
127 2011-07-02  Jason Rumney  <jasonr@gnu.org>
129         * emacsclient.c (decode_options) [WINDOWSNT]: Avoid tty mode on
130         Windows (Bug#5486).
132 2011-06-25  Glenn Morris  <rgm@gnu.org>
134         * emacsclient.c (decode_options) <opt>: Add `F:'.
135         (print_help_and_exit): Mention --frame-parameters.
137 2011-06-25  Andreas Rottmann  <a.rottmann@gmx.at>
139         * emacsclient.c (longopts, decode_options, main): Add frame-parameters.
141 2011-06-10  Paul Eggert  <eggert@cs.ucla.edu>
143         * movemail.c: Fix race condition and related bugs (Bug#8836).
144         (main) [!MAIL_USE_SYSTEM_LOCK]: Prefer mkstemp to mktemp, as this
145         fixes some race conditions.  Report mkstemp/mktemp errno rather
146         than a possibly-garbage errno.  Reinitialize the template each
147         time through the loop, as earlier mkstemp/mktemp calls could have
148         trashed it.  Pass 0600 (not 0666) to mktemp, for consistency
149         with mkstemp; the permissions don't matter anyway.
151 2011-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
153         * emacsclient.c (socket_status): Use constant pointer.
155 2011-05-28  Paul Eggert  <eggert@cs.ucla.edu>
157         Use 'inline', not 'INLINE'.
158         * etags.c (hash): Now inline unconditionally.
159         * make-docfile.c (put_char): inline, not INLINE.
161 2011-05-25  Glenn Morris  <rgm@gnu.org>
163         * Makefile.in (.c.o): Remove (every .o file has an explicit rule).
164         (insrcdir): New.
165         (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff):
166         Use $insrcdir to suppress unaesthetic ignored errors.
167         (clean): Simplify list of things to delete.
168         (all, clean): Use $EXE_FILES.
170         * Makefile.in (movemail${EXEEXT}): Build in one step, not via .o file.
172         * Makefile.in (REGEXPOBJ, REGEXPDEPS): Remove.  Replace by expansion.
173         (etags${EXEEXT}): Just depend on regex.o, not regex.h as well.
175 2011-05-24  Glenn Morris  <rgm@gnu.org>
177         * Makefile.in (update-game-score${EXEEXT}): Use a single rule.
179 2011-05-19  Glenn Morris  <rgm@gnu.org>
181         * makefile.w32-in (echolisp): Remove rule that is no longer needed.
182         (clean): No more echolisp.tmp.
184 2011-05-18  Glenn Morris  <rgm@gnu.org>
186         * fakemail.c: Remove file.
187         * makefile.w32-in ($(BLD)/fakemail.exe, fakemail)
188         ($(BLD)/fakemail.$(O)): Remove.
189         * Makefile.in (UTILITIES): Remove fakemail${EXEEXT}.
190         (fakemail${EXEEXT}): Remove rule.
192 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
194         * makefile.w32-in (obj): Add gnutls.o.
196 2011-04-16  Paul Eggert  <eggert@cs.ucla.edu>
198         Static checks with GCC 4.6.0 and non-default toolkits.
200         * movemail.c (mail_spool_name): Protoize.
201         (main): Remove unused var.  Mark var as initialized.
202         Move locals to avoid shadowing, and use time_t for times.
204         * fakemail.c (xmalloc, xreallc): Use standard C prototypes
205         with void *.  This avoids warnings about pointer casts.
207         * emacsclient.c (main): Don't use uninitialized var.
208         (IS_ANY_SEP): Remove; unused.
209         (get_current_dir_name): Add an extern decl.
211 2011-04-06  Paul Eggert  <eggert@cs.ucla.edu>
213         Fix more problems found by GCC 4.6.0's static checks.
215         * emacsclient.c (message): Mark it as a printf-like function.
217         * make-docfile.c (IF_LINT): New macro, copied from emacsclient.c.
218         (write_c_args): Use it to suppress GCC warning.
220 2011-03-30  Paul Eggert  <eggert@cs.ucla.edu>
222         Fix a problem found by GCC 4.6.0's static checks.
223         * etags.c (just_read_file): Remove dummy variable and simplify.
225 2011-03-27  Glenn Morris  <rgm@gnu.org>
227         * emacsclient.c: Replace SIGTYPE with void.
229 2011-03-23  Juanma Barranquero  <lekktu@gmail.com>
231         * ntlib.c: Include <ctype.h>.
233 2011-03-23  Glenn Morris  <rgm@gnu.org>
235         * Makefile.in ($(DESTDIR)${archlibdir}):
236         Use `install-sh -d' rather than mkinstalldirs.
238 2011-03-23  Paul Eggert  <eggert@cs.ucla.edu>
240         * ebrowse.c: Use size_t, not int, for sizes.
241         This avoids a warning with gcc -Wstrict-overflow, and works
242         better for very large objects.
243         (inbuffer_size): Now size_t.  All uses changed.
244         (xmalloc, xrealloc, operator_name, process_file): Use size_t for
245         sizes.  Don't bother testing whether a size_t value can be negative.
247         * etags.c (Ada_funcs): Redo slightly to avoid overflow warning.
249         etags: In Prolog functions, don't assume int fits in size_t.
250         This avoids a warning with gcc -Wstrict-overflow.
251         * etags.c (Prolog_functions, prolog_pr, prolog_atom): Use size_t,
252         not int, to store sizes.
253         (prolog_atom): Return 0, not -1, on error.  All callers changed.
255         update-game-score: fix bug with -r
256         * update-game-score.c (main): Don't set 'scores' to garbage when
257         -r is specified and scorecount != MAX_SCORES (Bug#8310).  This bug
258         was introduced in the 2002-04-10 change, and was found with gcc
259         -Wstrict-overflow (GCC 4.5.2, x86-64).
261         fakemail: Remove dependency on ignore-value.
262         This undoes some of the recent fakemail-related changes.
263         It is made possible due to recent changes to gnulib's stdio module.
264         * Makefile.in (fakemail${EXEEXT}): Do not depend on ignore-value.h.
265         * fakemail.c: Do not include ignore-value.h.
266         (put_line): Do not use ignore_value.
268 2011-03-07  Chong Yidong  <cyd@stupidchicken.com>
270         * Version 23.3 released.
272 2011-03-03  Drake Wilson  <drake@begriffli.ch>  (tiny change)
274         * emacsclient.c (longopts): Add quiet.
275         (decode_options): Handle q/quiet.
276         (print_help_and_exit): Add q/quiet.
277         (main): Suppress some messages if quiet option is used.
279 2011-02-26  Eli Zaretskii  <eliz@gnu.org>
281         * Makefile.in (fakemail${EXEEXT}): Depend on lib/ignore-value.h.
283         * emacsclient.c (xstrdup) [WINDOWSNT]: Function added back.
284         (w32_getenv): Use xstrdup to return all values in malloc'ed
285         storage.
287 2011-02-26  Paul Eggert  <eggert@cs.ucla.edu>
289         * ebrowse.c (parse_qualified_param_ident_or_type): Make it clear
290         to reader (and to the compiler) that the loop always executes at
291         least once.  This prevents a warning with recent GCC.
292         (BROWSE_STRUCT): Remove unused macro.
294         * fakemail.c: Include <ignore-value.h>.
295         (put_line): Explicitly ignore fwrite return value, for benefit of
296         recent glibc + gcc.
297         (close_the_streams): Diagnose output errors instead of merely
298         exiting with nonzero status.
299         (my_fclose, main): Diagnose input errors, and exit with nonzero status.
300         Formerly, input errors were silently ignored.
302         * ebrowse.c (putstr): Rename from PUTSTR and turn into a function.
303         All callers changed.  This is cleaner, and avoids GCC warnings about
304         passing NULL to fputs.
305         (insert_keyword): Rename parameter to avoid shadowing diagnostic.
307 2011-02-25  Paul Eggert  <eggert@cs.ucla.edu>
309         * emacsclient.c (main): Avoid dangling 'if'.
310         (xstrdup): Remove; no longer needed.
311         (get_current_dir_name, w32_getenv, get_server_config, find_tty):
312         (set_local_socket, main):
313         Use const char *, not char *, for pointers that are not assigned
314         through.
315         (IF_LINT): New macro.
316         (set_local_socket, main): Use it to suppress warnings with
317         GCC -Wuninitialized.
319         * emacsclient.c: Redo local variables to avoid shadowing problems.
320         (message, socket_status, start_daemon_and_retry_set_socket):
321         Rename locals.
322         (main): Move decl of "i".
324         * etags.c (ISUPPER): Move to inside the only #ifdef where it's used.
325         This avoids an unused-macro warning with some GCC settings.
327         * make-docfile.c (write_globals): Change char * to char const *
328         to avoid a GCC "assignment discards qualifiers" diagnostic
329         in some configurations.
330         (scan_c_file): Refactor local variable decls to make their scope
331         more accurate and to avoid a GCC -Wuninitialized diagnostic.
333 2011-02-22  Eli Zaretskii  <eliz@gnu.org>
335         * etags.c (canonicalize_filename, ISUPPER): Fix last change.
337         * makefile.w32-in ($(BLD)/ebrowse.$(O), $(BLD)/pop.$(O)): Depend
338         on ../lib/min-max.h.
340 2011-02-22  Paul Eggert  <eggert@cs.ucla.edu>
342         etags: Downcase drive letters, for consistency with Emacs proper.
343         * etags.c (upcase): Remove; no longer used.
344         (canonicalize_filename): Downcase drive letters.
346         Assume S_ISLNK etc. work, since gnulib supports this.
347         * etags.c (S_ISREG): Remove.
349 2011-02-22  Paul Eggert  <eggert@cs.ucla.edu>
351         Assume S_ISLNK etc. work, since gnulib supports this.
352         * etags.c (S_ISREG): Remove.
354 2011-02-22  Juanma Barranquero  <lekktu@gmail.com>
356         * makefile.w32-in (obj): Remove filemode.o.
358 2011-02-21  Paul Eggert  <eggert@cs.ucla.edu>
360         New file "lib/min-max.h".
361         * ebrowse.c (min, max): Define them by including <min-max.h>
362         instead of defining it ourselves.
363         * pop.c (min): Likewise.
364         * Makefile.in (ebrowse${EXEEXT}, pop.o): Depend on min-max.h.
366         * movemail.c (popmail): Report fchown failure instead of ignoring it.
367         But if the file already has the right ownership, don't worry about it.
369         * make-docfile.c (input_buffer): Rename variables to avoid shadowing.
370         * test-distrib.c (buf): Make this local, to avoid shadowing.
372         * movemail.c (main, pop_retr): Rename locals to avoid shadowing.
373         (progname, sfi, sfo, ibuffer, obuffer): Remove unused vars.
374         (DONE): Remove unused macro.
375         (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_FROM_LINE):
376         Define these macros only in the contexts that need them.
377         * pop.c (index): Remove unused macro.
378         (KPOP_PORT): Define only if KERBEROS is defined.
380         Declare file-scope functions and variables static if not exported.
381         This is more consistent, and is nicer with gcc -Wstrict-prototypes.
382         * ebrowse.c, emacsclient.c, fakemail.c, make-docfile.c, movemail.c:
383         * profile.c, test-distrib.c, update-game-score.c:
384         Declare non-'main' functions and variables to be static.
385         * ebrowse.c: Omit redundant function prototypes.
387 2011-02-21  Eli Zaretskii  <eliz@gnu.org>
389         * makefile.w32-in ($(BLD)/ctags.$(O), $(BLD)/emacsclient.$(O))
390         ($(BLD)/etags.$(O), $(BLD)/movemail.$(O), $(BLD)/ntlib.$(O)):
391         Depend on $(EMACS_ROOT)/nt/inc/sys/stat.h.
393 2011-02-21  Ben Key  <bkey76@gmail.com>
395         * make-docfile.c (scan_c_file): Adapt DEFVAR_PER_BUFFER case to
396         the new BVAR macro.
398 2011-02-20  Juanma Barranquero  <lekktu@gmail.com>
400         * makefile.w32-in (obj): Remove md5.o.
402 2011-02-18  Karl Chen  <Karl.Chen@quarl.org>
404         * emacsclient.c (main): Loop while `recv' return EINTR.
406 2011-02-09  Paul Eggert  <eggert@cs.ucla.edu>
408         * make-docfile.c (EMACS_INTEGER): Rename from EMACS_INT.
409         This avoids collision with config.h's EMACS_INT on some
410         configurations.  All uses changed.
412 2011-02-08  Tom Tromey  <tromey@redhat.com>
414         * make-docfile.c: Unconditionally include stdlib.h.
415         (generate_globals): New global.
416         (xrealloc): New function.
417         (main): Handle '-g'.  Call start_globals, write_globals.
418         (scan_file): Conditionally call put_filename.
419         (start_globals): New function.
420         (struct global): New.
421         (num_globals, globals): New globals.
422         (add_global, compare_globals, write_globals): New functions.
423         (scan_c_file): Update for "-g".
424         (scan_lisp_file): Fail if "-g".
426 2011-02-05  Paul Eggert  <eggert@cs.ucla.edu>
428         * emacsclient.c: Conform to C89 pointer rules.
429         (file_name_absolute_p): Accept const char *, not const unsigned
430         char *, to satisfy C89 rules.
432 2011-02-02  Eli Zaretskii  <eliz@gnu.org>
434         * makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS):
435         Add ``-DEMACS_NAME="\"GNU Emacs\""''.
436         (obj): Remove strftime.o.
438 2011-01-31  Eli Zaretskii  <eliz@gnu.org>
440         * makefile.w32-in (VERSION): Don't define, defined on nt/config.nt.
441         (ECLIENT_CFLAGS): Remove -DVERSION.
442         ($(BLD)/emacsclient.$(O)): Don't depend on makefile.w32-in.
444 2011-01-31  Paul Eggert  <eggert@cs.ucla.edu>
446         src/emacs.c now gets version number from configure.in
447         * ebrowse.c: Adjust comment to say that.
449 2011-01-30  Jim Meyering  <meyering@redhat.com>
451         make-docfile: don't corrupt heap for an invalid .elc file
452         "printf '#@1a' > in.elc; ./make-docfile in.elc" would store 0
453         one byte before just-malloc'd saved_string buffer.
454         * make-docfile.c (scan_lisp_file): Diagnose an invalid dynamic
455         doc string length.  Also fix an always-false while-loop test.
457 2011-01-29  Eli Zaretskii  <eliz@gnu.org>
459         * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
460         (GETOPTOBJS, GETOPTDEPS): Remove targets.
461         (MOVEMAILOBJS): Replace $(GETOPTOBJS) with ../lib/$(BLD)/libgnu.$(A).
462         ($(BLD)/movemail.exe): Depend on ../lib/getopt.h.
463         (ECLIENTOBJS, ETAGSOBJ, CTAGSOBJ, EBROWSEOBJ): Replace getopt.o
464         and getopt1.o with ../lib/$(BLD)/libgnu.$(A).
465         (clean): Don't remove getopt.h.
466         (getopt.h, $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O)): Remove targets.
467         ($(BLD)/ctags.$(O), $(BLD)/etags.$(O)): Replace getopt.h with
468         $(EMACS_ROOT)/lib/getopt.h.
470 2011-01-28  Chong Yidong  <cyd@stupidchicken.com>
472         * ntlib.c (setregid): New stub, renamed from setegid.
474         * ntlib.h: Update prototype.
476 2011-01-25  Chong Yidong  <cyd@stupidchicken.com>
478         * movemail.c (main): Use setregid instead of setegid, which is
479         missing on older systems.  Suggested by Peter O'Gorman (Bug#6811).
481 2011-01-23  Paul Eggert  <eggert@cs.ucla.edu>
483         Check return values of some library calls.
484         * hexl.c (main): Check fread result.
485         * make-docfile.c (main): Check chdir result.
486         (scan_c_file): Check fscanf result.
487         * movemail.c (main): Check ftruncate result.
489 2011-01-17  Paul Eggert  <eggert@cs.ucla.edu>
491         Include <unistd.h> unilaterally.
492         * emacsclient.c, etags.c, fakemail.c, make-docfile.c, movemail.c:
493         * pop.c, test-distrib.c, update-game-score.c:
494         Include <unistd.h> without worrying about HAVE_UNISTD_H, since
495         unistd.h is always present now, possibly supplied by gnulib.
497         Include <getopt.h> not "getopt.h".
498         * ebrowse.c, emacsclient.c: Include <getopt.h>, not "getopt.h".
499         Since getopt.h is no longer in this directory, there's no point
500         using the form with double-quotes.
502         Remove unused files.
503         * getopt.c, getopt1.c, getopt_.h, getopt_int.h: Remove.
504         These files are now in ../lib, copied from gnulib.
506         Use gnulib's getopt-gnu module.
507         * Makefile.in (mostlyclean): Do not clean getopt.h or getopt.h-t,
508         as these are now done by gnulib.
509         (GETOPT_H, getopt.h, GETOPTOBJS, GETOPTDEPS, getopt.o, getopt1.o):
510         Remove; now done by gnulib.  All uses removed.
512         Automate syncing from gnulib.
513         * Makefile.in (EXE_FILES): New macro.
514         (BASE_CFLAGS): Add -I../lib and -I${srcdir}/../lib,
515         for gnulib's .h files.
516         (LOADLIBES): Add ../lib/libgnu.a.
517         ($(EXE_FILES)): Depend on ../lib/libgnu.a.
518         (../lib/libgnu.a): New rule.
520 2011-01-08  Paul Eggert  <eggert@cs.ucla.edu>
522         * Makefile.in (EXECUTABLES): Remove; macro unused since 1993.
524 2011-01-08  Glenn Morris  <rgm@gnu.org>
526         * Makefile.in (EMACSOPT): Add --no-site-lisp.
528         * Makefile.in (EMACSOPT): Remove --multibyte, it does nothing any more.
530 2011-01-02  Glenn Morris  <rgm@gnu.org>
532         * ebrowse.c (version) <emacs_copyright>:
533         * etags.c (print_version) <emacs_copyright>:
534         * rcs2log (Copyright): Set short copyright year to 2011.
536 2010-11-27  Joe Matarazzo  <joe.matarazzo@gmail.com>  (tiny change)
538         * ebrowse.c (yylex): If end of input buffer encountered while
539         searching for a newline after "//", return YYEOF.  (Bug#7446)
541 2010-11-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
543         * emacsclient.c (set_local_socket) [DARWIN_OS]: Add fall-back
544         definition of _CS_DARWIN_USER_TEMP_DIR for Mac OS X 10.4 and older.
546 2010-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
548         * test-distrib.c: Remove include guards for config.h and fcntl.h.
549         (O_RDONLY): Do not define.
550         (cool_read): Fix type for variable "sofar".
552 2010-10-25  Glenn Morris  <rgm@gnu.org>
554         * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove easymenu.elc.
556 2010-10-23  Glenn Morris  <rgm@gnu.org>
558         * digest-doc.c, sorted-doc.c: Remove files.
559         * Makefile.in (UTILITIES): Remove digest-doc and sorted-doc.
560         (digest-doc${EXEEXT}, sorted-doc${EXEEXT}): Remove rules.
561         * makefile.w32-in (ALL): Remove digest-doc and sorted-doc.
562         ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe, sorted-doc, digest-doc)
563         ($(BLD)/digest-doc.$(O), $(BLD)/sorted-doc.$(O)): Remove rules.
564         (install): Don't install digest-doc.exe or sorted-doc.exe.
566 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
568         * Makefile.in (PROFILING_LDFLAGS): Remove, not needed.
570 2010-10-09  Glenn Morris  <rgm@gnu.org>
572         * b2m.c, b2m.pl: Remove files.
573         * Makefile.in (INSTALLABLES): Remove b2m.
574         * makefile.w32-in ($(BLD)/b2m.$(O)): Remove.
576 2010-10-08  Glenn Morris  <rgm@gnu.org>
578         * emacsclient.c (set_local_socket) [DARWIN_OS]: Try as a fall-back
579         DARWIN_USER_TEMP_DIR.  (Bug#3992)
581 2010-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
583         * test-distrib.c (cool_read):
584         * movemail.c (main, concat):
585         * make-docfile.c (scan_file, write_c_args):
586         * emacsclient.c (get_server_config): Fix -Wconversion warning.
587         (egetenv): Move conditional definition earlier.
588         (progname): Use const.
589         * sorted-doc.c (xstrdup): Use const.
591         * Makefile.in: Remove ^L, old makes choke on it.
593 2010-10-02  Wolfgang Schnerring  <wosc@wosc.de>  (tiny change)
595         * emacsclient.c (main): Return EXIT_FAILURE if Emacs sends us an
596         error string (Bug#6963).
598 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
600         * makefile.w32-in (tags): Remove target.
602 2010-10-01  Eli Zaretskii  <eliz@gnu.org>
604         * makefile.w32-in (tags, TAGS): New targets.
606 2010-09-30  Juanma Barranquero  <lekktu@gmail.com>
608         * emacsclient.c (get_server_config): Don't read Emacs pid from
609         the authentication file.
611 2010-09-29  Juanma Barranquero  <lekktu@gmail.com>
613         * makefile.w32-in (../src/config.h): Remove target, it is stale.
615         * emacsclient.c (main): Remove unused variables.
616         (start_daemon_and_retry_set_socket): Use EXIT_FAILURE.
618 2010-09-25  Ulrich Mueller  <ulm@gentoo.org>
620         * etags.c (compressors, print_language_names): Support xz compression.
622 2010-08-11  Jan Djärv  <jan.h.d@swipnet.se>
624         * fakemail.c: Include stdlib.h for getenv.  Remove declaration of
625         popen, fclose and pclose.
626         (my_name, fatal, error, put_line): Use const char*.
627         (main): Remove extern getenv, mail_program_name is const char*.
629         * update-game-score.c (get_prefix, write_scores, main): Use const char*.
631         * sorted-doc.c (error, fatal, states): Use const char *.
633         * pop.h (pop_multi_first): Use const char *.
634         (_ARGS): Remove.
636         * pop.c (pop_multi_first, socket_connection, sendline): Use const char*.
638         * movemail.c (fatal, error, concat): Use const char *.
640         * make-docfile.c (error, fatal, scan_c_file, scan_lisp_file):
641         Use const char *.
643         * etags.c (compressor, language, Ada_suffix, Ada_help, Asm_suffixes)
644         (Asm_help, default_C_suffixes, default_C_help, Cplusplus_suffixes)
645         (Cplusplus_help, Cjava_suffixes, Cobol_suffixes, Cstar_suffixes)
646         (Erlang_suffixes, Erlang_help, Forth_suffixes, Forth_help)
647         (Fortran_suffixes, Fortran_help, HTML_suffixes,  HTML_help)
648         (Lisp_suffixes, Lisp_help, Lua_suffixes, Lua_help)
649         (Makefile_filenames, Makefile_help, Objc_suffixes, Objc_help)
650         (Pascal_suffixes, Pascal_help, Perl_suffixes, Perl_interpreters)
651         (Perl_help, PHP_suffixes, PHP_help, plain_C_suffixses, PS_suffixes)
652         (PS_help, Prolog_suffixes, Prolog_help, Python_suffixes, Python_help)
653         (Scheme_suffixes, Scheme_help, TeX_suffixes, TeX_help, Texinfo_suffixes)
654         (Texinfo_help, Yacc_suffixes, Yacc_help, auto_help, none_help)
655         (no_lang_help, print_language_names)
656         (get_language_from_interpreter, get_language_from_filename)
657         (init, make_tag, struct C_stab_entry, write_classname, TEX_defenv)
658         (TEX_decode_env, nocase_tail, savestr, savenstr, fatal, pfatal)
659         (concat): Use const char*.
661         * emacsclient.c (message, sock_err_message, send_to_emacs)
662         (quote_argument, set_local_socket)
663         (start_daemon_and_retry_set_socket): Use const char*.
665         * ebrowse.c (struct member): filename, def_filename is const.
666         (struct sym): filename, sfilename is const.
667         (struct kw): name is const.
668         (add_sym, yyerror, token_string, insert_keyword, main): Use const char*.
670         * b2m.c (concat, fatal): Use const char*.
671         (main): Don't assign labels a string literal.
673 2010-08-07  Juanma Barranquero  <lekktu@gmail.com>
675         * ebrowse.c (usage, version, mark_virtual):
676         Remove duplicate declarations.
678 2010-08-06  Dan Nicolaescu  <dann@ics.uci.edu>
680         * emacsclient.c: Move socket related #includes together with the
681         rest of the #includes.  Move WINDOWSNT includes closer together.
682         (HAVE_CONFIG_H): Remove.
683         (NO_RETURN): Remove, defined in config.h.
684         (main): Convert definition to standard C.
686 2010-07-29  Juanma Barranquero  <lekktu@gmail.com>
688         * make-docfile.c (write_c_args): Warn for old-style empty arglist ().
690 2010-07-25  Juanma Barranquero  <lekktu@gmail.com>
692         * emacsclient.c (getcwd): Fix previous change: make getcwd
693         conditional on HAVE_GETCWD and declare with the correct POSIX
694         profile (for some reason MinGW headers define its 2nd arg as int,
695         not size_t; but getcwd is not used on Windows nonetheless).
697 2010-07-25  Juanma Barranquero  <lekktu@gmail.com>
699         * emacsclient.c (getcwd, w32_getenv):
700         * ntlib.h (getlogin, getuid, getegid, getgid): Fix prototypes.
702 2010-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
704         * update-game-score.c (usage): Add NO_RETURN specifier.
705         * movemail.c (fatal, pfatal_with_name, pfatal_and_delete):
706         * make-docfile.c (fatal):
707         * hexl.c (usage):
708         * fakemail.c (fatal):
709         * etags.c (fatal, suggest_asking_for_help, pfatal):
710         * emacsclient.c (fatal):
711         * b2m.c (fatal): Likewise.
713 2010-07-23  Juanma Barranquero  <lekktu@gmail.com>
715         * make-docfile.c (write_c_args): Correctly handle prefixes of "defalt".
717 2010-07-20  Juanma Barranquero  <lekktu@gmail.com>
719         * emacsclient.c (get_current_dir_name, w32_get_resource)
720         (w32_getenv, w32_set_user_model_id, w32_window_app, w32_execvp)
721         (close_winsock, initialize_sockets, w32_find_emacs_process)
722         (w32_give_focus):
723         * ntlib.c (getlogin, getuid, getgid, getegid):
724         Convert definitions to standard C.
726 2010-07-12  Andreas Schwab  <schwab@linux-m68k.org>
728         * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
729         (PROFILING_LDFLAGS): Set from substitution.
730         (BASE_CFLAGS): Add  ${C_WARNINGS_SWITCH}.
731         (ALL_CFLAGS, CPP_CFLAGS): Add ${PROFILING_CFLAGS}.
732         (LINK_CFLAGS): Add ${PROFILING_LDFLAGS}.
734 2010-07-12  Eli Zaretskii  <eliz@gnu.org>
736         * makefile.w32-in (lisp2): Change hebrew.el to hebrew.elc (see
737         2010-07-12T05:25:46Z!handa@etlken).
739 2010-07-11  Andreas Schwab  <schwab@linux-m68k.org>
741         * emacsclient.c (set_local_socket): Use strchr, strrchr instead of
742         index, rindex.
743         * movemail.c (mail_spool_name, popmail): Likewise.
744         * pop.c (pop_list): Likewise.
746 2010-07-11  Eli Zaretskii  <eliz@gnu.org>
748         * makefile.w32-in (obj): Add menu.o, bidi.o, w32uniscribe.o,
749         and unexw32.o.  (Bug#6603)
751 2010-07-10  Eli Zaretskii  <eliz@gnu.org>
753         * Makefile.in ($(DESTDIR)${archlibdir}): Convert spaces to TABs.
755 2010-07-09  Andreas Schwab  <schwab@linux-m68k.org>
757         * make-docfile.c (write_c_args): Restructure scanning loop.
759 2010-07-09  Dan Nicolaescu  <dann@ics.uci.edu>
761         * make-docfile.c (write_c_args): Deal with type names in DEFUN
762         arguments.
764 2010-07-08  Dan Nicolaescu  <dann@ics.uci.edu>
766         * update-game-score.c (P_): Remove macro.
767         * ebrowse.c: Remove include guards.
768         (P_): Remove macro.
770 2010-07-07  Andreas Schwab  <schwab@linux-m68k.org>
772         * ebrowse.c (add_sym, make_namespace): Replace bcopy, bzero by
773         memcpy, memmove, memset.
774         * pop.c (pop_retrieve, socket_connection, pop_getline): Likewise.
776 2010-07-06  Andreas Schwab  <schwab@linux-m68k.org>
778         * movemail.c: Add MAIL_USE_POP around prototypes.
779         Include <string.h> if HAVE_STRING_H.
780         (strerror): Only declare if !HAVE_STRERROR.
781         (fatal): Make static.
782         (error): Likewise.
783         (pfatal_with_name): Likewise.
784         (pfatal_and_delete): Likewise.
785         (concat): Likewise.
786         (xmalloc): Likewise.
787         (popmail): Likewise.
788         (pop_retr): Likewise.
789         (mbx_write): Likewise.
790         (mbx_delimit_begin): Likewise.
791         (mbx_delimit_end): Likewise.
793 2010-07-04  Dan Nicolaescu  <dann@ics.uci.edu>
795         * fakemail.c (action): Convert function definitions to standard C.
796         (add_a_stream):
797         * test-distrib.c (cool_read):
798         (main): Likewise.
800 2010-07-03  Andreas Schwab  <schwab@linux-m68k.org>
802         * sorted-doc.c (cmpdoc): Fix signature.
803         (qsort_compare): Delete.
804         (main): Remove cast.
806 2010-07-03  Juanma Barranquero  <lekktu@gmail.com>
808         * ebrowse.c (match_qualified_namespace_alias): Check for null pointer.
810 2010-07-03  Juanma Barranquero  <lekktu@gmail.com>
812         Fix prototype warnings.
814         * ebrowse.c (match_qualified_namespace_alias):
815         Pass sym* to find_namespace, not link*.
817         * emacsclient.c (send_to_emacs, quote_argument): Arg s is HSOCKET.
819         * sorted-doc.c (qsort_compare): New typedef.
820         (main): Use it to cast cmpdoc.
822 2010-07-03  Dan Nicolaescu  <dann@ics.uci.edu>
824         * update-game-score.c: Convert function definitions to standard C.
825         * sorted-doc.c:
826         * profile.c:
827         * pop.c:
828         * movemail.c:
829         * make-docfile.c:
830         * hexl.c:
831         * fakemail.c:
832         * etags.c:
833         * ebrowse.c:
834         * digest-doc.c:
835         * b2m.c: Likewise.
837 2010-07-02  Dan Nicolaescu  <dann@ics.uci.edu>
839         * make-docfile.c (xmalloc, xrealloc, concat, readline, fatal):
840         * b2m.c (scan_file, scan_lisp_file, scan_c_file): Convert to
841         standard C prototypes.
843 2010-07-02  Jan Djärv  <jan.h.d@swipnet.se>
845         * ebrowse.c: Remove P_ and __P.
846         * etags.c:
847         * movemail.c:
848         * pop.c:
849         * update-game-score.c: Likewise.
851 2010-06-24  Juanma Barranquero  <lekktu@gmail.com>
853         * movemail.c (error): Avoid warning when there are no args.
855 2010-06-11  Juanma Barranquero  <lekktu@gmail.com>
857         * makefile.w32-in (lisp2): Fix references to vc/vc-hooks.elc
858         and vc/ediff-hook.elc.
860 2010-06-06  Dan Nicolaescu  <dann@ics.uci.edu>
862         * ntlib.h: Remove code dealing with BSTRING.
864 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
866         * emacsclient.c (longopts, decode_options, print_help_and_exit):
867         New arg `-parent-id'.
868         (main): Send parent-id to Emacs.
870 2010-05-27  Glenn Morris  <rgm@gnu.org>
872         * Makefile.in (distclean): No more Makefile.c.
874 2010-05-22  Jan Djärv  <jan.h.d@swipnet.se>
876         * Makefile.in (STAMP_INST_SCRIPTS, STAMP_SCRIPS): New (Bug #6246).
877         (all): Depend onSTAMP_INST_SCRIPTS, STAMP_SCRIPS (Bug #6246).
878         (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff):
879         New rules (Bug #6246).
880         (clean): Remove stamp-* (Bug #6246).
882 2010-05-12  Glenn Morris  <rgm@gnu.org>
884         * Makefile.in (INSTALLABLES): Remove @LIB_SRC_EXTRA_INSTALLABLES@.
886 2010-05-11  Glenn Morris  <rgm@gnu.org>
888         * Makefile.in (.m.o): Remove, there are no .m files.
889         (BASE_CFLAGS): New variable.
890         (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use $BASE_CFLAGS.
891         (check): Update the message.
892         (update-game-score${EXEEXT}): Do not use $MOVE_FLAGS.
894         * Makefile.in: Convert comments to makefile format.
896         * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
897         (config.h) [MSDOS]: Do not include.
899 2010-05-10  Glenn Morris  <rgm@gnu.org>
901         * Makefile.in (LIBS_SYSTEM): Set with configure, not cpp.
902         (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
903         (NOT_C_CODE): Remove, no longer used.
904         (config.h) [!MSDOS]: No longer include.
905         (LOADLIBES): Use LIBS_SYSTEM as a variable.
907         * Makefile.in (BLESSMAIL_TARGET): Set with configure, not cpp.
909 2010-05-08  Glenn Morris  <rgm@gnu.org>
911         * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
913 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
915         * Version 23.2 released.
917 2010-05-06  Glenn Morris  <rgm@gnu.org>
919         * Makefile.in: Minimize blessmail-related cpp usage.
920         (BLESSMAIL_TARGET): New variable.
921         (MOVEMAIL_NEEDS_BLESSING): Remove, replace by above variable.
922         (blessmail): Always define this rule.
923         (need-blessmail): New rule, split out from maybe-blessmail.
924         (maybe-blessmail): Use BLESSMAIL_TARGET.
926 2010-05-04  Glenn Morris  <rgm@gnu.org>
928         * Makefile.in: Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
929         @c_switch_system@, @c_switch_machine@.
931 2010-04-26  Dan Nicolaescu  <dann@ics.uci.edu>
933         * Makefile.in (LIBS_MACHINE): Remove all uses, unused.
935 2010-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
937         * Makefile.in (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Move to the
938         non-cpp section.
940 2010-04-11  Dan Nicolaescu  <dann@ics.uci.edu>
942         * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE): Define using
943         autoconf, not cpp.
944         (ALL_CFLAGS): Use them as make variables.
946 2010-04-07  Christoph Scholtes  <cschol2112@googlemail.com>
948         * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis
949         for macros for nmake compatibility.
951 2010-04-03  Juanma Barranquero  <lekktu@gmail.com>
953         Add stubs for Windows, required after CVE-2010-0825 change.
954         * ntlib.c (getgid, getegid, setegid): New stubs.
955         * ntlib.h (getgid, getegid, setegid): Declare them.
957 2010-04-02  Dan Rosenberg  <dan.j.rosenberg@gmail.com>  (tiny change)
959         * movemail.c (main): Check return values of setuid.
960         Avoid possibility of symlink attack when movemail is setgid mail
961         (CVE-2010-0825).
963 2010-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
965         Remove extern errno declarations.
966         * movemail.c:
967         * etags.c:
968         * emacsclient.c: Remove extern errno declarations.
970 2010-03-20  Glenn Morris  <rgm@gnu.org>
972         * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
973         (LIBHESIOD, LIBRESOLV): Make previous change a bit more friendly by
974         defining these as Makefile variables.
975         (LIBS_MOVE): Add LIBS_MAIL into this.
976         (movemail${EXEEXT}): Just use LIBS_MOVE, not LIBS_MAIL as well.
978 2010-03-18  Glenn Morris  <rgm@gnu.org>
980         * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
981         (HESIODLIB, LIBS_MAIL): Set using autoconf rather than cpp.
982         (BASE_CFLAGS): Remove (identical to CPP_CFLAGS).
984 2010-03-18  Tetsurou Okazaki  <okazaki@be.to>  (tiny change)
986         * Makefile.in (uninstall): Handle the case where archlibdir does not
987         exist.  (Bug#5720)
989 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
991         * Branch for 23.2.
993 2010-02-20  Kevin Ryde  <user42@zip.com.au>
995         * etags.c (Scheme_functions): Don't loop past a null character
996         (Bug#5601).
998 2010-01-29  Kester Habermann  <kester@linuxtag.org>  (tiny change)
1000         * etags.c (Fortran_functions): Handle recursive keyword (Bug#5484).
1002 2010-01-11  Glenn Morris  <rgm@gnu.org>
1004         * ebrowse.c (version):
1005         * etags.c (print_version):
1006         * rcs2log (Copyright): Set copyright year to 2010.
1008 2009-12-09  David Robinow  <drobinow@gmail.com>  (tiny change)
1010         * makefile.w32-in: Use parenthesis for macros for nmake
1011         compatibility.
1013 2009-11-23  Tobias Ringström  <tobias@ringis.se>  (tiny change)
1015         * etags.c (absolute_filename): Use memmove if we have it for
1016         overlapping copy.
1018 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
1020         * make-docfile.c (scan_lisp_file): Also look for `defvaralias'.
1022 2009-10-15  Juanma Barranquero  <lekktu@gmail.com>
1024         * .gitignore: Add echolisp.tmp.
1026 2009-10-15  Glenn Morris  <rgm@gnu.org>
1028         * emacsclient.c (print_help_and_exit): Fix bug report instructions.
1030         * makefile.w32-in (echolisp): New rule.
1031         (clean): Delete echolisp.tmp.
1033 2009-09-27  Eli Zaretskii  <eliz@gnu.org>
1035         * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Add term/internal.elc,
1036         term/pc-win.elc, emacs-lisp/easymenu.elc, and term/ns-win.elc, to
1037         be consistent with src/Makefile.in.
1039 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1041         * update-game-score.c (main): Sort scores before trimming them,
1042         reported by Jason Feng <jfeng@ozbert.com> (bug#4397).
1044 2009-09-09  Glenn Morris  <rgm@gnu.org>
1046         * Makefile.in ($(DESTDIR)${archlibdir}): Set umask to world-readable
1047         before creating directories and game score files.
1049 2009-08-19  Glenn Morris  <rgm@gnu.org>
1051         * cvtmail.c: Remove file.
1052         * Makefile.in (UTILITIES): Remove cvtmail.
1053         (cvtmail${EXEEXT}): Remove.
1055 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
1057         * b2m.c (main): Ensure that each message ends in two newlines.
1059 2009-07-03  Jason Rumney  <jasonr@gnu.org>
1061         * emacsclient.c (w32_set_user_model_id): Use standard types.
1063 2009-07-03  Eli Zaretskii  <eliz@gnu.org>
1065         * makefile.w32-in (WINNT_SUPPORT): Add common-win.elc, like
1066         src/Makefile.in did.
1068 2009-06-30  Jason Rumney  <jasonr@gnu.org>
1070         * emacsclient.c (w32_give_focus): Use GetModuleHandle for library
1071         that is already loaded.
1072         (w32_set_user_model_id): New function.
1073         (main): Use it to associate emacsclient with emacs (bug#1849).
1075 2009-06-29  Jim Meyering  <meyering@redhat.com>
1077         Remove useless if-before-free test.
1078         * make-docfile.c (scan_lisp_file): Remove useless test.
1080 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
1082         * Makefile.in (movemail.o): Don't pass -Demacs, unused.
1084 2009-06-21  Chong Yidong  <cyd@stupidchicken.com>
1086         * Branch for 23.1.
1088 2006-06-09  Adrian Robert  <Adrian.B.Robert@gmail.com>
1090         * mac-fix-env.m:
1091         * Makefile.in (mac-fix-env): Remove.
1093 2006-06-06  David Reitter  <david.reitter@gmail.com>
1095         * Makefile.in (mac-fix-env): Compile it using ALL_CFLAGS.
1097 2009-04-20  Juanma Barranquero  <lekktu@gmail.com>
1099         * emacsclient.c (print_help_and_exit): Fix typo and tabify (careful
1100         spacing is required in the message output, as the comment suggests).
1102 2009-04-20  Chong Yidong  <cyd@stupidchicken.com>
1104         * emacsclient.c (print_help_and_exit): Clarify argument placement
1105         for short option names.
1107 2009-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
1109         * emacsclient.c (print_help_and_exit): Fix typo.
1111 2009-03-21  Eli Zaretskii  <eliz@gnu.org>
1113         * ntlib.c (setuid): Argument is now unsigned.
1114         (getuid): Return value is now unsigned.
1115         (getpwuid): Argument is now unsigned.
1116         (fchown): UID and GID arguments are now unsigned.
1118         * ntlib.h (fchown): UID and GID arguments are now unsigned.
1119         (getuid): Return value is now unsigned.
1120         (setuid): Argument is now unsigned.
1121         (getpwuid): Remove prototype (it's declared in nt/inc/pwd.h).
1123 2009-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1125         * emacsclient.c (main): Revert part of last change, so
1126         drive-relative file names again work on Windows.
1128 2009-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1130         * emacsclient.c (main): Always pass cwd via "-dir".  Pass the file
1131         names without prepending cwd to them, so Emacs uses its customary
1132         rules to determine how to interpret the file name.
1134 2009-03-04  Glenn Morris  <rgm@gnu.org>
1136         * movemail.c (main) [MAIL_USE_POP]: Add -r to usage message.
1138 2009-02-13  Sven Joachim  <svenjoac@gmx.de>
1140         * movemail.c: Include time.h unconditionally.
1141         (main): Use time_t for time variables.
1143 2009-02-11  Glenn Morris  <rgm@gnu.org>
1145         * movemail.c (mbx_delimit_begin): Also write the current time.
1147 2009-02-10  Glenn Morris  <rgm@gnu.org>
1149         * movemail.c (mbx_delimit_begin, mbx_delimit_end): Write mbox rather
1150         than Babyl format.  (Bug#2196)
1152 2009-01-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
1154         * emacsclient.c (decode_options): Use a dummy display name under
1155         NS/Cocoa.
1157 2009-01-14  Lars Rasmusson  <lars.rasmusson@gmail.com>  (tiny change)
1159         * ebrowse.c (matching_regexp): Fix OB1 error.
1161 2009-01-05  Glenn Morris  <rgm@gnu.org>
1163         * ebrowse.c (version):
1164         * etags.c (print_version):
1165         * rcs2log (Copyright): Update copyright for 2009.
1167 2009-01-01  Chong Yidong  <cyd@stupidchicken.com>
1169         * movemail.c (main): Fatal if hard links cannot be created.
1171 2008-12-18  Dan Nicolaescu  <dann@ics.uci.edu>
1173         * emacsclient.c (start_daemon_and_retry_set_socket): Improve error
1174         checking.
1176 2008-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
1178         * emacsclient.c: Include syswait.h instead of sys/types.h.
1180 2008-12-11  Dhruva Krishnamurthy  <dhruvakm@gmail.com>  (tiny change)
1182         * emacsclient.c (WCONTINUED): New compatibility define
1183         for older systems.
1185 2008-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
1187         * emacsclient.c (main): Fix previous change.
1189 2008-12-10  Juanma Barranquero  <lekktu@gmail.com>
1191         * emacsclient.c (main): Fix mindless breakage where emacsclient
1192         does not work *at all* on Windows, even if it *can* connect.
1194 2008-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
1196         * emacsclient.c (EMACS_DAEMON): Remove definition.
1197         (decode_options): Do not allow an empty alternate_editor on
1198         WINDOWSNT.
1199         (print_help_and_exit): Replace EMACS_DAEMON with WINDOWSNT.
1200         (start_daemon_and_retry_set_socket): Likewise.
1201         (main): Fail in case of not being able to connect.
1203 2008-12-10  Juanma Barranquero  <lekktu@gmail.com>
1205         * emacsclient.c [!WINDOWSNT] (EMACS_DAEMON): New define.
1206         Changes when EMACS_DAEMON is not defined:
1207         (print_help_and_exit): Don't add daemon information to help.
1208         (start_daemon_and_retry_set_socket): Make a no-op.
1209         (main): Don't set `start_daemon_if_needed' (which is initialized to 0).
1211 2008-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
1213         * emacsclient.c (print_help_and_exit): Describe what an empty
1214         string argument does for --alternate-editor.
1215         (set_socket): Make it possible to not exit in case of an error.
1216         (start_daemon_and_retry_set_socket): New function.
1217         (main): Use it.  Restore the NULL value for socket_name and
1218         server_file after the set_socket call.
1220 2008-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
1222         * emacsclient.c: Include <arpa/inet.h>.
1224 2008-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
1226         * make-docfile.c (scan_lisp_file): Use xmalloc instead of malloc.
1228 2008-11-22  Derek Peschel  <dpeschel@eskimo.com>  (tiny change)
1230         * etags.c (add_regex): Pass correct length to re_compile_pattern.
1232 2008-11-02  Chong Yidong  <cyd@stupidchicken.com>
1234         * emacsclient.c (window_system): Delete redundant variable.
1235         (decode_options): Don't use it.
1236         (find_tty): New function.
1237         (main): Use find_tty, and don't use window_system.
1239 2008-11-01  Eli Zaretskii  <eliz@gnu.org>
1241         * emacsclient.c (main) [WINDOWSNT]: Don't ifdef away the call to
1242         `ttyname'.
1243         (w32_getenv): Treat $TERM specially: if not found in the
1244         environment and in the Registry, return "w32console".
1245         (ttyname) [WINDOWSNT]: New function.
1247 2008-10-31  Andreas Schwab  <schwab@suse.de>
1249         * emacsclient.c (main): Don't force sending tty when in eval mode.
1251 2008-10-30  Chong Yidong  <cyd@stupidchicken.com>
1253         * emacsclient.c (main): If using the current frame, send tty
1254         information to Emacs in case daemon mode needs to occupy this tty.
1256 2008-10-29  Juanma Barranquero  <lekktu@gmail.com>
1258         * emacsclient.c (EXTRA_SPACE): New macro.
1259         (get_server_config, set_local_socket): Use it.
1261         * makefile.w32-in ($(BLD)/sorted-doc.$(O)): Remove spurious backslash.
1262         Reported by Guillaume Conjat <gconjat.ext@orange-ftgroup.com>.
1264 2008-10-29  Ulrich Mueller  <ulm@gentoo.org>
1266         * emacsclient.c (set_local_socket): Use TMPDIR (default /tmp)
1267         instead of hardcoded /tmp.
1269 2008-10-13  Dan Nicolaescu  <dann@ics.uci.edu>
1271         * emacsclient.c (longopts, print_help_and_exit): Add -nw.
1272         (decode_options): Use getopt_long_only.
1274 2008-09-30  Eli Zaretskii  <eliz@gnu.org>
1276         * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove ccl.elc and
1277         codepage.elc.
1279 2008-09-19  Dan Nicolaescu  <dann@ics.uci.edu>
1281         * emacsclient.c (main): Use stdout rather than stdin to obtain the
1282         terminal (bug#427).
1284 2008-08-25  Francesco Potortì  <pot@gnu.org>
1286         * etags.c (main): Do not use static space for the tagfile string.
1288 2008-08-17  Francesco Potortì  <pot@gnu.org>
1290         * etags.c (main): Use canonicalize_filename on tags file name.
1291         (relative_filename): Revert 3.85: do not collapse slashes here.
1292         (absolute_dirname): Remove useless call to canonicalize_filename.
1293         (canonicalize_filename): Collapse multiple slashes here.
1295 2008-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
1297         * Makefile.in (INSTALLABLES): Add LIB_SRC_EXTRA_INSTALLABLES.
1298         Do not special case for NS_IMPL_COCOA.
1300 2008-08-06  Adrian Robert  <Adrian.B.Robert@gmail.com>
1302         * Makefile.in (CFLAGS): Drop -universal under NS_IMPL_COCOA.
1303         (.m.o): Dispense with GNUstep-specific flags.
1305 2008-08-05  Ulrich Mueller  <ulm@gentoo.org>
1307         * pop.c (socket_connection): Add conditionals for
1308         HAVE_KRB5_ERROR_TEXT and HAVE_KRB5_ERROR_E_TEXT to support
1309         compilation with MIT Kerberos and Heimdal, respectively.
1311 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
1313         * etags.c:
1314         * emacsclient.c: Remove VMS support.
1316 2008-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
1318         Remove support for Mac Carbon.
1319         * makefile.w32-in:
1320         * emacsclient.c: Remove code for Carbon.
1322 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
1324         * Makefile.in (mac-fix-env): Remove #ifdef around rule.
1326 2008-07-17  Andreas Schwab  <schwab@suse.de>
1328         * Makefile.in (INSTALL_SCRIPT): Remove duplicate definition.
1329         (LIB_STANDARD_LIBSRC): Don't define.
1330         (LOADLIBES): Remove LIB_STANDARD_LIBSRC.
1332 2008-07-16  Adrian Robert  <Adrian.B.Robert@gmail.com>
1334         * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
1335         NS_IMPL_COCOA.
1337 2008-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
1339         * ntlib.h (fcloseall, fgetchar, flushall, fputchar, putw):
1340         Remove, unused.
1342 2008-07-15  Adrian Robert  <Adrian.B.Robert@gmail.com>
1344         * .cvsignore: Add mac-fix-env.
1345         * mac-fix-env.m: New file, automatically update
1346         ~/.MacOSX/environment.plist on OS X systems to expose environment
1347         variables inside Emacs started from icon.
1348         * Makefile.in: Add -universal to CFLAGS on OS X, add mac-fix-env to
1349         programs to build.
1350         * make-docfile.c: Add .m to list of file extensions.
1352 2008-07-12  Dan Nicolaescu  <dann@ics.uci.edu>
1354         * movemail.c (main): Use int instead of WAITTYPE.
1356 2008-07-05  Juanma Barranquero  <lekktu@gmail.com>
1358         * makefile.w32-in (OTHER_PLATFORM_SUPPORT):
1359         Remove vmsproc.el and vms-patch.el.
1361 2008-06-26  Juanma Barranquero  <lekktu@gmail.com>
1363         * makefile.w32-in (obj): Remove w32bdf.o.
1365 2008-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
1367         * fakemail.c: Remove references to obsolete variables.
1369 2008-06-02  Jim Meyering  <meyering@redhat.com>
1371         * ebrowse.c (xfree): Remove definition; s/xfree/free/.
1373         Remove useless if-before-free tests.
1374         * ebrowse.c (xfree): Likewise.
1375         * etags.c (process_file_name, free_tree, free_fdesc): Likewise.
1376         (popclass_above, Prolog_functions, Erlang_functions): Likewise.
1377         * pop.c (pop_quit): Likewise.
1379 2008-05-30  Juanma Barranquero  <lekktu@gmail.com>
1381         * makefile.w32-in (lisp2): Add minibuffer.elc.
1383 2008-05-29  Tom Tromey  <tromey@redhat.com>
1385         * etags.c (relative_filename): Treat "///" like "/" in filenames.
1387 2008-05-09  Eli Zaretskii  <eliz@gnu.org>
1389         * ntlib.c: Include sys/types.h, sys/stat.h, and errno.h.
1390         (IS_DIRECTORY_SEP): New macro.
1391         (convert_time, is_exec, stat): New functions.
1393 2008-05-08  Eli Zaretskii  <eliz@gnu.org>
1395         * makefile.w32-in (lisp2): Rename epa-file-hook.elc to epa-hook.elc.
1397 2008-05-03  Eli Zaretskii  <eliz@gnu.org>
1399         * makefile.w32-in (lisp2): Add epa-file-hook.elc, to track the
1400         corresponding change in src/Makefile.in.
1402 2008-04-24  Adam GoÅ‚Ä™biowski  <adamg@pld-linux.org>  (tiny change)
1404         * Makefile.in (etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo.
1406 2008-04-10  Jason Rumney  <jasonr@gnu.org>
1408         * makefile.w32-in (CLIENTRES): New variable and target.
1409         (TRES): Remove.
1410         ($(BLD)/emacsclientw.exe): Use $(CLIENTRES) instead of $(TRES).
1412 2008-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1414         * vcdiff: Use "sccs get" rather than "get"; leave PATH alone.
1416 2008-04-18  Steve Grubb  <sgrubb@redhat.com>  (tiny change)
1418         * vcdiff: Use mktemp (CVE-2008-1694).
1420 2008-04-09  Jason Rumney  <jasonr@gnu.org>
1422         * makefile.w32-in (distclean, maintainer-clean): New targets.
1424 2008-03-13  Glenn Morris  <rgm@gnu.org>
1426         * makefile.w32-in (VERSION): Set to 23.0.60.
1428 2008-03-04  Juanma Barranquero  <lekktu@gmail.com>
1430         * .cvsignore: Add oo.
1432 2008-02-27  Yuri Shtil  <yuris@juniper.net>  (tiny change)
1434         * etags.c (Perl_functions): Fix call to skip_spaces.
1436 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
1438         * Makefile.in (NO_SHORTNAMES):
1439         * emacsclient.c (NO_SHORTNAMES):
1440         * fakemail.c (NO_SHORTNAMES):
1441         * make-docfile.c (NO_SHORTNAMES):
1442         * movemail.c (NO_SHORTNAMES):
1443         * pop.c (NO_SHORTNAMES): Remove references to obsolete variable.
1445 2008-02-23  Jason Rumney  <jasonr@gnu.org>
1447         * makefile.w32-in (MOUSE_SUPPORT): Remove duplicate tooltip.elc.
1448         (MSDOS_SUPPORT, VMS_SUPPORT): Remove.
1449         (OTHER_PLATFORM_SUPPORT): Replace above.  Add X specific files too.
1450         (lisp2): Add new languages.
1451         ($(DOC)): Use OTHER_PLATFORM_SUPPORT.
1453 2008-02-22  Juanma Barranquero  <lekktu@gmail.com>
1455         * makefile.w32-in (lisp2): Remove devanagari.el, kannada.el,
1456         malayalam.el, and tamil.el.  Add sinhala.el.
1458 2008-02-20  Juanma Barranquero  <lekktu@gmail.com>
1460         * emacsclient.c (main) [WINDOWSNT]: Understand DRIVE:NAME,
1461         where NAME is relative to DRIVE'S current directory.
1463 2008-02-15  Juanma Barranquero  <lekktu@gmail.com>
1465         * emacsclient.c (print_help_and_exit): Show -d option on Windows.
1467 2008-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
1469         * fakemail.c: Undo previous change.
1471 2008-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
1473         * fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional.
1474         (main): Replace MAIL_PROGRAM_NAME with its value.
1476         * Makefile.in (REGEXP_IN_LIBC): Remove reference to obsolete variable.
1478 2008-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1480         * emacsclient.c (decode_options): Pass --display implicitly if -c
1481         is specified.  Only set tty if -t or -c is specified.
1483 2008-02-04  Jason Rumney  <jasonr@gnu.org>
1485         * makefile.w32-in (lisp1): Use (), not {}.
1487 2008-02-04  Tom Tromey  <tromey@redhat.com>
1489         * etags.c: Add "GTY" as synonym for __attribute__.
1490         Update gperf output.
1492 2008-02-01  Jason Rumney  <jasonr@gnu.org>
1494         * makefile.w32-in (obj): Sync with src/Makefile.in.
1495         (TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
1496         (WINNT_SUPPORT): Add term/w32-win.elc.
1497         (lisp1, lisp2): Sync with lisp in src/Makefile.in.
1499 2008-02-01  Jason Rumney  <jasonr@gnu.org>
1501         * makefile.w32-in (obj): Add font.o and w32font.o.
1503 2008-02-01  Zhang Wei  <id.brep@gmail.com>  (tiny change)
1505         * makefile.w32-in (lisp1): Delete ucs-tables.elc,
1506         utf-8.elc, and latin-*.el.
1508 2008-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1510         * emacsclient.c (decode_options): Default to NULL display, as Emacs-22.
1511         Allow the -d option under w32 again, for those rare cases where it
1512         actually does make sense.
1514 2008-01-25  Juanma Barranquero  <lekktu@gmail.com>
1516         * emacsclient.c (set_tcp_socket): Don't send "\n" after
1517         the authentication string; there's no need to haste.
1519 2008-01-22  Chong Yidong  <cyd@stupidchicken.com>
1521         * pop.c (pop_stat, pop_last): Fix last fix.
1523 2008-01-18  Dan Nicolaescu  <dann@ics.uci.edu>
1525         * movemail.c: Remove references to XENIX.
1527 2008-01-13  Dan Nicolaescu  <dann@ics.uci.edu>
1529         * movemail.c:
1530         * make-docfile.c: Remove reference to symbols defined by systems
1531         not supported anymore: MAC_OS8, XENIX and STRIDE.
1533 2008-01-12  Eli Zaretskii  <eliz@gnu.org>
1535         * emacsclient.c (decode_options) [WINDOWSNT]: Don't use the value
1536         of DISPLAY in the environment.  Don't support -d.
1537         (print_help_and_exit) [WINDOWSNT]: Don't show the --display option.
1538         (longopts) [WINDOWSNT]: Remove --display.
1540 2008-01-10  Chong Yidong  <cyd@stupidchicken.com>
1542         * pop.c (pop_stat, pop_last): Check validity of string-to-integer
1543         conversion.  Mistakes spotted by Nico Golde.
1545 2008-01-09  Glenn Morris  <rgm@gnu.org>
1547         * emacsclient.c: Add missing final newlines to message calls.
1549 2008-01-09  Daniel Hackney  <dan@haxney.org>  (tiny change)
1551         * emacsclient.c (set_socket): Add final newline to socket error message.
1553 2008-01-04  Glenn Morris  <rgm@gnu.org>
1555         * ebrowse.c (version) <emacs_copyright>: New variable.
1556         Just use current year for copyright.
1558         * etags.c (print_version):
1559         * rcs2log (Copyright): Update to 2008.
1561 2007-11-28  Jason Rumney  <jasonr@gnu.org>
1563         * makefile.w32-in (VMS_SUPPORT): No longer byte-compiled.
1565 2007-11-27  Jan Djärv  <jan.h.d@swipnet.se>
1567         * pop.c (socket_connection): Remove AI_ADDRCONFIG.
1569 2007-11-19  Jan Djärv  <jan.h.d@swipnet.se>
1571         * pop.c (socket_connection): Move realhost out of #ifdefs.
1572         Set realhost both for HAVE_GETADDRINFO and !HAVE_GETADDRINFO.
1574 2007-11-18  Jan Djärv  <jan.h.d@swipnet.se>
1576         * pop.c (socket_connection): Use getaddrinfo if available.
1578 2007-11-22  Francesco Potortì  <pot@gnu.org>
1580         * etags.c (default_C_help) [CTAGS]: Differentiate the help string,
1581         as the defaults in ctags are different from etags.
1583 2007-11-15  Francesco Potortì  <pot@gnu.org>
1585         * etags.c: Make prototypes for extern definitions, and add all
1586         that are needed to quench warnings on 64-bit.
1587         (main): Use the same defaults for ctags as for etags: find
1588         typedefs, structure tags, macro constants, enum constants, struct
1589         members and global variables.
1590         (make_C_tag) [DEBUG]: Add debugging printout.
1591         (C_entries): In case '}' decrement bracelev before testing it.
1593 2007-11-15  Masatake YAMATO  <jet@gyve.org>
1595         * etags.c (C_entries): In case '}', set fvdef to fvnone
1596         unconditioned to (!ignoreindent && lp == newlb.buffer + 1).
1598 2007-11-01  Dan Nicolaescu  <dann@ics.uci.edu>
1600         * makefile.w32-in (obj): Remove sunfns.o.
1602 2007-10-28  Juanma Barranquero  <lekktu@gmail.com>
1604         * makefile.w32-in (obj): Remove abbrev.o.
1606 2007-10-26  Juanma Barranquero  <lekktu@gmail.com>
1608         * emacsclient.c: Add a wrapper for getenv so it also checks the
1609         registry on Windows.  Suggestion and algorithm by Eli Zaretskii.
1610         Code partially based on w32_get_resource and init_environment (w32.c).
1611         (egetenv): New wrapper for getenv.
1612         (get_current_dir_name, decode_options, get_server_config)
1613         (set_local_socket, set_socket, main): Use egetenv, not getenv.
1614         (w32_get_resource, w32_getenv) [WINDOWSNT]: New functions.
1616 2007-10-25  Jason Rumney  <jasonr@gnu.org>
1618         * emacsclient.c (sock_err_message): New function.
1619         (set_tcp_socket): Use it.
1621 2007-10-09  Juanma Barranquero  <lekktu@gmail.com>
1623         * emacsclient.c (print_help_and_exit): Fix space to improve
1624         alignment in output messages.
1626 2007-09-27  Jason Rumney  <jasonr@gnu.org>
1628         * makefile.w32-in (emacsclient, emacsclientw): Link to COMCTL32.
1630         * emacsclient.c (w32_window_app): Init common controls when windowed.
1632 2007-09-21  Glenn Morris  <rgm@gnu.org>
1634         * emacstool.c: Remove file.
1635         * Makefile.in (emacstool, nemacstool, xvetool, xveterm):
1636         Delete targets built from emacstool.
1638 2007-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1640         * emacsclient.c (decode_options): -t implies -c.
1642 2007-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1644         * emacsclient.c (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP)
1645         (IS_ANY_SEP): Only define if !defined(HAVE_GET_CURRENT_DIR_NAME).
1646         (main_argc): Remove.
1647         (strprefix): Use strncmp.
1649 2007-09-20  Jason Rumney  <jasonr@gnu.org>
1651         * emacsclient.c (main) [SIGSTOP]: Change conditional from WINDOWSNT.
1653 2007-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1655         * emacsclient.c (current_frame): Change the default.
1656         (longopts): Replace --current-frame by --create-frame.
1657         (decode_options): Reverse the meaning of -c.
1658         (print_help_and_exit): Update help text accordingly.
1659         (main): Remove the -version and -good-version messages.
1661 2007-09-12  Glenn Morris  <rgm@gnu.org>
1663         * Makefile.in (SOURCES, unlock, relock): Delete.
1665 2007-08-29  Glenn Morris  <rgm@gnu.org>
1667         * makefile.w32-in (VERSION): Increase to 23.0.50.
1669 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
1671         * emacsclient.c (w32_execvp): Move definition before use.
1672         (decode_options): Don't use a tty on mac carbon or windows.
1674 2007-08-29  Jason Rumney  <jasonr@gnu.org>
1676         * emacsclient.c (SEND_STRING, SEND_QUOTED): Remove obfuscation macros.
1677         (quote_argument, set_tcp_socket, handle_sigcont, handle_sigtstp):
1678         (main): Expand removed macros inline.
1679         (main) [WINDOWSNT]: Don't call ttyname.  Don't recognize -suspend
1680         option.
1681         (main) [NO_SOCKETS_IN_FILE_SYSTEM]: Don't call init_signals.
1683 2007-08-29  Károly LÅ‘rentey  <lorentey@elte.hu>
1685         * emacsclient.c (signal.h): New include.
1686         (sys/stat.h, errno.h): Always include, even on WINDOWSNT.
1687         (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
1688         Copy definitions here from src/lisp.h.
1689         (main_argc, main_argv, current_frame, window_system, tty): New vars.
1690         (longopts): Add tty, current-frame.
1691         (xmalloc, xstrdup): New functions.
1692         (get_current_dir_name): New function, copied from src/sysdep.c.
1693         (decode_options): Set display from environment.  Add tty and
1694         current_frame options.  Make --no-wait imply --current-frame,
1695         except when it is the only option given.  Make sure no frame is
1696         opened when --current-frame is set.
1697         (print_help_and_exit): Document tty and current-frame options.
1698         (fail): Change arguments to void.
1699         (main): When sockets are not defined, set main_argc, main_argv,
1700         and call fail() with no arguments.
1701         (emacs_socket): New variable (moved out from main `s').
1702         (quote_file_name): Rename to quote_argument.
1703         (quote_argument): New name for old quote_file_name.
1704         (unquote_argument, strprefix, pass_signal_to_emacs)
1705         (handle_sigcont, handle_sigtstp, init_signals): New functions.
1706         (set_local_socket): Initialize saved_errno to 0.  If socket-name
1707         is too long, call `fail' rather than `exit'.
1708         (main): Doc update.  Set main_argc, main_argv.  New var `str'.
1709         Don't need a filename or argument if tty or window_system set.
1710         Call fail with no arguments.  Use get_current_dir_name to send
1711         over the current directory.  Send version number to Emacs for
1712         verification.  If tty is set, check TERM, and pass name and type
1713         to Emacs.  Pass window_system to Emacs.  Move sending of eval to
1714         optind loop.  Send -position, -file to Emacs.  Call fsync after
1715         fflush.  Check for a client/server version match.
1716         Handle -emacs-pid, -window-system-unsupported, -print, -error, and
1717         -suspend commands.  Don't exit prematurely on --no-wait, let Emacs
1718         close the connection for us.  When creating a new frame, send
1719         environment and pwd to Emacs.  Send current-frame to Emacs.
1721 2007-08-25  Eli Zaretskii  <eliz@gnu.org>
1723         * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
1724         Prepend "-" to the command, in case srcdir=. and file is copied
1725         into itself.
1727 2007-07-25  Glenn Morris  <rgm@gnu.org>
1729         * Relicense all FSF files to GPLv3 or later.
1731         * COPYING: Switch to GPLv3.
1733 2007-07-17  Francesco Potortì  <pot@gnu.org>
1735         * etags.c (C_entries): Reset the fvdef machine when out of function.
1736         (PRINT_UNDOCUMENTED_OPTIONS_HELP): #define as FALSE if undefined.
1737         (print_help): Use it in if() rather than #if.
1738         (print_help): Conditionally print help about --no-line-directive.
1740 2007-07-16  Eli Zaretskii  <eliz@gnu.org>
1742         * makefile.w32-in (clean): Don't delete *~.
1744 2007-06-07  Glenn Morris  <rgm@gnu.org>
1746         * etags.c (print_version): Add `emacs_copyright' string, for
1747         easier automatic updating.
1749 2007-05-18  Francesco Potortì  <pot@gnu.org>
1751         * etags.c: Extern definitions of some more pointer functions for
1752         standalone compilation, especially important for 64bit platforms.
1753         (main, print_help): --members is now the default for etags.
1754         (C_entries): Parse start of C comment as a space == end of token.
1755         This is not necessary for C++ comment, already parsed as newline.
1757 2007-04-26  Glenn Morris  <rgm@gnu.org>
1759         * makefile.w32-in (VERSION): Increase to 22.1.50.
1761 2007-06-02  Chong Yidong  <cyd@stupidchicken.com>
1763         * Version 22.1 released.
1765 2007-02-26  Francesco Potortì  <pot@gnu.org>
1767         * Makefile.in (etags, ctags): Define EMACS_NAME as "GNU Emacs".
1769 2007-02-20  Ulrich Mueller  <ulm@kph.uni-mainz.de>  (tiny change)
1771         * Makefile.in (EMACS, EMACSOPT): New variables.
1772         (blessmail): Use `--no-site-file' when compiling.
1774 2007-02-05  Francesco Potortì  <pot@gnu.org>
1776         * etags.c (default_C_help, Cplusplus_help, PHP_help, print_help)
1777         (main): Now --members is the default for etags, not for ctags yet.
1779 2007-02-04  Per Cederqvist  <ceder@ingate.com>  (tiny change)
1781         * etags.c (gperf, in_word_set): Change attribute for Java to
1782         (C_JAVA & ~C_PLPL).  The previous change introduced 2004-09-13 was
1783         broken, as (C_JAVA & !C_PLPL) always evaluates to 0.  This caused
1784         import, package, extends, implements and interface to be treated
1785         specially for all kinds of C-style files, not just Java files.
1787 2007-01-02  Francesco Potortì  <pot@gnu.org>
1789         * etags.c (longopts): New undocumented option --no-duplicates.
1790         (no_duplicates): Static variables for the above option.
1791         (print_help): Do not print help for --no-warn, now undocumented.
1792         (add_node): Allow duplicate tags in ctags mode unless --no-duplicates.
1793         (main): Pass the -u option to sort in ctags mode.
1795 2006-12-28  Francesco Potortì  <pot@gnu.org>
1797         * etags.c (readline): When creating a relative file name from a
1798         #line directive, leave the file name alone.  The previous
1799         behavior was to make it relative to the tags file directory,
1800         under the hypothesis that the #line directive file name was
1801         relative to the directory of the tagged file.  That hypothesis is
1802         wrong with Cpp and Lex.
1803         (Makefile_targets): Do not include spaces in tag names.
1805 2006-12-22  Eli Zaretskii  <eliz@gnu.org>
1807         * makefile.w32-in (make-docfile, ctags, etags, ebrowse, hexl)
1808         (movemail, fakemail, sorted-doc, digest-doc, emacsclient)
1809         (test-distrib, $(DOC), all): Depend on stamp_BLD instead of $(BLD).
1810         ($(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O))
1811         ($(BLD)/sorted-doc.$(O) $(BLD)/digest-doc.$(O))
1812         ($(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS))
1813         ($(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O))
1814         ($(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O)): Depend on stamp_BLD.
1815         (clean): Delete stamp_BLD.
1817 2006-12-20  Francesco Potortì  <pot@gnu.org>
1819         * etags.c (C_entries): DEFUN names were longer by one: corrected.
1821 2006-12-18  Juanma Barranquero  <lekktu@gmail.com>
1823         * emacsclient.c [WINDOWSNT] (set_fg, get_wc): New variables.
1824         [WINDOWSNT] (w32_find_emacs_process, w32_give_focus): New functions.
1825         (main) [WINDOWSNT]: Remove code to release the focus; call
1826         w32_give_focus instead.
1828 2006-12-15  Juanma Barranquero  <lekktu@gmail.com>
1830         * emacsclient.c (w32_execvp): New function; wrapper for `execvp'.
1831         (execvp) [WINDOWSNT]: Redefine to `w32_execvp'.
1832         (fail): Remove Windows-specific fix (subsumed into w32_execvp).
1833         Suggestions and comment by Eli Zaretskii.
1835 2006-12-06  Christoph Conrad  <christoph.conrad@gmx.de>
1837         * makefile.w32-in ($(BLD)/emacsclient.exe, $(BLD)/emacsclientw.exe):
1838         Use $(USER32) for compatibility with Visual Studio .NET 2003.
1840 2006-11-30  Juanma Barranquero  <lekktu@gmail.com>
1842         * emacsclient.c (emacs_pid): New variable.
1843         (message): Remove leftover code.
1844         (get_server_config): Set emacs_pid.  Don't allow Emacs to grab the
1845         focus yet; emacsclient can still display an informational message
1846         before sending requests to Emacs.
1847         (main): Allow Emacs to grab the focus.  Simplify message() call.
1849 2006-11-30  Michael Mauger  <mmaug@yahoo.com>
1851         * emacsclient.c (message): Make sure the message is properly
1852         written even if it contains printf escapes, and flush the result.
1853         (set_tcp_socket): Make the message for non-local connections
1854         informational rather than an error.
1856 2006-11-28  Kevin Ryde  <user42@zip.com.au>
1858         * etags.c (readline): Check for double quote after #line.
1860 2006-11-28  Jan Djärv  <jan.h.d@swipnet.se>
1862         * etags.c (readline): sscanf could in principle return 2.
1864 2006-11-28  Francesco Potortì  <pot@gnu.org>
1866         * etags.c (readline): lno is unsigned.
1867         (TeX_commands): Use p++ (rather than *p++) to increment p.
1868         (Lua_functions): Explicitly discard LOOKING_AT's return value.
1870 2006-11-27  Juanma Barranquero  <lekktu@gmail.com>
1872         * makefile.w32-in (TRES): New macro (copied from nt/makefile.w32-in).
1873         ($(TRES)): New rule (copied from nt/makefile.w32-in).
1874         ($(BLD)/emacsclientw.exe): Add dependency.
1876 2006-11-27  Eli Zaretskii  <eliz@gnu.org>
1878         * makefile.w32-in ($(BLD)/emacsclient.$(O)): Depend on makefile.w32-in.
1880 2006-11-25  Juanma Barranquero  <lekktu@gmail.com>
1882         * makefile.w32-in (VERSION): New macro.
1883         (ECLIENT_CFLAGS): Add -DVERSION.
1885 2006-11-25  Jason Rumney  <jasonr@gnu.org>
1887         * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Use isalpha().
1889 2006-11-24  Michael Mauger  <mmaug@yahoo.com>
1891         * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Support absolute
1892         file names with forward slashes.
1894 2006-11-23  Juanma Barranquero  <lekktu@gmail.com>
1896         * emacsclient.c (print_help_and_exit): Tweak message contents and
1897         tabs/spaces to improve alignment in message boxes.
1899 2006-11-22  Lennart Borgman  <lennart.borgman.073@student.lu.se>
1901         * emacsclient.c: Include <stdarg.h>.
1902         [WINDOWSNT]: Include <windows.h>.
1903         (w32_check_console_app): New function.
1904         (message): New function.
1905         (decode_options, print_help_and_exit, fail, main)
1906         (initialize_sockets, get_server_config, set_tcp_socket)
1907         (set_local_socket, set_socket): Use message().
1909 2006-11-13  Jason Rumney  <jasonr@gnu.org>
1911         * emacsclient.c [WINDOWSNT]: Let config.h define HAVE_SOCKETS and
1912         HAVE_INET_SOCKETS.
1914 2006-11-13  Juanma Barranquero  <lekktu@gmail.com>
1916         * makefile.w32-in (emacsclient): Depend also on emacsclientw.exe.
1917         ($(BLD)/emacsclientw.exe): New target.
1918         (install): Install emacsclientw.exe.
1919         ($(BLD)/cvtmail.$(O), $(BLD)/emacstool.$(O)): Remove obsolete targets.
1920         (ECLIENT_CFLAGS): Remove redundant flags.
1922         * emacsclient.c [WINDOWSNT]: Undef _WINSOCKAPI_ and _WINSOCK_H.
1924 2006-11-13  Jason Rumney  <jasonr@gnu.org>
1926         * makefile.w32-in ($(BLD)/emacsclient.$(O)): Use CFLAGS.
1928 2006-11-10  David Reitter  <david.reitter@gmail.com>
1930         * emacsclient.c [!WINDOWSNT]: Include <sys/types.h>.
1932 2006-11-08  Juanma Barranquero  <lekktu@gmail.com>
1934         * emacsclient.c (get_server_config) [WINDOWSNT]: Declare set_fg as
1935         FARPROC to avoid a compiler warning.
1937 2006-11-07  Juanma Barranquero  <lekktu@gmail.com>
1939         * emacsclient.c (get_server_config) [WINDOWSNT]: Look for the server
1940         file on APPDATA if it doesn't exist on HOME, even if HOME is defined.
1942         * emacsclient.c (get_server_config): Extract also the Emacs pid
1943         from the server file.  On Windows, try to force the Emacs frame to
1944         the foreground.
1946 2006-11-06  Juanma Barranquero  <lekktu@gmail.com>
1948         * emacsclient.c (longopts) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't show
1949         option --socket-name.
1950         (decode_options): Don't get EMACS_SERVER_FILE here, it could override
1951         command line options.
1952         (decode_options) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't parse "-s" option.
1953         (fail): Don't check for missing arguments, it is now done in set_socket.
1954         (file_name_absolute_p): New function (loosely based on the one in
1955         fileio.c).
1956         (initialize_sockets): Don't check for duplicate loading of Winsock.
1957         (get_server_config): Only try relative paths in the default
1958         directory locations.
1959         (set_tcp_socket): Don't call INITIALIZE().  Warn when connecting to
1960         a remote server.
1961         (set_socket): Call INITIALIZE().  Search explicit command-line
1962         arguments, then environment variable EMACS_SERVER_FILE, then implicit
1963         socket paths, before trying the alternate editor.
1964         (main): Use file_name_absolute_p.
1966 2006-11-04  Eli Zaretskii  <eliz@gnu.org>
1968         * makefile.w32-in (../src/$(BLD)/temacs.exe): Create as temporary
1969         file if it doesn't already exist.
1971 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
1973         * emacsclient.c (initialize_sockets): Don't initialize Winsock
1974         more than once.
1976 2006-11-03  Mark Davies  <mark@mcs.vuw.ac.nz>
1978         * Makefile.in (INSTALL_SCRIPT): New macro.
1979         ($(DESTDIR)${archlibdir}, install): Use it, instead of INSTALL_PROGRAM.
1981 2006-11-02  Juanma Barranquero  <lekktu@gmail.com>
1983         * grep-changelog: When called with no arguments (not even a
1984         filter), show help instead of blindingly dumping every single
1985         ChangeLog available.  Doc fix.  Update version.
1987 2006-11-02  Tim Van Holder  <tim.vanholder@gmail.com>  (tiny change)
1989         * emacsclient.c [WINDOWSNT]: Define HAVE_INET_SOCKETS.
1990         [!WINDOWSNT]: Include <netinet/in.h> if available.
1991         [HAVE_SOCKETS]: Also require HAVE_INET_SOCKETS.
1992         (IOCTL, IOCTL_BOOL_ARG): Remove.
1993         (set_tcp_socket): Don't set the socket in blocking mode.
1994         Remove c_arg.
1996 2006-11-01  Juanma Barranquero  <lekktu@gmail.com>
1998         * emacsclient.c (fail) [WINDOWSNT]: Force the first argv passed to
1999         execvp to point to alternate_editor (otherwise .BAT scripts can't run).
2001 2006-10-31  Ã“scar Fuentes  <ofv@wanadoo.es>  (tiny change)
2003         * emacsclient.c [WINDOWSNT]: Include <malloc.h> and <stdlib.h>.
2004         (close_winsock): Declare as __cdecl.
2006 2006-10-31  Jan Djärv  <jan.h.d@swipnet.se>
2008         * emacsclient.c [!WINDOWSNT]: Include <fcntl.h> if available.
2009         (set_tcp_socket): Prefer O_NONBLOCK, then O_NDELAY, then FIONBIO
2010         to set the socket in non-blocking mode.
2012 2006-10-31  Tim Van Holder  <tim.vanholder@gmail.com>  (tiny change)
2014         * emacsclient.c [!WINDOWSNT]: Include <netinet/in.h> and <sys/ioctl.h>.
2015         (INVALID_SOCKET): Define.
2016         (initialize_sockets): Put #endif at the right place.
2017         (set_local_socket): Use progname, not argv[0].
2019 2006-10-31  Juanma Barranquero  <lekktu@gmail.com>
2021         * makefile.w32-in (ALL): Add emacsclient.
2022         (ECLIENT_CFLAGS, ECLIENTOBJS): New macros.
2023         (emacsclient, $(BLD)/emacsclient.exe): New targets.
2024         (install): Install emacsclient.
2026         * emacsclient.c: Add support for TCP sockets.
2027         (SEND_STRING, SEND_QUOTED, HSOCKET, CLOSE_SOCKET, IOCTL)
2028         (INITIALIZE): New macros.
2029         (IOCTL_BOOL_ARG): New typedef.
2030         (server_file): New global variable.
2031         (longopts): New option --server-file.
2032         (decode_options): Process new option --server-file and environment
2033         variable EMACS_SERVER_FILE.
2034         (print_help_and_exit): Document new option.
2035         (fail): If no connection available and no alternate editor,
2036         suggest using options to make them explicit.
2037         (AUTH_KEY_LENGTH, SEND_BUFFER_SIZE): New constants.
2038         (send_buffer, sblen): New variables.
2039         (send_to_emacs): New function to buffer output and send it with `send'.
2040         (quote_file_name): Use SEND_STRING.
2041         (close_winsock, initialize_sockets): New functions to load and
2042         unload Winsock.
2043         (get_server_config, set_tcp_socket): New functions to create and
2044         set up TCP sockets.
2045         (set_local_socket): New function to create and set up Unix
2046         socket (code moved from previous implementation).
2047         (set_socket): New function to choose between TCP and Unix sockets.
2048         (main): Use SEND_STRING and SEND_QUOTED.  Most code moved to
2049         set_local_socket.  Use set_socket.  Get answers from server.el with
2050         recv(), not file stream functions.
2052 2006-10-09  Eli Zaretskii  <eliz@gnu.org>
2054         * makefile.w32-in (../src/config.h): Fix error message.
2056 2006-09-30  Eli Zaretskii  <eliz@gnu.org>
2058         * .cvsignore: Add blessmail.
2060 2006-09-15  Jay Belanger  <belanger@truman.edu>
2062         * COPYING: Replace "Library Public License" by "Lesser Public
2063         License" throughout.
2065 2006-08-09  Jan Djärv  <jan.h.d@swipnet.se>
2067         * etags.c (readline): Expect sscanf returns >= 1.
2068         (readline): Change position on %n and \" in sscanf.
2070 2006-08-07  Masatake YAMATO  <jet@gyve.org>
2072         * etags.c (readline): Expect sscanf returns 2, not 1.
2074 2006-08-07  Masatake YAMATO  <jet@gyve.org>
2076         * etags.c (TEX_mode): Check getc returns EOF.
2077         File ended without newline causes infinite loop.
2079 2006-07-30  Adrian Aichner  <adrian@xemacs.org>  (tiny change)
2081         * etags.c: It's XEmacs, not Xemacs: change all the occurrences.
2083 2006-07-30  Francesco Potortì  <pot@gnu.org>
2085         * etags.c [ETAGS_REGEXPS]: Now is unconditionally defined.
2086         [LONG_OPTIONS]: Changed to NO_LONG_OPTIONS, which is undefined.
2087         (Objc_suffixes): Suggest using --lang=c for full help.
2088         (C_entries): Initialize savetoken to 0 to shut up the compiler.
2090 2006-07-20  Andreas Schwab  <schwab@suse.de>
2092         * fakemail.c (fatal): Drop second parameter and treat first
2093         parameter as a plain string.  Callers changed.
2095 2006-07-18  Dan Nicolaescu  <dann@ics.uci.edu>
2097         * ebrowse.c (usage, version): Mark as NO_RETURN.
2099         * emacsclient.c (print_help_and_exit): Likewise.
2101 2006-07-10  Francesco Potortì  <pot@gnu.org>
2103         * etags.c (absolute_filename): Free unused space (cosmetic change).
2104         (in_word_set): In C, also tag #undef symbols.
2106 2006-06-09  Eli Zaretskii  <eliz@gnu.org>
2108         * yow.c: Remove file.
2110         * makefile.w32-in ($(BLD)/yow.$(O)): Remove target.
2112         * Makefile.in (UTILITIES): Remove yow${EXEEXT}.
2113         yow${EXEEXT}: Remove target.
2115 2006-06-04  Masatake YAMATO  <jet@gyve.org>
2117         * ebrowse.c (main): Exit with EXIT_FAILURE if BROWSE file
2118         doesn't exist, is not seekable, not is failed in ftall.
2120 2006-06-03  Eli Zaretskii  <eliz@gnu.org>
2122         * makefile.w32-in (ALL): Add sorted-doc and digest-doc.
2123         ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe)
2124         ($(BLD)/test-distrib.exe): New targets.
2125         (sorted-doc, digest-doc, test-distrib): New targets.
2126         (install): Install sorted-doc.exe and digest-doc.exe.
2127         ($(BLD)/sorted-doc.$(O)): Update dependencies.
2129         * digest-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
2130         (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
2131         terminal device.
2133         * sorted-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
2134         [WINDOWSNT] <top level>: Don't redeclare malloc.
2135         (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
2136         terminal device.
2137         (main): Initialize bp, to avoid compiler warnings.
2139         * makefile.w32-in: Delete traces of leditcfns.c.
2141         * leditcfns.c: Remove file.
2143 2006-05-23  Francesco Potortì  <pot@gnu.org>
2145         * pop.c (pop_open, socket_connection, KPOP_SERVICE):
2146         Add comments explaining why the "kpop" service is never used.
2148 2006-05-13  Eli Zaretskii  <eliz@gnu.org>
2150         * makefile.w32-in (lisp1): Add fringe.elc.
2152 2006-05-02  Francesco Potortì  <pot@gnu.org>
2154         * etags.c (Perl_functions): Free space allocated for var package.
2155         (Erlang_functions): Possibly free space allocated for var last.
2156         (Prolog_functions): Possibly free space allocated for var last.
2158 2006-04-29  Dan Nicolaescu  <dann@ics.uci.edu>
2160         * sorted-doc.c (main): Initialize docs to NULL.
2162         * yow.c (yow): Free buf.
2164         * etags.c: Delete c-indentation-style local variable.
2166 2006-04-29  Richard Stallman  <rms@gnu.org>
2168         * movemail.c (main): Check for negative value from `read'.
2170         * fakemail.c (read_header): Give fatal error if input has no header.
2172 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
2174         * b2m.c (main): Don't include <limits.h>.
2175         (TM_YEAR_BASE): New macro.
2176         (TM_YEAR_IN_ASCTIME_RANGE): Don't define if already defined, so
2177         that s/ files can override this.  Use the more-conservative range
2178         1000-9999.
2179         (main): Check for asctime returning NULL.
2180         * fakemail.c: Likewise.
2182 2006-03-27  Paul Eggert  <eggert@cs.ucla.edu>
2184         * b2m.c: Include <limits.h>.
2185         (TM_YEAR_IN_ASCTIME_RANGE): New macro.
2186         (main): Check for out-of-range time stamps.
2187         * fakemail.c: Likewise.
2189 2006-03-18  Andre Spiegel  <spiegel@gnu.org>
2191         * vcdiff: Use "echo" as a default for $echo, otherwise we'll
2192         execute $DIFF twice, and once with the wrong options.
2194 2006-02-23  Claudio Fontana  <claudio@gnu.org>
2196         * Makefile.in (install, uninstall): Add DESTDIR variable to
2197         support staged installations.
2199 2005-12-30  Eli Zaretskii  <eliz@gnu.org>
2201         * makefile.w32-in (MOUSE_SUPPORT): Add tooltip.elc.
2202         (lisp1): Add rfn-eshadow.elc, international/utf-16.elc, image.elc,
2203         international/fontset.elc, dnd.elc, mwheel.elc, and tool-bar.elc.
2204         Rearrange the list to be similar to $(shortlisp) in
2205         src/Makefile.in.
2206         (lisp2): Add language/kannada.el, emacs-lisp/syntax.elc,
2207         emacs-lisp/timer.elc, jka-cmpr-hook.elc, font-lock.elc,
2208         jit-lock.elc.  Rearrange the list to be similar to $(shortlisp) in
2209         src/Makefile.in.
2211 2005-12-22  Richard M. Stallman  <rms@gnu.org>
2213         * Makefile.in (update-game-score.o): Delete spurious final `\'.
2215 2005-11-18  Hideki IWAMOTO  <h-iwamoto@kit.hi-ho.ne.jp>  (tiny change)
2217         * etags.c (main): Cxref mode writes to stdout: do not close tagf,
2218         which was never opened.
2220 2005-10-20  Olli Savia  <ops@iki.fi>  (tiny change)
2222         * etags.c: Undef STDIN if defined.  (LynxOS defines it in system
2223         header files.)
2225 2005-09-27  Francesco Potortì  <pot@gnu.org>
2227         * etags.c: Preliminary Forth support.
2228         (prolog_pr): Cast strlen to int before comparison.
2229         (LOOKING_AT, LOOKING_AT_NOCASE): Let the preprocessor check that
2230         the second argument is indeed a literal string.
2231         (main): In append mode, sort the tags file after writing it.
2233 2005-09-27  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
2235         * etags.c (longopts, print_help, main): The -a (--append) option
2236         can be used in ctags also; for one, the Linux make file uses it.
2238 2005-09-20  Chong Yidong  <cyd@stupidchicken.com>
2240         * ebrowse.c (add_sym): Compare namespace names instead of
2241         namespace objects.  This prevents the parser from incorrectly
2242         treating classes whose superclass is in another namespace.
2244 2005-09-15  Richard M. Stallman  <rms@gnu.org>
2246         * Makefile.in (update-game-score.o): New target.
2247         Compile and link this program separately.
2248         (update-game-score${EXEEXT}): Use GETOPTDEPTS.
2250 2005-09-11  Jason Rumney  <jasonr@gnu.org>
2252         * makefile.w32-in (../src/config.h): Don't overwrite.  Print a
2253         message instead.
2254         (../src/paths.h): Remove.
2256 2005-07-27  Juanma Barranquero  <lekktu@gmail.com>
2258         * .cvsignore: Don't ignore fns-* and fns.el, which are no longer
2259         generated.  Ignore also ctags.c and getopt.h.
2261         * makefile.w32-in (clean): Delete getopt.h.
2262         (getopt.h): New rule.
2264 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
2266         Merge gnulib getopt implementation into Emacs.
2268         * Makefile.in (mostlyclean): Remove getopt.h, getopt.h-t.
2269         (GETOPT_H): New macro, from gnulib.
2270         (getopt.h): New rule, from gnulib.
2271         (GETOPTOBJS): Now autoconfigured.
2272         (GETOPTDEPS): getopt.h is now autoconfigured.
2273         (getopt.o, getopt1.o): Depend on $(GETOPT_H), not ${srcdir}/getopt.h.
2274         (getopt.o): Depend on ${srcdir}/gettext.h.
2275         (movemail.o): Depend on $(GETOPT_H).
2276         * getopt.c, getopt1.c: Sync from gnulib.
2277         * getopt_.h, getopt_int.h, gettext.h: New files, from gnulib.
2278         * getopt.h: Removed (now is getopt_.h).
2280 2005-07-13  Ken Raeburn  <raeburn@gnu.org>
2282         * pop.c: Don't include des.h (or variants thereof); krb.h will do it.
2283         (sendline): Add the \r\n to the line in a temporary buffer, and write
2284         it all at once.
2286 2005-07-04  Lute Kamstra  <lute@gnu.org>
2288         Update FSF's address in GPL notices.
2290 2005-06-13  Eli Zaretskii  <eliz@gnu.org>
2292         * makefile.w32-in ($(DOC)): Fix last change.
2294 2005-06-12  Eli Zaretskii  <eliz@gnu.org>
2296         * makefile.w32-in ($(DOC)): Depend on make-docfile.exe,
2297         temacs.exe, and the preloaded *.elc files.  This avoids
2298         unnecessary dumping and DOC rebuilding.
2300 2005-06-04  Eli Zaretskii  <eliz@gnu.org>
2302         * ntlib.h (fileno): Don't define if already defined.
2304 2005-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
2306         * yow.c (setup_yow): Use EXIT_FAILURE in case no separators found.
2307         (yow): Use EXIT_FAILURE in case of memory error.
2309 2005-05-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2311         * make-docfile.c (DIRECTORY_SEP): New macro.
2312         (IS_DIRECTORY_SEP): Use it.
2314 2005-03-18  Jan Djärv  <jan.h.d@swipnet.se>
2316         * emacsclient.c: Avoid expansion of getcwd when defined as a macro.
2318 2005-03-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2320         * make-docfile.c: Undo previous change.
2322 2005-02-04  Andreas Schwab  <schwab@suse.de>
2324         * movemail.c (fatal): Accept third parameter and pass down to error.
2325         (pfatal_with_name): Pass error string as format parameter instead of
2326         as part of format string.
2327         (pfatal_and_delete): Likewise.
2328         (main): Adjust call to fatal.
2329         (xmalloc): Likewise.
2331 2005-01-29  Richard M. Stallman  <rms@gnu.org>
2333         * movemail.c (popmail): Don't use Errmsg as format string.
2335 2004-12-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2337         * make-docfile.c: Include stdlib.h even if WINDOWSNT is not defined.
2339 2004-12-15  Andreas Schwab  <schwab@suse.de>
2341         * etags.c (main): Fix typo in conversion of LONG_OPTIONS from
2342         preprocessing to compile time constant.
2344 2004-11-17  Kim F. Storm  <storm@cua.dk>
2346         * etags.c: Undo last change.
2348 2004-11-09  Kim F. Storm  <storm@cua.dk>
2350         * make-docfile.c (scan_c_file): Set defvarperbufferflag to
2351         silence compiler.
2353         * hexl.c (main): Init local var c to silence compiler.
2355         * etags.c (main, consider_token, C_entries): Add misc switch
2356         default targets to silence compiler.
2358 2004-11-09  Jan Djärv  <jan.h.d@swipnet.se>
2360         * makefile.w32-in (obj): Add all files (X and Mac) to doc so the
2361         resulting DOC file can be used on Unix/Mac also.
2363 2004-09-13  Francesco Potortì  <pot@gnu.org>
2365         * etags.c (main): When relative file names are given as argument,
2366         make them relative to the current working dir, rather than
2367         relative to the output tags file, if the latter is in /dev.
2369 2004-09-13  Francesco Potortì  <pot@gnu.org>
2371         * etags.c [EXIT_SUCCESS, EXIT_FAILURE]: Define them when no
2372         <stdlib.h> is available.
2373         (enum sym_type): New st_C_attribute value for parsing
2374         gcc's __attribute__.  Deleted st_C_typespec value.
2375         (gperf, in_word_set): Use gperf 3, options changed.  Added the
2376         __attribute__ keyword, removed all the st_C_typespec keywords,
2377         changed attribute for Java to (C_JAVA & !C_PLPL).
2378         (inattribute): New global bool, part of the C state machine.
2379         (cblev): Identifier renamed to bracelev throughout.
2380         (consider_token, C_entries): Numerous changes for making the
2381         parser more robust and adding support for __attribute__.
2383 2004-09-13  David A. Capello  <dacap@users.sourceforge.net>  (tiny change)
2385         * etags.c (Lua_suffixes, Lua_help, lang_names, Lua_functions):
2386         Support the Lua scripting language <http://www.lua.org>.
2388 2004-09-08  Francesco Potortì  <pot@gnu.org>
2390         * etags.c [LONG_OPTIONS]: Make it TRUE (ifdef) or FALSE (ifndef)
2391         for ease of use.
2393 2004-07-17  Richard M. Stallman  <rms@gnu.org>
2395         * emacsclient.c (quote_file_name): Pass COPY thru %s to output it.
2397 2004-06-01  Juanma Barranquero  <lektu@terra.es>
2399         * makefile.w32-in (obj): Add image.c.
2401 2004-05-10  Thien-Thi Nguyen  <ttn@gnu.org>
2403         * test-distrib.c (main): For failing cases, exit with `EXIT_FAILURE'.
2405 2004-05-08  Jason Rumney  <jasonr@gnu.org>
2407         * makefile.w32-in (lisp1, lisp2): Split lisp to avoid long
2408         command-lines.
2410 2004-05-08  Thien-Thi Nguyen  <ttn@gnu.org>
2412         * cvtmail.c: Throughout, replace 0 destined for `exit' arg
2413         with `EXIT_SUCCESS'.  Likewise, replace 1 with `EXIT_FAILURE'.
2414         (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
2416         * ebrowse.c, emacsclient.c, fakemail.c, hexl.c,
2417         * make-docfile.c, movemail.c, profile.c, sorted-doc.c,
2418         * test-distrib.c, update-game-score.c, yow.c: Likewise.
2420 2004-05-08  Thien-Thi Nguyen  <ttn@gnu.org>
2422         * Makefile.in (emacsclient${EXEEXT}): Use makefile var `version'.
2424 2004-05-07  Thien-Thi Nguyen  <ttn@gnu.org>
2426         * b2m.c (GOOD, BAD): Delete macros.  Throughout,
2427         replace w/ `EXIT_SUCCESS' and `EXIT_FAILURE', respectively.
2428         (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
2430         * etags.c: Likewise.
2432 2004-05-03  Jason Rumney  <jasonr@gnu.org>
2434         * makefile.nt: Remove.
2436 2004-04-26  Eli Zaretskii  <eliz@gnu.org>
2438         * make-docfile.c (IS_DIRECTORY_SEP): New macro.
2439         (put_filename): Remove unused variable len.  Use IS_DIRECTORY_SEP
2440         instead of a literal '/'.
2442 2004-04-23  Juanma Barranquero  <lektu@terra.es>
2444         * makefile.w32-in: Add "-*- makefile -*-" mode tag.
2446 2004-04-17  Paul Eggert  <eggert@gnu.org>
2448         * rcs2log (Help): Clarify wording of the usage message.
2449         Problem reported by Alan Mackenzie in
2450         <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-04/msg00188.html>.
2452 2004-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2454         * make-docfile.c (xmalloc): Fix return type.
2455         (put_filename): New fun.
2456         (scan_file): Use it.
2458 2004-03-09  Juanma Barranquero  <lektu@terra.es>
2460         * grep-changelog: Changes to support ChangeLog.10+.
2461         (main): Tidy up usage string.  Fix "Use of uninitialized value"
2462         warning.  Set version to 0.2.  Parse the directory listing to get
2463         any ChangeLog.n file, not just 1..9.
2464         (header_match_p, entry_match_p, print_log, parse_changelog):
2465         Remove Perl prototypes (their purpose is to help the parser, which
2466         isn't needed here, not declare arguments).
2467         (parse_changelog): Make --reverse faster on big batches by not
2468         modifying the entries list.
2470 2004-03-01  Juanma Barranquero  <lektu@terra.es>
2472         * makefile.w32-in (obj): Add fringe.c.
2474 2004-02-14  Paul Eggert  <eggert@twinsun.com>
2476         * rcs2log: Work correctly if CVSROOT specifies :fork: or
2477         :local: methods, or omits the colon between the hostname
2478         and the path.  Allow :/ in repository path, since CVS does.
2479         Fix typo: "pository" should be set from $CVSROOT, not $repository.
2480         This fixes a bug reported by Wolfgang Scherer in
2481         <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-02/msg00085.html>,
2482         along with some related bugs I discovered by inspecting how
2483         CVS itself parses $CVSROOT.
2485 2004-02-04  Jérôme Marant  <jmarant@nerim.net>  (tiny change)
2487         * emacsclient.c (decode_options): Fix handling of alternate editor.
2489 2004-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2491         * emacsclient.c (main): Don't use the hostname in the socket name.
2492         Look for relative socket names in the /tmp dir rather than in cwd.
2494 2004-01-24  Richard M. Stallman  <rms@gnu.org>
2496         * emacsclient.c (main): Restore errno from saved_errno,
2497         so the error message comes from socket_status.
2499 2004-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2501         * emacsclient.c (main): Stop if socket name too long.
2502         Only try su-fallback if the socket name was not explicit.
2503         Check socket name length in su-fallback case as well.
2505 2004-01-08  Andreas Schwab  <schwab@suse.de>
2507         * emacsclient.c (main): Save errno from socket_status.
2509 2004-01-04  Andreas Schwab  <schwab@suse.de>
2511         * emacsclient.c (main): Fix socket name when using another user.
2513 2003-12-27  Paul Eggert  <eggert@twinsun.com>
2515         * rcs2log (rlog_options): Append -rbranchtag if CVS/Tag indicates
2516         a tag, and if the user has not specified an rlog option.
2517         Adapted from a suggestion by Martin Stjernholm in
2518         <http://mail.gnu.org/archive/html/bug-gnu-emacs/2003-07/msg00066.html>.
2519         (Copyright): Update to 2003.
2521 2003-12-24  Thien-Thi Nguyen  <ttn@gnu.org>
2523         * make-docfile.c (main): For return code, no longer special-case VMS.
2524         Instead, use `EXIT_SUCCESS' and `EXIT_FAILURE' from stdlib.h.
2526 2003-09-28  Andreas Büsching  <crunchy@tzi.de>  (tiny change)
2528         * emacsclient.c (quote_file_name): Print the result instead of
2529         returning it.  Fix the return type accordingly.
2530         (main): With --eval, if no file name, read from stdin.
2531         Quote file names.
2533 2003-09-10  Richard M. Stallman  <rms@gnu.org>
2535         * emacsclient.c (main): Use socket_name.
2537 2003-09-10  Andreas Büsching  <crunchy@tzi.de>  (tiny change)
2539         * emacsclient.c (socket_name): New variable.
2540         (longopts, decode_options, print_help_and_exit):
2541         Handle --socket-name argument.
2543 2003-08-25  Takaaki Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
2545         * etags.c (consider_token): Check C++ `operator' only when the
2546         token len is long enough.
2548 2003-08-20  Dave Love  <fx@gnu.org>
2550         * Makefile.in: Remove obsolete references to alloca.
2552 2003-07-29  Ken Brush  <ken@wirex.com>
2554         * emacsclient.c (main)
2555         * etags.c (suggest_asking_for_help)
2556         * movemail.c (main): Fix having macros in a printf statement.
2558 2003-05-31  Juanma Barranquero  <lektu@terra.es>
2560         * makefile.w32-in (lisp): Fix references to byte-run.el,
2561         float-sup.el and map-ynp.el, which are now in emacs-lisp.
2563 2003-05-22  Dave Love  <fx@gnu.org>
2565         * update-game-score.c (difftime) [!HAVE_DIFFTIME]: Define.
2566         (strerror) [!HAVE_STRERROR && !WINDOWSNT]: New.
2568 2003-05-20  Dave Love  <fx@gnu.org>
2570         * movemail.c: Check HAVE_LIBLOCKFILE like HAVE_LIBMAIL.
2572         * Makefile.in [HAVE_LIBLOCKFILE]: Define LIBS_MAIL=-llockfile.
2574 2003-04-27  Oliver Scholz  <alkibiades@gmx.de>
2576         * update-game-score.c (read_scores): Fix corruption of scores on read.
2578 2003-04-12  Stefan Monnier  <monnier@cs.yale.edu>
2580         * emacsclient.c (main): Use new safe location for socket.
2582 2003-03-12  Tom Tromey  <tromey@redhat.com>
2584         * emacsclient.c (print_help_and_exit): Print to stdout.
2585         Exit successfully.  Added some blank lines for readability.
2586         (decode_options): Don't call print_help_and_exit in default case.
2587         Print version information to stdout.
2588         (main): Don't call print_help_and_exit.
2590 2003-02-15  Richard M. Stallman  <rms@gnu.org>
2592         * cvtmail.c: Cast result of malloc and realloc.
2593         Don't include stdlib.h, because config.h does.
2594         (malloc, realloc): Declarations deleted.
2596         * yow.c (yow): Cast result of malloc and realloc.
2597         (malloc, realloc): Declarations deleted.
2599 2003-02-11  Juanma Barranquero  <lektu@terra.es>
2601         * makefile.w32-in (lisp): Add malayalam.el and tamil.el.
2603 2003-02-08  Andreas Schwab  <schwab@suse.de>
2605         * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
2606         instead of the substitution.
2608 2003-02-04  Richard M. Stallman  <rms@gnu.org>
2610         * update-game-score.c (push_score, read_scores): Cast values
2611         of malloc and realloc.
2612         (main, lock_file): Avoid assignment inside if.
2614 2003-01-31  Joe Buehler  <jhpb@draco.hekimian.com>
2616         * Makefile.in: Use @EXEEXT@ for Cygwin.
2618 2003-01-21  Dave Love  <fx@gnu.org>
2620         * etags.c (Cplusplus_help, Cjava_help): Re-phrase and avoid
2621         column-0 `('.
2623         * yow.c: Don't include string.h.
2625 2003-01-20  Richard M. Stallman  <rms@gnu.org>
2627         * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
2628         New targets.
2630 2003-01-06  Kim F. Storm  <storm@cua.dk>
2632         * pop.c (__P): Rename from _P to avoid problems on Cygwin.
2633         All uses changed.
2635 2002-12-18  Andrew Innes  <andrewi@gnu.org>
2637         * makefile.w32-in ($(DOC)): Use -o and -a options to make-docfile,
2638         because GNU make doesn't append when using >> redirection.
2640 2002-12-12  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
2642         * b2m.pl: Make sure every message ends with a blank line, because
2643         some mbox parsers require a blank line before "From " lines.
2645 2002-12-08  Richard M. Stallman  <rms@gnu.org>
2647         * getopt.c: Do include libintl.h if HAVE_LIBINTL_H.
2648         (_): Test only HAVE_LIBINTL_H to decide what to do.
2650 2002-12-05  Richard M. Stallman  <rms@gnu.org>
2652         * getopt.c: Comment out include of libintl.h or gettext.h.
2654 2002-12-04  Richard M. Stallman  <rms@gnu.org>
2656         * Update getopt from gnulib version; changes described below.
2658         * getopt1.c: Conditionally find getopt.h.
2659         [_LIBC] (getopt_long, getopt_long_only): Do libc_hidden_def.
2661         * getopt.c (const): Move outside !HAVE_CONFIG_H conditional.
2662         (libintl.h): Include this if _LIBC.  Otherwise include gettext.h.
2663         (wchar.h): Include, maybe.
2664         (attribute_hidden): Define if not defined.
2665         (__getopt_initialized): Use attribute_hidden.
2666         (__libc_argc, __libc_argv): Rename from original_argc, etc.
2667         (__getopt_nonoption_flags, nonoption_flags_max_len)
2668         (nonoption_flags_len): Conditional on USE_NONOPTION_FLAGS.
2669         (SWAP_FLAGS): New definitions.
2670         (exchange): Test USE_NONOPTION_FLAGS.
2671         (_getopt_initialize): Test USE_NONOPTION_FLAGS.
2672         (_getopt_internal): Error if argc < 1.  New local var print_errors.
2673         Improve test for ambiguous long option.
2674         Add LIBIO support for error message output.
2675         (NONOPTION_P): Test USE_NONOPTION_FLAGS.
2677         * getopt.h: Maybe include ctype.h.
2678         Treat __cplusplus like __STDC__.
2679         (decls): Use __ in arg names.
2681 2002-12-02  Stephen Eglen  <stephen@gnu.org>
2683         * emacsclient.c (main): Tell user how to start server within Emacs
2684         if socket could not be found.
2686 2002-12-02  Richard M. Stallman  <rms@gnu.org>
2688         * emacsclient.c (main): Test HAVE_GETCWD rather than BSD_SYSTEM.
2690 2002-11-19  Ben Key  <bkey1@tampabay.rr.com>
2692         * makefile.w32-in: Fixed a bug that caused the documentation for
2693         the built in function play-sound-internal not to be included in
2694         /etc/DOC.
2696 2002-11-18  Dave Love  <fx@gnu.org>
2698         * update-game-score.c: Include unistd.h, string.h, stdlib.h,
2699         fcntl.h, stdarg.h conditionally.
2700         (_GNU_SOURCE, __attribute__): Don't define.
2701         (optarg, optind, opterr): Declare.
2702         (lose, lose_syserr): Use NO_RETURN.
2703         (get_user_id): Use P_.
2705 2002-11-17  Richard M. Stallman  <rms@gnu.org>
2707         * Makefile.in (${archlibdir}): Ignore errors operating on $(gamedir).
2709 2002-11-14  Dave Love  <fx@gnu.org>
2711         * movemail.c (pop_retr): Declare comment.
2713         * make-docfile.c (read_c_string_or_comment): Declare msgno.
2715         * Makefile.in (YACC): Deleted.
2717 2002-10-19  Andreas Schwab  <schwab@suse.de>
2719         * Makefile.in (${archlibdir}): Always create $(gamedir).
2720         (update-game-score): Pass $(gamedir) as HAVE_SHARED_GAME_DIR.
2722 2002-10-04  Juanma Barranquero  <lektu@terra.es>
2724         * makefile.w32-in (lisp): Load devanagari.el, not .elc.
2726 2002-09-30  Markus Rost  <rost@math.ohio-state.edu>
2728         * emacsclient.c (main): Remove reference to SERVER_HOME_DIR
2729         completely.
2731 2002-09-27  Stefan Monnier  <monnier@cs.yale.edu>
2733         * emacsclient.c: Remove SYSV support.
2734         (eval, display): New vars.
2735         (longopts): Add --eval and --display.
2736         (decode_options): Add -e and -d processing.
2737         (print_help_and_exit): Update the usage string.
2738         (main): Add support for --eval and --display.
2739         (main): Always use /tmp and non-qualified hostname.
2741 2002-09-25  Stefan Monnier  <monnier@cs.yale.edu>
2743         * emacsserver.c: Remove.
2745 2002-09-17  Stefan Monnier  <monnier@cs.yale.edu>
2747         * emacsclient.c (quote_file_name): Quote \n.
2748         (main): Print a final \n when needed.
2750 2002-09-03  Francesco Potortì  <pot@gnu.org>
2752         * etags.c (regex_tag_multiline, readline): Never pass pfnote a
2753         string that cannot be freed.
2755 2002-08-30  Francesco Potortì  <pot@gnu.org>
2757         * etags.c (consider_token, C_entries): Switch to C++ parsing when
2758         auto-detection is enabled and the `::' qualifier is met.
2759         (consider_token, C_entries): Several bugs corrected that tagged
2760         some declarations even though --declarations was not used.
2761         (plainc): New macro.
2762         (C_entries): Use it.
2763         (C_entries): Several cosmetic changes.
2764         (C_entries): Invalidate the token is some cases.
2766 2002-08-29  Francesco Potortì  <pot@gnu.org>
2768         * etags.c (C_entries): Correct a problem with const C++ funcs.
2769         (ignoreindent): Rename from noindentypedefs.
2770         (cjava, cplpl): They are now macros instead of local vars.
2772 2002-08-28  Francesco Potortì  <pot@gnu.org>
2774         * etags.c (HTML_labels): Tag ID= also.
2776 2002-08-27  Francesco Potortì  <pot@gnu.org>
2778         * etags.c (Ada_funcs): Do not tag "use type Xxxx;".
2780         * etags.c (HTML_labels): New language HTML.
2781         (etags_strcasecmp): Like BSD's, for compatibility.
2782         (strcaseeq): Make it into a macro.
2784         * etags.c (make_tag): Never generate null length tag names.
2785         (linebuffer_init): Rename from initbuffer.  All callers changed.
2786         (pattern): Structure renamed to `regexp', member regex renamed to
2787         pattern.
2788         (node_st): Member pat renamed to regex.
2789         (pattern); New member force_explicit_name, for future use.
2790         Now always set to true, cannot be reset.
2791         (add_regex, regex_tag_multiline, readline): Use it.
2792         (main): Free some global structures.
2793         (fdesc): New member `written'.
2794         (readline, process_file): Initialize it.
2795         (put_entries): Set it.
2796         (main): Use it to create entries for files without tags.
2797         (total_size_of_entries): Do not count invalid tags.
2799 2002-08-19  Stefan Monnier  <monnier@cs.yale.edu>
2801         * make-docfile.c (scan_keyword_or_put_char, write_c_args): Use `fn'
2802         for the function name in the usage info.
2804 2002-07-31  Colin Walters  <walters@gnu.org>
2806         * update-game-score.c (P_): New macro.  Use it for all prototypes.
2807         (lose): Don't use varargs.
2808         (lose_syserr): New function.
2810         * update-game-score.c: Change all functions to K&R style.
2812 2002-07-30  Andreas Schwab  <schwab@suse.de>
2814         * Makefile.in (localstatedir): New variable.
2816 2002-07-29  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
2818         * b2m.pl: Fix regexp for finding return address fields.
2820 2002-07-15  Stefan Monnier  <monnier@cs.yale.edu>
2822         * make-docfile.c (scan_c_file): Warn about missing `usage' info.
2824 2002-07-05  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
2826         * b2m.pl: Obey the rmail file and use the unpruned header properly.
2828 2002-06-26  Pavel Janík  <Pavel@Janik.cz>
2830         * b2m.pl: New file.
2832 2002-06-21  Francesco Potortì  <pot@gnu.org>
2834         * etags.c (F_getit, Fortran_functions, Ada_getit, Asm_labels)
2835         (Python_functions, PHP_functions, PHP_functions, PHP_functions)
2836         (PHP_functions, PHP_functions, Cobol_paragraphs)
2837         (Makefile_targets, Postscript_functions, Texinfo_nodes)
2838         (prolog_pr, erlang_func, erlang_attribute)
2839         (Perl_functions, Perl_functions, Pascal_functions)
2840         (TeX_commands, get_tag): Use make_tag instead of pfnote.
2841         (get_tag): Prototype changed, all callers changed.
2843 2002-06-20  Francesco Potortì  <pot@gnu.org>
2845         * etags.c: Implement implicit tag names, that is, unnamed tags
2846         whose name is automatically deduced by etags.el.  The advantage is
2847         that there is no explicit tag name in most tags, so the size of
2848         the tags file is reduced, yet find-tag is able to do a match as
2849         accurate as with named tags.  See the comment in make_tag for details.
2850         (make_tag): New function (was the disabled function new_pfnote).
2851         (make_C_tag): Use it.
2853 2002-06-19  Francesco Potortì  <pot@gnu.org>
2855         * etags.c (add_regex): Invalid regexp modifiers are ignored.
2856         (Makefile_targets): Tag variables unless --no-globals.
2857         (LOOP_ON_INPUT_LINES): Serious bug corrected.
2859 2002-06-13  Francesco Potortì  <pot@gnu.org>
2861         * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
2862         (invalidate_nodes): Bug corrected.
2863         (print_help): Better help for regexps.
2865 2002-06-13  Juanma Barranquero  <lektu@terra.es>
2867         * makefile.w32-in (lisp): Add international/ucs-tables.elc and
2868         font-core.elc.
2870 2002-06-12  Francesco Potortì  <pot@gnu.org>
2872         * etags.c: New multi-line regexp and new regexp syntax.
2873         (arg_type): at_icregexp label removed (obsolete).
2874         (pattern): New member multi_line for multi-line regexps.
2875         (filebuf): A global buffer containing the whole file as a string
2876         for multi-line regexp matching.
2877         (need_filebuf): Global flag raised if multi-line regexps used.
2878         (print_help): Document new regexp modifiers, remove references to
2879         obsolete option --ignore-case-regexp.
2880         (main): Do not set regexp syntax and translation table here.
2881         (main): Treat -c option as a backward compatibility hack.
2882         (main, find_entries): Init and free filebuf.
2883         (find_entries): Call regex_tag_multiline after the regular parser.
2884         (scan_separators): Check for unterminated regexp and return NULL.
2885         (analyse_regex, add_regex): Remove the ignore_case argument, which
2886         is now a modifier to the regexp.  All callers changed.
2887         (add_regex): Manage the regexp modifiers.
2888         (regex_tag_multiline): New function.  Reads from filebuf.
2889         (readline_internal): If necessary, copy the whole file into filebuf.
2890         (readline): Skip multi-line regexps, leave them to regex_tag_multiline.
2892 2002-06-11  Francesco Potortì  <pot@gnu.org>
2894         * etags.c (add_regex): Better check for null regexps.
2895         (readline): Check for regex matching null string.
2896         (find_entries): Reorganization.
2898 2002-06-07  Francesco Potortì  <pot@gnu.org>
2900         * etags.c (scan_separators): Support all character escape
2901         sequences supported by Gcc.
2902         (find_entries): Rewind unconditionally.
2903         (find_entries): Do not call language functions directly, now calls
2904         itself.
2905         (find_entries): Do general initializations here.
2906         (CNL_SAVE_DEFINEDEF, C_entries, LOOP_ON_INPUT_LINES, F_getit)
2907         (Ada_getit, Pascal_functions, Pascal_functions)
2908         (prolog_skip_comment): Do not do them here.
2909         (readline_internal): Increment lineno here.
2910         (readline): Conditionally undo readline_internal increment.
2911         (readline): Do not return a value.
2913 2002-06-06  Francesco Potortì  <pot@gnu.org>
2915         * etags.c: New option --parse-stdin=FILE.
2916         (enum arg_type): New label at_stdin.
2917         (STDIN): New constant.
2918         (parsing_stdin): New flag.
2919         (longopts): New option --parse-stdin=NAME.
2920         (print_help): Document it.
2921         (main): Handle it.
2922         (process_file): Split into process_file and process_file_name.
2923         (process_file_name): New function.
2925         * etags.c: Improvements and bug squashing in TeX handling.
2926         (TeX_commands): Skip comments.
2927         (TEX_defenv): Now contains more constructs.
2928         (TEX_cmt): Make it a static char and move it before TeX_commands.
2929         (TeX_commands): Shorten the tag to the brace after the name.
2930         (TeX_commands): Names now include the initial backslash.
2931         (TeX_commands): Names do not include numeric args #n.
2932         (TeX_commands): Correct line char number in tags.
2933         (TEX_tabent, TEX_token): Deleted.
2934         (TeX_commands, TEX_decode_env): Streamlined.
2936 2002-06-05  Francesco Potortì  <pot@gnu.org>
2938         * etags.c (main): Avoid a buffer overrun with sprintf.
2940 2002-05-30  Richard M. Stallman  <rms@gnu.org>
2942         * Makefile.in (LIBS_MAIL): Rename from LIB_MAIL.
2943         (LIBS_MOVE): Rename from MOVE_LIBS.
2945 2002-05-26  Paul Eggert  <eggert@twinsun.com>
2947         Reinstate the following change from 2002-03-22, which was
2948         inadvertently lost on 2002-04-13.
2950         * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
2951         `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
2952         the latter usage.
2954 2002-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
2956         * pop.c (socket_connection): Move the code to resolve the POP
2957         host right before trying to connect with it.
2959 2002-05-05  Eli Zaretskii  <eliz@is.elta.co.il>
2961         * tcp.c: Delete file since the TCP emulation is no longer in use on any
2962         platform.
2964 2002-04-28  Colin Walters  <walters@verbum.org>
2966         * Makefile.in (${archlibdir}): Don't conditionalize on
2967         HAVE_SHARED_GAME_DIR.  Instead, test at installation time whether
2968         or not we have access to the specified game user.
2970         * update-game-score.c (SCORE_FILE_PREFIX): Delete.
2971         (main): New argument -d, for specifying directory.
2972         (usage): Document.
2973         (get_user_id): Compute.
2974         (get_home_dir): Deleted.
2975         (get_prefix): New function, taken from main.
2976         (main): Check whether or not we are running setuid.  Move prefix
2977         computation to get_prefix.  Don't call getpwent; we don't need to
2978         any more.  Instead, move it to get_user_id().
2980 2002-04-24  Pavel Janík  <Pavel@Janik.cz>
2982         * ebrowse.c (skip_initializer): Return void.
2984 2002-04-23  Colin Walters  <walters@verbum.org>
2986         * update-game-score.c (read_score) [HAVE_GETDELIM]: Trim trailing
2987         space.
2989 2002-04-22  Francesco Potortì  <pot@gnu.org>
2991         * etags.c (last_node): Make it a global variable.
2992         (process_file): Print the tags from the nodes as soon as
2993         possible, and delete the nodes.  This brings down the memory
2994         occupancy as etags to almost the same level as when the #line
2995         directives were not parsed.
2996         (free_fdesc): New function.
2997         (find_entries): Use it.
2998         (invalidate_nodes): In etags mode, do not just mark the nodes as
2999         invalid, do delete them.
3001 2002-04-21  Gerd Moellmann  <gerd@gnu.org>
3003         * ebrowse.c (add_declarator): Test *CLS instead of CLS.
3005 2002-04-16  Eli Zaretskii  <eliz@is.elta.co.il>
3007         * update-game-score.c: Move config.h before the other headers, to
3008         avoid compiler warnings.
3010 2002-04-16  Francesco Potortì  <pot@gnu.org>
3012         * etags.c (find_entries): Bug fix in list management.
3014 2002-04-15  Francesco Potortì  <pot@gnu.org>
3016         * etags.c (get_language_from_filename): Add one argument.
3017         (strcaseeq): New function.
3018         (get_language_from_filename): Use it to do a case insensitive
3019         comparison if called with appropriate args.
3020         (find_entries): Try with case insensitive match.
3021         (process_file): Bug fixed.
3023 2002-04-13  Francesco Potortì  <pot@gnu.org>
3025         * etags.c (find_entries): Delete tags previously obtained from
3026         file xxx.c's #line directives when parsing file xxx.y.  This is
3027         generally done for automatically generated files containing
3028         #line directives.  This handles the case when xxx.y is tagged
3029         before xxx.c, and the entries of xxx.c pointing to xxx.y should
3030         be discarded.
3031         (language): Add the metasource member.  Initializers changed.
3032         (invalidate_nodes): New function.
3033         (readline): Discard lines after having found a #line
3034         directive pointing to an already tagged file.  This handles the
3035         case when xxx.y is tagged before xxx.c, and the entries of
3036         xxx.c pointing to xxx.y should be discarded.
3037         (fdesc): New structure for keeping track of input files.
3038         (fdesc): Remove `file' member (a string) and use instead a pointer
3039         to a file description structure.
3040         (curfile, curfiledir, curtagfname, curlang, nocharno)
3041         (forced_lang): Global variables removed in favor of fdhead and
3042         curfdp, pointers to file description structures.
3043         (longopts, main, print_help): Use the CTAGS conditional to include
3044         or exclude options that work on etags or ctags only.
3045         (process_file, find_entries, pfnote, add_node, put_entries)
3046         (readline): Use fdhead and curfdp.
3047         (process_file, find_entries): Do not take an arg string, all
3048         callers changed.
3050         * etags.c (longopts, print_help, main): Test CTAGS to disallow
3051         options that are not right for either etags or ctags.
3053         * etags.c (number_len, total_size_of_entries): Define them also
3054         in CTAGS mode, because gcc does not compile all refs away.
3056 2002-04-14  Colin Walters  <walters@debian.org>
3058         * update-game-score.c (lock_file): If the lock file is older than
3059         an hour, delete it.  Reset attempts to zero if we have to break
3060         the lock.
3062 2002-04-14  Andreas Schwab  <schwab@suse.de>
3064         * update-game-score.c (read_score): Fix type of second parameter
3065         of getdelim to be of type size_t instead of int.  Use 0 instead of
3066         ESUCCES.
3068 2002-04-10  Colin Walters  <walters@verbum.org>
3070         * update-game-score.c (toplevel): Include stdarg.h.
3071         (MAX_DATA_LEN, MAX_SCORES): New.
3072         (SCORE_FILE_PREFIX): If HAVE_SHARED_GAME_DIR is not defined,
3073         default to ~/.emacs.d/games.
3074         (get_user_id): Don't zero uid in the case where we can't get the
3075         username.
3076         (lose): New function.
3077         (main): Actually use `max', and default it to MAX_SCORES.
3078         Correctly handle new default for SCORE_FILE_PREFIX.  Use `lose'
3079         function.
3080         (read_score): Handle the case of reading unamelen characters, then
3081         finishing.  Use mktemp if mkstemp isn't available.
3082         (lock_file, unlock_file): Delete unused versions.
3083         (lock_file): Always sleep, even if we unlinked the lock file.
3085         * Makefile.in (gamedir, gameuser): New variables.
3086         (toplevel, UTILITIES): Add update-game-score.
3087         (${archlibdir}): Handle HAVE_SHARED_GAME_DIR.
3089 2002-04-07  Colin Walters  <walters@verbum.org>
3091         * update-game-score.c (SCORE_FILE_PREFIX): Don't hardcode.
3092         (get_user_id): Take struct passwd as an argument.
3093         (get_home_dir): New function.
3094         (main): Read in user information here.  Discover home directory if
3095         necessary.
3096         (read_score): Trim newline only in `getline' case.
3098 2002-04-05  Colin Walters  <walters@debian.org>
3100         * update-game-score.c (toplevel): Include pwd.h.
3101         (struct score_entry): Add username field.
3102         (push_score): Use it.
3103         (get_user_id): New function.
3104         (main): Don't malloc excessively.
3105         (main): Use username field.
3106         (read_score): Read it.
3107         (push_score): Handle it.
3108         (write_scores): Write it.
3109         (read_score): Handle arbitrary length data.
3111 2002-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
3113         * ebrowse.c (add_declarator): Fix the first call to add_member_defn.
3115 2002-03-29  Gerd Moellmann  <gerd@gnu.org>
3117         * ebrowse.c (add_declarator, skip_initializer): New functions.
3118         (declaration): Use them.
3120 2002-03-28  Jason Rumney  <jasonr@gnu.org>
3122         * makefile.w32-in (lisp): Move backquote.elc into emacs-lisp.
3124 2002-03-27  Colin Walters  <walters@debian.org>
3126         * update-game-score.c: New file.
3128 2002-03-22  Paul Eggert  <eggert@twinsun.com>
3130         * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
3131         `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
3132         the latter usage.
3134 2002-03-12  Francesco Potortì  <pot@gnu.org>
3136         * etags.c (Python_functions): Skip spaces at beginning of lines.
3137         (Python_functions, PHP_functions): Name tags, for ctags' sake.
3138         (TeX_commands): Name tags.  Correction of old disabled code.
3140         * etags.c (curfiledir, curtagfname): New global variables.
3141         (process_file): Initialize them.
3142         (readline): Canonicalize the name found in #line directive.
3144 2002-03-06  Jason Rumney  <jasonr@gnu.org>
3146         * etags.c (put_entries): Use #if !CTAGS, to fix link error on
3147         compilers that don't optimize out dead code.
3149 2002-03-05  Francesco Potortì  <pot@gnu.org>
3151         * etags.c: Honour #line directives.
3152         (no_line_directive): New global var; set it for old behavior.
3153         (main): Remove some #ifdef in the getopt switch.
3154         (add_node, put_entries): Code added to merge different chunks of
3155         nodes referring to the same file.  Currently the tags are just
3156         appended, without any check for duplicates.
3157         (Perl_functions): Do not special case ctags.
3158         (readline): Identify #line directives and do the right thing.
3159         (nocharno, invalidcharno): New global vars.
3160         (process_file): Reset nocharno.
3161         (readline): Set nocharno.
3162         (pfnote): Read nocharno and maybe put invalidcharno in node.
3163         (total_size_of_entries, put_entries): Use invalidcharno.
3165         * etags.c: Keep the whole tag table in memory, even in etags mode.
3166         (main): Call put_entries here even in CTAGS mode.
3167         (main, process_file): Check the return values of fclose and pclose.
3168         (process_file): Do not call put_entries after parsing each file.
3169         (process_file): Canonicalize file names even for ctags.
3170         (process_file): Set curfile here...
3171         (find_entries): ... not here any more.
3172         (add_node): In etags mode, build a linked list of entries (on
3173         right pointer) for each file, and link the first entry of each
3174         file on left nodes.
3175         (put_entries): Print here the name of the file.
3176         (put_entries): Print the entries starting from the first file.
3177         (number_len, total_size_of_entries): Define these only in etags
3178         mode, make the second work only on the right nodes.
3180         * etags.c: Make all global variables static.
3182 2002-02-25  Juanma Barranquero  <lektu@terra.es>
3184         * makefile.w32-in (lisp): Add missing backslash.
3186 2002-02-24  Jason Rumney  <jasonr@gnu.org>
3188         * makefile.w32-in (WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to
3189         using .elc files.
3190         (lisp): Sync with list in src/Makefile.in.
3191         (VMS_SUPPORT, MSDOS_SUPPORT): Define, so DOC files can be shared.
3193 2002-02-10  Paul Eggert  <eggert@twinsun.com>
3195         * rcs-checkin: Use `sort -k 2', not `sort +1', as POSIX 1003.1-2001
3196         disallows the old syntax.
3198 2002-02-03  Paul Eggert  <eggert@twinsun.com>
3200         * rcs2log (Copyright): Update to 2002.
3201         (AWK, TMPDIR): Work around portability problem in broken shells that
3202         don't understand `: ${VAR=val}'.
3203         (SORT_K_OPTIONS): New var, for hosts that conform to POSIX 1003.1-2001.
3204         Prefer the new -k option to the traditional +M -N option.
3206 2002-01-01  Pavel Janík  <Pavel@Janik.cz>
3208         * b2m.c (main): Parenthesize assignment when used as truth value
3209         to prevent gcc warnings.
3211         * fakemail.c: Include <config.h>.
3213 2001-12-29  Pavel Janík  <Pavel@Janik.cz>
3215         * cvtmail.c, emacsclient.c, emacsserver.c, pop.c, sorted-doc.c,
3216         * yow.c: Include <config.h>.
3218 2001-12-21  Francesco Potortì  <pot@gnu.org>
3220         * etags.c (Perl_functions): Tag packages and use them in sub tags.
3221         (get_tag): Return a pointer to the tag that is found.
3223         * etags.c (LOOKING_AT): Use !intoken instead of iswhite.
3224         (F_takeprec): Rename from takeprec.  All callers changed.
3225         (F_getit): Rename from getit.  All callers changed.
3226         (nocase_tail): Rename from tail.  All callers changed.
3227         (Ada_getit): Rename from adagetit.  All callers changed.
3228         (L_getit): Simplify by using get_tag.
3229         (Perl_functions, Postscript_functions, erlang_attribute): Use the
3230         modified LOOKING_AT.
3231         (notinname): Remove '[' and added ')' to the recognized chars.
3232         (LOOKING_AT, get_tag, PHP_functions): Use notinname.
3233         (Ada_getit, Ada_funcs, Python_functions, Scheme_functions):
3234         Clarified, using strneq or notinname.
3235         (L_isdef, L_isquote): Removed.
3236         (Lisp_functions, L_getit): Clarified.
3238         * etags.c (P_): Rename to __P for consistency with config.h.
3239         [HAVE_CONFIG_H]: Let config.h deal with __P.
3240         [__STDC__] [!HAVE_CONFIG_H]: Define PTR as in config.h.
3241         [!__STDC__] [!HAVE_CONFIG_H]: Do not undefine static, because
3242         gperf code needs it.
3243         [HAVE_CONFIG_H] [!PTR]: Define PTR (for use with XEmacs).
3244         [HAVE_CONFIG_H] [!__P]: Define __P (for use with XEmacs).
3245         (xmalloc, xrealloc): Use PTR instead of long *.
3246         (bool): Make it a define, not a typedef, for C++ compilers.
3247         (pattern): Members renamed to avoid name clash in some C++ compilers.
3248         (get_language_from_langname): Use const argument.
3250 2001-12-22  Pavel Janík  <Pavel@Janik.cz>
3252         * makefile.nt, makefile.w32-in: Remove mocklisp files.
3254 2001-12-19  Pavel Janík  <Pavel@Janik.cz>
3256         * emacsserver.c: Conditionally include config.h.
3258         * fakemail.c: Likewise.
3260         * emacsclient.c: Include "config.h", not <../src/config.h>.
3261         (main): Parenthesize assignment when used as truth value to
3262         prevent gcc warnings.
3264         * ebrowse.c: Include stdlib.h and string.h conditionally.
3266 2001-12-18  Eli Zaretskii  <eliz@is.elta.co.il>
3268         * yow.c (main): Use time_t, not long, to avoid a compiler warning.
3270 2001-12-18  Pavel Janík  <Pavel@Janik.cz>
3272         * test-distrib.c: Fix previous change.
3274 2001-12-18  Dave Love  <fx@gnu.org>
3276         * test-distrib.c: Conditionally include fcntl.h.
3278         * fakemail.c: Include "config.h", not <../src/config.h>.
3279         (_XOPEN_SOURCE): Define as 500.
3281         * emacsserver.c: Include "config.h", not <../src/config.h>.
3283         * cvtmail.c: Include config.h, stdlib.h.
3284         (xmalloc, xrealloc, skip_to_lf sysfail): Prototype.
3286         * yow.c: Conditionally include various headers.  Use "epaths.h",
3287         not <../src/epaths.h>.
3288         (malloc, realloc) [!HAVE_STDLIB_H]: Prototype.
3290 2001-12-12  Francesco Potortì  <pot@gnu.org>
3292         * etags.c (PHP_functions): New function for parsing PHP.
3293         (LOOKING_AT): New macro.
3294         (Perl_functions, Python_functions, PHP_functions)
3295         (Scheme_functions, Texinfo_nodes): Use it.
3296         (Perl_functions): Use strneq.
3297         (prolog_pred): Rename to prolog_pr.
3298         (prolog_pr): Recognize Prolog rules in addition to predicates.
3299         [ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent
3300         unmodified compile, as Cygwin's regex.h is incompatible with us.
3301         [!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string.
3303 2001-12-11  Richard M. Stallman  <rms@gnu.org>
3305         * Makefile.in (clean): Don't delete ../etc/DOC*.
3307 2001-12-11  Pavel Janík  <Pavel@Janik.cz>
3309         * COPYING: Moved back.
3311 2001-11-30  Andrew Innes  <andrewi@gnu.org>
3313         * makefile.w32-in (FACE_SUPPORT):
3314         (MOUSE_SUPPORT):
3315         (FLOAT_SUPPORT):
3316         (WINNT_SUPPORT):
3317         (lisp): Reference .el files instead of .elc files, to simplify
3318         bootstrapping.
3319         ($(DOC)): Change dependency to just `make-docfile'.
3321 2001-11-29  Pavel Janík  <Pavel@Janik.cz>
3323         * COPYING: Removed.
3325 2001-11-28  Paul Eggert  <eggert@twinsun.com>
3327         * rcs2log (Copyright): Add '(C)' as per coding guidelines.
3329         The following changes are derived from suggestions by Bob Chapman
3330         <rechapman@compuserve.com>.
3332         * rcs2log (printlogline): Also allow tab and newline to separate
3333         '(function):' from the rest of a comment.
3334         (reformat the sorted log entries): Require date and author to
3335         match the clumpname.
3337 2001-11-16  Gerd Moellmann  <gerd@gnu.org>
3339         * ebrowse.c (matching_regexp): Escape '\\'.
3341 2001-11-15  Pavel Janík  <Pavel@Janik.cz>
3343         * Makefile.in: Add support for --program-prefix, --program-suffix
3344         and --program-transform-name options.
3346 2001-11-03  Richard M. Stallman  <rms@gnu.org>
3348         * cvtmail.c (xrealloc): Always pass two args to `fatal'.
3350         * movemail.c (popmail): Always pass two args to `error'.
3352 2001-10-24  Ken Raeburn  <raeburn@gnu.org>
3354         * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
3355         -lhesiod and maybe -lresolv.
3356         (CRYPTOLIB) [HAVE_LIBK5CRYPTO]: Use -lk5crypto for Kerberos
3357         support if it's available.
3359 2001-10-21  Miles Bader  <miles@gnu.org>
3361         * make-docfile.c (struct rcsoc_state): New type.
3362         (read_c_string_or_comment): Add SAW_USAGE
3363         parameter, and implement scanning for a `usage:' keyword.
3364         Use a variable of type `rcsoc_state' to hold most of our state.
3365         (put_char): Add STATE parameter, and remove all other parameters
3366         except CH.  Use STATE to get access to all needed state.
3367         (scan_keyword_or_put_char): New function.
3368         (scan_c_file): Pass SAW_USAGE argument to read_c_string_or_comment.
3369         Don't output a usage-string if there was one in the doc-string.
3371 2001-10-20  Gerd Moellmann  <gerd@gnu.org>
3373         * (Version 21.1 released.)
3375 2001-10-19  Pavel Janík  <Pavel@Janik.cz>
3377         * b2m.c: Properly spell the name of Emacs.
3379 2001-10-17  Miles Bader  <miles@gnu.org>
3381         * make-docfile.c (put_char): New function.
3382         (read_c_string_or_comment): Strip trailing spaces and newlines.
3384 2001-10-16  Miles Bader  <miles@gnu.org>
3386         * make-docfile.c (scan_c_file): Handle `new style' doc strings in
3387         comments [with `doc:' keyword prefix].
3389 2001-10-15  Gerd Moellmann  <gerd@gnu.org>
3391         * make-docfile.c (read_c_string_or_comment): Don't drop a '*'
3392         in a C doc comment.
3394 2001-10-13  Gerd Moellmann  <gerd@gnu.org>
3396         * make-docfile.c (read_c_string_or_comment): Rename from
3397         read_c_string.  Add parameter COMMENT.  Read C-style comments.
3398         (scan_c_file): Handle doc strings in C comments.
3400 2001-10-12  Andrew Innes  <andrewi@gnu.org>
3402         * makefile.nt (ALL): Do not include fakemail.
3404         * makefile.w32-in (install): Do not copy fakemail.
3406 2001-10-10  Jason Rumney  <jasonr@gnu.org>
3408         * makefile.w32-in (ALL): Do not include fakemail.
3410         * makefile.nt (install): Ditto.
3412 2001-10-09  Gerd Moellmann  <gerd@gnu.org>
3414         * emacsserver.c (main): Cast geteuid in sprintf to int.
3416         * emacsclient.c (main): Cast isdigit argument to unsigned char.
3418 2001-10-07  Pavel Janík  <Pavel@Janik.cz>
3420         * profile.c: Include config.h, not ../src/config.h.
3421         Include systime.h, not ../src/systime.h.
3423 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
3425         * Branch for 21.1.
3427 2001-10-01  Alexander Zhuckov  <zuav@int.spb.ru>
3429         * ebrowse.c (struct alias): Add two new struct members: NAMESP and
3430         ALIASEE to help work with namespace aliases.
3431         (struct sym): Remove struct member NAMESP_ALIASES.
3432         (namespace_alias_table): New variable.
3433         (make_namespace): Add parameter CONTEXT.
3434         (check_namespace): New function.
3435         (find_namespace): Add parameter CONTEXT.
3436         (check_namespace_alias): New function.
3437         (register_namespace_alias): Change type of parameter OLD_NAME.
3438         Search for already defined alias in NAMESPACE_ALIAS_TABLE.
3439         (check_namespace): New function.
3440         (enter_namespace): Call find_namespace with CONTEXT parameter.
3441         (match_qualified_namespace_alias): New function.
3442         (parse_qualified_ident_or_type): Fix typo in comment.
3443         While parsing qualified ident or type update namespace context and
3444         restore it on exit.
3445         (parse_qualified_param_ident_or_type): Fix typo in comment.
3446         (globals): Change handling of namespace aliases.
3447         (version): Add year 2001.
3449 2001-09-15  Eli Zaretskii  <eliz@is.elta.co.il>
3451         * etags.c (analyse_regex): If regex_arg is NULL, return
3452         immediately after a call to free_patterns.
3454 2001-09-05  Paul Eggert  <eggert@twinsun.com>
3456         * rcs2log (Help, mainline code): Add new option -L FILE.
3457         (Copyright): Update year.
3458         (LANG, LANGUAGE, LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES)
3459         (LC_NUMERIC, LC_TIME): New shell vars, to make sure we live in the
3460         C locale.
3461         (mainline code): Handle nonstandard -u option differently, by
3462         transforming it to standard form.  Check for "Working file: ", not
3463         "Working file:".  Allow file names with spaces.
3464         (SOH, rlogfile): New shell vars.
3465         (rlogout): Remove.  Its old functionality is mostly migrated to
3466         rlogfile.
3468         Append ';;' to the last arm of every case statement, for
3469         portability to ancient broken BSD shells.
3471         (logins): Fix bug; was not being computed at all, lowering performance.
3472         (pository): New var.  This fixes some bugs where repositories are
3473         remote, or have trailing slashes.
3474         (authors): $llogout is never an empty shell var, so don't worry
3475         about that possibility.
3476         (printlogline, mainline code): Fix bug with SOH's being put into
3477         the output.
3479 2001-09-01  Eli Zaretskii  <eliz@is.elta.co.il>
3481         * ebrowse.c (SEEK_END): #define if not defined by system headers.
3482         Suggested by Dave Love <d.love@dl.ac.uk>.
3484 2001-08-29  Eli Zaretskii  <eliz@is.elta.co.il>
3486         * makefile.nt (lisp): Synchronize with src/Makefile.in.
3487         * makefile.w32-in (lisp): Ditto.
3489 2001-07-25  Juanma Barranquero  <lektu@terra.es>
3491         * grep-changelog (parse_changelog): Remove unused local variable.
3493         * grep-changelog (main): Add new option --reverse.
3494         (print_log): Use it.
3495         (parse_changelog): Use it.
3497 2001-07-20  Gerd Moellmann  <gerd@gnu.org>
3499         * grep-changelog: Remove RCS Id keyword.
3501 2001-07-20  Juanma Barranquero  <lektu@terra.es>
3503         * grep-changelog (parse_changelog): Add tests for defined values
3504         to quiet warning from Perl 5.005 or above.
3505         (entry_match_p, header_match_p): Fix handling of null or empty
3506         argument to prevent duplicate headers.
3508         * grep-changelog (main, parse_changelog): Make "use strict"-clean.
3510 2001-07-17  Jan Nieuwenhuizen  <janneke@gnu.org>
3512         * emacsclient.c (print_help_and_exit): Fix help message for
3513         +LINE:COLUMN option.
3515 2000-07-17  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
3517         * emacsclient.c (main): Add support for +LINE:COLUMN command line
3518         argument.
3520 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
3522         * ebrowse.c (main): Check that the output file exists and
3523         is non-empty if invoked with `--append'.
3525 2001-05-14  Francesco Potortì  <pot@gnu.org>
3527         * etags.c (add_regex): Reset the whole newly allocated pattern
3528         buffer instead of the individual members.  It's safer and works
3529         with XEmacs.
3531         * etags.1: Markups corrected.
3533 2001-05-08  Gerd Moellmann  <gerd@gnu.org>
3535         * ebrowse.c (enter_namespace): Fix reallocation of namespace_stack.
3537 2001-05-03  Gerd Moellmann  <gerd@gnu.org>
3539         * ebrowse.c (globals): Fix handling of namespace aliases.
3541 2001-04-27  Eli Zaretskii  <eliz@is.elta.co.il>
3543         * etags.c (print_help): Enclose the regexp in the help text
3544         example in quotes.
3546 2001-04-05  Dave Love  <fx@gnu.org>
3548         * emacsclient.c (fail): Don't return a value.
3549         (main): Cast uid values for sprintf.
3551 2001-04-03  Gerd Moellmann  <gerd@gnu.org>
3553         * emacsclient.c (fail, main): Don't use implicit int return type.
3555         * b2m.c (main): Always return a value.
3557 2001-03-02  Gerd Moellmann  <gerd@gnu.org>
3559         * ebrowse.c (parse_qualified_param_ident_or_type): Return a
3560         freshly allocated object in *LAST_ID.
3561         (read_line): Accept \r\n line endings.
3563 2001-02-24  Andrew Innes  <andrewi@gnu.org>
3565         * makefile.w32-in: Fix copyright notice.
3567 2001-02-23  Francesco Potortì  <pot@gnu.org>
3569         * etags.c (enum sym_type): New label st_C_template.
3570         (gperf input): Use it for switching to C++ from C.
3571         (consider_token): Do it.
3572         (C_entries): Initialize typdefcblev to quiet compilers.
3573         [!HAVE_CONFIG_H] [!__STDC__]: #define static as nothing.
3575 2001-02-22  Andrew Innes  <andrewi@gnu.org>
3577         * makefile.nt ($(BLD)\movemail.obj): Remove reference to
3578         VMS header files.
3579         ($(BLD)\profile.obj): Ditto.
3581         * makefile.w32-in ($(BLD)/movemail.$(O)): Remove reference to
3582         VMS header files.
3583         ($(BLD)/profile.$(O)): Ditto.
3585 2001-02-05  Andrew Innes  <andrewi@gnu.org>
3587         * makefile.w32-in ($(DOC)): Use $(THISDIR) instead of . in
3588         invocation of make-docfile, to work with Windows 2000.
3590 2001-01-31  Dave Love  <fx@gnu.org>
3592         * etags.c (in_word_set): Use `static' in definition (for pcc).
3594 2001-01-31  Francesco Potortì  <pot@gnu.org>
3596         * etags.c [NDEBUG]: #undef assert and #define it as ((void)0), for
3597         the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
3598         (C_entries): Tag token renamed to still_in_token because sunos4
3599         pcc wants to expand it as the token() macro even though it has no
3600         arguments.
3602 2001-01-30  Andrew Innes  <andrewi@gnu.org>
3604         * etags.c (assert) [__MINGW32__]: Redefine assert to work around a
3605         bug in the Mingw32 assert.h header file.
3607 2001-01-30  Francesco Potortì  <pot@gnu.org>
3609         * etags.c [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
3610         #define it for the sake of XEmacs.
3611         [WINDOWSNT]: #undef HAVE_NTGUI even if built without
3612         HAVE_CONFIG_H.  This change only affects a standalone etags.
3613         [WINDOWSNT]: #undef DOS_NT and #define it even if built with
3614         HAVE_CONFIG_H.  This change does nothing in Emacs, as DOS_NT is
3615         always defined when HAVE_CONFIG_H and WINDOWS are both defined.
3616         [!HAVE_UNISTD_H]: Use defined(WINDOWSNT) instead of the bare
3617         WINDOWSNT, as this is the correct way to use it.
3619 2001-01-28  Francesco Potortì  <pot@gnu.org>
3621         * etags.c: Be capable to parse nested struct-like structures.
3622         (structdef, structtag): Struct state machine revisited.
3623         (struct tok): Revisited.
3624         (cstack, nestlev, instruct): New struct and macros.
3625         (pushclass_above, popclass_above, write_classname): New functions
3626         for dealing with nested class names.
3627         (consider_token, make_C_tag, C_entries): Many changes for dealing
3628         with arbitrarily nested structures.
3629         (etags_getcwd): #if MSDOS, not #ifdef MSDOS!
3630         (C_entries): Consider templates in C++.
3631         (sym_type): New constant st_C_class for detecting "class" also in
3632         C mode.
3633         (C_AUTO): New macro for automatic detection of C++.
3634         (consider_token): Automatic set C++ mode.
3635         (C_entries): New security check for yacc.
3636         (print_language_names, print_help): Mention the autodetect
3637         feature, do not show help for the -C option, now mostly useless.
3638         (C_entries): Tag C++ forward declarations if --declarations.
3639         (C_entries): Don't be fooled by things like XDEFUN.
3640         (consider_token): Discard asm pseudo function.
3642 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
3644         * etags.c: Add a coding: tag.
3646 2001-01-26  Gerd Moellmann  <gerd@gnu.org>
3648         * ebrowse.c (matching_regexp_buffer, matching_regexp_end_buf):
3649         New variables.
3650         (matching_regexp): Use them instead of static variables in
3651         function scope.
3653 2001-01-25  Francesco Potortì  <pot@gnu.org>
3655         * etags.c (struct tok): Rename from struct token.
3656         (token): Rename from tok.
3657         (structtype): Make it a local variable.
3658         [DEBUG]: Use assert.
3659         (xrnew): Change the synopsis.
3660         (typedefs_or_cplusplus): Rename from typedefs_and_cplusplus.
3661         (grow_linebuffer): Don't call xrnew when not needed.
3662         (token): Buffer renamed to line.
3663         (C_entries): Three calls to inibuffer moved here from main.
3664         (C_entries): Remove all references to var methodlen, delete it.
3665         (linebuffer_setlen): Was grow_buffer, now also sets len.
3666         (consider_token, C_entries, Pascal_functions): Use it.
3667         (C_entries): Preventing problems relative to extern "C".
3668         (C_entries): Can tag more than one variable or func separated by
3669         comma when --declarations is used.
3670         (C_entries): More accurate tagging of members and declarations.
3671         (yacc_rules): Was global, made local to C_entries.
3672         (next_token_is_func): Removed.
3673         (fvdef): New constants fdefunkey, fdefunname.
3674         (consider_token, C_entries): Use them.
3675         (C_entries): Build proper lisp names for Emacs DEFUNs.
3677 2001-01-22  Gerd Moellmann  <gerd@gnu.org>
3679         * ebrowse.c (xfree): New function.
3680         (member, declaration, globals): Use xmalloc instead of alloca.
3682 2001-01-15  Francesco Potortì  <pot@gnu.org>
3684         * etags.c (print_language_names): Print filenames in addition to
3685         suffixes.
3687 2001-01-14  Francesco Potortì  <pot@gnu.org>
3689         * etags.c (get_language_from_langname): Rename from
3690         get_language_from_name.
3691         (get_language_from_filename): Rename from get_language_from_suffix.
3692         Now first looks for the complete file name.
3693         (language): New member char **filenames.
3694         (Makefile_filenames): List of possible filenames for makefiles.
3695         (lang_names): Add a NULL member for every entry, added an entry
3696         for makefiles.
3697         (Makefile_targets): New function.
3698         (Texinfo_nodes): Rename from Texinfo_functions and made
3699         it conformant to the style of the rest of the code.
3701 2001-01-13  Gerd Moellmann  <gerd@gnu.org>
3703         * make-docfile.c (write_c_args): Print newlines as spaces.
3705 2001-01-06  Andrew Innes  <andrewi@gnu.org>
3707         * makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
3708         of *.pdb.
3710 2001-01-03  Paul Eggert  <eggert@twinsun.com>
3712         * rcs2log: Avoid security hole allowing attacker to
3713         cause user of rcs2log to overwrite arbitrary files, fixing
3714         a bug reported by Morten Welinder.
3716         Don't put "exit 1" at the end of the exit trap; it's
3717         ineffective in POSIX shells.
3719 2001-01-02  Gerd Moellmann  <gerd@gnu.org>
3721         * ebrowse.c (yyerror): Change to take two arguments.
3722         Add prototype.  Change callers.
3724 2001-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
3726         * ebrowse.c (enter_namespace, main): Cast variables to shut up
3727         compiler warnings.
3728         (yyerror): Change parameter declarations to be of type long, so
3729         that they can take pointers on 64-bit platforms.
3731         * emacsclient.c (main): Remove unused local variable statbfr.
3732         (main) <homedir>: Make its declaration conditional on
3733         SERVER_HOME_DIR, to avoid compiler warnings.
3735         * emacsserver.c (main) <homedir>: Make its declaration conditional
3736         on SERVER_HOME_DIR, to avoid compiler warnings.
3738         * fakemail.c (readline): Cast buffer to "long *" to pacify
3739         over-zealous compilers.
3741 2000-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
3743         * etags.c (canonicalize_filename) [DOS_NT]: Fix last change.
3745 2000-12-15  Gerd Moellmann  <gerd@gnu.org>
3747         * ebrowse.c (operator_name): Cast argument of isalpha to
3748         unsigned char.
3750         * etags.c (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
3751         Use them throughout instead of ctype functions/macros.
3752         (lowcase): Cast to unsigned char.
3753         (UPCASE): New macro.
3754         (canonicalize_filename): Use UPCASE instead toupper.
3756         * fakemail.c (get_keyword): Make sure that isspace and
3757         similar aren't called with a negative argument.
3759 2000-12-13  Dave Love  <fx@gnu.org>
3761         * ebrowse.c (ensure_scope_buffer_room): Fix xrealloc call.
3763 2000-12-06  Andrew Innes  <andrewi@gnu.org>
3765         * makefile.w32-in (LOCAL_FLAGS): Remove -DVERSION flag, since we
3766         don't know the real version, and I can't seem to get the quoting
3767         right in all circumstances.
3769         * ebrowse.c (VERSION): Provide default definition, like etags.c
3770         does, because Windows build can't snarf this from version.el.
3772 2000-11-30  Andrew Innes  <andrewi@gnu.org>
3774         * makefile.w32-in ($(BLD)/ebrowse.exe): Use tabs not spaces.
3775         (install): Ditto.
3777 2000-11-23  Jason Rumney  <jasonr@gnu.org>
3779         * makefile.w32-in: Add targets for ebrowse.exe.
3780         (LOCAL_FLAGS): Add -DVERSION flag.
3782 2000-09-25  Dave Love  <fx@gnu.org>
3784         * sorted-doc.c: Include config.h.
3785         [!HAVE_STDLIB_H]: Declare malloc.
3787 2000-09-14  Andrew Innes  <andrewi@gnu.org>
3789         * makefile.w32-in: Revert to Unix line endings.
3791 2000-09-04  Dave Love  <fx@gnu.org>
3793         * movemail.c (index, rindex): Prototype conditionally.
3795 2000-09-03  Andrew Innes  <andrewi@gnu.org>
3797         * makefile.w32-in: Change to DOS line endings.
3799 2000-09-01  Eli Zaretskii  <eliz@is.elta.co.il>
3801         * movemail.c (toplevel): Remove redundant fcntl.h.
3802         [!F_OK]: Provide default definitions only after including both
3803         fcntl.h and unistd.h.
3805 2000-08-29  Dave Love  <fx@gnu.org>
3807         * movemail.c: Revert previous change.
3809 2000-08-29  Eli Zaretskii  <eliz@is.elta.co.il>
3811         * Makefile.in (profile, make-docfile, hexl): Depend on config.h.
3813 2000-08-28  Dave Love  <fx@gnu.org>
3815         * movemail.c (toplevel) [HAVE_STRING_H]: Include string.h.
3816         (toplevel) [HAVE_STRINGS_H]: Include strings.h.
3818 2000-08-22  Andrew Innes  <andrewi@gnu.org>
3820         * ntlib.h (WIN32): Remove unnecessary definition.
3821         (sleep): Make argument unsigned long.
3822         (_WINSOCK_H): Undefine so normal winsock definitions can be used.
3824         * ntlib.c (sleep): Make argument unsigned long.
3826         * movemail.c (main) [WINDOWSNT]: Force binary mode for fileio.
3828         * makefile.w32-in: New file.
3830 2000-08-20  Eli Zaretskii  <eliz@is.elta.co.il>
3832         * etags.c (canonicalize_filename) [DOS_NT]: Upcase the first
3833         letter only if it is a drive letter.
3835 2000-07-14  Gerd Moellmann  <gerd@gnu.org>
3837         * ebrowse.c (xrealloc, xmalloc): Rename from yrealloc and ymalloc.
3839         * etags.c (xmalloc, xrealloc): Make externally visible, for use
3840         by alloca.o.
3842         * Makefile.in (alloca.o): Add -Demacs so that alloca will use xmalloc.
3844 2000-07-10  Gerd Moellmann  <gerd@gnu.org>
3846         * ebrowse.c (yylex): Accept string literals with newlines in them.
3847         (process_pp_line): Handle case of string literal with newline
3848         in it in replacement text, which counts as continuing the
3849         replacement text in GNU C.
3851 2000-07-02  Gerd Moellmann  <gerd@gnu.org>
3853         * ebrowse.c (token_string): Add missing tokens.
3854         (parm_list): Handle case of qualified pointers.
3856 2000-06-23  Dave Love  <fx@gnu.org>
3858         * ebrowse.c: Move config.h before other includes (which may use
3859         feature tests).
3861 2000-06-14  Jim Meyering  <meyering@lucent.com>
3863         * grep-changelog: Fix typos in comments.  Remove trailing blanks.
3865 2000-06-11  Jason Rumney  <jasonr@gnu.org>
3867         * makefile.nt: Add targets for ebrowse.
3869         * ebrowse.c [WINDOWS_NT]: Use stricmp instead of strcasecmp to
3870         compare filenames.
3872 2000-06-06  Gerd Moellmann  <gerd@gnu.org>
3874         * ebrowse.c (ymalloc): Rename from xmalloc.
3875         (yrealloc): Rename from xrealloc.
3877 2000-05-21  Dave Love  <fx@gnu.org>
3879         * movemail.c: Include config.h, not ../src/config.h.
3880         (Errmsg): Bump length.
3882         * pop.c (ERROR_MAX): Increase to 160.
3884 2000-05-04  Gerd Moellmann  <gerd@gnu.org>
3886         * ebrowse.c (DEFAULT_OUTFILE): Set to `BROWSE'.
3888 2000-05-02  Eli Zaretskii  <eliz@is.elta.co.il>
3890         * ebrowse.c (PATH_LIST_SEPARATOR) [__MSDOS__ || WINDOWSNT]:
3891         Define to semi-colon.
3892         (FILENAME_EQ): New macro, for comparing file names.
3893         (add_member_decl, add_global_decl, add_member_defn): Use FILENAME_EQ.
3894         (process_file): Don't assume that fread always reads as many bytes
3895         as it was told to (DOS-style CR-LF text files fail this logic).
3896         (open_file): Allocate enough space for path->path plus the file
3897         name and the slash.
3899 2000-04-19  Dave Love  <fx@gnu.org>
3901         * etags.c (Texinfo_functions): New function.
3902         (lang_names): Install it.
3903         (Texinfo_suffixes): New variable.
3905 2000-04-19  Gerd Moellmann  <gerd@gnu.org>
3907         * ebrowse.c (xmalloc, xrealloc): Rewritten.
3908         (declaration): Remove parameter IS_EXTERN.
3909         (class_definition): Remove unused variable.
3911 2000-04-09  Gerd Moellmann  <gerd@gnu.org>
3913         * Makefile.in (INSTALLABLES): Add ebrowse.
3914         (ebrowse): New target.
3916         * ebrowse.c: New file.
3918 2000-03-29  Andreas Schwab  <schwab@suse.de>
3920         * make-docfile.c (scan_lisp_file): Also look for `defsubst'.
3922 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
3924         * etags.c (lisp_suffixes): Add `LSP'.
3926 2000-02-10  Francesco Potortì  <pot@gnu.org>
3928         * etags.c (iswhite): Redefine not to consider '\0' as white
3929         space, and use it throughout in place of isspace, thus preventing a
3930         potential signed char to int conversion problem.
3931         (MSDOS): #undefine before redefining.
3933 2000-02-04  Francesco Potortì  <pot@gnu.org>
3935         * etags.c (many functions): Add prototypes.
3937 2000-02-10  Dave Love  <fx@gnu.org>
3939         * etags.c (pfnote, new_pfnote, C_entries, prolog_pred)
3940         (erlang_func): Add `static' to definitions to keep pcc happy.
3942 2000-01-31  Francesco Potortì  <pot@gnu.org>
3944         * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
3945         (get_compressor_from_suffix, process_file): Use MSDOS in if clause.
3946         (etags_strchr, etags_strrchr): Use const char * and int as arguments.
3947         (getenv, getcwd): Only declare them if necessary.
3948         (EMACS_NAME): New constant macro.
3949         (print_version): Use it.
3950         (P_) [__STDC__]: Macro for defining function prototypes.
3952 2000-01-18  Fabrice Popineau  <Fabrice.Popineau@supelec.fr>
3954         * etags.c [WINDOWSNT]: #include <direct.h>
3956 2000-01-18  Martin Buchholz  <martin@xemacs.org>
3958         * etags.c (all functions): Made them static.
3959         (all functions): Write prototypes.
3961 2000-01-29  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3963         * movemail.c (main): Improve error message if can't create lock file.
3965 2000-01-28  Eric Hanchrow  <offby1@blarg.net>
3967         * emacsclient.c (socket_status): New function.
3968         (main): If $LOGNAME or $USER exist and differ from our euid, look
3969         for a socket based on the UID associated with the name.
3971 2000-01-12  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
3973         * emacsclient.c: Add option -a EDITOR and environment variable
3974         ALTERNATE_EDITOR.  Exec this editor if we fail to contact Emacs.
3976 1999-12-10  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
3978         * movemail.c (popmail): Allow mailbox specifications of the
3979         form `po:username:hostname'.
3981 1999-11-19  Francesco Potortì  <pot@gnu.org>
3983         * etags.c (_GNU_SOURCE): Define only if undefined.
3984         (get_scheme): Declaration deleted.
3985         (main): Error was called with an integer as second arg, instead of
3986         a char pointer.
3987         (canonicalize_filename): Bug removed.
3989 1999-11-18  Dave Love  <d.love@dl.ac.uk>
3991         * etags.c (C_entries): Rename label `intoken', avoiding K&R
3992         lossage from name clash with macro.
3994 1999-11-13  Gerd Moellmann  <gerd@gnu.org>
3996         * Makefile.in (b2m): Add dependency on GETOPTDEPS.
3998 1999-11-03  Gerd Moellmann  <gerd@gnu.org>
4000         * etags.c (print_help): Change email address to send bugs to.
4002 1999-11-01  Francesco Potortì  <pot@gnu.org>
4004         * etags.c: Add suffix psw for PSWrap.
4005         (L_getit): Generalize a "cp!=' '" into "!isspace(*cp)".
4006         (Postscript_functions): Add code for PSWrap.
4007         (Scheme_functions): Use local pointer and new get_tag function.
4008         (get_tag): New name for old get_scheme.
4009         (process_file): Do not free NULL when file does not exist.
4010         (typdef): ttypedefseen renamed to tkeyseen, new label ttypeseen.
4011         (C_entries): Modifications that make --members tag even inside
4012         typedefs and C nested structs (one level only).
4013         (consider_token): Correct a bug which prevented tagging of enum
4014         constants.
4015         (C_stab_entry): Add if, for, while, switch, return as
4016         st_C_ignore.  This makes it simpler to work when cblev!=0.
4018         * etags.c (C_entries): Tag member function declarations when
4019         --declarations is used.
4021         * etags.c (C_entries, consider_token): C++ `operator' now is
4022         tagged in most cases.
4023         As before, :: is not recognized if surrounded by spaces.
4025         * etags.c (relative_filename): Account for DOS file names such
4026         that is impossible to make one relative to another.
4028         * etags.c (sym_type): New st_C_extern tag.
4029         (gperf input): Use it for spotting external declarations.
4030         (print_help): Document the new behavior of --declarations.
4031         (fvextern): New global variable.
4032         (consider_token, C_entries): Use it.
4034         * etags.c (HAVE_GETCWD) [WINDOWSNT]: Define if undefined.
4035         (etags_getcwd): Remove test for WINDOWSNT.
4037         * etags.c (process_file) [MSDOS]: If foo.c.gz is not found, try
4038         foo.cgz, foo.cz, etc.
4040         * etags.c (declarations): New global switch.
4041         (longopts): Describe it.
4042         (print_help): Document it.
4043         (C_entries): Use it.
4044         (process_file): Don't process a file twice.
4046         * etags.c (Fortran_functions): No tags for "procedure".
4048 1999-11-01  Eli Zaretskii  <eliz@is.elta.co.il>
4050         * etags.c (get_compressor_from_suffix): Second argument EXTPTR, if
4051         non-zero, returns a pointer to where the extension begins; callers
4052         changed.
4053         [MSDOS]: Support DOS file names by handling e.g. foo.cgz as if it
4054         were foo.c.gz.
4056 1999-11-01  Francesco Potortì  <pot@gnu.org>
4058         * etags.c (sym_type, C_stab_entry): New constant st_C_operator.
4059         (fvdev): New constant foperator.
4060         (consider_token): Use it to get "operator" in C++.
4061         (C_entries): Extend length of operator@ function name.
4062         (C_entries): Use foperator when necessary.
4064         * etags.c (main) [!ETAGS_REGEXPS]: Do not call free_patterns.
4066         * etags.c (compressor): New struct for compressed files.
4067         (get_compressor_from_suffix): New function.
4068         (get_language_from_suffix): Use it.  Also, semantics changed.
4069         (process_file): Consider compressed files, close file.
4070         (find_entries): Use different call arg for get_language_from_suffix,
4071         don't close file.
4073         * etags.c (main): Call free_tree.
4074         (find_entries): Do not free curfile.
4075         (pfnote): Cosmetic change: NULL and '\0' where appropriate.
4076         (prolog_pred, erlang_func, substitute): Cast strlen to int when
4077         comparing.
4078         (canonicalize_filename): Shut up compiler warning.
4079         (Perl_functions): Make tag significant.
4081 1999-11-01  Dave Love  <d.love@dl.ac.uk>
4083         * etags.c (longopts, optstring): New option --ignore-case-regex (-c).
4084         (argument_type): New member at_icregexp.
4085         (lc_trans): New global.
4086         (main): Fill lc_trans.  Process -c args.
4087         (add_regex): New arg determining whether to use translation table.
4088         (analyse_regex): New arg.  Use it for add_regex.
4090 1999-11-01  Francesco Potortì  <pot@gnu.org>
4092         * etags.c (init): Cosmetic change: NULL --> '\0'.
4093         (erlang_attribute): Bug corrected (uninitialized variable).
4094         (filename_is_absolute): New function replaces absolutefn macro and
4095         corrects a bug.  All callers changed.
4096         (canonicalize_filename): New function.
4097         (process_file, etags_getcwd, absolute_dirname): Use it.
4098         (relative_filename, absolute_filename): Remove var shadowing.
4099         (C_entries, Pascal_functions): Add fake initializations to keep
4100         compilers quiet.
4101         (TeX_functions, Prolog_functions, Erlang_functions): Cleanup.
4103         * etags.c (xrnew): New macro.  All callers of xrealloc changed.
4104         (language): New typedef (was struct lang_entry).
4105         (curlang): New global variable.
4106         (node): Typedef renamed from NODE.
4107         (linebuffer): New typedef (was struct linebuffer).
4108         (pattern): New typedef (was struct pattern).  Some members added.
4109         Now used as element of a linked list.
4110         (patterns, num_patterns): Global variables deleted.
4111         (p_head): New global variable.
4112         (forced_lang): New global variable (replaces lang_func).
4113         (get_language_from_name, get_language_from_interpreter)
4114         (get_language_from_suffix): Semantics changed.  All callers changed.
4115         (last_node): New global variable.
4116         (free_tree, add_node, put_entries, total_size_of_entries):
4117         Change name of local vars to avoid clashes with typedef node.
4118         (number_len): Rewritten for elegance.
4119         (token): New typedef replaces TOKEN.
4120         (analyse_regex, add_regex): Rewritten for new functionality.
4121         (free_patterns): New function called from main and add_regex.
4122         (initbuffer, readline_internal, readline, grow_linebuffer):
4123         Change name of local vars to avoid clashes with typedef linebuffer.
4124         (readline): Rewritten for new functionality.
4126         * etags.c (Scheme_suffixes): New suffix ".ss".
4127         (print_help): --globals is now used for more than C-type languages.
4128         (Perl_functions): Tag global variables ("my" and "local").
4130         * etags.c (print_help): Some messages clarified.
4131         (LOOP_ON_INPUT_LINES): New macro.
4132         (just_read_file, Fortran_functions, Asm_labels, Perl_functions)
4133         (Python_functions, Cobol_paragraphs, Pascal_functions)
4134         (Lisp_functions, Postscript_functions, Scheme_functions)
4135         (TeX_functions, Prolog_functions, Erlang_functions): Use it.
4136         (Cobol_paragraphs, Postscript_functions, TeX_functions)
4137         (Prolog_functions, Erlang_functions): Use a local variable instead
4138         of the global variable dbp.
4139         (Pascal_functions, L_isquote, Scheme_functions): Use GNU coding
4140         standard indentation.
4142         * etags.c (Python_suffixes, lang_names, Python_functions):
4143         Python support.
4144         (skip_spaces, skip_non_spaces): Utility functions.
4145         (find_entries, takeprec, getit, Fortran_functions, Perl_functions)
4146         (Python_functions, L_getit, Lisp_functions, Scheme_functions)
4147         (prolog_pred, erlanf_func, erlang_attribute): Use them.
4148         (eat_white): Deleted.
4150         * etags.c (CHAR, init): Keep into account non US-ASCII
4151         characters and compilers with default signed chars.
4152         (L_getit): Tag "(defstruct (foo", "(defun (operator" and similar
4153         constructs.
4154         (C_stab_entry): "interface" in Java behaves like "class".
4156         * etags.c (HAVE_NTGUI) [WINDOWSNT]: #undef if HAVE_CONFIG_H.
4157         (main): Put interval syntax here.
4158         (add_regex): And remove it from here.
4160         * etags.c (suggest_asking_for_help): Provide a
4161         meaningful help message with and without LONG_OPTIONS.
4163         * etags.c (<io.h>) [MSDOS]: Include it, don't include string.h.
4164         <stdlib.h, string.h>: Don't test MSDOS when including them.
4165         (white, nonam, endtk): Like elsewhere, use \r instead of \013.
4166         (put_entries): Correctly use %ld instead of %d in printf.
4168         * etags.c (<unistd.h>) [HAVE_UNISTD_H]: Include conditionally, else
4169         declare getcwd if HAVE_GETCWD.
4170         (consider_token): Dead break instruction removed.
4172 1999-10-19  Paul Eggert  <eggert@twinsun.com>
4174         Add support for large files.  Merge glibc 2.1.2.
4176         * b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
4177         * movemail.c, pop.c:
4178         Do not include <stdlib.h>, as <config.h> does this now.
4180         * b2m.c, emacsserver.c, etags.c, profile.c:
4181         Include <config.h> before any system include files.
4183         * emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
4184         * test-distrib.c:
4185         (read, write, open, close): Do not undef.
4187         * getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
4188         (const): Do not define if HAVE_CONFIG_H; that's config.h's job.
4190         * getopt.h: Adopt glibc 2.1.2.
4192 1999-10-15  Dave Love  <fx@gnu.org>
4194         * Makefile.in (pop.o): Depend on config.h.
4196 1999-10-11  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4198         * pop.c: Use "pop3" as the POP service name on all platforms,
4199         instead of using "pop" on Unix and "pop3" on Windows NT.  "pop3"
4200         has been the standard service name since RFC 1340 was published in
4201         July 1992, so I think it's safe to start using it by default.
4203 1999-09-27  Dave Love  <fx@gnu.org>
4205         * make-docfile.c (scan_lisp_file): Fix typo causing infloop.
4207 1999-09-19  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4209         * make-docfile.c (scan_lisp_file): Fix previous changes;
4210         swallow CRLF like just CR or just LF.
4212 1999-09-03  Richard Stallman  <rms@gnu.org>
4214         * make-docfile.c: Include config.h not ../src/config.h.
4215         (main, fopen, chdir): Add #undef.
4216         (read_c_string, scan_c_file, skip_white, read_lisp_symbol)
4217         (scan_lisp_file): Handle \r like \n.
4219 1999-08-30  Andreas Schwab  <schwab@gnu.org>
4221         * make-docfile.c, fakemail.c: Include <stdlib.h> if available.
4223         * emacsserver.c: Include <stdlib.h> if available.  Don't declare
4224         errno if it's a macro.
4226         * test-distrib.c: Include <unistd.h> if available.
4228 1999-08-29  Richard Stallman  <rms@gnu.org>
4230         * emacsclient.c (print_help_and_exit): Mention --version.
4232 1999-08-25  Richard M. Stallman  <rms@gnu.org>
4234         * emacsclient.c (decode_options): Update version output.
4235         (print_help_and_exit): Update bug report address.
4237 1999-08-13  Richard M. Stallman  <rms@gnu.org>
4239         * emacsclient.c (main): Move the dynamic allocation of
4240         system_name outside of the SERVER_HOME_DIR conditional.
4241         * emacsserver.c (main): Likewise.
4243 1999-08-10  Gerd Moellmann  <gerd@gnu.org>
4245         * grep-changelog: New.
4246         * Makefile.in (INSTALLABLE_SCRIPTS): Add it.
4248 1999-07-12  Richard Stallman  <rms@gnu.org>
4250         * Version 20.4 released.
4252 1999-06-30  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
4254         * Makefile.in (clean): Remove fns*.el.
4256 1999-06-23  Dave Love  <fx@gnu.org>
4258         * etags.c (erlang_attribute): Fix undefined variable usage (after
4259         Potorti).
4261 1999-05-02  Andrew Innes  <andrewi@gnu.org>
4263         * movemail.c (main) [WINDOWSNT]: Call ftruncate, which is now
4264         mapped to _chsize.
4266 1999-04-29  Richard M. Stallman  <rms@gnu.org>
4268         * emacsclient.c (main, both versions): Use quote_file_name on cwd.
4270 1999-03-30  Dave Love  <fx@gnu.org>
4272         * sorted-doc.c (main): Split up tables.  Modify the preamble
4273         somewhat.
4275 1999-03-05  Geoff Voelker  <voelker@cs.washington.edu>
4277         * makefile.nt: Remove common multiple file compilation commands.
4279 1999-02-26  Richard Stallman  <rms@gnu.org>
4281         * Makefile.in (yow): Depend on epaths.h, not paths.h.
4283         * yow.c: Refer to epaths.h.
4285 1999-02-22  Simon Josefsson  <jas@pdc.kth.se>
4287         * emacsserver.c (perror_1, fatal_error): Don't compile unless needed.
4289 1999-01-27  Andrew Innes  <andrewi@gnu.org>
4291         * makefile.nt: Do make version comparison as strings.
4293 1999-01-25  Richard Stallman  <rms@gnu.org>
4295         * emacsclient.c (xmalloc): Fix previous change.
4297 1999-01-24  Richard M. Stallman  <rms@borg.ai.mit.edu>
4299         * emacsclient.c (xmalloc): Declare to return long.
4301 1999-01-22  Geoff Voelker  <voelker@cs.washington.edu>
4303         * etags.c (etags_getcwd, absolute_filename) [DOS_NT]: Canonicalize
4304         the case of the drive letter.
4306 1999-01-15  Richard Stallman  <rms@psilocin.ai.mit.edu>
4308         * emacsserver.c (main): Eliminate arbitrary limit on
4309         length of system_name.
4311         * emacsclient.c (main): Eliminate arbitrary limit on
4312         length of system_name.
4313         (xmalloc): Define unconditionally.
4315 1999-01-12  Darrin B. Jewell  <jewell@mit.edu>
4317         * etags.c (relative_filename): Stop backward search at beginning
4318         of string, since non-Unix systems can have absolute paths with no
4319         initial slash.
4321 1998-12-08  Geoff Voelker  <voelker@cs.washington.edu>
4323         * makefile.nt: Do string comparison of _NMAKE_VER.
4325 1998-11-03  Theodore Jump  <tjump@cais.com>
4327         * makefile.nt: Compile multiple source files when possible.
4329 1998-10-13  Richard Stallman  <rms@psilocin.ai.mit.edu>
4331         * Makefile.in: Replace tabs with spaces
4332         when they might confuse some Make versions.
4334 1998-10-10  Richard Stallman  <rms@psilocin.ai.mit.edu>
4336         * emacsclient.c (main): Null-terminate system_name.
4338         * emacsserver.c (main): Null-terminate system_name.
4340 1998-09-21  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4342         * movemail.c (popmail, pop_retr) [MAIL_USE_POP]: When displaying
4343         an error message from POP, mention that it's from POP, to
4344         distinguish it from local error messages.
4346 1998-09-04  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4348         * movemail.c [MAIL_USE_POP]: Add the "-r" flag to reverse the
4349         order of messages downloaded from a POP server (e.g., if the
4350         server stores messages in mailboxes in reverse order).
4352 1998-08-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
4354         * Version 20.3 released.
4356 1998-08-11  Paul Eggert  <eggert@twinsun.com>
4358         * rcs2log: Update copyright date and bug report address.
4359         (initialize_fullname): Prefer getent if available.
4361 1998-07-30  Paul Eggert  <eggert@twinsun.com>
4363         * Makefile.in (REGEXPDEPS, regex.o):
4364         Prepend $(srcdir)/ to rule dependencies outside this dir.
4366 1998-06-09  Andrew Innes  <andrewi@harlequin.co.uk>
4368         * etags.c (etags_getcwd) [WINDOWSNT]: Use getcwd on Windows.
4370 1998-06-06  Richard Stallman  <rms@psilocin.ai.mit.edu>
4372         * Makefile.in: Properly terminate a comment.
4374 1998-06-01  Andrew Innes  <andrewi@mescaline.gnu.org>
4376         * movemail.c (sys_wait): Rename to wait.
4378         * ntlib.h: Undefine _WINSOCKAPI_.
4380         * makefile.nt (LOCAL_FLAGS): Define HAVE_CONFIG_H.
4382 1998-05-30  Geoff Voelker  <voelker@cs.washington.edu>
4384         * ntlib.c (getppid): Look for EM_PARENT_PROCESS_ID.
4386 1998-05-01  Andrew Innes  <andrewi@harlequin.co.uk>
4388         * movemail.c [WINDOWSNT]: Undefine DISABLE_DIRECT_ACCESS.
4389         Force all file i/o to be in binary mode.  Include ntlib.h.
4391 1998-04-27  Andreas Schwab  <schwab@delysid.gnu.org>
4393         * make-docfile.c: Include <unistd.h> for chdir.
4395 1998-04-25  Richard Stallman  <rms@psilocin.gnu.org>
4397         * etags.c (TEX_decode_env): Don't free the value getenv returns.
4399 1998-04-17  Geoff Voelker  <voelker@cs.washington.edu>
4401         * makefile.nt (obj): Update with new files in src.
4402         (clean): Delete patch scratch files, optimized compilation dir.
4404 1998-04-08  Dave Love  <fx@gnu.org>
4406         * emacsclient.c: Move inclusion of unistd.h to top, else fails on
4407         Irix6, at least.
4409 1998-04-06  Andreas Schwab  <schwab@gnu.org>
4411         Silence -Wimplicit:
4412         * movemail.c: Move cancelations up.  Include <stdlib.h> if
4413         available.
4414         * fakemail.c (_XOPEN_SOURCE): Define for declaration of cuserid.
4415         (parse_header): Explicitly declare return type.
4416         * emacsserver.c: Include <unistd.h> if available.
4417         (main, handle_signals, perror_1, fatal_error): Explicitly declare
4418         return types.  Add forward declarations.
4419         * emacsclient.c: Include <stdlib.h> and <unistd.h> if available.
4420         Don't declare geteuid.
4421         (print_help_and_exit): Change return type to void.
4422         Forward declare it.
4423         * b2m.c: Include <stdlib.h> if available.
4424         (main): Explicitly declare return type.
4426 1998-04-03  Richard Stallman  <rms@psilocin.gnu.org>
4428         * etags.c (put_entries): Use %ld.
4430         * b2m.c (fatal): Declare the arg.
4432 1998-03-26  Richard Stallman  <rms@psilocin.gnu.org>
4434         * pop.c (pop_getline): Rename from getline.
4436 1998-03-05  Richard Stallman  <rms@psilocin.gnu.org>
4438         * Makefile.in (install): Use INSTALL_STRIP with INSTALL_PROGRAM
4439         for the utilities.
4441 1998-01-23  Dave Love  <d.love@dl.ac.uk>
4443         * etags.c (getit, Cobol_paragraphs, Pascal_functions,
4444         Postscript_functions, prolog_pred, erlang_func, erlang_attribute):
4445         Always make named tags.
4446         (Fortran_functions): Grok BLOCK DATA.
4448 1998-01-23  Andreas Schwab  <schwab@gnu.org>
4450         * movemail.c (main): Fix interwoven brace and cpp conditional
4451         nesting.
4453 1997-12-03  Paul Eggert  <eggert@delysid.gnu.org>
4455         * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which quotes
4456         with a '>' any lines starting with "From " read from the POP server,
4457         but leave the code in place, wrapped in #ifdef
4458         MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
4459         because it turns out that something is depending on it.
4460         Change suggested by Paul Eggert <eggert@twinsun.com>.
4461         Convert the character \037 (^_) at the beginning of a line into
4462         the character '^' followed by the character '_', because otherwise
4463         Emacs can't parse the resulting file as a valid BABYL file.
4464         Change suggested by Paul Eggert <eggert@twinsun.com>.
4466 1997-12-03  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4468         * movemail.c, pop.c, pop.h: Allow messages retrieved from the POP
4469         server to contain embedded nulls.
4471 1997-12-02  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4473         * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which
4474         quotes with a '>' any lines starting with "From " read from the
4475         POP server, but leave the code in place, wrapped in #ifdef
4476         MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
4477         because it turns out that something is depending on it.
4478         Change suggested by Paul Eggert <eggert@twinsun.com>.
4480         Convert the character \037 (^_) at the beginning of a line into
4481         the character '^' followed by the character '_', because otherwise
4482         Emacs can't parse the resulting file as a valid BABYL file.
4483         Change suggested by Paul Eggert <eggert@twinsun.com>.
4485 1997-11-22  Richard Stallman  <rms@gnu.org>
4487         * b2m.c: Include getopt.h.
4488         (main): Use getopt_long to handle --version and --help.
4490         * Makefile.in (b2m): Define VERSION.  Link with $(GETOPTOBJS).
4492 1997-10-31  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4494         * pop.c (fullwrite): Get rid of an extra call to write.
4495         Problem pointed out by Chiaki Ishikawa.
4497 1997-10-16  Dave Love  <d.love@dl.ac.uk>
4499         * etags.c (L_getit): Always make named tags so that Emacs
4500         completion on symbols containing `:' etc. works.
4501         (get_scheme): Likewise.
4503 1997-09-24  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4505         * pop.c: Use system header files instead of declaring C-library
4506         functions explicitly.
4508 1997-09-19  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
4510         * Version 20.2 released.
4512 1997-09-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
4514         * Version 20.1 released.
4516 1997-09-02  Andrew Innes  <andrewi@harlequin.co.uk>
4518         * makefile.nt (movemail.exe): Link wsock32.lib before LIBS.
4520         * ntlib.c (getpid): Delete function.
4522 1997-08-28  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4524         * make-docfile.c (scan_lisp_file): Handle custom-declare-variable.
4526 1997-08-26  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4528         * emacsclient.c [HAVE_SYSVIPC]: Include errno.h, as in the other case.
4529         (main) [!BSD_SYSTEM]: Fix error message for getcwd failure.
4531 1997-08-14  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
4533         * emacsserver.c (main): Use SOCKLEN_TYPE for fromlen, if it is defined.
4535 1997-08-13  Kazushi (Jam) Marukawa  <jam@poboxes.com>
4537         * profile.c (get_time): Cast arg to fprintf.
4539         * hexl.c (main): Use %08lx instead of %08x in printf because the
4540         variable named addresses is long.
4542 1997-08-08  Geoff Voelker  <voelker@cs.washington.edu>
4544         * makefile.nt (lisp): Update paths to lisp files that have moved.
4546 1997-08-08  Andrew Innes  <andrewi@harlequin.co.uk>
4548         * makefile.nt (ctags.obj): New target.
4549         (etags.obj, getopt.obj, make-docfile.obj): Update dependencies.
4551         * ntlib.h: Add includes.
4552         Undo definitions of crt routines from config.h.
4554 1997-08-06  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
4556         * etags.c (Yacc_suffixes, Asm_suffixes): Add some alternatives.
4558 1997-07-22  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4560         * pop.c: Support auto-configuration of both Kerberos V4 and
4561         Kerberos V5 for movemail, including detection of V4 and V5 header
4562         files and libraries.
4563         Include <string.h> when STDC_HEADERS is defined, to get
4564         declarations of string functions.
4565         [KERBEROS5] (socket_connection): Support the current MIT Kerberos
4566         V5 API rather than the old one.
4567         [KERBEROS] (socket_connection): Change a constant name from
4568         SOCKET_ERROR to POP_SOCKET_ERROR to avoid a namespace conflict
4569         with a constant in a header file.
4571         * Makefile.in: Support auto-configuration of both Kerberos V4 and
4572         Kerberos V5 for movemail, including detection of V4 and V5 header
4573         files and libraries.
4575 1997-07-17  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
4577         * fakemail.c [HAVE_UNISTD_H]: Include unistd.h.
4579         * etags.c [HAVE_UNISTD_H]: Include unistd.h.
4581 1997-07-09  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
4583         * emacsclient.c [C_ALLOCA] (xmalloc): New function.
4585 1997-07-04  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
4587         * movemail.c (rindex): Add declaration.
4589 1997-07-01  Geoff Voelker  <voelker@cs.washington.edu>
4591         * makefile.nt (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
4592         (movemail.exe): Depend upon and link with getopt files.
4593         (obj): Include new source files.
4594         (FACE_SUPPORT, MOUSE_SUPPORT, FLOAT_SUPPORT, WINNT_SUPPORT): Define.
4595         (lisp): Include new and reorganized elisp files.
4597 1997-06-27  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
4599         * Makefile.in (blessmail): Find blessmail.el in mail subdirectory.
4601 1997-06-25  Paul Eggert  <eggert@twinsun.com>
4603         * rcs2log: Don't assign to $0 in awk; some awks don't allow this.
4605 1997-06-14  Karl Heuer  <kwzh@gnu.ai.mit.edu>
4607         * b2m.c (readline): Terminate buffer properly when EOF seen.
4608         Test for valid pointer before dereferencing it.
4610 1997-05-30  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4612         * Makefile.in (etags): Remove -DETAGS_REGEXPS, because now it is
4613         defined inside etags.c if HAVE_CONFIG_H is defined.
4615 1997-05-29  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4617         * etags.c (logical): Type name changed to bool.
4618         (ETAGS_REGEXPS, LONG_OPTIONS) [HAVE_CONFIG_H]: #define them.
4619         (<getopt.h>) [LONG_OPTIONS]: Include conditionally.
4620         (getopt_long) [!LONG_OPTIONS]: Redefine as macro.
4621         (main): Accepted options depend on ETAGS_REGEXPS and LONG_OPTIONS.
4622         (longopts): New long options without short counterpart are
4623         globals, members, no-globals, no-members.  Regexp options are now
4624         defined  conditionally to ETAGS_REGEXPS.
4625         (print_help): Updated.
4627 1997-05-22  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4629         * etags.c (C_entries): Use "." instead of "::" for Java.
4630         (consider_token): is_func renamed to is_func_or_var.
4631         (C_entries): is_func renamed to funorvar.
4632         (C_entries): Initialize tok.named.
4633         (sym_type, C_stab_entry, consider_token): st_C_ignore is used to
4634         get rid of "import", "package" and "friend".
4635         (fvdef): Rename from funcdef.  Also some constants renamed.
4636         All users changed.
4637         (C_entries): Make separate tags for variables separated by comma.
4638         (globals, members): New flags.
4639         (main, C_entries): Use them.
4640         (make_C_tag, C_entries): Make tok a global variable.
4642 1997-05-16  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4644         * etags.c (funcdef): New vignore constant.
4645         (consider_token, C_entries): Use it to tag global variables.
4646         (print_help): Update for global variables.
4647         (consider_token, C_entries): Set the len member of token_name.
4648         (prolog_pred): Cleanup according to GNU coding standards.
4649         (Cobol_suffixes, lang_names, Cobol_paragraphs): Cobol support.
4650         (prolog_white, erlang_white): Rename to eat_white, callers changed.
4652 1997-05-15  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4654         * etags.c (CHARS, CHAR): New constant and macro.
4655         (iswhite, begtoken, intoken, endtoken): Use them.
4656         (notinname, _nin, nonam): New macro, array, string.
4657         (init): Cleanup and init _nin.
4658         (new_pfnote): New function.
4659         (make_C_tag) [traditional_tag_style]: Use it.
4660         (traditional_tag_style): Constant set to TRUE for now.
4662 1997-05-14  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4664         * etags.c (C_entries, Pascal_functions): Cleanup.
4665         (TeX_functions): NULL as a function arg needs a cast.
4666         (Erlang_functions, erlang_func, erlang_attribute): Cleanup.
4668 1997-05-13  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4670         * etags.c (TeX_functions): Cleaned up.
4671         (tex_getit): Removed.
4673 1997-05-13  Paul Eggert  <eggert@twinsun.com>
4675         * rcs2log (files): When computing arguments automatically, ignore
4676         non-files within the RCS subdirectory.
4678 1997-05-13  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4680         * etags.c (C_JAVA): New #define.
4681         (Cjava_suffixes): .java is Java.
4682         (Cjava_entries): New function.
4683         (lang_names): Add Java.
4684         (sym_type): Add st_C_javastruct for Java.
4685         (C_stab_entry): Add `extends' and `implements' keywords.
4686         (consider_token, C_entries): Recognize Java structures.
4688 1997-05-12  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4690         * etags.c (Cplusplus_suffixes): .pdb is PostScript with C syntax.
4691         (Postscript_suffixes): .ps is PostScript.
4692         (lang_names): Add postscript.
4693         (Postscript_functions): New function.
4694         (TEX_decode_env): Close minor memory leak.
4695         (just_read_file): Correct the char number of the tag.
4697 1997-05-11  Paul Eggert  <eggert@twinsun.com>
4699         * rcs2log (loginFullnameMailaddrs, logins, rlog_options, files):
4700         Don't prepend $nl since this causes some shells to generate the
4701         empty string when IFS is $nl.
4702         (printlogline): Use SOH (octal code 1), not CR, since some
4703         PC-based shells mishandle CR.
4704         (initialize_fullname): Set NIS_PATH to the empty string before invoking
4705         nismatch, in case it's set to some nonstandard value.
4707 1997-05-06  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4709         * pop.c (getline): Don't miss CRLF pairs when the CR and LF are
4710         read in separate blocks.
4712 1997-04-30  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4714         * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
4715         (struct linebuffer): New member `len' is the length of the string.
4716         (find_entries, Pascal_functions, TeX_functions, TEX_getit):
4717         Use it instead of strlen.
4718         (TEX_getit): Declare and define unconditionally as static.
4719         (TeX_functions): Use if instead of #if TeX_named_tokens.
4720         (add_regex): Set RE_INTERVALS flag for regex compilation.
4721         (substitute): Code cleanup.
4722         (readline_internal): Code cleanup, set new member `len'.
4723         (readline): Bug corrected.
4725 1997-04-23  Geoff Voelker  <voelker@cs.washington.edu>
4727         * makefile.nt: Change references of windowsnt.h to ms-w32.h.
4728         (obj): Change references of nt*.c files to w32*.c files.
4730 1997-04-15  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4732         * etags.c (xnew): Add support for debugging with chkmalloc.
4733         (error): Use this instead of printf whenever possible.
4734         (main): Only call xnew after having initialized progname.
4735         (substitute): Bad memory corruption error corrected.
4737 1997-04-08  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4739         * etags.c (add_regex): Undo previous change.
4740         (relative_filename): Small memory leak closed.
4741         (absolute_filename): Cleaned up the code, possibly closing a bug.
4742         (absolute_dirname): Always return a newly allocated string.
4744 1997-03-21  Paul Eggert  <eggert@twinsun.com>
4746         * rcs2log (files): Ignore files in RCS directory whose names are
4747         of the form ,*, or *_; they are probably RCS lock files.
4748         Also, ignore files named .rcsfreeze.log or .rcsfreeze.ver;
4749         they are used by rcsfreeze.
4751 1997-03-14  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4753         * etags.c (add_regex): Reset *putbuf before using it.
4755 1997-02-23  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4757         * movemail.c (popmail): Remove some unnecessary function
4758         declarations.
4759         (popmail, pop_retr): Since popmail always passes mbx_write and mbf
4760         into pop_retr, there's no reason to pass in mbx_write, and the
4761         file argument can be declared FILE * explicitly.  This fixes a
4762         compilation problem on systems with 64-bit pointers.
4764 1997-02-13  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
4766         * movemail.c: Delete duplicate inclusion of fcntl.h
4767         and duplicate #undefs of open, read, write, close.
4769 1997-01-20  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
4771         * movemail.c (main): Do not display "[POP-password]" in the usage
4772         message when movemail is compiled without POP support.
4773         (main, popmail): Add the optional "-p" argument, which causes
4774         movemail to leave mail in the inbox after copying it into the
4775         output file.
4777         * Makefile.in (movemail): Link with getopt.
4779 1997-01-20  Paul Eggert  <eggert@twinsun.com>
4781         * rcs2log (--help, --version): New options, per GNU coding standards.
4782         (Copyright, Help, Id): New variables, for above.
4783         (rlog): Use -q option with cvs log, to avoid useless chatter.
4785         Treat logs of "Initial revision" (RCS) or "file F was initially added
4786         on branch B." (CVS) as if they said "New file.", for consistency with
4787         change log entries.
4789 1997-01-01  Paul Eggert  <eggert@twinsun.com>
4791         * vcdiff (PATH): Add /usr/xpg4/bin,
4792         where XPG4 SCCS hangs out in Solaris 2.5.
4793         (sid1): Don't use bare -r, since XPG4 `get' does not allow it.
4795 1996-12-19  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
4797         * etags.c (streq, strneq): Use == NULL rather than !.
4799 1996-12-18  Jonathan I. Kamens  <jik@annex-1-slip-jik.cam.ov.com>
4801         * Makefile.in (LIBMAIL): New macro.  Conditionally includes -lmail.
4802         (movemail): Use LIBMAIL, to link against -lmail.
4804         * movemail.c: Include maillock.h (conditionally).
4805         Remove a redundant inclusion of <stdio.h>.
4806         (MAIL_USE_MAILLOCK): New macro, conditionally defined.
4807         (main): Add variable spool_name.
4808         Support the usage of maillock and mailunlock to
4809         lock and unlock mailboxes.
4810         (mail_spool_name): New function.
4812         * movemail.c: Fix an uninitialized variable which could cause
4813         movemail to exit with an error status incorrectly on systems which
4814         use lock files rather than a system locking function to lock
4815         mailboxes.
4817 1996-12-16  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
4819         * pop.c (socket_connection): Free realhost after using it.
4821 1996-12-04  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4823         * etags.c (C_entries): Test tok.valid.  This handles some
4824         particular cases involving function declarations that failed.
4826 1996-11-22  Charles Hannum  <mycroft@gnu.ai.mit.edu>
4828         * pop.c (socket_connection):
4829         gethostbyname may return a pointer to static data.
4830         krb_realmofhost can clobber it.  So copy it.
4832 1996-11-14  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4834         * etags.c (pfnote, fatal, error): Callers using a NULL pointer
4835         must cast it to (char *) because we have no prototypes.
4836         (make_C_tag): Macro deleted, new function.
4837         (C_entries): Calls to make_C_tag macro changed to call function.
4839 1996-11-13  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4841         * etags.c (grow_linebuffer): New function.
4842         (GROW_LINEBUFFER): Macro deleted.  All callers changed.
4843         (make_tag): Macro renamed to make_C_tag.  All callers changed.
4844         (<stdlib.h>, <string.h>) [STDC_HEADERS]: New #include's.
4845         (Prolog_functions): prolog_skip_comment was called with wrong
4846         number of arguments.
4847         (xrealloc): fatal was called with wrong number of arguments.
4849 1996-11-08  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4851         * etags.c (relative_filename): Bug corrected.
4852         (etags_getcwd): Avoid warning of unused variable.
4853         (C_entries, consider_token): Add support for enum labels.
4855 1996-11-03  Paul Eggert  <eggert@twinsun.com>
4857         * rcs2log: When processing cvs log output, remove `Attic/' from
4858         repository file names.
4860 1996-10-22  Karl Heuer  <kwzh@gnu.ai.mit.edu>
4862         * emacsserver.c: Fix 1996-09-02 change.
4864 1996-10-12  Paul Eggert  <eggert@twinsun.com>
4866         * rcs2log (rlog_options): Look for ' option' rather than 'unknown
4867         option', since CVS says 'invalid option'.
4868         (datearg): Use the empty string, not '-d>1970-01-01', to extract all
4869         revisions, since some hosts reject 1970-01-01 when east of UTC.
4870         (date): Remove.
4872 1996-10-06  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
4874         * etags.c (etags_getcwd) [WINDOWSNT]: Convert backslashes to slashes.
4876 1996-10-02  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
4878         * etags.c (print_version): Print copyright info.
4880         * etags.c (print_help): Print the bug reporting address.
4881         (main): Use return as the last instruction, instead of exit.
4883         * etags.c (main): Don't open the tags file in cxref mode.
4885 1996-09-29  Dave Love  <d.love@dl.ac.uk>
4887         * rcs2log (date): Make default format acceptable to CVS post v1.8
4888         as well as earlier CVSs and RCS.
4890 1996-09-29  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
4892         * movemail.c (main): If the lock call fails with EBUSY or
4893         EAGAIN, retry a few times.
4895 1996-09-25  Paul Eggert  <eggert@twinsun.com>
4897         * rcs2log (rlog_options): Use $rlog, not rlog, when deciding
4898         whether to append -zLT.
4900 1996-09-16  Karl Heuer  <kwzh@gnu.ai.mit.edu>
4902         * fakemail.c: Replaced symbol BSD with BSD_SYSTEM.
4903         * emacsclient.c, movemail.c: Likewise.
4905 1996-09-09  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
4907         * emacsclient.c (longopts): Change nowait to no-wait.
4908         (print_help_and_exit): Fix option name; upcase metavars.
4910 1996-09-06  Erik Naggum  <erik@naggum.no>
4912         * emacsserver.c (main): Declare `fromlen' as size_t.
4914 1996-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
4916         * etags.c (etags_getcwd): Use getcwd if available even if MSDOS.
4918 1996-09-02  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
4920         * emacsclient.c (quote_file_name): Quote with &, not \.
4921         Quote `-' only at start of file name.  Terminate the value string.
4923         * emacsserver.c: Include signal.h properly;
4924         delete the duplicate includes for it.
4926         * emacsserver.c: On fatal signal, delete socket-file:
4927         * emacsserver.c: Include signal.h.
4928         (xmalloc, fatal, error): New functions.
4929         (delete_socket, handle_signals): New functions.
4930         (progname, socket_name): New variables.
4931         [HAVE_SOCKETS] (main): Call handle_signals; set the new variables.
4933 1996-09-01  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
4935         * emacsclient.c (quote_file_name): New function.
4936         (main, both versions): Use quote_file_name.
4937         (decode_options): Don't return a value.
4938         (main, both versions): Use optind.
4939         Don't check for -nowait here.
4941         * emacsclient.c (decode_options): New function.
4942         (main, both versions): Call decode_options.
4943         (print_help_and_exit): New function.
4944         (VERSION): New macro.
4946         * Makefile.in (emacsclient): Link with getopt.
4947         Add -DVERSION so emacsclient knows its version number.
4949 1996-08-31  Geoff Voelker  <voelker@cs.washington.edu>
4951         * makefile.nt (lisp): Include dos-nt.elc.
4953 1996-08-31  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
4955         * Makefile.in (blessmail): Use $srcdir to find blessmail.el.
4957 1996-08-28  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
4959         * emacsclient.c (both versions): Handle -nowait and --nowait
4960         by sending data to the server.
4962 1996-08-26  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
4964         * Makefile.in (INSTALL_STRIP): New variable.
4965         (${archlibdir}): Use INSTALL_STRIP.
4967         * Makefile.in (MOVE_LIBS): Use conditionals on KERBEROS,
4968         HAVE_LIBKRB, HAVE_LIBDES, HAVE_LIBCOM_ERR to set it up.
4970         * pop.c: Reverse conditional in previous change.
4972 1996-08-24  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
4974         * pop.c: Include des.h krb.h with no dir name if SOLARIS2.
4976 1996-08-24  Paul Eggert  <eggert@twinsun.com>
4978         * rcs2log: Use ISO 8601 date format, with time zone appended
4979         if change-log-time-zone-rule is non-nil, instead of
4980         traditional Unix date format.
4982         (datearg): When computing default from ChangeLog, handle ISO format
4983         dates in addition to old-fashioned dates from Emacs 19.31 and earlier.
4984         Don't worry about hh:mm:ss since the resolution is now by day.
4985         Use empty datearg, not empty rlog_options, to decide whether to pass
4986         "$datearg" option to $rlog.
4987         (logTZ): New variable, set to TZ specified by change-log-time-zone-rule.
4988         (month_data): Remove `mo'; no longer needed.
4989         (rlog_options): Use -zLT for localtime output, if `rlog' supports it.
4991         Match `revision' line of rlog output more accurately.
4993         Add -c, -v options.
4995 1996-08-23  Eli Zaretskii  <eliz@is.elta.co.il>
4997         * hexl.c: Include <config.h>, so DOS_NT is defined on MSDOS.
4999 1996-08-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5001         * Version 19.33 released.
5003 1996-07-31  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5005         * Version 19.32 released.
5007 1996-07-23  Andrew Innes  <andrewi@harlequin.co.uk>
5009         * etags.c (readline_internal) [DOS_NT]: Don't include CRs when
5010         computing character positions in source files.
5012 1996-07-16  Andrew Innes  <andrewi@harlequin.co.uk>
5014         * makefile.nt (clean): Use OBJDIR macro.
5016 1996-07-16  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5018         * cvtmail.c, sorted-doc.c, yow.c, emacsserver.c: Undo previous change.
5020 1996-07-15  David Mosberger-Tang  <davidm@AZStarNet.com>
5022         * cvtmail.c, sorted-doc.c, yow.c [__GNU_LIBRARY__]: Use <string.h>.
5023         * emacsserver.c (main) [__GNU_LIBRARY__]: Use size_t for fromlen.
5024         * etags.c, fakemail.c, profile.c: Declare main as int, not void.
5026 1996-07-15  Andrew Innes  <andrewi@harlequin.co.uk>
5028         * ntlib.h: Correct return type of getwd.
5029         * ntlib.c (getwd): Correct return type.
5031 1996-07-02  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
5033         * emacsserver.c (main) [HAVE_SOCKETS]: Call rewind before writing
5034         to infile.
5036 1996-07-01  Andrew Innes  <andrewi@harlequin.co.uk>
5038         * makefile.nt: Remove all references to wakeup.
5040 1996-06-28  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5042         * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
5043         explicit, mutable, typename.
5045 1996-06-29  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5047         * emacsclient.c (main) [HAVE_SOCKETS]: Use two separate stdio
5048         streams, one for sending and one for reading the reply.
5050 1996-06-21  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5052         * Makefile.in (timer, timer.o, getdate.o, $(srcdir)/getdate.c)
5053         (wakeup): Target deleted.
5054         (UTILITIES): Delete wakeup and timer.
5056         * wakeup.c, timer.c, getdate.y, getdate.c: Files deleted.
5058 1996-06-11  Geoff Voelker  <voelker@cs.washington.edu>
5060         * etags.c (etags_getcwd) [DOS_NT]: Change conditional to MSDOS only.
5061         * makefile.nt (ETAGS_CFLAGS): Define HAVE_GETCWD macro.
5063 1996-06-06  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
5065         * etags.c (main): Copy cwd when appending slash.
5067 1996-05-25  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5069         * Version 19.31 released.
5071 1996-05-17  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5073         * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
5074         (Pascal_functions): Increase linecharno by the correct number of
5075         chars, inline the GET_NEW_LINE macro and delete its definition.
5077 1996-05-03  Andrew Innes  <andrewi@harlequin.co.uk>
5079         * makefile.nt (OBJDIR, BLD): Remove macro definitions.
5081 1996-05-03  Andrew Innes  <andrewi@harlequin.co.uk>
5083         * makefile.nt (LOCAL_FLAGS): Include path to NT shadow includes.
5084         (movemail.exe, fakemail.exe): Now built under Win32.o.
5086         * ntlib.c: Include ntlib.h.
5087         (nt_sleep): Rename to sleep.
5088         (getwd): Return directory.
5089         (getlogin, cuserid, getuid, setuid, getpwuid, getpass, fchown,
5090         sys_ctime, sys_fopen): New functions.
5092         * ntlib.h: New file.
5094 1996-04-29  Richard Stallman  <rms@delasyd.gnu.ai.mit.edu>
5096         * pop.c (SEND, RECV): Rename from send, recv.
5097         (pop_open, pop_trash): Make the trash_started code unconditional.
5098         (socket_connection): Delete casts to void.
5100 1996-04-28  Richard Stallman  <rms@delasyd.gnu.ai.mit.edu>
5102         * movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP):
5103         Definitions copied from lisp.h.
5105 1996-04-22  Andrew Innes  <andrewi@harlequin.co.uk>
5107         * fakemail.c [WINDOWSNT]: Include ntlib.h.
5109         * hexl.c [DOSNT]: Include fcntl.h.
5110         [WINDOWSNT]: Include io.h.
5111         (main) [MSDOS]: Change conditional to DOS_NT.
5113         * movemail.c (access, unlink) [WINDOWSNT]: Macros undefined.
5114         (fork, syswait, DISABLE_DIRECT_ACCESS) [WINDOWSNT]: Macros defined.
5115         [WINDOWSNT]: Include locking.h.
5116         (main): Update usage message.  Use IS_DIRECTORY_SEP.
5117         (main) [DISABLE_DIRECT_ACCESS]: Don't check access if defined.
5118         (main) [WINDOWSNT]: Invoke locking instead of flock.
5119         (main) [MAIL_USE_SYSTEM_LOCK && WINDOWSNT]: Emulate ftruncate.
5120         (main) [MAIL_USE_POP]: Pass password to popmail if used.
5121         Include winsock.h; don't include unix inet headers.
5122         (popmail): Add password argument and pass it to pop_open.
5123         Open output file in binary mode.
5125         * pop.c [WINDOWSNT]: Include winsock.h and ntlib.h.
5126         Macro SOCKET_ERROR undefined.
5127         Don't declare h_errno.
5128         [!WINDOWSNT]: Define macros recv and send.
5129         [!WINDOWSNT] (POP_SERVICE): Change to pop3.
5130         (pop_open) [WINDOWSNT]: Initialize trash_started.
5131         (have_winsock) [WINDOWSNT]: New variable.
5132         (socket_connection) [WINDOWSNT]: Initialize winsock.
5133         (socket_connection): Use closesocket instead of close.
5134         (getline): Use recv instead of read.
5135         (fullwrite): Use send instead of write.
5136         (pop_trash): Use closesocket instead of close.
5137         (pop_trash) [WINDOWSNT]: Cleanup winsock.
5138         Check if being called recursively by sendline.
5140         * pop.h (struct _popserver): New field trash_started.
5142         * wakeup.c [HAVE_CONFIG_H]: Only include config.h when defined.
5144 1996-04-14  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5146         * hexl.c (main) [DJGPP v2]: Don't change to binary for a tty.
5148 1996-04-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5150         * etags.c [WINDOWSNT]: Include io.h.
5152 1996-04-10  Geoff Voelker  <voelker@cs.washington.edu>
5154         * makefile.nt (CTAGSOBJ): Compile with regexp support.
5156 1996-04-09  Eli Zaretskii  <eliz@is.elta.co.il>
5158         * hexl.c [DJGPP v2]: Include io.h.
5159         (main) [DJGPP v2]: Switch standard streams to binary with setmode.
5161         * b2m.c (main) [MSDOS]: Switch standard streams to binary under
5162         DJGPP v2.
5164 1996-04-02  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5166         * etags.c (absolute_filename): Use absolutefn.
5168 1996-03-31  Eli Zaretskii  <eliz@is.elta.co.il>
5170         * etags.c (absolutefn) [DOS_NT]: Support Novell drives whose drive
5171         letter isn't an alphabetic character.
5172         (main) [DOS_NT]: Use binary mode on redirected `stdout'.
5173         (process_file) [DOS_NT]: Convert all slashes to forward style.
5174         (absolute_filename) [DOS_NT]: Emit error message for relative
5175         paths with a drive letter.
5176         (absolute_filename) [DOS_NT]: Handle absolute pathnames with
5177         DOS/NT drive letters which try to reference the parent of the root.
5178         (absolute_dirname) [DOS_NT]: Convert all slashes to forward style.
5180 1996-03-27  Geoff Voelker  <voelker@cs.washington.edu>
5182         * makefile.nt: Change uses of del to $(DEL).
5184 1996-03-22  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5186         * etags.c (just_read_file): Reset lineno and charno on entry.
5188 1996-03-15  Anders Lindgren  <andersl@csd.uu.se>
5190         * etags.c: Prolog language totally rewritten.
5191         (Prolog_functions): Rewritten from scratch.
5192         (skip_comment, prolog_getit): Removed.
5193         (prolog_skip_comment): New function, like old skip_comment.
5194         (prolog_pred, prolog_atom, prolog_white): New functions.
5195         (erlang_func, erlang_attributes): Forward declarations added.
5196         (erlang_atom): Check if backslash ends line inside quoted atom.
5198 1996-03-14  Francesco Potortì  <F.Potorti@cnuce.cnr.it>
5200         * etags.c (absolutefn): DOS_NT version corrected.
5201         (main): Append "/" to the dir name only if not already there.
5202         (print_help): Explain the absolute/relative file name issue.
5204 1996-03-08  Anders Lindgren  <andersl@csd.uu.se>
5206         * etags.c: New Language Erlang added.
5207         (Erlang_functions, erlang_func, erlang_attribute, erlang_atom)
5208         (erlang_white): New functions.
5209         (Erlang_suffixes): New suffix list.
5210         (lang_names): Erlang entry added.
5211         (prolog_getit): Accepts headers spanning several lines.
5212         Always name tags.
5213         (Prolog_functions): Remove incorrect compensation for
5214         newline characters.
5215         (readline_internal): Zero-terminate last line.
5217 1996-03-20  Mike Long  <mike.long@analog.com>
5219         * b2m.c (main): Initialize progname variable before using it.
5220         Quote `username' in From_ header.
5222 1996-03-18  Geoff Voelker  <voelker@cs.washington.edu>
5224         * ntlib.c (getpid): New function.
5226 1996-02-21  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
5228         * emacsclient.c (main, both definitions):
5229         Print a newline for normal termination.
5231 1996-02-21  Noah Friedman  <friedman@prep.ai.mit.edu>
5233         * tcp.c (main): Convert port to network byte order.
5235 1996-01-20  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5237         * pop.c (pop_retrieve, getline): Avoid type clashes.
5239 1996-01-19  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5241         * etags.c (enum sym_type, anonymous enum): Delete final comma.
5243 1996-01-15  Paul Eggert  <eggert@twinsun.com>
5245         * rcs2log (initialize_fullname): Add support for NIS+.
5246         (hostname): Fully qualify the default hostname with the domainname
5247         if the hostname lacks a `.'.
5249 1996-01-10  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5251         * etags.c (consider_token): Fix typo in expression.
5253 1996-01-04  Paul Eggert  <eggert@twinsun.com>
5255         * etags.c (substitute): Fix spelling in message.
5257 1996-01-03  George V. Reilly  <georger@microcrafts.com>
5259         * makefile.nt (etags, ctags): Compile with regexp support.
5260         (make-docfile, wakeup, etags, ctags, hexl): Ensure build
5261         subdirectory exists before compiling.
5263 1996-01-02  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5265         * emacsserver.c (main): Do chmod based on existing permission.
5267 1995-12-27  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5269         * Makefile.in (install): Turn on read/execute permission.
5271 1995-12-03  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
5273         * Makefile.in (LIB_STANDARD_LIBSRC): Use this instead of LIB_STANDARD.
5274         (LOADLIBES): Use LIB_STANDARD_LIBSRC.
5276 1995-12-01  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
5278         * Makefile.in (THIS_IS_MAKEFILE): Rename from THIS_IS_YMAKEFILE.
5280 1995-12-07  Francesco Potortì  <pot@cnuce.cnr.it>
5282         * etags.c (pfnote): Don't make a tag for ctags if there is no name.
5283         (getit, Asm_labels, Perl_functions, Pascal_functions, L_getit,
5284         get_scheme, prolog_getit): Name the tag in ctags mode.
5285         (pfnote): Truncate ctags lines to 50 chars, like it worked once.
5286         (Perl_interpreters): Accept "@PERL@" as an interpreter.
5287         (suggest_asking_for_help): New function.
5288         (main, get_language_from_name): Use suggest_asking_for_help.
5289         (main): Let get_language_from_name make language existence check.
5290         (streq, strneq): Check the arguments #if DEBUG.
5292 1995-12-06  Francesco Potortì  <pot@cnuce.cnr.it>
5294         * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
5295         (gperf): Add keywords for Objective C and GNU macros.
5296         (sym_type): Add values to account for Objective C and GNU macros.
5297         (begtk): The '@' character can start a token.
5298         (objdef, methodlen, objtag): New variables for Objective C.
5299         (consider_token, C_entries): Add code for Objective C.
5300         (plain_C_suffixes): Add .m and .lm for Objective C.
5301         (Yacc_suffixes): Add .ym for Objective yacc.
5302         (GROW_LINEBUFFER): New macro.
5303         (consider_token, C_entries, Pascal_functions): Use the new macro.
5304         (consider_token): Take one more argument.  Caller changed.
5305         (consider_token): Use the hashing function to spot GNU macros.
5306         (C_entries): Consider // as a comment start even in plain C for
5307         the sake of Objective C parsing.
5309 1995-12-04  Francesco Potortì  <pot@cnuce.cnr.it>
5311         * Makefile.in (ctags): Depend on etags only for simplicity;
5312         compile with regexp support enabled.
5314 1995-11-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5316         * Version 19.30 released.
5318 1995-11-22  Geoff Voelker  <voelker@cs.washington.edu>
5320         * makefile.nt (DOC, clean): Don't use switches to del not
5321         supported by Windows 95.
5323 1995-11-13  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5325         * Makefile.in (regex.o): Depend on ../src/config.h.
5327 1995-11-12  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5329         * Makefile.in (LIB_STANDARD): Extract this as in src/Makefile.in.
5330         (LOADLIBES): Use LIB_STANDARD.
5332 1995-11-07  Kevin Gallo  <kgallo@microsoft.com>
5334         * makefile.nt (DOC): Include strings from w32term.c, w32xfns.c,
5335         w32fns.c, w32faces.c, w32select.c, w32menu.c, w32reg.c; remove
5336         Windows 95 conditional.
5338 1995-11-06  Francesco Potortì  (pot@cnuce.cnr.it)
5340         * etags.c (get_lang_from_name, get_lang_from_interpreter)
5341         (get_lang_from_suffix): New functions.
5342         (get_language): Function deleted.
5343         (lang_entry): Two members added to struct.
5344         (lang_names): Reflect the new layout of lang_entry.
5345         (print_language_names, main, find_entries): Use the new functions.
5346         (find_entries): Look at the first line for #! if no language.
5347         (C_entries): Invalidate the token when funcdef is reset.
5348         (Perl_functions): New function.
5349         (lang_suffixes): .pl and .pm are Perl suffixes.
5351 1995-11-02  Francesco Potortì  (pot@cnuce.cnr.it)
5353         * etags.c (lowcase): Use the standard tolower function.
5354         (substitute): Remove some wrong and some useless code related with
5355         escape '\' character in regexp replacement string.
5356         (TEX_defenv): Add part, appendix, entry, index.  Remove typeout.
5357         (lang_suffixes): New suffixes: .hpp for C++; .f90 for Fortran;
5358         .bib, .ltx, .TeX for TeX (.bbl, .dtx removed); .ml for Lisp;
5359         .prolog for prolog (.pl removed).
5360         (massage_name, etags_getcwd): Use lowcase instead of tolower.
5361         (C_entries, find_entries): Add comments about memory leakage.
5362         (add_node): Dead code removed.
5364 1995-10-29  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5366         * Makefile.in (getdate.o, movemail.o): Specify -Demacs.
5367         (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Delete -Demacs.
5369 1995-08-30  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5371         * test-distrib.c: Add #undef for open, close, read, write.
5373 1995-08-23  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5375         * test-distrib.c [HAVE_CONFIG_H]: Include config.h.
5376         [! O_RDONLY]: Define it to zero.
5377         (main): Use O_RDONLY instead of explicit zero.
5379 1995-08-17  Francesco Potortì  (pot@cnuce.cnr.it)
5381         * etags.c (Pascal_functions): Close comment bug corrected.
5382         (add_node): Correctly compare node file names.
5383         (Pascal_functions): Correctly allocate and free memory for tline.
5384         (pfnote): Put the definition of fp in the innermost block.
5385         (NODE): `named' member removed.
5386         (pfnote, free_tree, put_entries, total_size_of_entries): Do not
5387         use the `named' member, check whether `name' is NULL instead.
5388         (pfnote): `named' argument removed, all callers changed.
5389         (getit, Asm_labels, Pascal_functions, L_getit, get_scheme,
5390         TeX_functions, TEX_getit, prolog_getit): Useless string allocation
5391         removed from pfnote call, some code cleanup.
5392         (relative_filename): Free temporary space allocated by concat.
5394 1995-08-16  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5396         * Makefile.in (getdate.c): New target.
5397         (getdate.o): Just compile getdate.c.
5399 1995-08-12  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5401         * fakemail.c (xrealloc): Change cast to match return type.
5403 1995-08-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5405         * fakemail.c (xmalloc, xrealloc): Use return-type long *.
5407 1995-08-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5409         * movemail.c (main): Fix previous change.
5410         Add error check for empty OUTNAME.
5412 1995-08-05  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5414         * movemail.c (main): Mention lock file name in error message.
5416 1995-07-30  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5418         * profile.c (gettimeofday): New function, defined if necessary.
5420 1995-07-18  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5422         * Makefile.in: Renamed from Makefile.in.in.
5423         (distclean): Delete Makefile.c, not Makefile.in.
5425 1995-07-17  Michael Shields  <shields@tembel.org>
5427         * Makefile.in.in (tags): Synonym for `TAGS'.
5429 1995-07-16  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5431         * Makefile.in.in (install, maybe-blessmail): Don't cd ..;
5432         configure has already set $(INSTALL) to the proper relative path.
5434 1995-07-08  Paul Eggert  <eggert@twinsun.com>
5436         * rcs2log (datearg): Separate date from time with comma, not space,
5437         to work around CVS 1.5 bug.
5438         (CVSROOT): Don't abort when unset if repository is absolute.
5440 1995-07-07  Paul Eggert  <eggert@twinsun.com>
5442         * rcs-checkin, rcs2log, vcdiff:
5443         Replace `#!/bin/sh' with `#! /bin/sh', for benefit of systems
5444         that interpret `#! /' as a 4-byte magic number.
5446 1995-06-29  Jonathan I. Kamens  <jik@cam.ov.com>
5448         * movemail.c (main) [MAIL_USE_POP]: When a user specifies a
5449         mailbox with "po:mailbox", the mailbox is everything after the
5450         "po:" prefix.
5452 1995-06-28  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5454         * emacsserver.c: Make all error messages start with `Error: '.
5455         (fatal_error, perror_1): New functions, use throughout.
5457 1995-06-28  Paul Eggert  <eggert@twinsun.com>
5459         * rcs2log (CVSROOT, repository):
5460         Allow remote repositories a la CVS 1.4.
5462 1995-06-27  Francesco Potortì  (pot@cnuce.cnr.it)
5464         * etags.c (plain_C_entries): New function.
5465         (lowcase): New macro.
5466         (tail, Fortran_functions, Pascal_functions): Use new macro lowcase.
5467         (lang_suffixes): New suffix ".pc" for Pro*C files.
5468         (consider_token): Don't tag all tokens beginning with DEFUN & Co..
5469         (tail): Look for the end of the token when comparing.
5470         (takeprec): Since now tail behaves differently, use strneq.
5472 1995-06-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5474         * movemail.c (main): Add newline in usage message.
5476 1995-06-21  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5478         * make-docfile.c (scan_file): Make sure it never looks at filename[-1].
5480 1995-06-21  Francesco Potortì  (pot@cnuce.cnr.it)
5482         * etags.c (find_entries): Rewind before rereading the input file.
5484 1995-06-20  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5486         * Version 19.29 released.
5488         * make-docfile.c (main) [MSDOS]: Do set _fmode.
5489         This undoes part of the previous change.
5491 1995-06-19  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5493         * make-docfile.c (main): On MSDOS, don't change stdout
5494         to binary, and insist on an -o option.
5496 1995-06-13  Geoff Voelker  <voelker@cs.washington.edu>
5498         * etags.c (process_file,absolute_filename): Handle filenames
5499         starting with a drive letter.
5501         * makefile.nt (install): Copy wakeup.exe properly.
5503 1995-06-08  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5505         * make-docfile.c [MSDOS]: #undef chdir.
5507 1995-06-04  Paul Eggert  <eggert@twinsun.com>
5509         * rcs2log (output_authors): Allow ':' in time zone,
5510         as per ISO 8601 and RCS 5.6.8 beta.
5512 1995-05-29  Francesco Potortì  (pot@cnuce.cnr.it)
5514         * etags.c (etags_getcwd): Undo the /bin/pwd change.  It may raise
5515         compatibility problems.
5517 1995-05-26  Richard Stallman  <rms@gnu.ai.mit.edu>
5519         * etags.c (etags_getcwd): Don't use #elif.
5520         Have just one function body.
5522 1995-05-25  Geoff Voelker  <voelker@cs.washington.edu>
5524         * makefile.nt (LIBS): Use BASE_LIBS.
5525         (make-docfile.exe,hexl.exe,wakeup.exe,etags.exe): Don't depend
5526         upon LIBS.
5527         (DOC): Use del instead of rm.
5528         (DOC) [WINDOWS95]: Use DOC.
5529         (clean): Handle MSVC aux files.
5530         (config.h,paths.h): Use $(CP) instead of cp.
5531         (config.h): Use $(CONFIG_H)
5532         (make-docfile.obj): Depend upon config.h.
5533         Clean up comments.
5535 1995-05-23  Francesco Potortì  (pot@cnuce.cnr.it)
5537         * etags.c (etags_getcwd): Use /bin/pwd instead of pwd because the
5538         former gives the true path even in the presence of simlinks.
5540 1995-05-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5542         * movemail.c (main): Increase lock timeout to five minutes.
5544 1995-05-06  Geoff Voelker  <voelker@cs.washington.edu>
5546         * makefile.nt (obj): Use .c files.
5548 1995-05-04  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5550         * make-docfile.c: Include config.h.
5551         (NO_SHORTNAMES): New definition.
5552         (xmalloc): Return long *.
5554         * etags.c (C_entries): Cast result of xrealloc.
5555         (xmalloc, xrealloc): Declare them to return long *.
5557         * b2m.c (xmalloc, xrealloc): Declare them long *.
5559         * movemail.c (xmalloc): Declare it to return long *.
5561 1995-04-30  Paul Eggert  <eggert@twinsun.com>
5563         * rcs2log (datearg): If rlog options are specified explicitly,
5564         omit the implicit '-d>DATE' option.
5565         (repository, rlog): Allow absolute paths to CVS repositories.
5566         Look only at the first line of CVS/Repository.
5568 1995-04-26  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5570         * Makefile.in.in (extraclean): Depend on maintainer-clean, not
5571         realclean.
5573 1995-04-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5575         * Makefile.in.in [REGEXP_IN_LIBC] (REGEXPOBJ, REGEXPDEPS):
5576         Alternative (empty) definitions.
5578 1995-04-18  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5580         * emacsclient.c (main): Add argv[0] to an error message.
5582 1995-04-13  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5584         * emacsclient.c (main): Improve error handling.
5585         * cvtmail.c (main, skip_to_lf): Improve error handling.
5586         (sysfail): New function.
5588         * b2m.c (main): Check for trailing ", " before trying to delete it.
5590 1995-04-12  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5592         * Makefile.in.in (all): Build test-distrib and make-docfile.
5594         * make-docfile.c (scan_c_file): At end, restore file name last char
5595         to its original value.
5597 1995-04-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5599         * emacsclient.c, emacsserver.c: Test NO_SOCKETS_IN_FILE_SYSTEM.
5601 1995-04-08  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5603         * Makefile.in.in (BASE_CFLAGS): Rename from ALLOCA_CFLAGS.
5604         (alloca.o, regex.o): Use BASE_CFLAGS.
5606 1995-04-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5608         * emacsclient.c [Berkeley sockets version] (main): Declare getcwd.
5610 1995-04-04  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5612         * Makefile.in.in (aixcc, aixcc.c): Targets deleted.
5613         (SOURCES, distclean): Remove obsolete references to aixcc.
5615 1995-04-02  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5617         * aixcc.lex: File deleted--surely obsolete now.
5619 1995-03-23  Paul Eggert  <eggert@twinsun.com>
5621         * rcs2log (output_authors): Replace /[/]/ by /[\/]/, for
5622         portability to mawk and nawk.
5624 1995-03-21  Paul Eggert  <eggert@twinsun.com>
5626         * rcs2log: Treat -u "login:fullname:mailaddr" as if it were
5627         -u "login<tab>fullname<tab>mailaddr".
5629 1995-03-21  Paul Eggert  <eggert@twinsun.com>
5631         * rcs2log: Add -u "login<tab>fullname<tab>mailaddr" option, which
5632         replaces the (now obsolescent) -n login fullname mailaddr option.
5633         Add -R option for recursive rlog.
5634         (AWK): New environment variable (default `awk') for awk program name.
5635         (output_authors, tab, loginFullnameMailaddrs, recursive): New vars.
5636         Quote authors and fullnames correctly.
5637         Don't omit path from repository root when logging CVS files.
5639 1995-03-15  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5641         * emacsclient.c, emacsserver.c: Use BSD sockets whenever available,
5642         even if HAVE_SYSVIPC.
5643         * emacsclient.c (main): Use getcwd if not BSD.
5645 1995-03-13  Francesco Potortì  (pot@cnuce.cnr.it)
5647         * etags.c (process_file): Free (filename) after using it.
5648         (readline_internal): Do not access the char before start of line.
5650 1995-02-22  Francesco Potortì  (pot@cnuce.cnr.it)
5652         * etags.c (C_entries): token_saved removed.  Initialize tok.valid and
5653         savetok.valid.  Mark token as valid when it is initialized.
5654         (make_tag): Make token only if token is valid and reset validity.
5655         (CNL_SAVE_DEFINEDEF): Test for savetok.valid instead of token_saved.
5656         (TOKEN): Add a new member: valid.
5658 1995-02-15  Francesco Potortì  (pot@cnuce.cnr.it)
5660         * etags.c (C_entries): Bug corrected in xrealloc of token_str.
5661         (main): Do not read twice the last filename in the stdin file list.
5663 1995-02-14  Francesco Potortì  (pot@cnuce.cnr.it)
5665         * etags.c (C_entries): Initialize the new members of TOKEN.
5666         (C_entries): Do not allocate a new space for each token found by
5667         consider_token.  Let make_tag do that instead.
5668         (make_tag): Since now TOKEN has memory of where it is taken from,
5669         this new macro substitutes both make_tag_from_new_lb and
5670         make_tag_from_oth_lb.  All callers changed.
5671         (TOKEN): Add linepos and buffer members.
5672         (main): Initialize token_str.
5673         (lang_extensions): Recognize .c++ and .h++ as C++ file suffixes.
5674         (token_str): New global variable used by C_entries.
5676 1995-02-07  Richard Stallman  <rms@pogo.gnu.ai.mit.edu>
5678         * Makefile.in.in (maintainer-clean): Rename from realclean.
5680 1995-02-01  Francesco Potortì  (pot@cnuce.cnr.it)
5682         * etags.c (pfnote): Initialize been_warned in the node.
5683         (C_entries): Remove a speed hack for the sake of clarity.
5685 1995-01-18  Francesco Potortì  (pot@cnuce.cnr.it)
5687         * etags.c (longopts, print_help, main): Use -I as abbreviation
5688         for the --ignore-indentation option.
5689         (main): Do not print an error message for unknown options.
5691 1995-01-12  Francesco Potortì  (pot@cnuce.cnr.it)
5693         * etags.c (FILEPOS, GET_CHARNO, GET_FILEPOS, max, LINENO): Deleted.
5694         (append_to_tagfile, typedefs, typedefs_and_cplusplus)
5695         (constantypedefs, update, vgrind_style, no_warnings)
5696         (cxref_style, cplusplus, noindentypedefs): Were int, now logical.
5697         (permit_duplicates): Was a var, now a #define.
5698         (filename_lb): Was global, now local to main.
5699         (main): Open the tag file when in cxref mode.
5700         Use a BUFSIZ size buffer for making the shell commands.
5701         Look at the return value from the system routine.
5702         Exit when cannot open the tag file.
5703         (process_file): Open the file and pass the FILE* to find_entries.
5704         (find_entries): Now void, because does not open the file itself.
5705         (pfnote): Recovering from lack of memory does not work.  Removed.
5706         Use savenstr and simplify the code.
5707         (free_tree): Only free the name space if node is named.
5708         (structtag): Now a pointer, not a fixed length array of chars.
5709         (consider_token): Don't take a token as argument.  Use savenstr
5710         when saving a tag in structtag.  Callers changed.
5711         (TOKEN): Structure changed.  Now used only in C_entries.
5712         (TOKEN_SAVED_P, SAVE_TOKEN, RESTORE_TOKEN): Deleted.
5713         (C_entries): nameb and savenameb deleted.  Use dinamic allocation.
5714         (pfcnt): Deleted.  Users updated.
5715         (getit, Asm_labels, Pascal_functions, L_getit, get_scheme)
5716         (TEX_getit, prolog_getit): Use dinamic allocation for storing
5717         the tag instead of a fixed size buffer.
5719 1995-01-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5721         * movemail.c (main): Skip past the colon in inname.
5723 1995-01-10  Francesco Potortì  (pot@cnuce.cnr.it)
5725         * etags.c (pfatal): New function.
5726         (main, etags_getcwd): Use pfatal.
5727         (etags_getcwd): Corrected another bug in the HAVE_GETCWD version.
5729 1995-01-10  Francesco Potortì  (pot@cnuce.cnr.it)
5731         * etags.c (Lang_function): Use void instead to declare the
5732         language functions, because many compilers are buggy.
5733         (etags_getcwd): Fix the previous fix on the #else branch.
5734         (readline_internal): Discard possible \r before \n here.
5735         (C_entries): Do not deal with \r here: undo previous fix.
5737 1995-01-09  Francesco Potortì  (pot@fly)
5739         * b2m.c (concat, xmalloc, xrealloc, readline, xnew): Four new
5740         functions and a macro that allow the program to work on input
5741         lines of whatever length.  Copied from etags.c.
5742         (fatal): Print a fatal error message and exit.
5743         (main): Use the new functions.  Fixed a bug that made a \037 char
5744         appear at the end of the output.
5746 1995-01-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5748         * etags.c (C_entries): Ignore carriage return at end of line.
5750 1994-12-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5752         * fakemail.c (xmalloc, xrealloc): Add casts.
5753         (add_field): Handle <...> and "..." syntax.
5754         (setup_files, get_keyword): Clean up parens and line breaks.
5755         (args_size): Likewise.
5757 1994-12-21  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
5759         * yow.c: Include program name in error messages.
5761 1994-12-21  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5763         * make-docfile.c (scan_lisp_file): Handle dynamic doc strings.
5764         (xmalloc, fatal, error): New functions.
5765         (progname): New variable.
5766         (main): Set progname.
5768 1994-12-05  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5770         * emacsclient.c, emacsserver.c [HAVE_SYSVIPC]: Include sys/utsname.h.
5771         (main): If socket/mqueue name is in home dir, add in the host name.
5772         Rename .emacs_server to .emacs-server....
5774 1994-12-04  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5776         * emacsclient.c [!HAVE_SYSVIPC] (main): Fix error message diction.
5778 1994-11-22  Francesco Potortì  (pot@cnuce.cnr.it)
5780         * etags.c (print_help): Print --regex usage for ctags also.
5781         (main): Use -h in addition to -H as abbreviation for --help.
5783 1994-11-16  Francesco Potortì  (pot@cnuce.cnr.it)
5785         * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
5786         is compiled if this is defined.  The new functions and variables
5787         added #ifdef ETAGS_REGEXP are not listed in this ChangeLog.
5788         [VMS]: All VMS specific code previously contained in
5789         etags-vmslib.c is now included here, modified for dealing with
5790         language and regex options intermixed with filenames.
5791         (header_file): Global variable deleted.
5792         (Lang_Function): New typedef.  All language parser functions
5793         changed to this new type.
5794         (string_numeric_p, substr, prestr): Functions deleted.
5795         (readline_internal): Does the job that readline did previously.
5796         (longopts): --language and --regex options added.
5797         (lang_names, lang_extensions, lang_func, print_language_names):
5798         New structures, variables and functions for choosing languages.
5799         (print_help): Help strings updated.  Calls print_language_names.
5800         (argument_type, ARGUMENT): Typedefs for dealing with language and
5801         regex options intermixed with filenames.
5802         (main): Change the way of dealing with arguments on the command
5803         line to deal with language and regex options intermixed with
5804         filenames.
5805         (get_language, default_C_entries, Cplusplus_entries,
5806         Cstar_entries, Yacc_entries, just_read_file): New functions.
5807         (find_entries): Use the new method for choosing the language.
5808         (Pascal_functions): Allow intermixing of comment styles.
5809         (prolog_getit, skip_comment): Rewritten for speed.
5810         (readline): Rewritten to deal with regexps.
5812 1994-11-16  Francesco Potortì  (pot@cnuce.cnr.it)
5814         * etags.c (<errno.h>): #include added.
5815         (etags_getcwd): Check return value from getcwd.
5817 1994-11-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5819         * profile.c (TV1, TV2): Use EMACS_TIME as type.
5820         (get_time): Use EMACS_SUB_TIME.
5822 1994-10-30  Geoff Voelker  <voelker@cs.washington.edu>
5824         * ntlib.c: New file.
5825         * makefile.nt: New file.
5827         * make-docfile.c (main) [WINDOWSNT]: Set _fmode and stdout to O_BINARY.
5828         [WINDOWSNT]: Include the NT headers.
5829         (READ_TEXT, READ_BINARY): Test DOS_NT, not MSDOS.
5831         * etags.c (main, etags_getcwd): Test DOS_NT instead of MSDOS.
5832         [WINDOWSNT]: Include some NT headers.
5834 1994-10-24  Jonathan I. Kamens  (jik@cam.ov.com)
5836         * pop.c (getline): When a search of already-read input for CRLF
5837         fails, store the fact that we've searched it and don't search it
5838         again after reading more data.
5840         * pop.c (getline): When determining whether or not it's necessary
5841         to grow the input buffer, take into account the null that's stored
5842         at the end of already-read input in the buffer.
5844 1994-10-21  Francesco Potortì  (pot@cnuce.cnr.it)
5846         * etags.c (prestr, substr): Return a logical type.
5847         (consider_token): Comment out "EXFUN".  Use "DEFUN" instead of "DEF".
5848         (consider_token): Set funcdef to fignore when a DEFUN is met.
5849         (C_entries): Now we can use Tom Hageman patch for extern "C".
5851 1994-10-20  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5853         * movemail.c: PopServer renamed to popserver throughout.
5855 1994-10-20  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
5857         * etags.c: Don't declare malloc, since we include config.h.
5858         * fakemail.c: Likewise.
5860 1994-10-19  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5862         * movemail.c: Don't declare malloc.
5864 1994-10-19  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
5866         * rcs-checkin: Use test -r instead of < to check readability, to
5867         avoid syntax error.
5869 1994-10-19  Jonathan I. Kamens  (jik@cam.ov.com)
5871         * pop.c: Only include ../src/config.h if HAVE_CONFIG_H is
5872         defined, and if HAVE_CONFIG_H isn't defined, define
5873         MAIL_USE_POP always (so that this file can be included in
5874         other programs besides emacs).
5876         * pop.c: Only declare h_errno if HAVE_H_ERRNO isn't defined or
5877         HAVE_CONFIG_H isn't defined.
5879         * pop.c (find_crlf, getline): Instead of using strstr, use a
5880         custom function for finding CRLF.
5881         (my_strstr): Function deleted.
5883 1994-10-17  Jonathan I. Kamens  (jik@cam.ov.com)
5885         * pop.c (getline): Fix a segfault because of passing a
5886         non-null-terminated string into strstr().  Fix from
5887         djm@va.pubnix.com (David J. MacKenzie).
5889         * pop.c: Don't include <string.h> and <strings.h>.
5891         * pop.c: Include <des.h> before <krb.h>, rather than after.
5892         They should be interchangeable, and indeed the inclusion is done in
5893         both orders in various files in the Kerberos 4 library sources,
5894         but djm@va.pubnix.com (David J. MacKenzie) reports that BSDI
5895         requires that <des.h> be included first, and I don't see any harm
5896         in changing the order.
5898         * pop.c: Include ../src/config.h, to get HAVE_STRING_H and
5899         STDC_HEADERS, if they're defined.  Undef open, read, write and
5900         close after including it.
5902 1994-10-18  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5904         * pop.c: Fix mismatch in conditionals.
5906         * make-docfile.c (main): Don't process one input file twice.
5907         Never use exit code > 1.
5909         * pop.c (open, close, read, write): Add #undefs.
5911         * pop.c: Don't declare malloc, realloc, free.
5912         Include ../src/config.h.
5913         Don't include string.h or strings.h.
5914         Include des.h before krb.h.
5915         Do declare my_strstr.
5916         (getline): Really use my_strstr.
5917         Leave one empty place in server->buffer,
5918         and put a null at the end of the data in it.
5920 1994-10-17  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
5922         * emacsserver.c [SYSV_IPC] (main): Catch SIGHUP as well.
5923         Don't call kill with pid 0.  Handle EINTR when receiving messages.
5925 1994-10-17  Karl Heuer  <kwzh@gnu.ai.mit.edu>
5927         * Makefile.in.in (regex.o): Use full path to find regex.c.
5929 1994-10-17  Francesco Potortì  (pot@fly.cnuce.cnr.it)
5931         * Makefile.in.in (etags): Add dependency on regex.o, link with it.
5932         (REGEXPOBJ, REGEXPDEPS, regex.o): Target and macros added.
5934 1994-10-12  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
5936         * Makefile.in.in (DONT_INSTALL): Remove make-path.
5937         (${archlibdir}): Use mkinstalldirs instead.
5939         * movemail.c: Make functions that return nothing void, not
5940         implicitly int.
5941         (main): Improve usage message.
5942         (error): Write to stderr, not stdout.
5944         * b2m.c, cvtmail.c, digest-doc.c, emacsclient.c, emacsserver.c:
5945         * etags.c, fakemail.c, hexl.c, make-docfile.c, profile.c, sorted-doc.c:
5946         * test-distrib.c, timer.c, wakeup.c, yow.c: Eliminate some -Wall
5947         warnings from unused variables and implicitly declared functions.
5949 1994-10-11  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5951         * Makefile.in.in (clean): rm DOC* and *.tab.[ch].
5952         (distclean): Not here.
5954         * Makefile.in.in (libexecdir): Rename from libdir.
5956 1994-10-11  Francesco Potortì  (pot@cnuce.cnr.it)
5958         * etags.c (C_entries): Name the #define's that are macros.
5960 1994-10-10  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
5962         * emacsserver.c [! SYSVIPC] (main): Fix uses of FD_* macros:
5963         fd_set arg is a pointer, descriptor arg comes first.
5965 1994-09-29  Francesco Potortì  (pot@cnuce.cnr.it)
5967         * etags.c (C_entries): Recognize typedef of ANSI style functions.
5968         (C_entries): Recognize #define inside a struct.
5969         (C_entries): ANSI tells that preprocessor commands do not have to
5970         start on the first column.
5971         (print_help): Documentation corrected for -d and -D.
5972         (white, endtk): ANSI tells the vertical tab is a separator.
5974 1994-09-24  Jonathan I. Kamens  (jik@gza-client1.aktis.com)
5976         * Makefile.in.in (MOVE_FLAGS, MOVE_LIBS): New variables.
5977         (pop.o, movemail.o): New targets.
5978         (movemail): Link in pop.o and movemail.o.  Use MOVE_LIBS, MOVE_FLAGS.
5980         * pop.c, pop.h: New files.
5982         * movemail.c: Improve POP code, move most of it into a separate file.
5983         (mbx_delimit_end, mbx_delimit_begin): Check for errors.
5984         (mbx_write): Check for errors and for From line.
5985         (pop_retr, popmail): Use subroutines in pop.c to do the real work.
5986         (get_errmsg, multiline, getline, putline, pop_stat, pop_command)
5987         (pop_init): Functions deleted.
5989 1994-09-23  Richard Stallman  <rms@churchy.gnu.ai.mit.edu>
5991         * make-path.c (touchy_mkdir): Make dir ugo+rx even if it isn't new.
5992         Rename path to dirname.
5994 1994-09-23  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
5996         * Makefile.in.in (UTILITIES):
5997         Remove test-distrib, make-docfile, make-path.
5998         (DONT_INSTALL): New variable--list those files here.
5999         (clean): Delete the files in DONT_INSTALL.
6001 1994-09-20  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6003         * b2m.c (from, labels, data): Use MAX_DATA_LEN as length.
6004         (main): Use fgets, not gets.
6006 1994-09-17  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6008         * timer.c: Don't declare malloc.
6010 1994-09-16  Karl Heuer  <kwzh@gnu.ai.mit.edu>
6012         * emacsserver.c (FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already
6013         defined, use simple 32-bit versions of these macros.
6014         (main) [HAVE_SOCKETS & !HAVE_SYSVIPC]: Use these macros.
6016 1994-09-16  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
6018         * etags.c (etags_getcwd): Use getcwd if available.
6020 1994-09-11  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6022         * Version 19.27 released.
6024 1994-09-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6026         * Version 19.26 released.
6028 1994-08-15  Paul Eggert  <eggert@twinsun.com>
6030         * rcs2log: Add support for CVS.
6031         Work with `rlog's that output ISO 8601 dates.
6033 1994-08-09  Lawrence R. Dodd  <dodd@roebling.poly.edu>
6035         * rcs2log: Use <> to delimit email address.
6037 1994-08-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6039         * emacsserver.c [SYSV_IPC] (main): Make a separate process
6040         so we can listen for multiple requests.
6042 1994-08-04  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6044         * movemail.c: Include config.h first thing.
6046 1994-08-01  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6048         * emacsserver.c (main): Add casts to avoid warnings.
6050 1994-07-29  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6052         * Makefile.in.in (${archlibdir}): Compare the proper dir
6053         before installing the scripts.
6055 1994-07-27  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6057         * emacsclient.c (main): New local var progname saves argv[0].
6059 1994-07-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6061         * emacsclient.c (main): Don't actually modify argv[0].
6062         Modify a copy instead.
6064 1994-07-25  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
6066         * profile.c (reset_watch, get_time): Use EMACS_GET_TIME.
6067         (tzp): Var deleted.
6069         * Makefile.in.in: Add #undef alloca.
6071 1994-07-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6073         * timer.c (xmalloc): New function.
6075 1994-07-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6077         * Makefile.in.in (ALLOCA_CFLAGS): New variable.
6078         (alloca.o): New target.
6080 1994-07-08  Dave Love  (d.love@dl.ac.uk)
6082         * etags.c (takeprec): Recognize `character*(*) function'.
6084 1994-07-08  Francesco Potortì  (pot@cnuce.cnr.it)
6086         * etags.c (main): Don't barf on obsolete -t and -T switches.
6087         (main): Print an explicative message when a switch is not known.
6089 1994-06-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6091         * hexl.c: Don't declare exit or perror.
6093         * emacsserver.c (main): Don't declare geteuid.
6094         Don't declare getenv if convex.
6096 1994-06-07  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6098         * Makefile.in.in (test-distrib): Use ALL_CFLAGS.
6100 1994-06-03  Francesco Potortì  (pot@fly.cnuce.cnr.it)
6102         * etags.c (absolute_filename): Remove infinite loop bug when
6103         accessing files in directories whose name begins with a dot.
6105 1994-06-03  Francesco Potortì  (pot@fly.cnuce.cnr.it)
6107         * etags.c (etags_getcwd): Delete the trailing newline from cwd.
6109 1994-06-01  Morten Welinder  (terra@diku.dk)
6111         * yow.c (rootrelativepath) [MSDOS]: Define, expanding to dynamic
6112         location of data directory.
6114 1994-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6116         * Version 19.25 released.
6118 1994-05-28  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6120         * Makefile.in.in (distclean): Delete Makefile, Makefile.in, blessmail.
6122 1994-05-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6124         * Makefile.in.in (blessmail): Don't depend on ../src/emacs.
6126 1994-05-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6128         * Version 19.24 released.
6130 1994-05-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6132         * make-docfile.c (write_c_args): Put `default' in upper case.
6134 1994-05-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6136         * etags.c (etags_getcwd): Cast result of popen.
6137         (popen): Declaration deleted.
6139 1994-05-17  Karl Heuer  (kwzh@gnu.ai.mit.edu)
6141         * etags.c [!MSDOS]: Declare popen.
6143 1994-05-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6145         * b2m.c (main): Avoid crash if argc is 1.
6147 1994-05-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6149         * Version 19.23 released.
6151         * Makefile.in.in (blessmail): Specify directory for blessmail.el.
6153 1994-05-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6155         * Makefile.in.in (maybe-blessmail): Mention bless-mail is in lib-src.
6157 1994-05-05  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
6159         * Makefile.in.in: Fix out of date comment.
6161 1994-05-05  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6163         * Makefile.in.in: Put in a separator for where to start cpp procssing.
6164         Move all autoconf substitutions above that point.
6165         Above that point, use Make-style comments.
6166         This goes with changes in ../configure.in.
6168 1994-05-03  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6170         * Makefile.in.in (maybe-blessmail): New target to print the blessmail
6171         warning message.
6172         (${archlibdir}): Don't do it here.  Don't depend on blessmail.
6174 1994-05-02  Karl Heuer  (kwzh@gnu.ai.mit.edu)
6176         * Makefile.in.in (${archlibdir}): Be lenient about wc output format.
6178 1994-05-01  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6180         * Makefile.in.in (${archlibdir}): Don't run blessmail; instead
6181         print advice to run it, if it has anything significant to do.
6182         And only if MOVEMAIL_NEEDS_BLESSING.
6183         (blessmail): Use emacs, not temacs.
6184         (configuration): Rename from configname.
6186 1994-04-30  Morten Welinder  (terra@diku.dk)
6188         * etags.c (find_entries): Treat `*.cpp' as C++ files.
6190 1994-04-30  Morten Welinder  (terra@diku.dk)
6192         * etags.c [MSDOS]: #include <sys/param.h> for the following.
6193         [MSDOS] (etags_getcwd): Define simple MSDOS version without spawning
6194         a shell.
6196 1994-04-29  Morten Welinder  (terra@diku.dk)
6198         * hexl.c [MSDOS]: Don't define proto type for exit.
6200 1994-04-28  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6202         * b2m.c: Don't include string.h or strings.h.
6204 1994-04-27  Karl Heuer  (kwzh@gnu.ai.mit.edu)
6206         * Makefile.in.in: C_SWITCH_SYSTEM and C_SWITCH_MACHINE are now cpp
6207         symbols, not make variables.
6209 1994-04-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6211         * Makefile.in.in (etags, ctags): Make VERSION a string constant.
6212         * etags.c (print_version): Print VERSION as a string.
6214 1994-04-20  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6216         * fakemail.c (readline): Fix updating of p when buffer grows.
6218 1994-04-20  Karl Heuer  (kwzh@gnu.ai.mit.edu)
6220         * Makefile.in.in (blessmail): New target.
6221         ${archlibdir}: Use blessmail when installing movemail.
6223 1994-04-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6225         * fakemail.c (readline): When extending the buffer,
6226         calculate end afresh using the new size.
6228 1994-04-18  Francesco Potortì  (pot@fly.cnuce.cnr.it)
6230         * etags.c (main, print_help): Eliminate the -F option.
6232 1994-04-18  Francesco Potortì  (pot@fly.cnuce.cnr.it)
6234         * etags.c (absolute_filename): Compare against '\0' instead of NULL.
6236 1994-04-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6238         * Makefile.in.in: Renamed from Makefile.in.
6239         Makefile.in is now generated from it, and then preprocessed.
6240         Change comments to C syntax.
6241         Include config.h.
6242         (LIBS_SYSTEM, LIBS_MACHINE): Define as empty if not defined.
6243         (LOADLIBES): Define from LIBS_SYSTEM and LIBS_MACHINE.
6245 1994-04-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6247         * movemail.c [HAVE_UNISTD_H]: Include unistd.h.
6249 1994-04-12  Francesco Potortì  (pot@fly.cnuce.cnr.it)
6251         * etags.c (etags_getcwd): Initialize bufsize.
6253 1994-04-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6255         * profile.c (gettimeofday): If system doesn't have this, define it
6256         to give a fatal error.
6258 1994-04-11  Karl Heuer  (kwzh@gnu.ai.mit.edu)
6260         * movemail.c (main): Use setuid, not seteuid.
6262 1994-04-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6264         * etags.c: #undef static.
6266 1994-04-08  Francesco Potortì  (pot@fly.cnuce.cnr.it)
6268         * etags.c (outf, outfiledir): Rename to tagf, tagfiledir.
6269         (PF_funcs, Asm_funcs, L_funcs, PAS_funcs, TEX_funcs)
6270         (Scheme_funcs, prolog_funcs): Rename to Fortran_functions,
6271         Asm_labels, Lisp_functions, Pascal_functions, Scheme_functions,
6272         TeX_functions, Prolog_functions.
6273         (inf): No more a global variable.
6274         (C_entries): Take 2nd parameter `inf' instead of using the global one.
6275         (find_entries): Add the cp1 var for optimization.
6276         (find_entries): Add more suffixes for assembler files.
6277         (Asm_funcs): Now finds labels even without an ending colon.
6279 1994-03-30  Francesco Potortì  (pot@fly.cnuce.cnr.it)
6281         * etags.c (main): Use etags_getcwd for compatibility.
6282         (etags_getcwd): New function.
6284 1994-03-25  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6286         * Makefile.in (etags, ctags): Pass -D for VERSION.
6288 1994-03-25  Francesco Potortì  (pot@cnuce.cnr.it)
6290         * etags.c (emacs_tags_format, ETAGS): Removed.  Use CTAGS instead.
6291         (main): Don't allow the use of -t and -T in etags mode.
6292         (print_help): Don't show options enabled by default.
6293         (print_version): Show the emacs version number if VERSION is #defined.
6294         (find_entries): Add "ss" as suffix for Chez Scheme.
6296 1994-03-23  Francesco Potortì  (pot@cnuce.cnr.it)
6298         * etags.c (cwd, outfiledir): Vars added.
6299         (relative_filename, absolute_filename, absolute_dirname):
6300         functions added to compute filenames in tags files.
6301         (process_file): Filenames in tags file are relative to the
6302         directory where the tags file is (useful with the -o option).
6303         (main): Initialize the outfiledir var.
6304         (TYPEDST): Add the `tignore' value.
6305         (C_entries): Corrected various small bugs.
6307 1994-03-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6309         * Makefile.in (UTILITIES): `env' deleted.
6310         (env): Target deleted.
6311         * env.c: File deleted.
6313 1994-03-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6315         * Makefile.in (install, ${archlibdir}): Switch back to ..
6316         before running INSTALL_PROGRAM.
6318 1994-03-14  Francesco Potortì  (pot@cnuce.cnr.it)
6320         * etags.c (TYPEDST): Add the `tignore' value.
6321         (C_entries): Corrected various bugs, now correctly parses the
6322         `extern "C" {' construction (patch by Tom R.Hageman).
6324 1994-03-05  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6326         * b2m.c: Use <...> to include config.h.
6327         Don't include stdlib.h.
6329 1994-03-03  Heiko Muenkel  (muenkel@tnt.uni-hannover.de)
6331         * b2m.c (main): Change delimiter from "^L" to "^_^L".
6332         Allow for text following "BABYL OPTIONS:".
6333         Add --help option.  Use argv[0] in error messages.
6335 1994-03-01  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6337         * emacsclient.c (main) [HAVE_SYSVIPC]:
6338         Make msgp->mtext longer if necessary.
6339         On HPUX, error if it's more than 512 chars.
6341 1994-02-26  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
6343         * etags-vmslib.c: Use GPL.
6344         * emacstool.c: Use GPL.
6345         * fakemail.c: Update GPL.
6347         * make-path.c (main): Return 1 on error, not -1.
6348         Update GPL.
6350         * cvtmail.c: Declare malloc, realloc, xmalloc, xrealloc, getenv.
6351         (xmalloc, xrealloc): Return char *, not int.
6352         (error): Write to stderr, not stdout.
6353         Update GPL.
6355 1994-02-23  Karl Heuer  (kwzh@gnu.ai.mit.edu)
6357         * profile.c (main, get_time): Don't crash on invalid input.
6359 1994-02-22  Karl Heuer  (kwzh@gnu.ai.mit.edu)
6361         * profile.c (get_time): Simplify; avoid calling index.
6362         (main): Exit on EOF.
6364 1994-02-17  Francesco Potortì  (pot@cnuce.cnr.it)
6366         * etags.c (--absolute-pathnames): Option removed.
6368 1994-02-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6370         * fakemail.c (put_line): Don't break the line if it all fits.
6372 1994-02-14  Francesco Potortì  (pot@fly)
6374         * etags.c (absolute_pathnames, cwd): Add global vars.
6375         (longopts, print_help, main, process_file): Put absolute filenames
6376         in the tag file if the -A --absolute-pathnames option is used.
6377         (print_help): Alphabetically order the options.
6378         (malloc, realloc, strcpy, strncpy, strcmp): Remove extern declar.
6380 1994-02-09  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6382         * Makefile.in (C_SWITCH_MACHINE): Get this from autoconf.
6383         (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use C_SWITCH_MACHINE.
6385 1994-02-07  Christian Lynbech  (lynbech@avignon)
6387         * emacsserver.c (main) [HAVE_SYSVIPC]: Reverse test of fork value.
6389 1994-02-04  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6391         * Makefile.in (UTILITIES): Mention profile.
6392         (profile): New target.
6394         * profile.c: New file.
6396 1994-01-16  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
6398         * make-docfile.c: Make the argument list output look more like the
6399         Lisp docstrings do.
6400         (write_c_args): Take new arg FUNC.  Make output
6401         look like lisp call prototypes: (function ARG1 ARG2), upcasing args.
6402         (scan_c_file): Pass BUF to write_c_args for FUNC arg.
6404 1994-01-14  Francesco Potortì  (pot@cnuce.cnr.it)
6406         * etags.c (stab_entry, stab_create, stab_find, stab_search,
6407         stab_type, add_keyword, C_reate_stab, C_create_stabs): Deleted.
6408         Use gperf generated hash table instead of linked list.
6409         (C_stab_entry, hash, in_word_set, get_C_stab, C_symtype): Added.
6410         Mostly code generated by gperf.
6411         (consider_token): Remove unused parameter `lp'.
6412         (PF_funcs, getit): Allow subroutine and similar declarations
6413         to span multiple lines.
6414         (C_entries): Check for newline if inchar to avoid bus errors.
6415         (process_file, find_entries): Distinguish among nonexistent
6416         and not regular file.
6418 1994-01-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6420         * timer.c: Include errno.h; don't include fasync.h.
6421         (schedule): Don't return a value.
6422         (sigcatch): Reestablish the handler first.
6423         (getevent): Always call notify at the end.
6424         (notify): Defer alarms around the whole body of function.
6426 1994-01-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6428         * timer.c (main): Don't request SIGIO, and don't handle it.
6429         Loop calling getevent.
6430         (sigcatch): Delete code to handle SIGIO.
6431         if defer_alarms is set, don't call notify, just set alarm_deferred.
6432         (getevent): Use read, not getchar.  Handle EINTR and EAGAIN.
6433         Set defer_alarms around realloc and schedule.
6434         If alarm_deferred gets set, call notify.
6435         Likewise if this event is the only pending event.
6436         Make buf and buf_size global variables.
6437         Don't malloc buf if it is already non-zero.
6438         (schedule): Just exit if run out of memory.
6439         Return the number of events.
6440         (signal) [_CX_UX]: Add #undef.
6442 1994-01-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6444         * timer.c [USG] (SIGIO): Define as SIGPOLL.
6445         (main) [USG]: Do ioctl to enable SIGPOLL.
6447 1994-01-08  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
6449         * timer.c: Don't declare sys_errlist; declare strerror instead.
6450         (schedule, main): Call strerror instead of using sys_errlist.
6451         * movemail.c (get_errmsg, pfatal_with_name, pfatal_and_delete):
6452         Call strerror instead of using sys_errlist.
6453         * env.c (main): Call strerror instead of using sys_errlist.
6454         * emacsclient.c: Don't declare sys_errlist; declare strerror instead.
6455         (main): Call strerror instead of using sys_errlist.
6456         * emacsclient.c [! HAVE_STRERROR] (strerror): Define the function.
6457         * env.c [! HAVE_STRERROR] (strerror): Likewise.
6458         * timer.c [! HAVE_STRERROR] (strerror): Likewise.
6459         * movemail.c [! HAVE_STRERROR] (strerror): Likewise.
6461 1994-01-05  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6463         * hexl.c: Fix up whitespace.  Get rid of spurious casts to void.
6465         * movemail.c (malloc): Don't declare it.
6466         (xmalloc): Cast result of malloc.
6467         (strcpy): Don't declare it.
6469 1993-11-14  Morten Welinder  (terra@diku.dk)
6471         * hexl.c [MSDOS]: Use binary file modes for non-text side of pipe.
6472         (main): Use fclose to close file opened by fopen.
6474         * fakemail.c (main) [MSDOS]: Dummy stub just to make the file compile.
6476         * movemail.c [MSDOS]: #undef `access'.
6478         * b2m.c (main) [MSDOS]: Open all files as binary.
6479         * etags.c (main) [MSDOS]: Open all files as binary.
6481         * make-docfile.c [MSDOS]: Use text/binary mode as appropriate.
6482         (scan_c_file, scan_lisp_file): Extra parameter for the mode to open
6483         with.
6485 1994-01-02  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6487         * Makefile.in (ALL_CFLAGS): Include LDFLAGS.
6488         Use ALL_CFLAGS in all the rules that compile and link with one cmd.
6489         (LINK_CFLAGS): New variable.
6490         (timer): Use LINK_CFLAGS.
6492 1993-12-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6494         * movemail.c: Include syswait.h.
6495         Fork a subprocess and use it to copy the mail file.
6497 1993-12-07  Richard Stallman  (rms@srarc2)
6499         * make-docfile.c (scan_lisp_file): Don't add newline at end of string.
6501 1993-12-04  Richard Stallman  (rms@srarc2)
6503         * movemail.c (main): When making tempname, cast result of xmalloc.
6504         Include room for EXXXXXX in the size.
6505         Don't use result of strcpy.
6507 1993-12-03  Paul Eggert  (eggert@twinsun.com)
6509         * vcdiff: Add --brief option.
6511 1993-12-02  Richard Stallman  (rms@srarc2)
6513         * Makefile.in (${archlibdir}, install): Use $(INSTALL_PROGRAM)
6514         for all executables and scripts.
6516 1993-11-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6518         * Version 19.22 released.
6520 1993-11-26  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6522         * Makefile.in (mostlyclean): Make it distinct from clean.
6524 1993-11-24  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6526         * Makefile.in (${archlibdir}): Don't do chown or chgrp.
6528 1993-11-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6530         * Version 19.21 released.
6532         * Makefile.in (install): Don't change mode or group when installing.
6534         * etags.c (FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
6536 1993-11-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6538         * make-docfile.c (read_c_string): For "", concatenate the two strings.
6540         * movemail.c (main): Fix error message text.
6542 1993-11-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6544         * Version 19.20 released.
6546 1993-11-08  Tom Hageman  (tom@basil.icce.rug.nl)
6548         * etags.c (C_entries): Keep track of ()-parenthesis level so that
6549         functions returning a pointer to a function, a la `signal', can be
6550         parsed.  This also required new state `fstartlist' to `FUNCST'.
6551         (SAVE_TOKEN, RESTORE_TOKEN, TOKEN_SAVED_P): 1-deep token save stack.
6552         (C_entries, CNL): Use it to isolate preprocessor directive processing
6553         from the other state engines.
6554         (begtk): Add '~', for C++ class destructors.
6556 1993-11-02  Francesco Potortì  (pot@cnuce.cnr.it)
6558         * etags.c (consider_token): Remove unused variable firsttok.
6559         (prolog_getit): Call pfnote with the right number of arguments.
6561 1993-10-19  Paul Eggert  (eggert@twinsun.com)
6563         * rcs2log (printlogline): Don't generate lines containing only
6564         white space.
6566 1993-10-04  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
6568         * Makefile.in (${archlibdir}):
6569         Install ${SCRIPTS} from ${srcdir}, not cwd.
6571 1993-10-03  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
6573         * Makefile.in: Fixed typos or brainos of whoever thought `@' was
6574         the comment character.
6576 1993-10-01  Francesco Potortì  (pot@cnuce.cnr.it)
6578         * etags.c (process_file): Dead code removed.
6579         (S_ISREG): #define it using S_IFREG if not defined.
6580         (process_file): Regular files have nothing to do with symlinks.
6582 1993-09-28  Brian J. Fox  (bfox@ai.mit.edu)
6584         * Makefile.in (${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not
6585         from current directory.  Only chmod and chgrp files that we
6586         installed, which excludes ${INSTALLABLE_SCRIPTS}.  They go in
6587         ${bindir}.
6588         (INSTALLFLAGS): Delete definition, since it is an unused variable
6589         now.
6591 1993-09-27  Brian J. Fox  (bfox@ai.mit.edu)
6593         * Makefile.in (INSTALL, INSTALL_PROGRAM, INSTALL_DATA):
6594         Let configure figure out the correct values for these variables.
6596 1993-09-14  Brian J. Fox  (bfox@ai.mit.edu)
6598         * Makefile.in (archlibdir): Only install executables internally
6599         used by emacs; don't install bindir binaries here.
6601 1993-09-24  Paul Eggert  (eggert@twinsun.com)
6603         * rcs2log: Add -h, -n, -r options.
6604         By default, look for *,v files as well as RCS/*,v files.
6605         Use $TMPDIR (default /tmp) instead of /tmp.
6607 1993-09-20  Francesco Potortì  (pot@fly)
6609         * etags.c (C_entries): is_func is initialized here instead of in
6610         consider_token for the sake of the yacc rules section.
6611         (C_entries): Now class, struct, enum, union and typedef produce
6612         named tags.
6614 1993-09-11  Roland McGrath  (roland@baalperazim.gnu.ai.mit.edu)
6616         * yow.c: Include <src/paths.h>, instead of "src/paths.h".
6618 1993-09-10  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
6620         * Makefile.in: Support configuring in a different directory when
6621         ${srcdir} has already been configured.
6622         (ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir}
6623         -I${srcdir}/../src.
6624         (b2m, movemail, fakemail, env, emacsserver, emacsclient,
6625         getdate.o, timer.o, timer): Remove `-I${srcdir}/../src', since it
6626         is already in CPP_FLAGS.
6627         * etags.c, emacsclient.c, wakeup.c, timer.c, b2m.c, fakemail.c,
6628         movemail.c, emacsserver.c: Include <config.h> instead of "config.h".
6630 1993-08-25  Paul Eggert  (eggert@twinsun.com)
6632         * rcs2log: Change /{/ to /\{/ for Posix ERE compatibility;
6633         otherwise, HP awk complains.
6635         * vcdiff: Append /usr/ccs/bin and /usr/sccs to PATH, since these
6636         are common hangouts for SCCS commands.
6638 1993-08-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6640         * Version 19.19 released.
6642 1993-08-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6644         * Makefile.in (make-path): Dep on config.h.
6646 1993-08-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6648         * b2m.c (TRUE, FALSE): Don't define if already defined.
6650 1993-08-09  Paul Eggert  (eggert@twinsun.com)
6652         * rcs2log (awkscript):
6653         Some sites put comma-separated junk after the fullname.
6654         Remove it, but leave "Bill Gates, Jr" alone.
6655         Remove the junk from fullnames like "0000-Admin(0000)".
6657 1993-08-08  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6659         * Version 19.18 released.
6661 1993-08-04  Francesco Potortì  (pot@spiff.gnu.ai.mit.edu)
6663         * etags.c (L_isdef, L_isquote, L_getit): Small optimizations.
6664         (L_funcs): The (foo::defmumble stuff now should work.
6665         (consider_token): Function returned random value--corrected.
6666         (C_entries): Corrected == versus = typo.
6668 1993-08-01  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
6670         * etags.c (put_entries): For NODE->rewritten, put pattern before
6671         \177 and name after, not vice versa.
6673 1993-08-01  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6675         * timer.c (main): Generate a SIGIO as soon as we've initialized.
6677 1993-07-30  Francesco Potortì  (pot@cnuce.cnr.it)
6679         * etags.c (FINCST): Add the fignore status.  Means we are
6680         after the parameter list and before the open curly brace.
6681         Allows correct parsing of C++ constructors.
6682         (C_entries, consider_token): Make use of fignore.
6683         (consider_token): Reset funcdef when next_token_is_func: when in
6684         ctags mode makes DEFVAR and others work better.
6685         (L_isquote): Function that recognizes the "(quote" string.
6686         (L_getit): Ignore quoting via "'" or "(quote".  Useful for defalias.
6688 1993-07-29  Paul Eggert  (eggert@twinsun.com)
6690         * rcs-checkin: Don't check whether a file is readable until we have
6691         decided not to ignore it.
6693 1993-07-20  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6695         * Makefile.in (etags): Depend on ../src/config.h.
6697         * emacsserver.c: Include types.h before file.h.
6699 1993-07-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6701         * Makefile.in (install): Use .n, not .new, for temporary filenames.
6703 1993-07-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6705         * Version 19.17 released.
6707 1993-07-15  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
6709         * etags.c (print_help): Break up the very long strings containing
6710         the help message into shorter strings, to placate chintzy C
6711         compilers which can't handle strings that long.
6713         * wakeup.c: Use CPP tangle from autoconf manual to #include the
6714         correct combination of <time.h> and <sys/time.h>.
6716 1993-07-08  Francesco Potortì  (pot@cnuce.cnr.it)
6718         * etags.c (alloca): Remove all references to it.
6719         (main): Now calls xnew instead of alloca for portability.
6720         (../src/config.h): Included only if HAVE_CONFIG_H.
6721         (const): Void definition removed--config.h takes care of it.
6723 1993-07-08  Francesco Potortì  (pot@cnuce.cnr.it)
6725         * etags.c (consider_token): Was `==', now is `='.
6726         (consider_token): DEFUNs now treated like funcs in ctags mode.
6728         * etags.c (LEVEL_OK_FOR_FUNCDEF): Removed.
6729         (C_entries): Optimized the test that used LEVEL_OK_FOR_FUNCDEF.
6730         (C_entries): Remove a piece of useless code.
6731         (C_entries): Making typedef tags is delayed until a semicolon
6732         is met.  This handles "typedef int X, Y, Z;" correctly.
6734 1993-07-06  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
6736         * Version 19.16 released.
6738         * b2m.c: #include <sys/types.h>.
6739         (ltoday): Declare this to be time_t.
6741 1993-06-30  Paul Eggert  (eggert@twinsun.com)
6743         * vcdiff: Add -q option.
6745 1993-06-29  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6747         * etags.c: #include "config.h" and the alloca CPP tangle before
6748         #including the system headers and getopt.h.  AIX requires the
6749         #pragma to come before any actual C code.
6751 1993-06-21  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6753         * Makefile.in (ctags): Depend on etags, so that parallel makes
6754         don't write etags.o files on top of each other.
6756 1993-06-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6758         * version 19.15 released.
6760 1993-06-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6762         * etags.c (add_node): Move var last_node to file scope.
6764 1993-06-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6766         * Version 19.14 released.
6768 1993-06-16  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6770         Bring mumbleclean targets into conformance with GNU coding standards.
6771         * Makefile.in (distclean): Call clean to do most of the work.
6772         Delete aixcc.c and TAGS.
6773         (realclean): Just call distclean.
6775         * Makefile.in: Remember, spaces are not tabs.
6777 1993-06-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6779         * Makefile.in (CPP_CFLAGS): New variable.
6780         Use it instead of ALL_CFLAGS when compiling a .c file.
6781         (getopt.o, getopt1.o): Add explicit compilation commands.
6783 1993-06-10  Mark D. Baushke  (mdb@cisco.com)
6785         * etags.c: Reinstate old -f option as an alias for -o for
6786         installed base uses.
6788 1993-06-09  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6790         * emacsserver.c (main): When we're passing a `struct sockaddr_un'
6791         to bind or accept, cast the pointer, to avoid warnings on systems
6792         which declare prototypes for this.
6793         * emacsclient.c (main): Same.
6795         * Makefile.in (YACC): New variable, to be set by top-level Makefile.
6797 1993-06-08  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6799         * Version 19.13 released.
6801         * wakeup.c: Include sys/types.h, too; I think that's where time_t
6802         comes from, not sys/time.h.
6804 1993-06-02  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6806         * wakeup.c: Include sys/time.h.
6808         * etags.c: #undef static.
6810         * Version 19.12 released.
6812         * Makefile.in (all): Exclude INSTALLABLE_SCRIPTS and SCRIPTS from deps.
6814 1993-06-01  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6816         * Version 19.11 released.
6818         * timer.c [LINUX]: #undef signal.
6819         * emacsserver.c: #undef signal.
6821 1993-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6823         * wakeup.c (main): Make when a time_t.
6825 1993-05-30  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6827         * Makefile.in (${archlibdir}): Use `(cd foo && pwd)' instead of
6828         `(cd foo ; pwd)' to get the canonical name of a directory; cd
6829         might fail, and have pwd print out the current directory.
6831         * movemail.c [MAIL_USE_POP] (main): Don't use non-portable
6832         string-handling functions.
6834 1993-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6836         * Version 19.10 released.
6838 1993-05-29  Paul Eggert  (eggert@twinsun.com)
6840         * rcs2log: When given no file arguments, inspect RCS/.* as well
6841         as RCS/*.  Don't report an error if RCS is empty or nonexistent.
6843 1993-05-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6845         * Makefile.in (timer): Link with $(LOADLIBES).
6847 1993-05-28  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6849         * fakemail.c (put_line): Don't output \n\t unless more text follows.
6851 1993-05-28  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
6853         * etags.c: Replace the CPP tangle for alloca with the one from the
6854         autoconf documentation, since that's working elsewhere.
6856 1993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
6858         * Makefile.in (ALL_CFLAGS): Add "-I.", so the system and machine
6859         description files can find their ancestors.
6861 1993-05-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6863         * Makefile.in (install): Get the scripts from ${srcdir},
6864         unlike the executables.
6865         (ALL_CFLAGS): Add -I../src.
6867 1993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
6869         * Version 19.9 released.
6871 1993-05-26  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6873         * Makefile.in (install): Do install the programs listed in
6874         INSTALLABLE_SCRIPTS.  Make the renaming loop use INSTALLABLES and
6875         INSTALLABLE_SCRIPTS, instead of writing the programs out.
6877         * Makefile.in (ALL_CFLAGS): Include -I${srcdir}.
6878         (getopt.o, getopt1.c): Use ${srcdir} as appropriate.
6880 1993-05-25  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6882         * etags.c: Include ../src/config.h.
6884         * Makefile.in (install): Don't handle INSTALLABLE_SCRIPTS
6885         in first loop.  Delete files from bindir before installing new ones.
6886         (ALL_CFLAGS): Use ${srcdir} to find .../src dir.
6888 1993-05-24  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6890         * Version 19.8 released.
6892         * make-docfile.c: Doc fix.
6894 1993-05-24  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6896         * tcp.c: Fix comment syntax at top of file.
6897         (main): Don't call htons with the port number.
6899 1993-05-24  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6901         * Makefile.in (timer.o, sorted-doc.c): Link with alloca.o, if it's
6902         appropriate.
6904         * Makefile.in (install): Refer to the variables INSTALLABLES and
6905         INSTALLABLE_SCRIPTS, instead of writing them out.
6907 1993-05-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6909         * make-path.c (main): Return 0.
6911 1993-05-22  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
6913         * Version 19.7 released.
6915 1993-05-22  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6917         * make-docfile.c (scan_lisp_file): Recognize defalias like fset.
6919 1993-05-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
6921         * tcp.c: New file.
6923 1993-05-18  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
6925         * Makefile.in (.c.o): Make the rule start with a tab, not spaces.
6927 1993-05-15  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
6929         * timer.c (notify): Don't call sighold or sigrelse; they're USG
6930         only.  We should really fix this later, but let's just make it
6931         compile for now.
6933         Install patches from David J. Mackenzie to make the srcdir option
6934         work.
6935         * Makefile.in (srcdir, VPATH): Get this value from the top-level
6936         Makefile.
6937         (INSTALLABLES): Split this into two lists - INSTALLABLES and
6938         INSTALLABLE_SCRIPTS.
6939         (INSTALLABLE_SCRIPTS): New list.
6940         (EXECUTABLES): Include INSTALLABLE_SCRIPTS.
6941         (${archlibdir}): The scripts to be installed live in the source
6942         tree, not in the object tree.
6943         (test-distrib): Note that the data file lives in the source tree,
6944         not the object tree.
6945         (GETOPTDEPS): Note that getopt.h lives in the source tree.
6946         (all other targets): Change references to source files to use
6947         ${srcdir}, except for config.h, which lives in the object dir.
6948         (timer.o): Note that this depends on ../src/config.h.
6949         * make-docfile.c (main): Add a -d option, to tell it where to find
6950         the source files.
6951         * test-distrib.c (main): Take the name of the distribution file to
6952         test from the command line.
6954         * timer.c: Fix misspellings of get_date function's name.
6956 1993-05-12  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
6958         * etags.c (main):
6959         Don't require that there be input files if -i switches were given.
6961 1993-05-09  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
6963         The GNU coding standards specify that CFLAGS should be left for
6964         users to set.
6965         * Makefile.in (CFLAGS): Put this in the "things configure might
6966         edit" section, and have it default to -g.
6967         (ALL_CFLAGS): New variable, set to all the flags which should be
6968         passed to compilations.  Replace all other uses of CFLAGS with
6969         ALL_CFLAGS.
6970         (.c.o): New rule, to pass ALL_CFLAGS to compilations.
6972         * Makefile.in (DEFS): Remove this; it's always just going to be
6973         "-DHAVE_CONFIG_H -Demacs".
6975 1993-05-03  Paul Eggert  (eggert@twinsun.com)
6977         * rcs2log: mawk, SunOS 4.1.3 nawk, and Ultrix/MKS nawk all barf on
6978         /[/]/, so change it to /[\/]/.  This should work on all
6979         Posix-compliant awks.  It's slightly wrong with traditional awk,
6980         since it matches \ too, but that's a minor problem compared to awk
6981         syntax errors.
6983 1993-05-01  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
6985         * Makefile.in (ALLOCA): New variable, whose value we should
6986         inherit from the top-level makefile.
6987         (etags, ctags): Include ALLOCA in the list of object files that
6988         these executables depend on and link.
6990 1993-04-09  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
6992         * Makefile.in (DEFS): Rename from CONFIG_CFLAGS.
6994 1993-04-07  Jim Blandy  (jimb@churchy.gnu.ai.mit.edu)
6996         * make-docfile.c (write_c_args): Print an argument named "defalt"
6997         as "default".
6999 1993-03-24  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
7001         * Makefile.in (C_SWITCH_SYSTEM): New variable.
7002         (CFLAGS): Include C_SWITCH_SYSTEM in the flags to pass to the
7003         compiler.
7005 1993-03-22  Francesco Potortì  (pot@cnuce.cnr.it)
7007         * etags.c (YACC): Flag added to c_ext.
7008         (c_ext): No more a synonim for c_ext&C_PLPL because of YACC.
7009         (find_entries): Consistently use streq when reasonable.
7010         (find_entries): A .y file is a yacc file.
7011         (get_C_stab): c_ext becomes c_ext&C_PLPL.
7012         (C_entries): Logical cplpl means c_ext&C_PLPL.
7013         (C_entries): Logical yacc_rules means we are after the first %%.
7014         (C_entries): Add logic for yacc files.
7016 1993-03-16  Francesco Potortì  (pot@cnuce.cnr.it)
7018         * etags.c (C_entries): ':' case moved to the second switch.
7019         (C_entries): Do not examine token if structdef==scolonseen.
7020         (consider_token): structtag set to null string for enum.
7022 1993-03-12  Francesco Potortì  (pot@cnuce.cnr.it)
7024         * etags.c (GET_COOKIE): And related macros removed.
7025         (logical): Is now int, no more a char.
7026         (reg): Define deleted.
7027         (isgood, _gd, notgd): Deleted.
7028         (gotone): Deleted.
7029         (TOKEN): Member linestart removed.
7030         (linepos, prev_linepos, lb1): Deleted.
7031         (main): Call initbuffer on lbs array instead of lb1.
7032         (init): Remove the initialization of the logical _gd array.
7033         (find_entries): A .sa suffix means assembler file.
7034         (C_create_stab): "auto", "void", "extern", "static" are st_C_typespec.
7035         All C state machines rewritten.
7036         (C_entries): Complete rewrite.
7037         (condider_token): Complete rewrite.
7038         (getline): Deleted.
7040 1993-03-01  Francesco Potortì  (pot@fly.CNUCE.CNR.IT)
7042         * etags.c (C_entries): Add the quotednl logical variable.
7043         Used for parsing of #define's spanning multiple lines.
7045 1993-02-23  Francesco Potortì  (pot@fly.CNUCE.CNR.IT)
7047         * etags.c (C_entries): Save the definedef status even when a
7048         newline is met inside a string.
7050 1993-03-19  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)
7052         * Makefile.in (EXECUTABLES): Add rcs-checkin.
7054         * Makefile.in (unlock, relock): New productions.
7056 1993-03-16  Paul Eggert  (eggert@twinsun.com)
7058         * rcs2log: Some awks don't understand "\r".  Code around this.
7059         Unfortunately this requires putting a carriage return in the
7060         source code.  Don't assume that rlog will tolerate times like
7061         `10:10:60'; RCS 5.7 won't allow this.
7063 1993-03-10  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7065         * timer.c (main): Set the ownership of the stdin file descriptor
7066         to the current process.  Print error messages if either of the
7067         fcntl's fails.
7069         * timer.c (sigcatch): Declare this to return SIGTYPE (defined in
7070         ../src/config.h), not void.
7072 1993-03-06  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7074         * b2m.c (main): Don't exit upon reading a blank line.
7076 1993-03-01  Francesco Potortì  (pot@fly.CNUCE.CNR.IT)
7078         * etags.c (C_entries): New local variable quotednl.  Used for
7079         parsing of #define's spanning multiple lines.
7081         * etags.c (C_entries): Save the definedef status
7082         even when a newline is met inside a string.
7084 1993-02-26  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7086         * timer.c (notify): Initialize waitfor properly.
7088 1993-02-22  Francesco Potortì  (pot@CNUCE.CNR.IT)
7090         * etags.c (C_entries): Don't reset definedef when a newline inside a
7091         comment is met.
7093 1993-01-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7095         * etags.c (find_entries): If filename ends in .f or .for,
7096         don't try anything but Fortran.
7098 1993-01-08  Michael I Bushnell  (mib@geech.gnu.ai.mit.edu)
7100         * timer.c (notify): Flush stdout after writing message to avoid lossage
7101         on terminals.
7103         (notify): Also, write a newline after the token.
7105 1992-12-12  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7107         * Makefile.in (exec_prefix): New variable.
7108         (bindir, libdir): Use it instead of `prefix'.
7110         * Makefile.in (CFLAGS): #define HAVE_CONFIG_H, too.
7112         * Makefile.in (libdir): Default to ${prefix}/lib.
7113         (archlibdir): Adjust to match.
7115         * Makefile.in (distclean): Don't delete backup or autosave files.
7116         (extraclean): Like realclean, but does delete backup and autosave
7117         files.
7119         * Makefile.in (realclean): Ignore errors from rm.
7121         * Makefile.in (distclean): Don't bother to delete ../arch-lib;
7122         that doesn't exist anymore.
7124 1992-12-11  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7126         * Makefile.in (prefix, bindir, libdir, srcdir): New variables, as
7127         described in the top-level Makefile.
7128         (UTILITIES): Add make-path to the list of utility programs.
7129         (../arch-lib): Replaced by the ${archlibdir} target, which places
7130         the executables in their permanent home.
7131         (install, install.sysv, install.xenix): Consolidated into one
7132         target which should work under all circumstances, modulo a few
7133         ignored error messages.
7135         * make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
7136         a different number of arguments than other DEFVARs, recognize it
7137         specially, and expect the right number of commas.
7139 1992-12-04  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7141         * make-path.c: New program, to help with the installation process.
7142         * Makefile.in (make-path): New target.
7144         * make-path.c (touchy_mkdir): Remove debugging output.
7146 1992-11-05  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7148         * Makefile.in (getdate.o): Add explicit target for this, so we
7149         can indicate that it depends on ../src/config.h.
7151 1992-11-04  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
7153         * Makefile.in (CONFIG_CFLAGS): Let the configure script edit this
7154         instead of CFLAGS.
7155         (CFLAGS): Add -Demacs and -I../src to CONFIG_CFLAGS to produce this.
7157 1992-09-30  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7159         * getdate.y: Correctly recognize Mt. Xinu BSD running on an HP
7160         9000/300 as BSD; don't include both <sys/time.h> and <time.h> on
7161         that system.
7163         * Makefile.in (arch-lib): Give rm the `-f' option.
7165 1992-09-28  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7167         * make-docfile.c (write_c_args): Rewritten to correctly print
7168         &optionals before the first identifier, but after the first paren.
7169         This code used to just wait for commas or spaces; now it notices
7170         identifier boundaries.
7172 1992-09-26  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
7174         * rcs2log: When getting date, use %02d instead of %.2d in awk printf.
7176 1992-09-23  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7178         * make-docfile.c (write_c_args): Print the argument lists properly
7179         when the first argument is optional.
7181 1992-09-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7183         * sorted-doc.c (main): Redefine special chars to use fonts tensy, teni.
7184         Redefine @item.  Set catcode of +.
7186 1992-08-22  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7188         * emacsclient.c (main): Set IPC_CREAT in msgget call.
7190 1992-08-20  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7192         * etags.c (TEX_funcs): Keep just 1 of two redundant nested loops.
7193         (TEX_decode_env): Make `tab' one element longer.
7195 1992-08-20  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7197         * etags.c (PF_funcs): Recognize the "entry" keyword.
7199 1992-08-18  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7201         * Makefile.in: Add rcs2log and vcdiff to the list of utilities.
7203 1992-08-14  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7205         * timer.c (events): Rather than having slots marked as in use or
7206         out of use by the `token' field, keep all pending events at the
7207         beginning of the array.  When we delete an event in the middle of
7208         the array, we move the last event into its place.
7209         (num_events): New variable.
7210         (schedule): It is now cheaper to find a free event slot;
7211         events[num_events] is the first free slot.
7212         (notify): Scan events[0 .. num_events-1], instead of the whole
7213         array.  When an event fires, move the last event in the array into
7214         its spot.  Use num_events to determine whether or not there are
7215         any pending events, not wait_for.
7216         (getevent): Delete unused variable `ep'.
7217         (sigcatch): It's now easier to find all the active events.
7218         (main): Initialize num_events.
7220         * etags.c: Rather than fret about which systems have index and
7221         which systems have strchr, and how to tell the difference between
7222         them, we just write out our own versions.  Big deal.
7223         (index, rindex): Extern declarations removed.
7224         (NEED_INDEX, NEED_RINDEX): Special hacks for hpux removed.
7225         (etags_index, etags_rindex): New declarations.
7226         (process_file, find_entries, pfnote, TEX_funcs, TEX_decode_env,
7227         TEX_getit, substr): Use the etags_*index functions, rather than
7228         the native *index functions.
7229         (rindex, index): Rename to etags_rindex and tags_rindex, and
7230         made them unconditionally defined, rather than having them depend
7231         on NEED_*INDEX.
7233         * etags.c (savenstr): Add declaration for this at top of file.
7234         (TEX_decode_env): Don't declare it local to this function.
7236         * b2m.c: #include "../src/config.h", so we can test for the USG
7237         macro, and decide whether to include <string.h> or <strings.h>.
7238         * Makefile.in: Note that b2m.c depends on ../src/config.h.
7240 1992-08-13  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7242         * timer.c: Reformatted according to the GNU coding standards.
7243         Removed arbitrary limits on the number of events queued and the
7244         length of the tokens used to identify them.
7245         Removed casts to (void).
7246         Removed debugging printfs; they clutter the code, and the need
7247         can be better filled using a real debugger.
7249 1992-08-07  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7251         * timer.c: Installed new version from Eric Raymond; this is more
7252         portable, since it doesn't try to use SIGIO.
7254 1992-07-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7256         * emacsclient.c (main): If we can't find the socket in this
7257         person's home directory, print a message which asks if they've
7258         started the server, instead of just printing the message from
7259         sys_errmsg; Cygnus finds that people are much less confused by
7260         this.
7262 1992-07-14  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7264         * etags.c: Rather than defining "notdef" when "hpux" is #defined,
7265         so that index and rindex get defined, why don't we actually
7266         control index and rindex using symbols called "NEED_INDEX" and
7267         "NEED_RINDEX", and define them if hpux is defined?  Isn't that a
7268         little more readable than defining something whose name implies
7269         that it's not?
7271 1992-07-08  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7273         * movemail.c: Merged changes from Jamie Zawinski's byte compiler
7274         distribution:
7275         Miscellaneous doc fixes.
7276         (skip_white, read_lisp_symbol): New functions.
7277         (scan_lisp_file): Instead of using long hairy strings of ifs, call
7278         read_lisp_symbol and then see what we got.  Call skip_white
7279         instead of writing out a loop to do its job.  Correctly extract
7280         docstrings from "defmacro" declarations.
7282 1992-06-25  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7284         * movemail.c (strcpy): Declare this to return char *.
7286 1992-06-18  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7288         * etags.c (C_entries): When we find a C++ comment, do actually
7289         skip to the end of the line; do a 'break' instead of a 'continue'.
7291 1992-06-11  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7293         * etags.c (getit): Add missing parenthesis to expression which
7294         decides if this token is an identifier.
7296 1992-06-04  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
7298         * etags.c (consider_token): Recognize `ENTRY' macro used in libc.
7300 1992-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7302         * etags.c (put_entries): Always put space between name and line num.
7304 1992-05-28  Ken Raeburn  (Raeburn@Cygnus.COM)
7306         * etags.c (getit): Parenthesize &&/|| expression to avoid gcc
7307         warning.
7308         (LEVEL_OK_FOR_FUNCDEF): Ditto.
7310 1992-05-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
7312         * make-docfile.c (write_c_args): Pass both arguments to putc.
7314 1992-05-10  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
7316         * etags.c (C_entries): Fix reading of "..." strings.
7317         (consider_token): Recognize `SYSCALL' and `PSEUDO' macros, used in
7318         the C library source.
7320         * etags.c (C_entries): When we see a backslash inside a quoted
7321         string, skip to the next character.  This allows us to correctly
7322         deal with strings containing quotes.
7324 1992-05-08  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7326         * make-docfile.c (write_c_args): Print the C argument names as
7327         they would be written in Elisp; print '_' as '-'.
7329 1992-05-07  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7331         * movemail.c [POP]: Get user name via getpwuid.
7333 1992-05-04  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7335         * Makefile.in: Flags in CC invocations rearranged for no reason.
7337 1992-04-20  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7339         * etags.c (print_help): Remember not to embed raw newlines in
7340         strings - end the lines with `\n\'.
7342 1992-04-17  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7344         * timer.c (getevent): Remove declaration of memcpy; since
7345         different systems have different return types, and we're not even
7346         using the return type anyway, it wasn't doing us any good.
7348 1992-04-16  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7350         * emacsserver.c (msgcatch): Use the SIGTYPE macro to declare the
7351         type of this function.
7353 1992-04-14  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7355         * ChangeLog: Since the old etc contents have been split into etc
7356         and lib-src, the old etc's ChangeLog has been duplicated in the
7357         new etc and lib-src.  That means that each contains complete and
7358         coherent information, although each contains extraneous
7359         information.
7361 1992-04-08  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7363         * etags.c: "--no-warning" option renamed to "--no-warn",
7364         to be consistent with other GNU programs, like makeinfo.
7366         * Makefile: Renamed to Makefile.in; the configure script
7367         will edit this to produce Makefile.
7369 1992-04-07  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7371         * etags.c (print_help, print_version): New functions.
7372         (main): Options added to support them.
7374         * etags.c (longopts): New array of long names for the options.
7375         (main): Recognize them.
7377 1992-04-06  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7379         * etags.c (C_entries): Remove comment saying that \" in a string
7380         isn't recognized as magic, because it is correctly handled.
7382         * getopt.c, getopt.h: New files, from GNU C library.
7383         * etags.c: Rewritten to use getopt.
7384         #include "getopt.h".
7385         (file_num): Variable deleted; its role is now played by getopt's
7386         optind.
7387         (main): Argument processing loop rewritten to call getopt to get
7388         next option.  Options which take parameters (-o and -i) rewritten
7389         to get parameter from optarg instead of argv[1].
7390         Filename preprocessing loop and update command changed similarly.
7391         * Makefile (etags, ctags): Depend on and link with getopt.h,
7392         getopt.o, and getopt1.o.
7393         (getopt.o, getopt1.o): New targets for the GNU getopt routines.
7395         * etags.c (outfflag): Variable deleted; it is non-zero iff outfile
7396         is non-zero.
7398         (main): In the argument processing loop, the 'goto next_arg'
7399         statements are breaking out of the switch statement in exactly the
7400         same way that a simple 'break' statement would; replace the gotos
7401         with breaks, and remove the label.
7403 1992-04-06  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7405         * etags.c (C_entries): Clear tydef and next_token_is_func at start.
7406         (consider_token): Move next_token_is_func to global.
7408 1992-04-02  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7410         * Makefile: Conform with GNU coding standards:
7411         (mostlyclean): New target, synonymous with clean.
7412         (TAGS, check): New targets.
7413         (INSTALL, INSTALLFLAGS): New variables.
7415 1992-03-31  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7417         * lib-src/Makefile, etc/MACHINES, etc/NEWS: Changed references to
7418         `config.emacs' to `configure'.
7420         * lib-src/Makefile: Adjusted for renaming of share-lib to etc.
7421         * etc/MACHINES: Same.
7423 1992-03-30  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7425         * movemail.c (main): Allow tempname to be as long as necessary,
7426         instead of limiting it to 39 characters.
7428         * movemail.c (main): Move declaration of buf from top of function
7429         to local block surrounding the copy loop.  This makes it less
7430         likely to be confused with the buf used by the code which checks the
7431         permissions on outname's directory.
7433 1992-03-20  Jim Kingdon  (kingdon@albert.gnu.ai.mit.edu)
7435         * SERVICE: Remove my entry.
7437 1992-03-09  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
7439         * Makefile (emacstool, nemacstool, xvetool): Use ${CFLAGS}, not
7440         hardcoded -g.
7442         * movemail.c (xmalloc): Return char *, not int.
7443         (main) [!MAIL_USE_FLOCK]: Add a new conditional, MAIL_UNLINK_SPOOL,
7444         that is off by default -- normally don't unlink the mail spool
7445         file, just empty it.  Pass creat mode 0600, not 0666.
7447 1992-02-07  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7449         * Makefile (../arch-lib): Depend on ${EXECUTABLES}.
7450         (all): Instead of here.
7451         (install): Don't use the -s option, since people need symbols to
7452         debug code.
7454 1992-01-19  Eric Youngdale  (youngdale@v6550c.nrl.navy.mil)
7456         * etags-vmslib.c (fn_exp): Add type cast.
7458 1992-01-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7460         * movemail.c: Changes in comments.
7462 1992-01-13  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7464         * Makefile: Make the distclean target erase the DOC files from
7465         ../share-lib and the executables from ../arch-lib.
7467 1992-01-09  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
7469         * emacsclient.c: #include <sys/stat.h>
7470         (main): Do declare statbfr.
7472 1991-12-21  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7474         * emacsserver.c, emacsclient.c [BSD]: Use either /tmp or ~
7475         for the socket, depending on SERVER_HOME_DIR.
7476         If using /tmp, put host name in the socket name.
7478         * movemail.c (pfatal_and_delete): New function.
7479         (main, popmail): Use it.
7480         (popmail): Close output before deleting messages.
7481         Check for error on close and on fsync.
7482         Use `fatal' where appropriate.
7483         (main): Remove (void).
7485         * aixcc.lex: New file.  Not officially part of Emacs.
7486         * Makefile: Rules for that.
7488 1991-12-04  Jim Blandy  (jimb@pogo.gnu.ai.mit.edu)
7490         * yow.c (main): Rename all references to PATH_EXEC to PATH_DATA.
7492         * etags.c (main): Properly cast call to alloca that initializes
7493         included_files.
7495 1991-08-17  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
7497         * etags.c (files_are_tag_tables): Remove global var.
7498         (process_file): Don't test it.  Also remove hack checking for a
7499         file named "TAGS".
7500         (main): -i now takes an arg which is the name of a file to include.
7501         Collect these names and emit include tags for them after processing
7502         all the argument files.
7504 1991-07-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7506         * wakeup.c: Terminate if parent goes away.
7508 1991-07-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7510         * etags.c (C_entries): Process token before handling end of line.
7511         When inner loops reach end of line, just back up.
7512         Let the real end of line processing happen in just one place.
7513         (consider_token): Likewise.
7515 1991-04-11  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
7517         * etags.c (TEX_mode): Skip comments while scanning the text to see
7518         which escape character this file uses.
7520 1991-03-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
7522         * emacsserver.c [USG]: Terminate if msgrcv fails.
7524 1991-03-03  Richard Stallman  (rms@mole.ai.mit.edu)
7526         * emacsserver.c [BSD]: Check for errors on stdin after scanf.
7528 1991-01-25  Jim Blandy  (jimb@churchy.ai.mit.edu)
7530         * make-docfile: Find the arguments to a C function correctly,
7531         by not ignoring the character that read_c_string returns.
7532         Don't even try to find argument names for functions that take MANY
7533         or UNEVALLED arguments, since they're a figment of the docstring's
7534         imagination.
7536 1991-01-14  Jim Blandy  (jimb@churchy.ai.mit.edu)
7538         * make-docfile: Read the .elc files generated by the new byte
7539         compiler.
7541 1990-12-31  Richard Stallman  (rms@mole.ai.mit.edu)
7543         * refcard.tex: Use cm fonts, not am, in multi-column mode.
7545 1990-11-29  Richard Stallman  (rms@mole.ai.mit.edu)
7547         * movemail.c (mbx_delimit_begin): Put space before `unseen'.
7549 1990-11-27  Richard Stallman  (rms@mole.ai.mit.edu)
7551         * Makefile (install*): No need to install wakeup.
7553 1990-11-26  Richard Stallman  (rms@mole.ai.mit.edu)
7555         * Makefile (install*): Install emacsclient like etags.
7557 1990-11-13  Richard Stallman  (rms@mole.ai.mit.edu)
7559         * movemail.c (error): Handle 3 args.
7560         (main): Don't check input access if using pop.
7562 1990-10-16  Richard Stallman  (rms@mole.ai.mit.edu)
7564         * etags.c (find_entries): Check for numbers after Scheme suffix.
7566 1990-10-14  Richard Stallman  (rms@mole.ai.mit.edu)
7568         * termcap.dat (vt200-80): Fix ke and ks to frob flag 1.
7570 1990-10-09  Richard Stallman  (rms@mole.ai.mit.edu)
7572         * Makefile (nemacstool, xvetool): New targets.
7574 1990-09-26  Richard Stallman  (rms@mole.ai.mit.edu)
7576         * emacsclient.c: Include errno.h and define related variables.
7578 1990-09-23  Richard Stallman  (rms@mole.ai.mit.edu)
7580         * emacsclient.c: Change usage message.
7582 1990-08-30  David Lawrence  (tale@pogo.ai.mit.edu)
7584         * emacs.1: Add break before -nw option.
7586 1990-08-19  David J. MacKenzie  (djm@apple-gunkies)
7588         * qsort.c: Replace with GNU version.
7590 1990-08-14  David J. MacKenzie  (djm@apple-gunkies)
7592         * wakeup.c: New program replacing loadst.c.
7594 1990-08-14  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7596         * emacsclient.c [USG]: Pass msgsnd only 4 args.
7598 1990-08-09  David J. MacKenzie  (djm@pogo.ai.mit.edu)
7600         * etags.c: Rename `flag' variables for what they do instead of
7601         which option character sets them.
7603 1990-05-28  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7605         * loadst.c (main): Conditional to get load average on Apollo.
7607 1990-05-22  Joseph Arceneaux  (jla@churchy.ai.mit.edu)
7609         * emacsserver.c: Set the permission on the socket to 0600.
7611 1990-03-27  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7613         * emacsclient.c [BSD]: Print clean message for failing getwd.
7615 1990-03-20  David Lawrence  (tale@pogo.ai.mit.edu)
7617         * getdate.y: Use the getdate.y from GNU tar for timer.
7619 1990-03-18  Jim Kingdon  (kingdon@pogo.ai.mit.edu)
7621         * emacsclient.c (main): Don't put brackets around "filename" in
7622         usage message.  It isn't optional.
7624 1990-03-14  Joseph Arceneaux  (jla@churchy.ai.mit.edu)
7626         * etags.c (getit): Recognize '$' as beginning identifiers.
7628 1990-02-22  David Lawrence  (tale@pogo.ai.mit.edu)
7630         * emacsserver.c: Renamed from server.c.
7631         * Makefile: Reference emacsserver rather than server.
7632         * MACHINES: Doc fix for new emacsserver name.
7634 1990-01-25  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7636         * emacsclient.c: Print program name in error messages.
7638 1990-01-19  David Lawrence  (tale@cocoa-puffs)
7640         * timer.c, getdate.y (new files) and Makefile:
7641         Sub-process support for run-at-time in timer.el.
7642         Doesn't yet work correctly for USG.
7644 1990-01-10  Jim Kingdon  (kingdon@pogo)
7646         * MACHINES: Add HP 300 running BSD.
7648 1990-01-02  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7650         * yow.c: Dynamically allocate buffer; skip header before random
7651         choice to avoid bias toward first item.
7653 1989-12-24  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7655         * etags.c (readline): Separate out init of `pend'.
7657 1989-12-17  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7659         * etags.c: Undo changes relating to isgoodhdr.
7661 1989-12-16  Mosur Mohan  (rms@sugar-bombs.ai.mit.edu)
7663         * etags.c (isgoodhdr): New macro.
7664         (_gdh, notgdh): New variable used by that.
7665         (init): Initialize _gdh.
7666         (find_entries): Set header_file.
7667         (consider_token): Use isgoodhdr if in header file.
7669         * etags.c (total_size_of_entries):
7670         Was miscalculating by 1 in rewritten case.
7672         * etags.c (PAS_funcs): One arg to pfnote was missing.
7674 1989-12-05  Joseph Arceneaux  (jla@spiff)
7676         * MACHINES: Change for the ULTRIX entry.
7678 1989-11-21  Joseph Arceneaux  (jla@spiff)
7680         * etags.c (process_file): If file is not regular, return.
7682 1989-11-06  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7684         * loadst.c (main): Handle FIXUP_KERNEL_SYMBOL_ADDR.
7686 1989-10-30  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7688         * loadst.c (load_average): If HAVE_GETLOADAVG, use getloadavg.
7689         (main): If HAVE_GETLOADAVG, don't call `nlist'.
7691 1989-10-25  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7693         * etags.c (consider_token): Allow any number of typespec keywords
7694         after `typedef', before new type name.
7695         (enum sym_type): Add st_C_typespec.
7696         (C_create_stab): Put typespec kwds in table.
7698 1989-08-27  Richard Stallman  (rms@apple-gunkies.ai.mit.edu)
7700         * etags.c (main): Don't depend on name invoked by.
7701         If CTAGS is not defined, assume it is ETAGS.
7703 1989-07-31  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7705         * etags.c (L_funcs): Allow package name in define construct,
7706         as in (foo::defmumble name-defined ...).
7708 1989-07-30  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7710         * etags.c (find_entries): Stupid bug testing for C filename suffixes.
7712         * Makefile (yow): Depends on ../src/paths.h.
7714 1989-07-04  Richard Stallman  (rms@apple-gunkies.ai.mit.edu)
7716         * etags.c: Fix compilation by moving Pascal after Fortran.
7718 1989-06-15  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7720         * movemail.c [USG]: Define F_OK, etc., if not found in header.
7722 1989-05-27  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7724         * hexl.c: New file, supports hexl-mode.
7726 1989-05-14  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7728         * movemail.c: New compilation flag MAIL_USE_MMDF.
7730 1989-05-08  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7732         * emacsclient.c: Use BSD code whenever HAVE_SOCKETS.
7733         * server.c: Likewise.
7735         * make-docfile.c (scan_c_file): Output argument names at end of string.
7736         (write_c_args): New subroutine.
7738 1989-04-27  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7740         * movemail.c: Report failure of flock.
7742 1989-04-19  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7744         * etags.c (find_entries): Allow multi-letter extensions for fortran.
7746 1989-04-18  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7748         * loadst.c: On bsd4.3, use gettimeofday instead of CPUSTATES.
7750 1989-03-15  Jeff Peck  (rms@sugar-bombs.ai.mit.edu)
7752         * emacstool.c: setenv IN_EMACSTOOL=t, TERM=sun, TERMCAP=.
7754         * emacstool.1: Update to document environment variables.
7756 1989-02-21  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7758         * etags.c (PAS_funcs): New function by Mosur Mohan.
7760         * movemail.c: On sysv, include unistd.h.
7762 1989-02-18  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7764         * b2m.c: New file.
7766 1989-02-15  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7768         * etags.c: Prolog support from Sunichirou Sugou.
7770 1989-02-03  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7772         * Makefile (clean): New target.
7774 1989-01-25  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7776         * fakemail.c (put_line): Break header lines at 79 cols.
7778 1989-01-19  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7780         * etags.c: Greatly rewritten by Sam Kendall for C++ support and for
7781         multiple tags per line.
7783 1989-01-03  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7785         * movemail.c: Check access before doing real work.
7786         Check that outfile is in a writable directory.
7787         On fatal error, delete the lock file.
7789 1988-12-31  Richard Mlynarik  (mly@rice-chex.ai.mit.edu)
7791         * env.c: Add decl for my-index
7792         * etags.c (file-entries): .oak => scheme.
7794 1988-12-30  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7796         * movemail.c: Use `access' to check input and output files.
7798 1988-12-28  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7800         * emacsclient.c (main): Ignore all of CWD before first slash.
7802 1988-12-27  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7804         * etags.c (readline): Double linebuffer->size outside the xrealloc.
7806 1988-12-22  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7808         * server.c, emacsclient.c: Don't try to use gid_t; it isn't defined.
7809         * server.c: chmod the socket to 0700.
7811 1988-12-09  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7813         * fakemail.c (main): Let env var FAKEMAILER override pgm to run.
7814         (add_field): Delete comments and turn `<', `>' to spaces
7815         in header lines.
7816         (USE_FAKEMAIL): New customization macro says to make fakemail
7817         not be a no-op even on a BSD system.
7819 1988-12-01  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7821         * etags.c (consider_token): Skip comments just like whitespace.
7822         Notice `struct', etc. and set strtag for those tokens.
7823         Return 1 for the token following `struct' if an open-brace follows it.
7824         (C_entries): Special handling of token following `struct'
7825         needed because we have probably advanced to the following line
7826         to find the `{'.
7827         (main): New option `T' sets tflag and strflag.
7828         Set both of them by default if eflags.
7830 1988-11-30  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7832         * movemail.c: Do fsync before closing output.
7834 1988-11-29  Richard Mlynarik  (mly@pickled-brain.ai.mit.edu)
7836         * movemail.c: Better error message when can't create tempname.
7837         This file needs a great deal of extra error-checking and lucid reporting...
7839 1988-11-16  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7841         * etags.c: Support assembler code for .s and .a files.
7842         (getit): Allow underscore in a tag.
7844 1988-11-15  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7846         * movemail.c: Close output and check errors before deleting input.
7848 1988-10-01  Richard Stallman  (rms@apple-gunkies.ai.mit.edu)
7850         * emacsclient.c [SYSVIPC]: Compute cwd only once; decide properly
7851         whether to prefix it.  Handle line number args.
7853 1988-09-24  Richard Stallman  (rms@gluteus.ai.mit.edu)
7855         * etags.c (main): Default setting of eflag was backwards.
7857 1988-09-23  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7859         * etags.c: New option -i.  -f renamed -o.
7860         `-' as input file means read input file names from stdin.
7861         -i spec'd or input file named TAGS means the input file is another
7862         tag table; output an "include" line for it.
7864 1988-09-19  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7866         * Makefile: New vars DESTDIR, BINDIR, LIBDIR, MANDIR, MANEXT.
7867         New targets install, install.sysv, install.xenix.
7868         This makefile is now responsible for installing executables
7869         and documentation from this directory into system directories.
7871 1988-09-16  Richard Stallman  (rms@corn-chex.ai.mit.edu)
7873         * server.c, emacsclient.c (main): Compute socket name from euid.
7875 1988-08-04  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7877         * emacsclient.c: Args like +DIGITS are passed through unchanged.
7879 1988-07-12  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7881         * server.c: If both BSD and HAVE_SYSVIPC, use the latter.
7882         * emacsclient.c: Likewise.
7883         In the HAVE_SYSVIPC alternative, if BSD, use getwd instead of getcwd.
7885 1988-06-23  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7887         * etags.c: Handle `typedef struct foo {' (price@mcc.com).
7888         (istoken): New string-comparison macro.
7889         (consider_token): New arg `level'.  New state `tag_ok' in `tydef'.
7891 1988-06-14  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7893         * etags.c: Changes for VMS.
7894         Always define ETAGS on VMS.
7895         Define macros GOOD and BAD for success and failure exit codes.
7896         (begtk, intk): Allow `$' in identifiers.
7897         (main): Don't support -B, -F or -u on VMS.
7898         Alternate loop for scanning filename arguments.
7899         (system): Delete definition of this function.
7901         * etags-vmslib.c (system): Undefine this; VMS now provides it.
7903 1988-06-08  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
7905         * loadst.c: Prevent multiple-def errors on BSD and BSD4_3
7906         around include of param.h.  (Like fns.c.)
7908 1988-05-16  Richard Stallman  (rms@frosted-flakes.ai.mit.edu)
7910         * loadst.c (load_average): Move load-average code to this new fn.
7911         Add conditionals to compute load ave on UMAX.
7913 1988-05-14  Richard Stallman  (rms@lucky-charms.ai.mit.edu)
7915         * loadst.c: Change DK_HEADER_FILE to DKSTAT_HEADER_FILE
7916         with opposite sense.
7918 1988-05-13  Chris Hanson  (cph@kleph)
7920         * emacsclient.c: Delete references to unused variable `out'.
7921         This caused a bus error when used under hp-ux.
7923 1988-05-06  Richard Stallman  (rms@frosted-flakes.ai.mit.edu)
7925         * loadst.c: Control dk.h conditional with DK_HEADER_FILE.
7927 1988-05-04  Richard Stallman  (rms@rice-krispies.ai.mit.edu)
7929         * etags.c (find_entries): `.t' or `.sch' means scheme code.
7931 1988-04-29  Richard Stallman  (rms@frosted-flakes.ai.mit.edu)
7933         * loadst.c: Add BSD4_3 conditional for file dk.h instead of dkstat.h.
7935 1988-04-28  Richard Stallman  (rms@frosted-flakes.ai.mit.edu)
7937         * movemail.c: #undef close, since config can #define it on V.3.
7938         * emacsclient.c, fakemail.c, loadst.c, server.c: Likewise.
7940 1988-04-26  Richard Stallman  (rms@lucky-charms.ai.mit.edu)
7942         * etags.c (TEX_mode, etc.): Remove superfluous backslashes from
7943         invalid escape sequences such as `\{'.
7945         * loadst.c: Add `sequent' conditional for file dk.h.
7947 1988-03-20  Richard M. Stallman  (rms@wilson)
7949         * server.c [not BSD and not HAVE_SYSVIPC]: Fix error message.
7951         * loadst.c (main) [XENIX]: Use /usr/spool/mail, not /usr/mail.
7953 ;; Local Variables:
7954 ;; coding: utf-8
7955 ;; End:
7957   Copyright (C) 1988-1999, 2001-2012 Free Software Foundation, Inc.
7959   This file is part of GNU Emacs.
7961   GNU Emacs is free software: you can redistribute it and/or modify
7962   it under the terms of the GNU General Public License as published by
7963   the Free Software Foundation, either version 3 of the License, or
7964   (at your option) any later version.
7966   GNU Emacs is distributed in the hope that it will be useful,
7967   but WITHOUT ANY WARRANTY; without even the implied warranty of
7968   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7969   GNU General Public License for more details.
7971   You should have received a copy of the GNU General Public License
7972   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.