* fakemail.c: Include <ignore-value.h>.
[bpt/emacs.git] / lib-src / ChangeLog
... / ...
CommitLineData
12011-02-26 Paul Eggert <eggert@cs.ucla.edu>
2
3 * fakemail.c: Include <ignore-value.h>.
4 (put_line): Explicitly ignore fwrite return value, for benefit of
5 recent glibc + gcc.
6 (close_the_streams): Diagnose output errors instead of merely
7 exiting with nonzero status.
8 (my_fclose, main): Diagnose input errors, and exit with nonzero status.
9 Formerly, input errors were silently ignored.
10
11 * ebrowse.c (putstr): Rename from PUTSTR and turn into a function.
12 All callers changed. This is cleaner, and avoids GCC warnings about
13 passing NULL to fputs.
14 (insert_keyword): Rename parameter to avoid shadowing diagnostic.
15
162011-02-25 Paul Eggert <eggert@cs.ucla.edu>
17
18 * emacsclient.c (main): Avoid dangling 'if'.
19 (xstrdup): Remove; no longer needed.
20 (get_current_dir_name, w32_getenv, get_server_config, find_tty):
21 (set_local_socket, main):
22 Use const char *, not char *, for pointers that are not assigned
23 through.
24 (IF_LINT): New macro.
25 (set_local_socket, main): Use it to suppress warnings with
26 GCC -Wuninitialized.
27
28 * emacsclient.c: Redo local variables to avoid shadowing problems.
29 (message, socket_status, start_daemon_and_retry_set_socket):
30 Rename locals.
31 (main): Move decl of "i".
32
33 * etags.c (ISUPPER): Move to inside the only #ifdef where it's used.
34 This avoids an unused-macro warning with some GCC settings.
35
36 * make-docfile.c (write_globals): Change char * to char const *
37 to avoid a GCC "assignment discards qualifiers" diagnostic
38 in some configurations.
39 (scan_c_file): Refactor local variable decls to make their scope
40 more accurate and to avoid a GCC -Wuninitialized diagnostic.
41
422011-02-22 Eli Zaretskii <eliz@gnu.org>
43
44 * etags.c (canonicalize_filename, ISUPPER): Fix last change.
45
46 * makefile.w32-in ($(BLD)/ebrowse.$(O), $(BLD)/pop.$(O)): Depend
47 on ../lib/min-max.h.
48
492011-02-22 Paul Eggert <eggert@cs.ucla.edu>
50
51 etags: Downcase drive letters, for consistency with Emacs proper.
52 * etags.c (upcase): Remove; no longer used.
53 (canonicalize_filename): Downcase drive letters.
54
55 Assume S_ISLNK etc. work, since gnulib supports this.
56 * etags.c (S_ISREG): Remove.
57
582011-02-22 Paul Eggert <eggert@cs.ucla.edu>
59
60 Assume S_ISLNK etc. work, since gnulib supports this.
61 * etags.c (S_ISREG): Remove.
62
632011-02-22 Juanma Barranquero <lekktu@gmail.com>
64
65 * makefile.w32-in (obj): Remove filemode.o.
66
672011-02-21 Paul Eggert <eggert@cs.ucla.edu>
68
69 New file "lib/min-max.h".
70 * ebrowse.c (min, max): Define them by including <min-max.h>
71 instead of defining it ourselves.
72 * pop.c (min): Likewise.
73 * Makefile.in (ebrowse${EXEEXT}, pop.o): Depend on min-max.h.
74
75 * movemail.c (popmail): Report fchown failure instead of ignoring it.
76 But if the file already has the right ownership, don't worry about it.
77
78 * make-docfile.c (input_buffer): Rename variables to avoid shadowing.
79 * test-distrib.c (buf): Make this local, to avoid shadowing.
80
81 * movemail.c (main, pop_retr): Rename locals to avoid shadowing.
82 (progname, sfi, sfo, ibuffer, obuffer): Remove unused vars.
83 (DONE): Remove unused macro.
84 (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_FROM_LINE):
85 Define these macros only in the contexts that need them.
86 * pop.c (index): Remove unused macro.
87 (KPOP_PORT): Define only if KERBEROS is defined.
88
89 Declare file-scope functions and variables static if not exported.
90 This is more consistent, and is nicer with gcc -Wstrict-prototypes.
91 * ebrowse.c, emacsclient.c, fakemail.c, make-docfile.c, movemail.c:
92 * profile.c, test-distrib.c, update-game-score.c:
93 Declare non-'main' functions and variables to be static.
94 * ebrowse.c: Omit redundant function prototypes.
95
962011-02-21 Eli Zaretskii <eliz@gnu.org>
97
98 * makefile.w32-in ($(BLD)/ctags.$(O), $(BLD)/emacsclient.$(O))
99 ($(BLD)/etags.$(O), $(BLD)/movemail.$(O), $(BLD)/ntlib.$(O)):
100 Depend on $(EMACS_ROOT)/nt/inc/sys/stat.h.
101
1022011-02-21 Ben Key <bkey76@gmail.com> (tiny change)
103
104 * make-docfile.c (scan_c_file): Adapt DEFVAR_PER_BUFFER case to
105 the new BVAR macro.
106
1072011-02-20 Juanma Barranquero <lekktu@gmail.com>
108
109 * makefile.w32-in (obj): Remove md5.o.
110
1112011-02-18 Karl Chen <Karl.Chen@quarl.org>
112
113 * emacsclient.c (main): Loop while `recv' return EINTR.
114
1152011-02-09 Paul Eggert <eggert@cs.ucla.edu>
116
117 * make-docfile.c (EMACS_INTEGER): Rename from EMACS_INT.
118 This avoids collision with config.h's EMACS_INT on some
119 configurations. All uses changed.
120
1212011-02-08 Tom Tromey <tromey@redhat.com>
122
123 * make-docfile.c: Unconditionally include stdlib.h.
124 (generate_globals): New global.
125 (xrealloc): New function.
126 (main): Handle '-g'. Call start_globals, write_globals.
127 (scan_file): Conditionally call put_filename.
128 (start_globals): New function.
129 (struct global): New.
130 (num_globals, globals): New globals.
131 (add_global, compare_globals, write_globals): New functions.
132 (scan_c_file): Update for "-g".
133 (scan_lisp_file): Fail if "-g".
134
1352011-02-05 Paul Eggert <eggert@cs.ucla.edu>
136
137 * emacsclient.c: Conform to C89 pointer rules.
138 (file_name_absolute_p): Accept const char *, not const unsigned
139 char *, to satisfy C89 rules.
140
1412011-02-02 Eli Zaretskii <eliz@gnu.org>
142
143 * makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS):
144 Add ``-DEMACS_NAME="\"GNU Emacs\""''.
145 (obj): Remove strftime.o.
146
1472011-01-31 Eli Zaretskii <eliz@gnu.org>
148
149 * makefile.w32-in (VERSION): Don't define, defined on nt/config.nt.
150 (ECLIENT_CFLAGS): Remove -DVERSION.
151 ($(BLD)/emacsclient.$(O)): Don't depend on makefile.w32-in.
152
1532011-01-31 Paul Eggert <eggert@cs.ucla.edu>
154
155 src/emacs.c now gets version number from configure.in
156 * ebrowse.c: Adjust comment to say that.
157
1582011-01-30 Jim Meyering <meyering@redhat.com>
159
160 make-docfile: don't corrupt heap for an invalid .elc file
161 "printf '#@1a' > in.elc; ./make-docfile in.elc" would store 0
162 one byte before just-malloc'd saved_string buffer.
163 * make-docfile.c (scan_lisp_file): Diagnose an invalid dynamic
164 doc string length. Also fix an always-false while-loop test.
165
1662011-01-29 Eli Zaretskii <eliz@gnu.org>
167
168 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
169 (GETOPTOBJS, GETOPTDEPS): Remove targets.
170 (MOVEMAILOBJS): Replace $(GETOPTOBJS) with ../lib/$(BLD)/libgnu.$(A).
171 ($(BLD)/movemail.exe): Depend on ../lib/getopt.h.
172 (ECLIENTOBJS, ETAGSOBJ, CTAGSOBJ, EBROWSEOBJ): Replace getopt.o
173 and getopt1.o with ../lib/$(BLD)/libgnu.$(A).
174 (clean): Don't remove getopt.h.
175 (getopt.h, $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O)): Remove targets.
176 ($(BLD)/ctags.$(O), $(BLD)/etags.$(O)): Replace getopt.h with
177 $(EMACS_ROOT)/lib/getopt.h.
178
1792011-01-28 Chong Yidong <cyd@stupidchicken.com>
180
181 * ntlib.c (setregid): New stub, renamed from setegid.
182
183 * ntlib.h: Update prototype.
184
1852011-01-25 Chong Yidong <cyd@stupidchicken.com>
186
187 * movemail.c (main): Use setregid instead of setegid, which is
188 missing on older systems. Suggested by Peter O'Gorman (Bug#6811).
189
1902011-01-23 Paul Eggert <eggert@cs.ucla.edu>
191
192 Check return values of some library calls.
193 * hexl.c (main): Check fread result.
194 * make-docfile.c (main): Check chdir result.
195 (scan_c_file): Check fscanf result.
196 * movemail.c (main): Check ftruncate result.
197
1982011-01-17 Paul Eggert <eggert@cs.ucla.edu>
199
200 Include <unistd.h> unilaterally.
201 * emacsclient.c, etags.c, fakemail.c, make-docfile.c, movemail.c:
202 * pop.c, test-distrib.c, update-game-score.c:
203 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
204 unistd.h is always present now, possibly supplied by gnulib.
205
206 Include <getopt.h> not "getopt.h".
207 * ebrowse.c, emacsclient.c: Include <getopt.h>, not "getopt.h".
208 Since getopt.h is no longer in this directory, there's no point
209 using the form with double-quotes.
210
211 Remove unused files.
212 * getopt.c, getopt1.c, getopt_.h, getopt_int.h: Remove.
213 These files are now in ../lib, copied from gnulib.
214
215 Use gnulib's getopt-gnu module.
216 * Makefile.in (mostlyclean): Do not clean getopt.h or getopt.h-t,
217 as these are now done by gnulib.
218 (GETOPT_H, getopt.h, GETOPTOBJS, GETOPTDEPS, getopt.o, getopt1.o):
219 Remove; now done by gnulib. All uses removed.
220
221 Automate syncing from gnulib.
222 * Makefile.in (EXE_FILES): New macro.
223 (BASE_CFLAGS): Add -I../lib and -I${srcdir}/../lib,
224 for gnulib's .h files.
225 (LOADLIBES): Add ../lib/libgnu.a.
226 ($(EXE_FILES)): Depend on ../lib/libgnu.a.
227 (../lib/libgnu.a): New rule.
228
2292011-01-08 Paul Eggert <eggert@cs.ucla.edu>
230
231 * Makefile.in (EXECUTABLES): Remove; macro unused since 1993.
232
2332011-01-08 Glenn Morris <rgm@gnu.org>
234
235 * Makefile.in (EMACSOPT): Add --no-site-lisp.
236
237 * Makefile.in (EMACSOPT): Remove --multibyte, it does nothing any more.
238
2392011-01-02 Glenn Morris <rgm@gnu.org>
240
241 * ebrowse.c (version) <emacs_copyright>:
242 * etags.c (print_version) <emacs_copyright>:
243 * rcs2log (Copyright): Set short copyright year to 2011.
244
2452010-11-27 Joe Matarazzo <joe.matarazzo@gmail.com> (tiny change)
246
247 * ebrowse.c (yylex): If end of input buffer encountered while
248 searching for a newline after "//", return YYEOF. (Bug#7446)
249
2502010-11-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
251
252 * emacsclient.c (set_local_socket) [DARWIN_OS]: Add fall-back
253 definition of _CS_DARWIN_USER_TEMP_DIR for Mac OS X 10.4 and older.
254
2552010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
256
257 * test-distrib.c: Remove include guards for config.h and fcntl.h.
258 (O_RDONLY): Do not define.
259 (cool_read): Fix type for variable "sofar".
260
2612010-10-25 Glenn Morris <rgm@gnu.org>
262
263 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove easymenu.elc.
264
2652010-10-23 Glenn Morris <rgm@gnu.org>
266
267 * digest-doc.c, sorted-doc.c: Remove files.
268 * Makefile.in (UTILITIES): Remove digest-doc and sorted-doc.
269 (digest-doc${EXEEXT}, sorted-doc${EXEEXT}): Remove rules.
270 * makefile.w32-in (ALL): Remove digest-doc and sorted-doc.
271 ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe, sorted-doc, digest-doc)
272 ($(BLD)/digest-doc.$(O), $(BLD)/sorted-doc.$(O)): Remove rules.
273 (install): Don't install digest-doc.exe or sorted-doc.exe.
274
2752010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
276
277 * Makefile.in (PROFILING_LDFLAGS): Remove, not needed.
278
2792010-10-09 Glenn Morris <rgm@gnu.org>
280
281 * b2m.c, b2m.pl: Remove files.
282 * Makefile.in (INSTALLABLES): Remove b2m.
283 * makefile.w32-in ($(BLD)/b2m.$(O)): Remove.
284
2852010-10-08 Glenn Morris <rgm@gnu.org>
286
287 * emacsclient.c (set_local_socket) [DARWIN_OS]: Try as a fall-back
288 DARWIN_USER_TEMP_DIR. (Bug#3992)
289
2902010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
291
292 * test-distrib.c (cool_read):
293 * movemail.c (main, concat):
294 * make-docfile.c (scan_file, write_c_args):
295 * emacsclient.c (get_server_config): Fix -Wconversion warning.
296 (egetenv): Move conditional definition earlier.
297 (progname): Use const.
298 * sorted-doc.c (xstrdup): Use const.
299
300 * Makefile.in: Remove ^L, old makes choke on it.
301
3022010-10-02 Wolfgang Schnerring <wosc@wosc.de> (tiny change)
303
304 * emacsclient.c (main): Return EXIT_FAILURE if Emacs sends us an
305 error string (Bug#6963).
306
3072010-10-02 Juanma Barranquero <lekktu@gmail.com>
308
309 * makefile.w32-in (tags): Remove target.
310
3112010-10-01 Eli Zaretskii <eliz@gnu.org>
312
313 * makefile.w32-in (tags, TAGS): New targets.
314
3152010-09-30 Juanma Barranquero <lekktu@gmail.com>
316
317 * emacsclient.c (get_server_config): Don't read Emacs pid from
318 the authentication file.
319
3202010-09-29 Juanma Barranquero <lekktu@gmail.com>
321
322 * makefile.w32-in (../src/config.h): Remove target, it is stale.
323
324 * emacsclient.c (main): Remove unused variables.
325 (start_daemon_and_retry_set_socket): Use EXIT_FAILURE.
326
3272010-09-25 Ulrich Mueller <ulm@gentoo.org>
328
329 * etags.c (compressors, print_language_names): Support xz compression.
330
3312010-08-11 Jan Djärv <jan.h.d@swipnet.se>
332
333 * fakemail.c: Include stdlib.h for getenv. Remove declaration of
334 popen, fclose and pclose.
335 (my_name, fatal, error, put_line): Use const char*.
336 (main): Remove extern getenv, mail_program_name is const char*.
337
338 * update-game-score.c (get_prefix, write_scores, main): Use const char*.
339
340 * sorted-doc.c (error, fatal, states): Use const char *.
341
342 * pop.h (pop_multi_first): Use const char *.
343 (_ARGS): Remove.
344
345 * pop.c (pop_multi_first, socket_connection, sendline): Use const char*.
346
347 * movemail.c (fatal, error, concat): Use const char *.
348
349 * make-docfile.c (error, fatal, scan_c_file, scan_lisp_file):
350 Use const char *.
351
352 * etags.c (compressor, language, Ada_suffix, Ada_help, Asm_suffixes)
353 (Asm_help, default_C_suffixes, default_C_help, Cplusplus_suffixes)
354 (Cplusplus_help, Cjava_suffixes, Cobol_suffixes, Cstar_suffixes)
355 (Erlang_suffixes, Erlang_help, Forth_suffixes, Forth_help)
356 (Fortran_suffixes, Fortran_help, HTML_suffixes, HTML_help)
357 (Lisp_suffixes, Lisp_help, Lua_suffixes, Lua_help)
358 (Makefile_filenames, Makefile_help, Objc_suffixes, Objc_help)
359 (Pascal_suffixes, Pascal_help, Perl_suffixes, Perl_interpreters)
360 (Perl_help, PHP_suffixes, PHP_help, plain_C_suffixses, PS_suffixes)
361 (PS_help, Prolog_suffixes, Prolog_help, Python_suffixes, Python_help)
362 (Scheme_suffixes, Scheme_help, TeX_suffixes, TeX_help, Texinfo_suffixes)
363 (Texinfo_help, Yacc_suffixes, Yacc_help, auto_help, none_help)
364 (no_lang_help, print_language_names)
365 (get_language_from_interpreter, get_language_from_filename)
366 (init, make_tag, struct C_stab_entry, write_classname, TEX_defenv)
367 (TEX_decode_env, nocase_tail, savestr, savenstr, fatal, pfatal)
368 (concat): Use const char*.
369
370 * emacsclient.c (message, sock_err_message, send_to_emacs)
371 (quote_argument, set_local_socket)
372 (start_daemon_and_retry_set_socket): Use const char*.
373
374 * ebrowse.c (struct member): filename, def_filename is const.
375 (struct sym): filename, sfilename is const.
376 (struct kw): name is const.
377 (add_sym, yyerror, token_string, insert_keyword, main): Use const char*.
378
379 * b2m.c (concat, fatal): Use const char*.
380 (main): Don't assign labels a string literal.
381
3822010-08-07 Juanma Barranquero <lekktu@gmail.com>
383
384 * ebrowse.c (usage, version, mark_virtual):
385 Remove duplicate declarations.
386
3872010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
388
389 * emacsclient.c: Move socket related #includes together with the
390 rest of the #includes. Move WINDOWSNT includes closer together.
391 (HAVE_CONFIG_H): Remove.
392 (NO_RETURN): Remove, defined in config.h.
393 (main): Convert definition to standard C.
394
3952010-07-29 Juanma Barranquero <lekktu@gmail.com>
396
397 * make-docfile.c (write_c_args): Warn for old-style empty arglist ().
398
3992010-07-25 Juanma Barranquero <lekktu@gmail.com>
400
401 * emacsclient.c (getcwd): Fix previous change: make getcwd
402 conditional on HAVE_GETCWD and declare with the correct POSIX
403 profile (for some reason MinGW headers define its 2nd arg as int,
404 not size_t; but getcwd is not used on Windows nonetheless).
405
4062010-07-25 Juanma Barranquero <lekktu@gmail.com>
407
408 * emacsclient.c (getcwd, w32_getenv):
409 * ntlib.h (getlogin, getuid, getegid, getgid): Fix prototypes.
410
4112010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
412
413 * update-game-score.c (usage): Add NO_RETURN specifier.
414 * movemail.c (fatal, pfatal_with_name, pfatal_and_delete):
415 * make-docfile.c (fatal):
416 * hexl.c (usage):
417 * fakemail.c (fatal):
418 * etags.c (fatal, suggest_asking_for_help, pfatal):
419 * emacsclient.c (fatal):
420 * b2m.c (fatal): Likewise.
421
4222010-07-23 Juanma Barranquero <lekktu@gmail.com>
423
424 * make-docfile.c (write_c_args): Correctly handle prefixes of "defalt".
425
4262010-07-20 Juanma Barranquero <lekktu@gmail.com>
427
428 * emacsclient.c (get_current_dir_name, w32_get_resource)
429 (w32_getenv, w32_set_user_model_id, w32_window_app, w32_execvp)
430 (close_winsock, initialize_sockets, w32_find_emacs_process)
431 (w32_give_focus):
432 * ntlib.c (getlogin, getuid, getgid, getegid):
433 Convert definitions to standard C.
434
4352010-07-12 Andreas Schwab <schwab@linux-m68k.org>
436
437 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
438 (PROFILING_LDFLAGS): Set from substitution.
439 (BASE_CFLAGS): Add ${C_WARNINGS_SWITCH}.
440 (ALL_CFLAGS, CPP_CFLAGS): Add ${PROFILING_CFLAGS}.
441 (LINK_CFLAGS): Add ${PROFILING_LDFLAGS}.
442
4432010-07-12 Eli Zaretskii <eliz@gnu.org>
444
445 * makefile.w32-in (lisp2): Change hebrew.el to hebrew.elc (see
446 2010-07-12T05:25:46Z!handa@etlken).
447
4482010-07-11 Andreas Schwab <schwab@linux-m68k.org>
449
450 * emacsclient.c (set_local_socket): Use strchr, strrchr instead of
451 index, rindex.
452 * movemail.c (mail_spool_name, popmail): Likewise.
453 * pop.c (pop_list): Likewise.
454
4552010-07-11 Eli Zaretskii <eliz@gnu.org>
456
457 * makefile.w32-in (obj): Add menu.o, bidi.o, w32uniscribe.o,
458 and unexw32.o. (Bug#6603)
459
4602010-07-10 Eli Zaretskii <eliz@gnu.org>
461
462 * Makefile.in ($(DESTDIR)${archlibdir}): Convert spaces to TABs.
463
4642010-07-09 Andreas Schwab <schwab@linux-m68k.org>
465
466 * make-docfile.c (write_c_args): Restructure scanning loop.
467
4682010-07-09 Dan Nicolaescu <dann@ics.uci.edu>
469
470 * make-docfile.c (write_c_args): Deal with type names in DEFUN
471 arguments.
472
4732010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
474
475 * update-game-score.c (P_): Remove macro.
476 * ebrowse.c: Remove include guards.
477 (P_): Remove macro.
478
4792010-07-07 Andreas Schwab <schwab@linux-m68k.org>
480
481 * ebrowse.c (add_sym, make_namespace): Replace bcopy, bzero by
482 memcpy, memmove, memset.
483 * pop.c (pop_retrieve, socket_connection, pop_getline): Likewise.
484
4852010-07-06 Andreas Schwab <schwab@linux-m68k.org>
486
487 * movemail.c: Add MAIL_USE_POP around prototypes.
488 Include <string.h> if HAVE_STRING_H.
489 (strerror): Only declare if !HAVE_STRERROR.
490 (fatal): Make static.
491 (error): Likewise.
492 (pfatal_with_name): Likewise.
493 (pfatal_and_delete): Likewise.
494 (concat): Likewise.
495 (xmalloc): Likewise.
496 (popmail): Likewise.
497 (pop_retr): Likewise.
498 (mbx_write): Likewise.
499 (mbx_delimit_begin): Likewise.
500 (mbx_delimit_end): Likewise.
501
5022010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
503
504 * fakemail.c (action): Convert function definitions to standard C.
505 (add_a_stream):
506 * test-distrib.c (cool_read):
507 (main): Likewise.
508
5092010-07-03 Andreas Schwab <schwab@linux-m68k.org>
510
511 * sorted-doc.c (cmpdoc): Fix signature.
512 (qsort_compare): Delete.
513 (main): Remove cast.
514
5152010-07-03 Juanma Barranquero <lekktu@gmail.com>
516
517 * ebrowse.c (match_qualified_namespace_alias): Check for null pointer.
518
5192010-07-03 Juanma Barranquero <lekktu@gmail.com>
520
521 Fix prototype warnings.
522
523 * ebrowse.c (match_qualified_namespace_alias):
524 Pass sym* to find_namespace, not link*.
525
526 * emacsclient.c (send_to_emacs, quote_argument): Arg s is HSOCKET.
527
528 * sorted-doc.c (qsort_compare): New typedef.
529 (main): Use it to cast cmpdoc.
530
5312010-07-03 Dan Nicolaescu <dann@ics.uci.edu>
532
533 * update-game-score.c: Convert function definitions to standard C.
534 * sorted-doc.c:
535 * profile.c:
536 * pop.c:
537 * movemail.c:
538 * make-docfile.c:
539 * hexl.c:
540 * fakemail.c:
541 * etags.c:
542 * ebrowse.c:
543 * digest-doc.c:
544 * b2m.c: Likewise.
545
5462010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
547
548 * make-docfile.c (xmalloc, xrealloc, concat, readline, fatal):
549 * b2m.c (scan_file, scan_lisp_file, scan_c_file): Convert to
550 standard C prototypes.
551
5522010-07-02 Jan Djärv <jan.h.d@swipnet.se>
553
554 * ebrowse.c: Remove P_ and __P.
555 * etags.c:
556 * movemail.c:
557 * pop.c:
558 * update-game-score.c: Likewise.
559
5602010-06-24 Juanma Barranquero <lekktu@gmail.com>
561
562 * movemail.c (error): Avoid warning when there are no args.
563
5642010-06-11 Juanma Barranquero <lekktu@gmail.com>
565
566 * makefile.w32-in (lisp2): Fix references to vc/vc-hooks.elc
567 and vc/ediff-hook.elc.
568
5692010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
570
571 * ntlib.h: Remove code dealing with BSTRING.
572
5732010-05-29 Chong Yidong <cyd@stupidchicken.com>
574
575 * emacsclient.c (longopts, decode_options, print_help_and_exit):
576 New arg `-parent-id'.
577 (main): Send parent-id to Emacs.
578
5792010-05-27 Glenn Morris <rgm@gnu.org>
580
581 * Makefile.in (distclean): No more Makefile.c.
582
5832010-05-22 Jan Djärv <jan.h.d@swipnet.se>
584
585 * Makefile.in (STAMP_INST_SCRIPTS, STAMP_SCRIPS): New (Bug #6246).
586 (all): Depend onSTAMP_INST_SCRIPTS, STAMP_SCRIPS (Bug #6246).
587 (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff):
588 New rules (Bug #6246).
589 (clean): Remove stamp-* (Bug #6246).
590
5912010-05-12 Glenn Morris <rgm@gnu.org>
592
593 * Makefile.in (INSTALLABLES): Remove @LIB_SRC_EXTRA_INSTALLABLES@.
594
5952010-05-11 Glenn Morris <rgm@gnu.org>
596
597 * Makefile.in (.m.o): Remove, there are no .m files.
598 (BASE_CFLAGS): New variable.
599 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use $BASE_CFLAGS.
600 (check): Update the message.
601 (update-game-score${EXEEXT}): Do not use $MOVE_FLAGS.
602
603 * Makefile.in: Convert comments to makefile format.
604
605 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
606 (config.h) [MSDOS]: Do not include.
607
6082010-05-10 Glenn Morris <rgm@gnu.org>
609
610 * Makefile.in (LIBS_SYSTEM): Set with configure, not cpp.
611 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
612 (NOT_C_CODE): Remove, no longer used.
613 (config.h) [!MSDOS]: No longer include.
614 (LOADLIBES): Use LIBS_SYSTEM as a variable.
615
616 * Makefile.in (BLESSMAIL_TARGET): Set with configure, not cpp.
617
6182010-05-08 Glenn Morris <rgm@gnu.org>
619
620 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
621
6222010-05-07 Chong Yidong <cyd@stupidchicken.com>
623
624 * Version 23.2 released.
625
6262010-05-06 Glenn Morris <rgm@gnu.org>
627
628 * Makefile.in: Minimize blessmail-related cpp usage.
629 (BLESSMAIL_TARGET): New variable.
630 (MOVEMAIL_NEEDS_BLESSING): Remove, replace by above variable.
631 (blessmail): Always define this rule.
632 (need-blessmail): New rule, split out from maybe-blessmail.
633 (maybe-blessmail): Use BLESSMAIL_TARGET.
634
6352010-05-04 Glenn Morris <rgm@gnu.org>
636
637 * Makefile.in: Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
638 @c_switch_system@, @c_switch_machine@.
639
6402010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
641
642 * Makefile.in (LIBS_MACHINE): Remove all uses, unused.
643
6442010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
645
646 * Makefile.in (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Move to the
647 non-cpp section.
648
6492010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
650
651 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE): Define using
652 autoconf, not cpp.
653 (ALL_CFLAGS): Use them as make variables.
654
6552010-04-07 Christoph Scholtes <cschol2112@googlemail.com>
656
657 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis
658 for macros for nmake compatibility.
659
6602010-04-03 Juanma Barranquero <lekktu@gmail.com>
661
662 Add stubs for Windows, required after CVE-2010-0825 change.
663 * ntlib.c (getgid, getegid, setegid): New stubs.
664 * ntlib.h (getgid, getegid, setegid): Declare them.
665
6662010-04-02 Dan Rosenberg <dan.j.rosenberg@gmail.com> (tiny change)
667
668 * movemail.c (main): Check return values of setuid.
669 Avoid possibility of symlink attack when movemail is setgid mail
670 (CVE-2010-0825).
671
6722010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
673
674 Remove extern errno declarations.
675 * movemail.c:
676 * etags.c:
677 * emacsclient.c: Remove extern errno declarations.
678
6792010-03-20 Glenn Morris <rgm@gnu.org>
680
681 * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
682 (LIBHESIOD, LIBRESOLV): Make previous change a bit more friendly by
683 defining these as Makefile variables.
684 (LIBS_MOVE): Add LIBS_MAIL into this.
685 (movemail${EXEEXT}): Just use LIBS_MOVE, not LIBS_MAIL as well.
686
6872010-03-18 Glenn Morris <rgm@gnu.org>
688
689 * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
690 (HESIODLIB, LIBS_MAIL): Set using autoconf rather than cpp.
691 (BASE_CFLAGS): Remove (identical to CPP_CFLAGS).
692
6932010-03-18 Tetsurou Okazaki <okazaki@be.to> (tiny change)
694
695 * Makefile.in (uninstall): Handle the case where archlibdir does not
696 exist. (Bug#5720)
697
6982010-03-10 Chong Yidong <cyd@stupidchicken.com>
699
700 * Branch for 23.2.
701
7022010-02-20 Kevin Ryde <user42@zip.com.au>
703
704 * etags.c (Scheme_functions): Don't loop past a null character
705 (Bug#5601).
706
7072010-01-29 Kester Habermann <kester@linuxtag.org> (tiny change)
708
709 * etags.c (Fortran_functions): Handle recursive keyword (Bug#5484).
710
7112010-01-11 Glenn Morris <rgm@gnu.org>
712
713 * ebrowse.c (version):
714 * etags.c (print_version):
715 * rcs2log (Copyright): Set copyright year to 2010.
716
7172009-12-09 David Robinow <drobinow@gmail.com> (tiny change)
718
719 * makefile.w32-in: Use parenthesis for macros for nmake
720 compatibility.
721
7222009-11-23 Tobias Ringström <tobias@ringis.se> (tiny change)
723
724 * etags.c (absolute_filename): Use memmove if we have it for
725 overlapping copy.
726
7272009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
728
729 * make-docfile.c (scan_lisp_file): Also look for `defvaralias'.
730
7312009-10-15 Juanma Barranquero <lekktu@gmail.com>
732
733 * .gitignore: Add echolisp.tmp.
734
7352009-10-15 Glenn Morris <rgm@gnu.org>
736
737 * emacsclient.c (print_help_and_exit): Fix bug report instructions.
738
739 * makefile.w32-in (echolisp): New rule.
740 (clean): Delete echolisp.tmp.
741
7422009-09-27 Eli Zaretskii <eliz@gnu.org>
743
744 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Add term/internal.elc,
745 term/pc-win.elc, emacs-lisp/easymenu.elc, and term/ns-win.elc, to
746 be consistent with src/Makefile.in.
747
7482009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
749
750 * update-game-score.c (main): Sort scores before trimming them,
751 reported by Jason Feng <jfeng@ozbert.com> (bug#4397).
752
7532009-09-09 Glenn Morris <rgm@gnu.org>
754
755 * Makefile.in ($(DESTDIR)${archlibdir}): Set umask to world-readable
756 before creating directories and game score files.
757
7582009-08-19 Glenn Morris <rgm@gnu.org>
759
760 * cvtmail.c: Remove file.
761 * Makefile.in (UTILITIES): Remove cvtmail.
762 (cvtmail${EXEEXT}): Remove.
763
7642009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
765
766 * b2m.c (main): Ensure that each message ends in two newlines.
767
7682009-07-03 Jason Rumney <jasonr@gnu.org>
769
770 * emacsclient.c (w32_set_user_model_id): Use standard types.
771
7722009-07-03 Eli Zaretskii <eliz@gnu.org>
773
774 * makefile.w32-in (WINNT_SUPPORT): Add common-win.elc, like
775 src/Makefile.in did.
776
7772009-06-30 Jason Rumney <jasonr@gnu.org>
778
779 * emacsclient.c (w32_give_focus): Use GetModuleHandle for library
780 that is already loaded.
781 (w32_set_user_model_id): New function.
782 (main): Use it to associate emacsclient with emacs (bug#1849).
783
7842009-06-29 Jim Meyering <meyering@redhat.com>
785
786 Remove useless if-before-free test.
787 * make-docfile.c (scan_lisp_file): Remove useless test.
788
7892009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
790
791 * Makefile.in (movemail.o): Don't pass -Demacs, unused.
792
7932009-06-21 Chong Yidong <cyd@stupidchicken.com>
794
795 * Branch for 23.1.
796
7972006-06-09 Adrian Robert <Adrian.B.Robert@gmail.com>
798
799 * mac-fix-env.m:
800 * Makefile.in (mac-fix-env): Remove.
801
8022006-06-06 David Reitter <david.reitter@gmail.com>
803
804 * Makefile.in (mac-fix-env): Compile it using ALL_CFLAGS.
805
8062009-04-20 Juanma Barranquero <lekktu@gmail.com>
807
808 * emacsclient.c (print_help_and_exit): Fix typo and tabify (careful
809 spacing is required in the message output, as the comment suggests).
810
8112009-04-20 Chong Yidong <cyd@stupidchicken.com>
812
813 * emacsclient.c (print_help_and_exit): Clarify argument placement
814 for short option names.
815
8162009-04-02 Dan Nicolaescu <dann@ics.uci.edu>
817
818 * emacsclient.c (print_help_and_exit): Fix typo.
819
8202009-03-21 Eli Zaretskii <eliz@gnu.org>
821
822 * ntlib.c (setuid): Argument is now unsigned.
823 (getuid): Return value is now unsigned.
824 (getpwuid): Argument is now unsigned.
825 (fchown): UID and GID arguments are now unsigned.
826
827 * ntlib.h (fchown): UID and GID arguments are now unsigned.
828 (getuid): Return value is now unsigned.
829 (setuid): Argument is now unsigned.
830 (getpwuid): Remove prototype (it's declared in nt/inc/pwd.h).
831
8322009-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
833
834 * emacsclient.c (main): Revert part of last change, so
835 drive-relative file names again work on Windows.
836
8372009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
838
839 * emacsclient.c (main): Always pass cwd via "-dir". Pass the file
840 names without prepending cwd to them, so Emacs uses its customary
841 rules to determine how to interpret the file name.
842
8432009-03-04 Glenn Morris <rgm@gnu.org>
844
845 * movemail.c (main) [MAIL_USE_POP]: Add -r to usage message.
846
8472009-02-13 Sven Joachim <svenjoac@gmx.de>
848
849 * movemail.c: Include time.h unconditionally.
850 (main): Use time_t for time variables.
851
8522009-02-11 Glenn Morris <rgm@gnu.org>
853
854 * movemail.c (mbx_delimit_begin): Also write the current time.
855
8562009-02-10 Glenn Morris <rgm@gnu.org>
857
858 * movemail.c (mbx_delimit_begin, mbx_delimit_end): Write mbox rather
859 than Babyl format. (Bug#2196)
860
8612009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
862
863 * emacsclient.c (decode_options): Use a dummy display name under
864 NS/Cocoa.
865
8662009-01-14 Lars Rasmusson <lars.rasmusson@gmail.com> (tiny change)
867
868 * ebrowse.c (matching_regexp): Fix OB1 error.
869
8702009-01-05 Glenn Morris <rgm@gnu.org>
871
872 * ebrowse.c (version):
873 * etags.c (print_version):
874 * rcs2log (Copyright): Update copyright for 2009.
875
8762009-01-01 Chong Yidong <cyd@stupidchicken.com>
877
878 * movemail.c (main): Fatal if hard links cannot be created.
879
8802008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
881
882 * emacsclient.c (start_daemon_and_retry_set_socket): Improve error
883 checking.
884
8852008-12-14 Dan Nicolaescu <dann@ics.uci.edu>
886
887 * emacsclient.c: Include syswait.h instead of sys/types.h.
888
8892008-12-11 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
890
891 * emacsclient.c (WCONTINUED): New compatibility define
892 for older systems.
893
8942008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
895
896 * emacsclient.c (main): Fix previous change.
897
8982008-12-10 Juanma Barranquero <lekktu@gmail.com>
899
900 * emacsclient.c (main): Fix mindless breakage where emacsclient
901 does not work *at all* on Windows, even if it *can* connect.
902
9032008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
904
905 * emacsclient.c (EMACS_DAEMON): Remove definition.
906 (decode_options): Do not allow an empty alternate_editor on
907 WINDOWSNT.
908 (print_help_and_exit): Replace EMACS_DAEMON with WINDOWSNT.
909 (start_daemon_and_retry_set_socket): Likewise.
910 (main): Fail in case of not being able to connect.
911
9122008-12-10 Juanma Barranquero <lekktu@gmail.com>
913
914 * emacsclient.c [!WINDOWSNT] (EMACS_DAEMON): New define.
915 Changes when EMACS_DAEMON is not defined:
916 (print_help_and_exit): Don't add daemon information to help.
917 (start_daemon_and_retry_set_socket): Make a no-op.
918 (main): Don't set `start_daemon_if_needed' (which is initialized to 0).
919
9202008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
921
922 * emacsclient.c (print_help_and_exit): Describe what an empty
923 string argument does for --alternate-editor.
924 (set_socket): Make it possible to not exit in case of an error.
925 (start_daemon_and_retry_set_socket): New function.
926 (main): Use it. Restore the NULL value for socket_name and
927 server_file after the set_socket call.
928
9292008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
930
931 * emacsclient.c: Include <arpa/inet.h>.
932
9332008-12-01 Dan Nicolaescu <dann@ics.uci.edu>
934
935 * make-docfile.c (scan_lisp_file): Use xmalloc instead of malloc.
936
9372008-11-22 Derek Peschel <dpeschel@eskimo.com> (tiny change)
938
939 * etags.c (add_regex): Pass correct length to re_compile_pattern.
940
9412008-11-02 Chong Yidong <cyd@stupidchicken.com>
942
943 * emacsclient.c (window_system): Delete redundant variable.
944 (decode_options): Don't use it.
945 (find_tty): New function.
946 (main): Use find_tty, and don't use window_system.
947
9482008-11-01 Eli Zaretskii <eliz@gnu.org>
949
950 * emacsclient.c (main) [WINDOWSNT]: Don't ifdef away the call to
951 `ttyname'.
952 (w32_getenv): Treat $TERM specially: if not found in the
953 environment and in the Registry, return "w32console".
954 (ttyname) [WINDOWSNT]: New function.
955
9562008-10-31 Andreas Schwab <schwab@suse.de>
957
958 * emacsclient.c (main): Don't force sending tty when in eval mode.
959
9602008-10-30 Chong Yidong <cyd@stupidchicken.com>
961
962 * emacsclient.c (main): If using the current frame, send tty
963 information to Emacs in case daemon mode needs to occupy this tty.
964
9652008-10-29 Juanma Barranquero <lekktu@gmail.com>
966
967 * emacsclient.c (EXTRA_SPACE): New macro.
968 (get_server_config, set_local_socket): Use it.
969
970 * makefile.w32-in ($(BLD)/sorted-doc.$(O)): Remove spurious backslash.
971 Reported by Guillaume Conjat <gconjat.ext@orange-ftgroup.com>.
972
9732008-10-29 Ulrich Mueller <ulm@gentoo.org>
974
975 * emacsclient.c (set_local_socket): Use TMPDIR (default /tmp)
976 instead of hardcoded /tmp.
977
9782008-10-13 Dan Nicolaescu <dann@ics.uci.edu>
979
980 * emacsclient.c (longopts, print_help_and_exit): Add -nw.
981 (decode_options): Use getopt_long_only.
982
9832008-09-30 Eli Zaretskii <eliz@gnu.org>
984
985 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove ccl.elc and
986 codepage.elc.
987
9882008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
989
990 * emacsclient.c (main): Use stdout rather than stdin to obtain the
991 terminal (bug#427).
992
9932008-08-25 Francesco Potortì <pot@gnu.org>
994
995 * etags.c (main): Do not use static space for the tagfile string.
996
9972008-08-17 Francesco Potortì <pot@gnu.org>
998
999 * etags.c (main): Use canonicalize_filename on tags file name.
1000 (relative_filename): Revert 3.85: do not collapse slashes here.
1001 (absolute_dirname): Remove useless call to canonicalize_filename.
1002 (canonicalize_filename): Collapse multiple slashes here.
1003
10042008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
1005
1006 * Makefile.in (INSTALLABLES): Add LIB_SRC_EXTRA_INSTALLABLES.
1007 Do not special case for NS_IMPL_COCOA.
1008
10092008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
1010
1011 * Makefile.in (CFLAGS): Drop -universal under NS_IMPL_COCOA.
1012 (.m.o): Dispense with GNUstep-specific flags.
1013
10142008-08-05 Ulrich Mueller <ulm@gentoo.org>
1015
1016 * pop.c (socket_connection): Add conditionals for
1017 HAVE_KRB5_ERROR_TEXT and HAVE_KRB5_ERROR_E_TEXT to support
1018 compilation with MIT Kerberos and Heimdal, respectively.
1019
10202008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
1021
1022 * etags.c:
1023 * emacsclient.c: Remove VMS support.
1024
10252008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
1026
1027 Remove support for Mac Carbon.
1028 * makefile.w32-in:
1029 * emacsclient.c: Remove code for Carbon.
1030
10312008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
1032
1033 * Makefile.in (mac-fix-env): Remove #ifdef around rule.
1034
10352008-07-17 Andreas Schwab <schwab@suse.de>
1036
1037 * Makefile.in (INSTALL_SCRIPT): Remove duplicate definition.
1038 (LIB_STANDARD_LIBSRC): Don't define.
1039 (LOADLIBES): Remove LIB_STANDARD_LIBSRC.
1040
10412008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
1042
1043 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
1044 NS_IMPL_COCOA.
1045
10462008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
1047
1048 * ntlib.h (fcloseall, fgetchar, flushall, fputchar, putw):
1049 Remove, unused.
1050
10512008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
1052
1053 * .cvsignore: Add mac-fix-env.
1054 * mac-fix-env.m: New file, automatically update
1055 ~/.MacOSX/environment.plist on OS X systems to expose environment
1056 variables inside Emacs started from icon.
1057 * Makefile.in: Add -universal to CFLAGS on OS X, add mac-fix-env to
1058 programs to build.
1059 * make-docfile.c: Add .m to list of file extensions.
1060
10612008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
1062
1063 * movemail.c (main): Use int instead of WAITTYPE.
1064
10652008-07-05 Juanma Barranquero <lekktu@gmail.com>
1066
1067 * makefile.w32-in (OTHER_PLATFORM_SUPPORT):
1068 Remove vmsproc.el and vms-patch.el.
1069
10702008-06-26 Juanma Barranquero <lekktu@gmail.com>
1071
1072 * makefile.w32-in (obj): Remove w32bdf.o.
1073
10742008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
1075
1076 * fakemail.c: Remove references to obsolete variables.
1077
10782008-06-02 Jim Meyering <meyering@redhat.com>
1079
1080 * ebrowse.c (xfree): Remove definition; s/xfree/free/.
1081
1082 Remove useless if-before-free tests.
1083 * ebrowse.c (xfree): Likewise.
1084 * etags.c (process_file_name, free_tree, free_fdesc): Likewise.
1085 (popclass_above, Prolog_functions, Erlang_functions): Likewise.
1086 * pop.c (pop_quit): Likewise.
1087
10882008-05-30 Juanma Barranquero <lekktu@gmail.com>
1089
1090 * makefile.w32-in (lisp2): Add minibuffer.elc.
1091
10922008-05-29 Tom Tromey <tromey@redhat.com>
1093
1094 * etags.c (relative_filename): Treat "///" like "/" in filenames.
1095
10962008-05-09 Eli Zaretskii <eliz@gnu.org>
1097
1098 * ntlib.c: Include sys/types.h, sys/stat.h, and errno.h.
1099 (IS_DIRECTORY_SEP): New macro.
1100 (convert_time, is_exec, stat): New functions.
1101
11022008-05-08 Eli Zaretskii <eliz@gnu.org>
1103
1104 * makefile.w32-in (lisp2): Rename epa-file-hook.elc to epa-hook.elc.
1105
11062008-05-03 Eli Zaretskii <eliz@gnu.org>
1107
1108 * makefile.w32-in (lisp2): Add epa-file-hook.elc, to track the
1109 corresponding change in src/Makefile.in.
1110
11112008-04-24 Adam Gołębiowski <adamg@pld-linux.org> (tiny change)
1112
1113 * Makefile.in (etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo.
1114
11152008-04-10 Jason Rumney <jasonr@gnu.org>
1116
1117 * makefile.w32-in (CLIENTRES): New variable and target.
1118 (TRES): Remove.
1119 ($(BLD)/emacsclientw.exe): Use $(CLIENTRES) instead of $(TRES).
1120
11212008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1122
1123 * vcdiff: Use "sccs get" rather than "get"; leave PATH alone.
1124
11252008-04-18 Steve Grubb <sgrubb@redhat.com> (tiny change)
1126
1127 * vcdiff: Use mktemp (CVE-2008-1694).
1128
11292008-04-09 Jason Rumney <jasonr@gnu.org>
1130
1131 * makefile.w32-in (distclean, maintainer-clean): New targets.
1132
11332008-03-13 Glenn Morris <rgm@gnu.org>
1134
1135 * makefile.w32-in (VERSION): Set to 23.0.60.
1136
11372008-03-04 Juanma Barranquero <lekktu@gmail.com>
1138
1139 * .cvsignore: Add oo.
1140
11412008-02-27 Yuri Shtil <yuris@juniper.net> (tiny change)
1142
1143 * etags.c (Perl_functions): Fix call to skip_spaces.
1144
11452008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
1146
1147 * Makefile.in (NO_SHORTNAMES):
1148 * emacsclient.c (NO_SHORTNAMES):
1149 * fakemail.c (NO_SHORTNAMES):
1150 * make-docfile.c (NO_SHORTNAMES):
1151 * movemail.c (NO_SHORTNAMES):
1152 * pop.c (NO_SHORTNAMES): Remove references to obsolete variable.
1153
11542008-02-23 Jason Rumney <jasonr@gnu.org>
1155
1156 * makefile.w32-in (MOUSE_SUPPORT): Remove duplicate tooltip.elc.
1157 (MSDOS_SUPPORT, VMS_SUPPORT): Remove.
1158 (OTHER_PLATFORM_SUPPORT): Replace above. Add X specific files too.
1159 (lisp2): Add new languages.
1160 ($(DOC)): Use OTHER_PLATFORM_SUPPORT.
1161
11622008-02-22 Juanma Barranquero <lekktu@gmail.com>
1163
1164 * makefile.w32-in (lisp2): Remove devanagari.el, kannada.el,
1165 malayalam.el, and tamil.el. Add sinhala.el.
1166
11672008-02-20 Juanma Barranquero <lekktu@gmail.com>
1168
1169 * emacsclient.c (main) [WINDOWSNT]: Understand DRIVE:NAME,
1170 where NAME is relative to DRIVE'S current directory.
1171
11722008-02-15 Juanma Barranquero <lekktu@gmail.com>
1173
1174 * emacsclient.c (print_help_and_exit): Show -d option on Windows.
1175
11762008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
1177
1178 * fakemail.c: Undo previous change.
1179
11802008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
1181
1182 * fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional.
1183 (main): Replace MAIL_PROGRAM_NAME with its value.
1184
1185 * Makefile.in (REGEXP_IN_LIBC): Remove reference to obsolete variable.
1186
11872008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1188
1189 * emacsclient.c (decode_options): Pass --display implicitly if -c
1190 is specified. Only set tty if -t or -c is specified.
1191
11922008-02-04 Jason Rumney <jasonr@gnu.org>
1193
1194 * makefile.w32-in (lisp1): Use (), not {}.
1195
11962008-02-04 Tom Tromey <tromey@redhat.com>
1197
1198 * etags.c: Add "GTY" as synonym for __attribute__.
1199 Update gperf output.
1200
12012008-02-01 Jason Rumney <jasonr@gnu.org>
1202
1203 * makefile.w32-in (obj): Sync with src/Makefile.in.
1204 (TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
1205 (WINNT_SUPPORT): Add term/w32-win.elc.
1206 (lisp1, lisp2): Sync with lisp in src/Makefile.in.
1207
12082008-02-01 Jason Rumney <jasonr@gnu.org>
1209
1210 * makefile.w32-in (obj): Add font.o and w32font.o.
1211
12122008-02-01 Zhang Wei <id.brep@gmail.com> (tiny change)
1213
1214 * makefile.w32-in (lisp1): Delete ucs-tables.elc,
1215 utf-8.elc, and latin-*.el.
1216
12172008-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
1218
1219 * emacsclient.c (decode_options): Default to NULL display, as Emacs-22.
1220 Allow the -d option under w32 again, for those rare cases where it
1221 actually does make sense.
1222
12232008-01-25 Juanma Barranquero <lekktu@gmail.com>
1224
1225 * emacsclient.c (set_tcp_socket): Don't send "\n" after
1226 the authentication string; there's no need to haste.
1227
12282008-01-22 Chong Yidong <cyd@stupidchicken.com>
1229
1230 * pop.c (pop_stat, pop_last): Fix last fix.
1231
12322008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
1233
1234 * movemail.c: Remove references to XENIX.
1235
12362008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
1237
1238 * movemail.c:
1239 * make-docfile.c: Remove reference to symbols defined by systems
1240 not supported anymore: MAC_OS8, XENIX and STRIDE.
1241
12422008-01-12 Eli Zaretskii <eliz@gnu.org>
1243
1244 * emacsclient.c (decode_options) [WINDOWSNT]: Don't use the value
1245 of DISPLAY in the environment. Don't support -d.
1246 (print_help_and_exit) [WINDOWSNT]: Don't show the --display option.
1247 (longopts) [WINDOWSNT]: Remove --display.
1248
12492008-01-10 Chong Yidong <cyd@stupidchicken.com>
1250
1251 * pop.c (pop_stat, pop_last): Check validity of string-to-integer
1252 conversion. Mistakes spotted by Nico Golde.
1253
12542008-01-09 Glenn Morris <rgm@gnu.org>
1255
1256 * emacsclient.c: Add missing final newlines to message calls.
1257
12582008-01-09 Daniel Hackney <dan@haxney.org> (tiny change)
1259
1260 * emacsclient.c (set_socket): Add final newline to socket error message.
1261
12622008-01-04 Glenn Morris <rgm@gnu.org>
1263
1264 * ebrowse.c (version) <emacs_copyright>: New variable.
1265 Just use current year for copyright.
1266
1267 * etags.c (print_version):
1268 * rcs2log (Copyright): Update to 2008.
1269
12702007-11-28 Jason Rumney <jasonr@gnu.org>
1271
1272 * makefile.w32-in (VMS_SUPPORT): No longer byte-compiled.
1273
12742007-11-27 Jan Djärv <jan.h.d@swipnet.se>
1275
1276 * pop.c (socket_connection): Remove AI_ADDRCONFIG.
1277
12782007-11-19 Jan Djärv <jan.h.d@swipnet.se>
1279
1280 * pop.c (socket_connection): Move realhost out of #ifdefs.
1281 Set realhost both for HAVE_GETADDRINFO and !HAVE_GETADDRINFO.
1282
12832007-11-18 Jan Djärv <jan.h.d@swipnet.se>
1284
1285 * pop.c (socket_connection): Use getaddrinfo if available.
1286
12872007-11-22 Francesco Potortì <pot@gnu.org>
1288
1289 * etags.c (default_C_help) [CTAGS]: Differentiate the help string,
1290 as the defaults in ctags are different from etags.
1291
12922007-11-15 Francesco Potortì <pot@gnu.org>
1293
1294 * etags.c: Make prototypes for extern definitions, and add all
1295 that are needed to quench warnings on 64-bit.
1296 (main): Use the same defaults for ctags as for etags: find
1297 typedefs, structure tags, macro constants, enum constants, struct
1298 members and global variables.
1299 (make_C_tag) [DEBUG]: Add debugging printout.
1300 (C_entries): In case '}' decrement bracelev before testing it.
1301
13022007-11-15 Masatake YAMATO <jet@gyve.org>
1303
1304 * etags.c (C_entries): In case '}', set fvdef to fvnone
1305 unconditioned to (!ignoreindent && lp == newlb.buffer + 1).
1306
13072007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
1308
1309 * makefile.w32-in (obj): Remove sunfns.o.
1310
13112007-10-28 Juanma Barranquero <lekktu@gmail.com>
1312
1313 * makefile.w32-in (obj): Remove abbrev.o.
1314
13152007-10-26 Juanma Barranquero <lekktu@gmail.com>
1316
1317 * emacsclient.c: Add a wrapper for getenv so it also checks the
1318 registry on Windows. Suggestion and algorithm by Eli Zaretskii.
1319 Code partially based on w32_get_resource and init_environment (w32.c).
1320 (egetenv): New wrapper for getenv.
1321 (get_current_dir_name, decode_options, get_server_config)
1322 (set_local_socket, set_socket, main): Use egetenv, not getenv.
1323 (w32_get_resource, w32_getenv) [WINDOWSNT]: New functions.
1324
13252007-10-25 Jason Rumney <jasonr@gnu.org>
1326
1327 * emacsclient.c (sock_err_message): New function.
1328 (set_tcp_socket): Use it.
1329
13302007-10-09 Juanma Barranquero <lekktu@gmail.com>
1331
1332 * emacsclient.c (print_help_and_exit): Fix space to improve
1333 alignment in output messages.
1334
13352007-09-27 Jason Rumney <jasonr@gnu.org>
1336
1337 * makefile.w32-in (emacsclient, emacsclientw): Link to COMCTL32.
1338
1339 * emacsclient.c (w32_window_app): Init common controls when windowed.
1340
13412007-09-21 Glenn Morris <rgm@gnu.org>
1342
1343 * emacstool.c: Remove file.
1344 * Makefile.in (emacstool, nemacstool, xvetool, xveterm):
1345 Delete targets built from emacstool.
1346
13472007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
1348
1349 * emacsclient.c (decode_options): -t implies -c.
1350
13512007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1352
1353 * emacsclient.c (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP)
1354 (IS_ANY_SEP): Only define if !defined(HAVE_GET_CURRENT_DIR_NAME).
1355 (main_argc): Remove.
1356 (strprefix): Use strncmp.
1357
13582007-09-20 Jason Rumney <jasonr@gnu.org>
1359
1360 * emacsclient.c (main) [SIGSTOP]: Change conditional from WINDOWSNT.
1361
13622007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1363
1364 * emacsclient.c (current_frame): Change the default.
1365 (longopts): Replace --current-frame by --create-frame.
1366 (decode_options): Reverse the meaning of -c.
1367 (print_help_and_exit): Update help text accordingly.
1368 (main): Remove the -version and -good-version messages.
1369
13702007-09-12 Glenn Morris <rgm@gnu.org>
1371
1372 * Makefile.in (SOURCES, unlock, relock): Delete.
1373
13742007-08-29 Glenn Morris <rgm@gnu.org>
1375
1376 * makefile.w32-in (VERSION): Increase to 23.0.50.
1377
13782007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
1379
1380 * emacsclient.c (w32_execvp): Move definition before use.
1381 (decode_options): Don't use a tty on mac carbon or windows.
1382
13832007-08-29 Jason Rumney <jasonr@gnu.org>
1384
1385 * emacsclient.c (SEND_STRING, SEND_QUOTED): Remove obfuscation macros.
1386 (quote_argument, set_tcp_socket, handle_sigcont, handle_sigtstp):
1387 (main): Expand removed macros inline.
1388 (main) [WINDOWSNT]: Don't call ttyname. Don't recognize -suspend
1389 option.
1390 (main) [NO_SOCKETS_IN_FILE_SYSTEM]: Don't call init_signals.
1391
13922007-08-29 Károly Lőrentey <lorentey@elte.hu>
1393
1394 * emacsclient.c (signal.h): New include.
1395 (sys/stat.h, errno.h): Always include, even on WINDOWSNT.
1396 (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
1397 Copy definitions here from src/lisp.h.
1398 (main_argc, main_argv, current_frame, window_system, tty): New vars.
1399 (longopts): Add tty, current-frame.
1400 (xmalloc, xstrdup): New functions.
1401 (get_current_dir_name): New function, copied from src/sysdep.c.
1402 (decode_options): Set display from environment. Add tty and
1403 current_frame options. Make --no-wait imply --current-frame,
1404 except when it is the only option given. Make sure no frame is
1405 opened when --current-frame is set.
1406 (print_help_and_exit): Document tty and current-frame options.
1407 (fail): Change arguments to void.
1408 (main): When sockets are not defined, set main_argc, main_argv,
1409 and call fail() with no arguments.
1410 (emacs_socket): New variable (moved out from main `s').
1411 (quote_file_name): Rename to quote_argument.
1412 (quote_argument): New name for old quote_file_name.
1413 (unquote_argument, strprefix, pass_signal_to_emacs)
1414 (handle_sigcont, handle_sigtstp, init_signals): New functions.
1415 (set_local_socket): Initialize saved_errno to 0. If socket-name
1416 is too long, call `fail' rather than `exit'.
1417 (main): Doc update. Set main_argc, main_argv. New var `str'.
1418 Don't need a filename or argument if tty or window_system set.
1419 Call fail with no arguments. Use get_current_dir_name to send
1420 over the current directory. Send version number to Emacs for
1421 verification. If tty is set, check TERM, and pass name and type
1422 to Emacs. Pass window_system to Emacs. Move sending of eval to
1423 optind loop. Send -position, -file to Emacs. Call fsync after
1424 fflush. Check for a client/server version match.
1425 Handle -emacs-pid, -window-system-unsupported, -print, -error, and
1426 -suspend commands. Don't exit prematurely on --no-wait, let Emacs
1427 close the connection for us. When creating a new frame, send
1428 environment and pwd to Emacs. Send current-frame to Emacs.
1429
14302007-08-25 Eli Zaretskii <eliz@gnu.org>
1431
1432 * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
1433 Prepend "-" to the command, in case srcdir=. and file is copied
1434 into itself.
1435
14362007-07-25 Glenn Morris <rgm@gnu.org>
1437
1438 * Relicense all FSF files to GPLv3 or later.
1439
1440 * COPYING: Switch to GPLv3.
1441
14422007-07-17 Francesco Potortì <pot@gnu.org>
1443
1444 * etags.c (C_entries): Reset the fvdef machine when out of function.
1445 (PRINT_UNDOCUMENTED_OPTIONS_HELP): #define as FALSE if undefined.
1446 (print_help): Use it in if() rather than #if.
1447 (print_help): Conditionally print help about --no-line-directive.
1448
14492007-07-16 Eli Zaretskii <eliz@gnu.org>
1450
1451 * makefile.w32-in (clean): Don't delete *~.
1452
14532007-06-07 Glenn Morris <rgm@gnu.org>
1454
1455 * etags.c (print_version): Add `emacs_copyright' string, for
1456 easier automatic updating.
1457
14582007-05-18 Francesco Potortì <pot@gnu.org>
1459
1460 * etags.c: Extern definitions of some more pointer functions for
1461 standalone compilation, especially important for 64bit platforms.
1462 (main, print_help): --members is now the default for etags.
1463 (C_entries): Parse start of C comment as a space == end of token.
1464 This is not necessary for C++ comment, already parsed as newline.
1465
14662007-04-26 Glenn Morris <rgm@gnu.org>
1467
1468 * makefile.w32-in (VERSION): Increase to 22.1.50.
1469
14702007-06-02 Chong Yidong <cyd@stupidchicken.com>
1471
1472 * Version 22.1 released.
1473
14742007-02-26 Francesco Potortì <pot@gnu.org>
1475
1476 * Makefile.in (etags, ctags): Define EMACS_NAME as "GNU Emacs".
1477
14782007-02-20 Ulrich Mueller <ulm@kph.uni-mainz.de> (tiny change)
1479
1480 * Makefile.in (EMACS, EMACSOPT): New variables.
1481 (blessmail): Use `--no-site-file' when compiling.
1482
14832007-02-05 Francesco Potortì <pot@gnu.org>
1484
1485 * etags.c (default_C_help, Cplusplus_help, PHP_help, print_help)
1486 (main): Now --members is the default for etags, not for ctags yet.
1487
14882007-02-04 Per Cederqvist <ceder@ingate.com> (tiny change)
1489
1490 * etags.c (gperf, in_word_set): Change attribute for Java to
1491 (C_JAVA & ~C_PLPL). The previous change introduced 2004-09-13 was
1492 broken, as (C_JAVA & !C_PLPL) always evaluates to 0. This caused
1493 import, package, extends, implements and interface to be treated
1494 specially for all kinds of C-style files, not just Java files.
1495
14962007-01-02 Francesco Potortì <pot@gnu.org>
1497
1498 * etags.c (longopts): New undocumented option --no-duplicates.
1499 (no_duplicates): Static variables for the above option.
1500 (print_help): Do not print help for --no-warn, now undocumented.
1501 (add_node): Allow duplicate tags in ctags mode unless --no-duplicates.
1502 (main): Pass the -u option to sort in ctags mode.
1503
15042006-12-28 Francesco Potortì <pot@gnu.org>
1505
1506 * etags.c (readline): When creating a relative file name from a
1507 #line directive, leave the file name alone. The previous
1508 behavior was to make it relative to the tags file directory,
1509 under the hypothesis that the #line directive file name was
1510 relative to the directory of the tagged file. That hypothesis is
1511 wrong with Cpp and Lex.
1512 (Makefile_targets): Do not include spaces in tag names.
1513
15142006-12-22 Eli Zaretskii <eliz@gnu.org>
1515
1516 * makefile.w32-in (make-docfile, ctags, etags, ebrowse, hexl)
1517 (movemail, fakemail, sorted-doc, digest-doc, emacsclient)
1518 (test-distrib, $(DOC), all): Depend on stamp_BLD instead of $(BLD).
1519 ($(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O))
1520 ($(BLD)/sorted-doc.$(O) $(BLD)/digest-doc.$(O))
1521 ($(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS))
1522 ($(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O))
1523 ($(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O)): Depend on stamp_BLD.
1524 (clean): Delete stamp_BLD.
1525
15262006-12-20 Francesco Potortì <pot@gnu.org>
1527
1528 * etags.c (C_entries): DEFUN names were longer by one: corrected.
1529
15302006-12-18 Juanma Barranquero <lekktu@gmail.com>
1531
1532 * emacsclient.c [WINDOWSNT] (set_fg, get_wc): New variables.
1533 [WINDOWSNT] (w32_find_emacs_process, w32_give_focus): New functions.
1534 (main) [WINDOWSNT]: Remove code to release the focus; call
1535 w32_give_focus instead.
1536
15372006-12-15 Juanma Barranquero <lekktu@gmail.com>
1538
1539 * emacsclient.c (w32_execvp): New function; wrapper for `execvp'.
1540 (execvp) [WINDOWSNT]: Redefine to `w32_execvp'.
1541 (fail): Remove Windows-specific fix (subsumed into w32_execvp).
1542 Suggestions and comment by Eli Zaretskii.
1543
15442006-12-06 Christoph Conrad <christoph.conrad@gmx.de>
1545
1546 * makefile.w32-in ($(BLD)/emacsclient.exe, $(BLD)/emacsclientw.exe):
1547 Use $(USER32) for compatibility with Visual Studio .NET 2003.
1548
15492006-11-30 Juanma Barranquero <lekktu@gmail.com>
1550
1551 * emacsclient.c (emacs_pid): New variable.
1552 (message): Remove leftover code.
1553 (get_server_config): Set emacs_pid. Don't allow Emacs to grab the
1554 focus yet; emacsclient can still display an informational message
1555 before sending requests to Emacs.
1556 (main): Allow Emacs to grab the focus. Simplify message() call.
1557
15582006-11-30 Michael Mauger <mmaug@yahoo.com>
1559
1560 * emacsclient.c (message): Make sure the message is properly
1561 written even if it contains printf escapes, and flush the result.
1562 (set_tcp_socket): Make the message for non-local connections
1563 informational rather than an error.
1564
15652006-11-28 Kevin Ryde <user42@zip.com.au>
1566
1567 * etags.c (readline): Check for double quote after #line.
1568
15692006-11-28 Jan Djärv <jan.h.d@swipnet.se>
1570
1571 * etags.c (readline): sscanf could in principle return 2.
1572
15732006-11-28 Francesco Potortì <pot@gnu.org>
1574
1575 * etags.c (readline): lno is unsigned.
1576 (TeX_commands): Use p++ (rather than *p++) to increment p.
1577 (Lua_functions): Explicitly discard LOOKING_AT's return value.
1578
15792006-11-27 Juanma Barranquero <lekktu@gmail.com>
1580
1581 * makefile.w32-in (TRES): New macro (copied from nt/makefile.w32-in).
1582 ($(TRES)): New rule (copied from nt/makefile.w32-in).
1583 ($(BLD)/emacsclientw.exe): Add dependency.
1584
15852006-11-27 Eli Zaretskii <eliz@gnu.org>
1586
1587 * makefile.w32-in ($(BLD)/emacsclient.$(O)): Depend on makefile.w32-in.
1588
15892006-11-25 Juanma Barranquero <lekktu@gmail.com>
1590
1591 * makefile.w32-in (VERSION): New macro.
1592 (ECLIENT_CFLAGS): Add -DVERSION.
1593
15942006-11-25 Jason Rumney <jasonr@gnu.org>
1595
1596 * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Use isalpha().
1597
15982006-11-24 Michael Mauger <mmaug@yahoo.com>
1599
1600 * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Support absolute
1601 file names with forward slashes.
1602
16032006-11-23 Juanma Barranquero <lekktu@gmail.com>
1604
1605 * emacsclient.c (print_help_and_exit): Tweak message contents and
1606 tabs/spaces to improve alignment in message boxes.
1607
16082006-11-22 Lennart Borgman <lennart.borgman.073@student.lu.se>
1609
1610 * emacsclient.c: Include <stdarg.h>.
1611 [WINDOWSNT]: Include <windows.h>.
1612 (w32_check_console_app): New function.
1613 (message): New function.
1614 (decode_options, print_help_and_exit, fail, main)
1615 (initialize_sockets, get_server_config, set_tcp_socket)
1616 (set_local_socket, set_socket): Use message().
1617
16182006-11-13 Jason Rumney <jasonr@gnu.org>
1619
1620 * emacsclient.c [WINDOWSNT]: Let config.h define HAVE_SOCKETS and
1621 HAVE_INET_SOCKETS.
1622
16232006-11-13 Juanma Barranquero <lekktu@gmail.com>
1624
1625 * makefile.w32-in (emacsclient): Depend also on emacsclientw.exe.
1626 ($(BLD)/emacsclientw.exe): New target.
1627 (install): Install emacsclientw.exe.
1628 ($(BLD)/cvtmail.$(O), $(BLD)/emacstool.$(O)): Remove obsolete targets.
1629 (ECLIENT_CFLAGS): Remove redundant flags.
1630
1631 * emacsclient.c [WINDOWSNT]: Undef _WINSOCKAPI_ and _WINSOCK_H.
1632
16332006-11-13 Jason Rumney <jasonr@gnu.org>
1634
1635 * makefile.w32-in ($(BLD)/emacsclient.$(O)): Use CFLAGS.
1636
16372006-11-10 David Reitter <david.reitter@gmail.com>
1638
1639 * emacsclient.c [!WINDOWSNT]: Include <sys/types.h>.
1640
16412006-11-08 Juanma Barranquero <lekktu@gmail.com>
1642
1643 * emacsclient.c (get_server_config) [WINDOWSNT]: Declare set_fg as
1644 FARPROC to avoid a compiler warning.
1645
16462006-11-07 Juanma Barranquero <lekktu@gmail.com>
1647
1648 * emacsclient.c (get_server_config) [WINDOWSNT]: Look for the server
1649 file on APPDATA if it doesn't exist on HOME, even if HOME is defined.
1650
1651 * emacsclient.c (get_server_config): Extract also the Emacs pid
1652 from the server file. On Windows, try to force the Emacs frame to
1653 the foreground.
1654
16552006-11-06 Juanma Barranquero <lekktu@gmail.com>
1656
1657 * emacsclient.c (longopts) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't show
1658 option --socket-name.
1659 (decode_options): Don't get EMACS_SERVER_FILE here, it could override
1660 command line options.
1661 (decode_options) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't parse "-s" option.
1662 (fail): Don't check for missing arguments, it is now done in set_socket.
1663 (file_name_absolute_p): New function (loosely based on the one in
1664 fileio.c).
1665 (initialize_sockets): Don't check for duplicate loading of Winsock.
1666 (get_server_config): Only try relative paths in the default
1667 directory locations.
1668 (set_tcp_socket): Don't call INITIALIZE(). Warn when connecting to
1669 a remote server.
1670 (set_socket): Call INITIALIZE(). Search explicit command-line
1671 arguments, then environment variable EMACS_SERVER_FILE, then implicit
1672 socket paths, before trying the alternate editor.
1673 (main): Use file_name_absolute_p.
1674
16752006-11-04 Eli Zaretskii <eliz@gnu.org>
1676
1677 * makefile.w32-in (../src/$(BLD)/temacs.exe): Create as temporary
1678 file if it doesn't already exist.
1679
16802006-11-03 Juanma Barranquero <lekktu@gmail.com>
1681
1682 * emacsclient.c (initialize_sockets): Don't initialize Winsock
1683 more than once.
1684
16852006-11-03 Mark Davies <mark@mcs.vuw.ac.nz>
1686
1687 * Makefile.in (INSTALL_SCRIPT): New macro.
1688 ($(DESTDIR)${archlibdir}, install): Use it, instead of INSTALL_PROGRAM.
1689
16902006-11-02 Juanma Barranquero <lekktu@gmail.com>
1691
1692 * grep-changelog: When called with no arguments (not even a
1693 filter), show help instead of blindingly dumping every single
1694 ChangeLog available. Doc fix. Update version.
1695
16962006-11-02 Tim Van Holder <tim.vanholder@gmail.com> (tiny change)
1697
1698 * emacsclient.c [WINDOWSNT]: Define HAVE_INET_SOCKETS.
1699 [!WINDOWSNT]: Include <netinet/in.h> if available.
1700 [HAVE_SOCKETS]: Also require HAVE_INET_SOCKETS.
1701 (IOCTL, IOCTL_BOOL_ARG): Remove.
1702 (set_tcp_socket): Don't set the socket in blocking mode.
1703 Remove c_arg.
1704
17052006-11-01 Juanma Barranquero <lekktu@gmail.com>
1706
1707 * emacsclient.c (fail) [WINDOWSNT]: Force the first argv passed to
1708 execvp to point to alternate_editor (otherwise .BAT scripts can't run).
1709
17102006-10-31 Óscar Fuentes <ofv@wanadoo.es> (tiny change)
1711
1712 * emacsclient.c [WINDOWSNT]: Include <malloc.h> and <stdlib.h>.
1713 (close_winsock): Declare as __cdecl.
1714
17152006-10-31 Jan Djärv <jan.h.d@swipnet.se>
1716
1717 * emacsclient.c [!WINDOWSNT]: Include <fcntl.h> if available.
1718 (set_tcp_socket): Prefer O_NONBLOCK, then O_NDELAY, then FIONBIO
1719 to set the socket in non-blocking mode.
1720
17212006-10-31 Tim Van Holder <tim.vanholder@gmail.com> (tiny change)
1722
1723 * emacsclient.c [!WINDOWSNT]: Include <netinet/in.h> and <sys/ioctl.h>.
1724 (INVALID_SOCKET): Define.
1725 (initialize_sockets): Put #endif at the right place.
1726 (set_local_socket): Use progname, not argv[0].
1727
17282006-10-31 Juanma Barranquero <lekktu@gmail.com>
1729
1730 * makefile.w32-in (ALL): Add emacsclient.
1731 (ECLIENT_CFLAGS, ECLIENTOBJS): New macros.
1732 (emacsclient, $(BLD)/emacsclient.exe): New targets.
1733 (install): Install emacsclient.
1734
1735 * emacsclient.c: Add support for TCP sockets.
1736 (SEND_STRING, SEND_QUOTED, HSOCKET, CLOSE_SOCKET, IOCTL)
1737 (INITIALIZE): New macros.
1738 (IOCTL_BOOL_ARG): New typedef.
1739 (server_file): New global variable.
1740 (longopts): New option --server-file.
1741 (decode_options): Process new option --server-file and environment
1742 variable EMACS_SERVER_FILE.
1743 (print_help_and_exit): Document new option.
1744 (fail): If no connection available and no alternate editor,
1745 suggest using options to make them explicit.
1746 (AUTH_KEY_LENGTH, SEND_BUFFER_SIZE): New constants.
1747 (send_buffer, sblen): New variables.
1748 (send_to_emacs): New function to buffer output and send it with `send'.
1749 (quote_file_name): Use SEND_STRING.
1750 (close_winsock, initialize_sockets): New functions to load and
1751 unload Winsock.
1752 (get_server_config, set_tcp_socket): New functions to create and
1753 set up TCP sockets.
1754 (set_local_socket): New function to create and set up Unix
1755 socket (code moved from previous implementation).
1756 (set_socket): New function to choose between TCP and Unix sockets.
1757 (main): Use SEND_STRING and SEND_QUOTED. Most code moved to
1758 set_local_socket. Use set_socket. Get answers from server.el with
1759 recv(), not file stream functions.
1760
17612006-10-09 Eli Zaretskii <eliz@gnu.org>
1762
1763 * makefile.w32-in (../src/config.h): Fix error message.
1764
17652006-09-30 Eli Zaretskii <eliz@gnu.org>
1766
1767 * .cvsignore: Add blessmail.
1768
17692006-09-15 Jay Belanger <belanger@truman.edu>
1770
1771 * COPYING: Replace "Library Public License" by "Lesser Public
1772 License" throughout.
1773
17742006-08-09 Jan Djärv <jan.h.d@swipnet.se>
1775
1776 * etags.c (readline): Expect sscanf returns >= 1.
1777 (readline): Change position on %n and \" in sscanf.
1778
17792006-08-07 Masatake YAMATO <jet@gyve.org>
1780
1781 * etags.c (readline): Expect sscanf returns 2, not 1.
1782
17832006-08-07 Masatake YAMATO <jet@gyve.org>
1784
1785 * etags.c (TEX_mode): Check getc returns EOF.
1786 File ended without newline causes infinite loop.
1787
17882006-07-30 Adrian Aichner <adrian@xemacs.org> (tiny change)
1789
1790 * etags.c: It's XEmacs, not Xemacs: change all the occurrences.
1791
17922006-07-30 Francesco Potortì <pot@gnu.org>
1793
1794 * etags.c [ETAGS_REGEXPS]: Now is unconditionally defined.
1795 [LONG_OPTIONS]: Changed to NO_LONG_OPTIONS, which is undefined.
1796 (Objc_suffixes): Suggest using --lang=c for full help.
1797 (C_entries): Initialise savetoken to 0 to shut up the compiler.
1798
17992006-07-20 Andreas Schwab <schwab@suse.de>
1800
1801 * fakemail.c (fatal): Drop second parameter and treat first
1802 parameter as a plain string. Callers changed.
1803
18042006-07-18 Dan Nicolaescu <dann@ics.uci.edu>
1805
1806 * ebrowse.c (usage, version): Mark as NO_RETURN.
1807
1808 * emacsclient.c (print_help_and_exit): Likewise.
1809
18102006-07-10 Francesco Potortì <pot@gnu.org>
1811
1812 * etags.c (absolute_filename): Free unused space (cosmetic change).
1813 (in_word_set): In C, also tag #undef symbols.
1814
18152006-06-09 Eli Zaretskii <eliz@gnu.org>
1816
1817 * yow.c: Remove file.
1818
1819 * makefile.w32-in ($(BLD)/yow.$(O)): Remove target.
1820
1821 * Makefile.in (UTILITIES): Remove yow${EXEEXT}.
1822 yow${EXEEXT}: Remove target.
1823
18242006-06-04 Masatake YAMATO <jet@gyve.org>
1825
1826 * ebrowse.c (main): Exit with EXIT_FAILURE if BROWSE file
1827 doesn't exist, is not seekable, not is failed in ftall.
1828
18292006-06-03 Eli Zaretskii <eliz@gnu.org>
1830
1831 * makefile.w32-in (ALL): Add sorted-doc and digest-doc.
1832 ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe)
1833 ($(BLD)/test-distrib.exe): New targets.
1834 (sorted-doc, digest-doc, test-distrib): New targets.
1835 (install): Install sorted-doc.exe and digest-doc.exe.
1836 ($(BLD)/sorted-doc.$(O)): Update dependencies.
1837
1838 * digest-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
1839 (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
1840 terminal device.
1841
1842 * sorted-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
1843 [WINDOWSNT] <top level>: Don't redeclare malloc.
1844 (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
1845 terminal device.
1846 (main): Initialize bp, to avoid compiler warnings.
1847
1848 * makefile.w32-in: Delete traces of leditcfns.c.
1849
1850 * leditcfns.c: Remove file.
1851
18522006-05-23 Francesco Potortì <pot@gnu.org>
1853
1854 * pop.c (pop_open, socket_connection, KPOP_SERVICE):
1855 Add comments explaining why the "kpop" service is never used.
1856
18572006-05-13 Eli Zaretskii <eliz@gnu.org>
1858
1859 * makefile.w32-in (lisp1): Add fringe.elc.
1860
18612006-05-02 Francesco Potortì <pot@gnu.org>
1862
1863 * etags.c (Perl_functions): Free space allocated for var package.
1864 (Erlang_functions): Possibly free space allocated for var last.
1865 (Prolog_functions): Possibly free space allocated for var last.
1866
18672006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
1868
1869 * sorted-doc.c (main): Initialize docs to NULL.
1870
1871 * yow.c (yow): Free buf.
1872
1873 * etags.c: Delete c-indentation-style local variable.
1874
18752006-04-29 Richard Stallman <rms@gnu.org>
1876
1877 * movemail.c (main): Check for negative value from `read'.
1878
1879 * fakemail.c (read_header): Give fatal error if input has no header.
1880
18812006-04-02 Paul Eggert <eggert@cs.ucla.edu>
1882
1883 * b2m.c (main): Don't include <limits.h>.
1884 (TM_YEAR_BASE): New macro.
1885 (TM_YEAR_IN_ASCTIME_RANGE): Don't define if already defined, so
1886 that s/ files can override this. Use the more-conservative range
1887 1000-9999.
1888 (main): Check for asctime returning NULL.
1889 * fakemail.c: Likewise.
1890
18912006-03-27 Paul Eggert <eggert@cs.ucla.edu>
1892
1893 * b2m.c: Include <limits.h>.
1894 (TM_YEAR_IN_ASCTIME_RANGE): New macro.
1895 (main): Check for out-of-range time stamps.
1896 * fakemail.c: Likewise.
1897
18982006-03-18 Andre Spiegel <spiegel@gnu.org>
1899
1900 * vcdiff: Use "echo" as a default for $echo, otherwise we'll
1901 execute $DIFF twice, and once with the wrong options.
1902
19032006-02-23 Claudio Fontana <claudio@gnu.org>
1904
1905 * Makefile.in (install, uninstall): Add DESTDIR variable to
1906 support staged installations.
1907
19082005-12-30 Eli Zaretskii <eliz@gnu.org>
1909
1910 * makefile.w32-in (MOUSE_SUPPORT): Add tooltip.elc.
1911 (lisp1): Add rfn-eshadow.elc, international/utf-16.elc, image.elc,
1912 international/fontset.elc, dnd.elc, mwheel.elc, and tool-bar.elc.
1913 Rearrange the list to be similar to $(shortlisp) in
1914 src/Makefile.in.
1915 (lisp2): Add language/kannada.el, emacs-lisp/syntax.elc,
1916 emacs-lisp/timer.elc, jka-cmpr-hook.elc, font-lock.elc,
1917 jit-lock.elc. Rearrange the list to be similar to $(shortlisp) in
1918 src/Makefile.in.
1919
19202005-12-22 Richard M. Stallman <rms@gnu.org>
1921
1922 * Makefile.in (update-game-score.o): Delete spurious final `\'.
1923
19242005-11-18 Hideki IWAMOTO <h-iwamoto@kit.hi-ho.ne.jp> (tiny change)
1925
1926 * etags.c (main): Cxref mode writes to stdout: do not close tagf,
1927 which was never opened.
1928
19292005-10-20 Olli Savia <ops@iki.fi> (tiny change)
1930
1931 * etags.c: Undef STDIN if defined. (LynxOS defines it in system
1932 header files.)
1933
19342005-09-27 Francesco Potortì <pot@gnu.org>
1935
1936 * etags.c: Preliminary Forth support.
1937 (prolog_pr): Cast strlen to int before comparison.
1938 (LOOKING_AT, LOOKING_AT_NOCASE): Let the preprocessor check that
1939 the second argument is indeed a literal string.
1940 (main): In append mode, sort the tags file after writing it.
1941
19422005-09-27 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
1943
1944 * etags.c (longopts, print_help, main): The -a (--append) option
1945 can be used in ctags also; for one, the Linux make file uses it.
1946
19472005-09-20 Chong Yidong <cyd@stupidchicken.com>
1948
1949 * ebrowse.c (add_sym): Compare namespace names instead of
1950 namespace objects. This prevents the parser from incorrectly
1951 treating classes whose superclass is in another namespace.
1952
19532005-09-15 Richard M. Stallman <rms@gnu.org>
1954
1955 * Makefile.in (update-game-score.o): New target.
1956 Compile and link this program separately.
1957 (update-game-score${EXEEXT}): Use GETOPTDEPTS.
1958
19592005-09-11 Jason Rumney <jasonr@gnu.org>
1960
1961 * makefile.w32-in (../src/config.h): Don't overwrite. Print a
1962 message instead.
1963 (../src/paths.h): Remove.
1964
19652005-07-27 Juanma Barranquero <lekktu@gmail.com>
1966
1967 * .cvsignore: Don't ignore fns-* and fns.el, which are no longer
1968 generated. Ignore also ctags.c and getopt.h.
1969
1970 * makefile.w32-in (clean): Delete getopt.h.
1971 (getopt.h): New rule.
1972
19732005-07-26 Paul Eggert <eggert@cs.ucla.edu>
1974
1975 Merge gnulib getopt implementation into Emacs.
1976
1977 * Makefile.in (mostlyclean): Remove getopt.h, getopt.h-t.
1978 (GETOPT_H): New macro, from gnulib.
1979 (getopt.h): New rule, from gnulib.
1980 (GETOPTOBJS): Now autoconfigured.
1981 (GETOPTDEPS): getopt.h is now autoconfigured.
1982 (getopt.o, getopt1.o): Depend on $(GETOPT_H), not ${srcdir}/getopt.h.
1983 (getopt.o): Depend on ${srcdir}/gettext.h.
1984 (movemail.o): Depend on $(GETOPT_H).
1985 * getopt.c, getopt1.c: Sync from gnulib.
1986 * getopt_.h, getopt_int.h, gettext.h: New files, from gnulib.
1987 * getopt.h: Removed (now is getopt_.h).
1988
19892005-07-13 Ken Raeburn <raeburn@gnu.org>
1990
1991 * pop.c: Don't include des.h (or variants thereof); krb.h will do it.
1992 (sendline): Add the \r\n to the line in a temporary buffer, and write
1993 it all at once.
1994
19952005-07-04 Lute Kamstra <lute@gnu.org>
1996
1997 Update FSF's address in GPL notices.
1998
19992005-06-13 Eli Zaretskii <eliz@gnu.org>
2000
2001 * makefile.w32-in ($(DOC)): Fix last change.
2002
20032005-06-12 Eli Zaretskii <eliz@gnu.org>
2004
2005 * makefile.w32-in ($(DOC)): Depend on make-docfile.exe,
2006 temacs.exe, and the preloaded *.elc files. This avoids
2007 unnecessary dumping and DOC rebuilding.
2008
20092005-06-04 Eli Zaretskii <eliz@gnu.org>
2010
2011 * ntlib.h (fileno): Don't define if already defined.
2012
20132005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
2014
2015 * yow.c (setup_yow): Use EXIT_FAILURE in case no separators found.
2016 (yow): Use EXIT_FAILURE in case of memory error.
2017
20182005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2019
2020 * make-docfile.c (DIRECTORY_SEP): New macro.
2021 (IS_DIRECTORY_SEP): Use it.
2022
20232005-03-18 Jan Djärv <jan.h.d@swipnet.se>
2024
2025 * emacsclient.c: Avoid expansion of getcwd when defined as a macro.
2026
20272005-03-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2028
2029 * make-docfile.c: Undo previous change.
2030
20312005-02-04 Andreas Schwab <schwab@suse.de>
2032
2033 * movemail.c (fatal): Accept third parameter and pass down to error.
2034 (pfatal_with_name): Pass error string as format parameter instead of
2035 as part of format string.
2036 (pfatal_and_delete): Likewise.
2037 (main): Adjust call to fatal.
2038 (xmalloc): Likewise.
2039
20402005-01-29 Richard M. Stallman <rms@gnu.org>
2041
2042 * movemail.c (popmail): Don't use Errmsg as format string.
2043
20442004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2045
2046 * make-docfile.c: Include stdlib.h even if WINDOWSNT is not defined.
2047
20482004-12-15 Andreas Schwab <schwab@suse.de>
2049
2050 * etags.c (main): Fix typo in conversion of LONG_OPTIONS from
2051 preprocessing to compile time constant.
2052
20532004-11-17 Kim F. Storm <storm@cua.dk>
2054
2055 * etags.c: Undo last change.
2056
20572004-11-09 Kim F. Storm <storm@cua.dk>
2058
2059 * make-docfile.c (scan_c_file): Set defvarperbufferflag to
2060 silence compiler.
2061
2062 * hexl.c (main): Init local var c to silence compiler.
2063
2064 * etags.c (main, consider_token, C_entries): Add misc switch
2065 default targets to silence compiler.
2066
20672004-11-09 Jan Djärv <jan.h.d@swipnet.se>
2068
2069 * makefile.w32-in (obj): Add all files (X and Mac) to doc so the
2070 resulting DOC file can be used on Unix/Mac also.
2071
20722004-09-13 Francesco Potortì <pot@gnu.org>
2073
2074 * etags.c (main): When relative file names are given as argument,
2075 make them relative to the current working dir, rather than
2076 relative to the output tags file, if the latter is in /dev.
2077
20782004-09-13 Francesco Potortì <pot@gnu.org>
2079
2080 * etags.c [EXIT_SUCCESS, EXIT_FAILURE]: Define them when no
2081 <stdlib.h> is available.
2082 (enum sym_type): New st_C_attribute value for parsing
2083 gcc's __attribute__. Deleted st_C_typespec value.
2084 (gperf, in_word_set): Use gperf 3, options changed. Added the
2085 __attribute__ keyword, removed all the st_C_typespec keywords,
2086 changed attribute for Java to (C_JAVA & !C_PLPL).
2087 (inattribute): New global bool, part of the C state machine.
2088 (cblev): Identifier renamed to bracelev throughout.
2089 (consider_token, C_entries): Numerous changes for making the
2090 parser more robust and adding support for __attribute__.
2091
20922004-09-13 David A. Capello <dacap@users.sourceforge.net> (tiny change)
2093
2094 * etags.c (Lua_suffixes, Lua_help, lang_names, Lua_functions):
2095 Support the Lua scripting language <http://www.lua.org>.
2096
20972004-09-08 Francesco Potortì <pot@gnu.org>
2098
2099 * etags.c [LONG_OPTIONS]: Make it TRUE (ifdef) or FALSE (ifndef)
2100 for ease of use.
2101
21022004-07-17 Richard M. Stallman <rms@gnu.org>
2103
2104 * emacsclient.c (quote_file_name): Pass COPY thru %s to output it.
2105
21062004-06-01 Juanma Barranquero <lektu@terra.es>
2107
2108 * makefile.w32-in (obj): Add image.c.
2109
21102004-05-10 Thien-Thi Nguyen <ttn@gnu.org>
2111
2112 * test-distrib.c (main): For failing cases, exit with `EXIT_FAILURE'.
2113
21142004-05-08 Jason Rumney <jasonr@gnu.org>
2115
2116 * makefile.w32-in (lisp1, lisp2): Split lisp to avoid long
2117 command-lines.
2118
21192004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
2120
2121 * cvtmail.c: Throughout, replace 0 destined for `exit' arg
2122 with `EXIT_SUCCESS'. Likewise, replace 1 with `EXIT_FAILURE'.
2123 (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
2124
2125 * ebrowse.c, emacsclient.c, fakemail.c, hexl.c,
2126 * make-docfile.c, movemail.c, profile.c, sorted-doc.c,
2127 * test-distrib.c, update-game-score.c, yow.c: Likewise.
2128
21292004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
2130
2131 * Makefile.in (emacsclient${EXEEXT}): Use makefile var `version'.
2132
21332004-05-07 Thien-Thi Nguyen <ttn@gnu.org>
2134
2135 * b2m.c (GOOD, BAD): Delete macros. Throughout,
2136 replace w/ `EXIT_SUCCESS' and `EXIT_FAILURE', respectively.
2137 (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
2138
2139 * etags.c: Likewise.
2140
21412004-05-03 Jason Rumney <jasonr@gnu.org>
2142
2143 * makefile.nt: Remove.
2144
21452004-04-26 Eli Zaretskii <eliz@gnu.org>
2146
2147 * make-docfile.c (IS_DIRECTORY_SEP): New macro.
2148 (put_filename): Remove unused variable len. Use IS_DIRECTORY_SEP
2149 instead of a literal '/'.
2150
21512004-04-23 Juanma Barranquero <lektu@terra.es>
2152
2153 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
2154
21552004-04-17 Paul Eggert <eggert@gnu.org>
2156
2157 * rcs2log (Help): Clarify wording of the usage message.
2158 Problem reported by Alan Mackenzie in
2159 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-04/msg00188.html>.
2160
21612004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2162
2163 * make-docfile.c (xmalloc): Fix return type.
2164 (put_filename): New fun.
2165 (scan_file): Use it.
2166
21672004-03-09 Juanma Barranquero <lektu@terra.es>
2168
2169 * grep-changelog: Changes to support ChangeLog.10+.
2170 (main): Tidy up usage string. Fix "Use of uninitialized value"
2171 warning. Set version to 0.2. Parse the directory listing to get
2172 any ChangeLog.n file, not just 1..9.
2173 (header_match_p, entry_match_p, print_log, parse_changelog):
2174 Remove Perl prototypes (their purpose is to help the parser, which
2175 isn't needed here, not declare arguments).
2176 (parse_changelog): Make --reverse faster on big batches by not
2177 modifying the entries list.
2178
21792004-03-01 Juanma Barranquero <lektu@terra.es>
2180
2181 * makefile.w32-in (obj): Add fringe.c.
2182
21832004-02-14 Paul Eggert <eggert@twinsun.com>
2184
2185 * rcs2log: Work correctly if CVSROOT specifies :fork: or
2186 :local: methods, or omits the colon between the hostname
2187 and the path. Allow :/ in repository path, since CVS does.
2188 Fix typo: "pository" should be set from $CVSROOT, not $repository.
2189 This fixes a bug reported by Wolfgang Scherer in
2190 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-02/msg00085.html>,
2191 along with some related bugs I discovered by inspecting how
2192 CVS itself parses $CVSROOT.
2193
21942004-02-04 Jérôme Marant <jmarant@nerim.net> (tiny change)
2195
2196 * emacsclient.c (decode_options): Fix handling of alternate editor.
2197
21982004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
2199
2200 * emacsclient.c (main): Don't use the hostname in the socket name.
2201 Look for relative socket names in the /tmp dir rather than in cwd.
2202
22032004-01-24 Richard M. Stallman <rms@gnu.org>
2204
2205 * emacsclient.c (main): Restore errno from saved_errno,
2206 so the error message comes from socket_status.
2207
22082004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
2209
2210 * emacsclient.c (main): Stop if socket name too long.
2211 Only try su-fallback if the socket name was not explicit.
2212 Check socket name length in su-fallback case as well.
2213
22142004-01-08 Andreas Schwab <schwab@suse.de>
2215
2216 * emacsclient.c (main): Save errno from socket_status.
2217
22182004-01-04 Andreas Schwab <schwab@suse.de>
2219
2220 * emacsclient.c (main): Fix socket name when using another user.
2221
22222003-12-27 Paul Eggert <eggert@twinsun.com>
2223
2224 * rcs2log (rlog_options): Append -rbranchtag if CVS/Tag indicates
2225 a tag, and if the user has not specified an rlog option.
2226 Adapted from a suggestion by Martin Stjernholm in
2227 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2003-07/msg00066.html>.
2228 (Copyright): Update to 2003.
2229
22302003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
2231
2232 * make-docfile.c (main): For return code, no longer special-case VMS.
2233 Instead, use `EXIT_SUCCESS' and `EXIT_FAILURE' from stdlib.h.
2234
22352003-09-28 Andreas Büsching <crunchy@tzi.de> (tiny change)
2236
2237 * emacsclient.c (quote_file_name): Print the result instead of
2238 returning it. Fix the return type accordingly.
2239 (main): With --eval, if no file name, read from stdin.
2240 Quote file names.
2241
22422003-09-10 Richard M. Stallman <rms@gnu.org>
2243
2244 * emacsclient.c (main): Use socket_name.
2245
22462003-09-10 Andreas Büsching <crunchy@tzi.de> (tiny change)
2247
2248 * emacsclient.c (socket_name): New variable.
2249 (longopts, decode_options, print_help_and_exit):
2250 Handle --socket-name argument.
2251
22522003-08-25 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2253
2254 * etags.c (consider_token): Check C++ `operator' only when the
2255 token len is long enough.
2256
22572003-08-20 Dave Love <fx@gnu.org>
2258
2259 * Makefile.in: Remove obsolete references to alloca.
2260
22612003-07-29 Ken Brush <ken@wirex.com>
2262
2263 * emacsclient.c (main)
2264 * etags.c (suggest_asking_for_help)
2265 * movemail.c (main): Fix having macros in a printf statement.
2266
22672003-05-31 Juanma Barranquero <lektu@terra.es>
2268
2269 * makefile.w32-in (lisp): Fix references to byte-run.el,
2270 float-sup.el and map-ynp.el, which are now in emacs-lisp.
2271
22722003-05-22 Dave Love <fx@gnu.org>
2273
2274 * update-game-score.c (difftime) [!HAVE_DIFFTIME]: Define.
2275 (strerror) [!HAVE_STRERROR && !WINDOWSNT]: New.
2276
22772003-05-20 Dave Love <fx@gnu.org>
2278
2279 * movemail.c: Check HAVE_LIBLOCKFILE like HAVE_LIBMAIL.
2280
2281 * Makefile.in [HAVE_LIBLOCKFILE]: Define LIBS_MAIL=-llockfile.
2282
22832003-04-27 Oliver Scholz <alkibiades@gmx.de>
2284
2285 * update-game-score.c (read_scores): Fix corruption of scores on read.
2286
22872003-04-12 Stefan Monnier <monnier@cs.yale.edu>
2288
2289 * emacsclient.c (main): Use new safe location for socket.
2290
22912003-03-12 Tom Tromey <tromey@redhat.com>
2292
2293 * emacsclient.c (print_help_and_exit): Print to stdout.
2294 Exit successfully. Added some blank lines for readability.
2295 (decode_options): Don't call print_help_and_exit in default case.
2296 Print version information to stdout.
2297 (main): Don't call print_help_and_exit.
2298
22992003-02-15 Richard M. Stallman <rms@gnu.org>
2300
2301 * cvtmail.c: Cast result of malloc and realloc.
2302 Don't include stdlib.h, because config.h does.
2303 (malloc, realloc): Declarations deleted.
2304
2305 * yow.c (yow): Cast result of malloc and realloc.
2306 (malloc, realloc): Declarations deleted.
2307
23082003-02-11 Juanma Barranquero <lektu@terra.es>
2309
2310 * makefile.w32-in (lisp): Add malayalam.el and tamil.el.
2311
23122003-02-08 Andreas Schwab <schwab@suse.de>
2313
2314 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
2315 instead of the substitution.
2316
23172003-02-04 Richard M. Stallman <rms@gnu.org>
2318
2319 * update-game-score.c (push_score, read_scores): Cast values
2320 of malloc and realloc.
2321 (main, lock_file): Avoid assignment inside if.
2322
23232003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
2324
2325 * Makefile.in: Use @EXEEXT@ for Cygwin.
2326
23272003-01-21 Dave Love <fx@gnu.org>
2328
2329 * etags.c (Cplusplus_help, Cjava_help): Re-phrase and avoid
2330 column-0 `('.
2331
2332 * yow.c: Don't include string.h.
2333
23342003-01-20 Richard M. Stallman <rms@gnu.org>
2335
2336 * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
2337 New targets.
2338
23392003-01-06 Kim F. Storm <storm@cua.dk>
2340
2341 * pop.c (__P): Rename from _P to avoid problems on Cygwin.
2342 All uses changed.
2343
23442002-12-18 Andrew Innes <andrewi@gnu.org>
2345
2346 * makefile.w32-in ($(DOC)): Use -o and -a options to make-docfile,
2347 because GNU make doesn't append when using >> redirection.
2348
23492002-12-12 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
2350
2351 * b2m.pl: Make sure every message ends with a blank line, because
2352 some mbox parsers require a blank line before "From " lines.
2353
23542002-12-08 Richard M. Stallman <rms@gnu.org>
2355
2356 * getopt.c: Do include libintl.h if HAVE_LIBINTL_H.
2357 (_): Test only HAVE_LIBINTL_H to decide what to do.
2358
23592002-12-05 Richard M. Stallman <rms@gnu.org>
2360
2361 * getopt.c: Comment out include of libintl.h or gettext.h.
2362
23632002-12-04 Richard M. Stallman <rms@gnu.org>
2364
2365 * Update getopt from gnulib version; changes described below.
2366
2367 * getopt1.c: Conditionally find getopt.h.
2368 [_LIBC] (getopt_long, getopt_long_only): Do libc_hidden_def.
2369
2370 * getopt.c (const): Move outside !HAVE_CONFIG_H conditional.
2371 (libintl.h): Include this if _LIBC. Otherwise include gettext.h.
2372 (wchar.h): Include, maybe.
2373 (attribute_hidden): Define if not defined.
2374 (__getopt_initialized): Use attribute_hidden.
2375 (__libc_argc, __libc_argv): Rename from original_argc, etc.
2376 (__getopt_nonoption_flags, nonoption_flags_max_len)
2377 (nonoption_flags_len): Conditional on USE_NONOPTION_FLAGS.
2378 (SWAP_FLAGS): New definitions.
2379 (exchange): Test USE_NONOPTION_FLAGS.
2380 (_getopt_initialize): Test USE_NONOPTION_FLAGS.
2381 (_getopt_internal): Error if argc < 1. New local var print_errors.
2382 Improve test for ambiguous long option.
2383 Add LIBIO support for error message output.
2384 (NONOPTION_P): Test USE_NONOPTION_FLAGS.
2385
2386 * getopt.h: Maybe include ctype.h.
2387 Treat __cplusplus like __STDC__.
2388 (decls): Use __ in arg names.
2389
23902002-12-02 Stephen Eglen <stephen@gnu.org>
2391
2392 * emacsclient.c (main): Tell user how to start server within Emacs
2393 if socket could not be found.
2394
23952002-12-02 Richard M. Stallman <rms@gnu.org>
2396
2397 * emacsclient.c (main): Test HAVE_GETCWD rather than BSD_SYSTEM.
2398
23992002-11-19 Ben Key <bkey1@tampabay.rr.com>
2400
2401 * makefile.w32-in: Fixed a bug that caused the documentation for
2402 the built in function play-sound-internal not to be included in
2403 /etc/DOC.
2404
24052002-11-18 Dave Love <fx@gnu.org>
2406
2407 * update-game-score.c: Include unistd.h, string.h, stdlib.h,
2408 fcntl.h, stdarg.h conditionally.
2409 (_GNU_SOURCE, __attribute__): Don't define.
2410 (optarg, optind, opterr): Declare.
2411 (lose, lose_syserr): Use NO_RETURN.
2412 (get_user_id): Use P_.
2413
24142002-11-17 Richard M. Stallman <rms@gnu.org>
2415
2416 * Makefile.in (${archlibdir}): Ignore errors operating on $(gamedir).
2417
24182002-11-14 Dave Love <fx@gnu.org>
2419
2420 * movemail.c (pop_retr): Declare comment.
2421
2422 * make-docfile.c (read_c_string_or_comment): Declare msgno.
2423
2424 * Makefile.in (YACC): Deleted.
2425
24262002-10-19 Andreas Schwab <schwab@suse.de>
2427
2428 * Makefile.in (${archlibdir}): Always create $(gamedir).
2429 (update-game-score): Pass $(gamedir) as HAVE_SHARED_GAME_DIR.
2430
24312002-10-04 Juanma Barranquero <lektu@terra.es>
2432
2433 * makefile.w32-in (lisp): Load devanagari.el, not .elc.
2434
24352002-09-30 Markus Rost <rost@math.ohio-state.edu>
2436
2437 * emacsclient.c (main): Remove reference to SERVER_HOME_DIR
2438 completely.
2439
24402002-09-27 Stefan Monnier <monnier@cs.yale.edu>
2441
2442 * emacsclient.c: Remove SYSV support.
2443 (eval, display): New vars.
2444 (longopts): Add --eval and --display.
2445 (decode_options): Add -e and -d processing.
2446 (print_help_and_exit): Update the usage string.
2447 (main): Add support for --eval and --display.
2448 (main): Always use /tmp and non-qualified hostname.
2449
24502002-09-25 Stefan Monnier <monnier@cs.yale.edu>
2451
2452 * emacsserver.c: Remove.
2453
24542002-09-17 Stefan Monnier <monnier@cs.yale.edu>
2455
2456 * emacsclient.c (quote_file_name): Quote \n.
2457 (main): Print a final \n when needed.
2458
24592002-09-03 Francesco Potortì <pot@gnu.org>
2460
2461 * etags.c (regex_tag_multiline, readline): Never pass pfnote a
2462 string that cannot be freed.
2463
24642002-08-30 Francesco Potortì <pot@gnu.org>
2465
2466 * etags.c (consider_token, C_entries): Switch to C++ parsing when
2467 auto-detection is enabled and the `::' qualifier is met.
2468 (consider_token, C_entries): Several bugs corrected that tagged
2469 some declarations even though --declarations was not used.
2470 (plainc): New macro.
2471 (C_entries): Use it.
2472 (C_entries): Several cosmetic changes.
2473 (C_entries): Invalidate the token is some cases.
2474
24752002-08-29 Francesco Potortì <pot@gnu.org>
2476
2477 * etags.c (C_entries): Correct a problem with const C++ funcs.
2478 (ignoreindent): Rename from noindentypedefs.
2479 (cjava, cplpl): They are now macros instead of local vars.
2480
24812002-08-28 Francesco Potortì <pot@gnu.org>
2482
2483 * etags.c (HTML_labels): Tag ID= also.
2484
24852002-08-27 Francesco Potortì <pot@gnu.org>
2486
2487 * etags.c (Ada_funcs): Do not tag "use type Xxxx;".
2488
2489 * etags.c (HTML_labels): New language HTML.
2490 (etags_strcasecmp): Like BSD's, for compatibility.
2491 (strcaseeq): Make it into a macro.
2492
2493 * etags.c (make_tag): Never generate null length tag names.
2494 (linebuffer_init): Rename from initbuffer. All callers changed.
2495 (pattern): Structure renamed to `regexp', member regex renamed to
2496 pattern.
2497 (node_st): Member pat renamed to regex.
2498 (pattern); New member force_explicit_name, for future use.
2499 Now always set to true, cannot be reset.
2500 (add_regex, regex_tag_multiline, readline): Use it.
2501 (main): Free some global structures.
2502 (fdesc): New member `written'.
2503 (readline, process_file): Initialise it.
2504 (put_entries): Set it.
2505 (main): Use it to create entries for files without tags.
2506 (total_size_of_entries): Do not count invalid tags.
2507
25082002-08-19 Stefan Monnier <monnier@cs.yale.edu>
2509
2510 * make-docfile.c (scan_keyword_or_put_char, write_c_args): Use `fn'
2511 for the function name in the usage info.
2512
25132002-07-31 Colin Walters <walters@gnu.org>
2514
2515 * update-game-score.c (P_): New macro. Use it for all prototypes.
2516 (lose): Don't use varargs.
2517 (lose_syserr): New function.
2518
2519 * update-game-score.c: Change all functions to K&R style.
2520
25212002-07-30 Andreas Schwab <schwab@suse.de>
2522
2523 * Makefile.in (localstatedir): New variable.
2524
25252002-07-29 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
2526
2527 * b2m.pl: Fix regexp for finding return address fields.
2528
25292002-07-15 Stefan Monnier <monnier@cs.yale.edu>
2530
2531 * make-docfile.c (scan_c_file): Warn about missing `usage' info.
2532
25332002-07-05 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
2534
2535 * b2m.pl: Obey the rmail file and use the unpruned header properly.
2536
25372002-06-26 Pavel Janík <Pavel@Janik.cz>
2538
2539 * b2m.pl: New file.
2540
25412002-06-21 Francesco Potortì <pot@gnu.org>
2542
2543 * etags.c (F_getit, Fortran_functions, Ada_getit, Asm_labels)
2544 (Python_functions, PHP_functions, PHP_functions, PHP_functions)
2545 (PHP_functions, PHP_functions, Cobol_paragraphs)
2546 (Makefile_targets, Postscript_functions, Texinfo_nodes)
2547 (prolog_pr, erlang_func, erlang_attribute)
2548 (Perl_functions, Perl_functions, Pascal_functions)
2549 (TeX_commands, get_tag): Use make_tag instead of pfnote.
2550 (get_tag): Prototype changed, all callers changed.
2551
25522002-06-20 Francesco Potortì <pot@gnu.org>
2553
2554 * etags.c: Implement implicit tag names, that is, unnamed tags
2555 whose name is automatically deduced by etags.el. The advantage is
2556 that there is no explicit tag name in most tags, so the size of
2557 the tags file is reduced, yet find-tag is able to do a match as
2558 accurate as with named tags. See the comment in make_tag for details.
2559 (make_tag): New function (was the disabled function new_pfnote).
2560 (make_C_tag): Use it.
2561
25622002-06-19 Francesco Potortì <pot@gnu.org>
2563
2564 * etags.c (add_regex): Invalid regexp modifiers are ignored.
2565 (Makefile_targets): Tag variables unless --no-globals.
2566 (LOOP_ON_INPUT_LINES): Serious bug corrected.
2567
25682002-06-13 Francesco Potortì <pot@gnu.org>
2569
2570 * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
2571 (invalidate_nodes): Bug corrected.
2572 (print_help): Better help for regexps.
2573
25742002-06-13 Juanma Barranquero <lektu@terra.es>
2575
2576 * makefile.w32-in (lisp): Add international/ucs-tables.elc and
2577 font-core.elc.
2578
25792002-06-12 Francesco Potortì <pot@gnu.org>
2580
2581 * etags.c: New multi-line regexp and new regexp syntax.
2582 (arg_type): at_icregexp label removed (obsolete).
2583 (pattern): New member multi_line for multi-line regexps.
2584 (filebuf): A global buffer containing the whole file as a string
2585 for multi-line regexp matching.
2586 (need_filebuf): Global flag raised if multi-line regexps used.
2587 (print_help): Document new regexp modifiers, remove references to
2588 obsolete option --ignore-case-regexp.
2589 (main): Do not set regexp syntax and translation table here.
2590 (main): Treat -c option as a backward compatibility hack.
2591 (main, find_entries): Init and free filebuf.
2592 (find_entries): Call regex_tag_multiline after the regular parser.
2593 (scan_separators): Check for unterminated regexp and return NULL.
2594 (analyse_regex, add_regex): Remove the ignore_case argument, which
2595 is now a modifier to the regexp. All callers changed.
2596 (add_regex): Manage the regexp modifiers.
2597 (regex_tag_multiline): New function. Reads from filebuf.
2598 (readline_internal): If necessary, copy the whole file into filebuf.
2599 (readline): Skip multi-line regexps, leave them to regex_tag_multiline.
2600
26012002-06-11 Francesco Potortì <pot@gnu.org>
2602
2603 * etags.c (add_regex): Better check for null regexps.
2604 (readline): Check for regex matching null string.
2605 (find_entries): Reorganization.
2606
26072002-06-07 Francesco Potortì <pot@gnu.org>
2608
2609 * etags.c (scan_separators): Support all character escape
2610 sequences supported by Gcc.
2611 (find_entries): Rewind unconditionally.
2612 (find_entries): Do not call language functions directly, now calls
2613 itself.
2614 (find_entries): Do general initialisations here.
2615 (CNL_SAVE_DEFINEDEF, C_entries, LOOP_ON_INPUT_LINES, F_getit)
2616 (Ada_getit, Pascal_functions, Pascal_functions)
2617 (prolog_skip_comment): Do not do them here.
2618 (readline_internal): Increment lineno here.
2619 (readline): Conditionally undo readline_internal increment.
2620 (readline): Do not return a value.
2621
26222002-06-06 Francesco Potortì <pot@gnu.org>
2623
2624 * etags.c: New option --parse-stdin=FILE.
2625 (enum arg_type): New label at_stdin.
2626 (STDIN): New constant.
2627 (parsing_stdin): New flag.
2628 (longopts): New option --parse-stdin=NAME.
2629 (print_help): Document it.
2630 (main): Handle it.
2631 (process_file): Split into process_file and process_file_name.
2632 (process_file_name): New function.
2633
2634 * etags.c: Improvements and bug squashing in TeX handling.
2635 (TeX_commands): Skip comments.
2636 (TEX_defenv): Now contains more constructs.
2637 (TEX_cmt): Make it a static char and move it before TeX_commands.
2638 (TeX_commands): Shorten the tag to the brace after the name.
2639 (TeX_commands): Names now include the initial backslash.
2640 (TeX_commands): Names do not include numeric args #n.
2641 (TeX_commands): Correct line char number in tags.
2642 (TEX_tabent, TEX_token): Deleted.
2643 (TeX_commands, TEX_decode_env): Streamlined.
2644
26452002-06-05 Francesco Potortì <pot@gnu.org>
2646
2647 * etags.c (main): Avoid a buffer overrun with sprintf.
2648
26492002-05-30 Richard M. Stallman <rms@gnu.org>
2650
2651 * Makefile.in (LIBS_MAIL): Rename from LIB_MAIL.
2652 (LIBS_MOVE): Rename from MOVE_LIBS.
2653
26542002-05-26 Paul Eggert <eggert@twinsun.com>
2655
2656 Reinstate the following change from 2002-03-22, which was
2657 inadvertently lost on 2002-04-13.
2658
2659 * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
2660 `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
2661 the latter usage.
2662
26632002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
2664
2665 * pop.c (socket_connection): Move the code to resolve the POP
2666 host right before trying to connect with it.
2667
26682002-05-05 Eli Zaretskii <eliz@is.elta.co.il>
2669
2670 * tcp.c: Delete file since the TCP emulation is no longer in use on any
2671 platform.
2672
26732002-04-28 Colin Walters <walters@verbum.org>
2674
2675 * Makefile.in (${archlibdir}): Don't conditionalize on
2676 HAVE_SHARED_GAME_DIR. Instead, test at installation time whether
2677 or not we have access to the specified game user.
2678
2679 * update-game-score.c (SCORE_FILE_PREFIX): Delete.
2680 (main): New argument -d, for specifying directory.
2681 (usage): Document.
2682 (get_user_id): Compute.
2683 (get_home_dir): Deleted.
2684 (get_prefix): New function, taken from main.
2685 (main): Check whether or not we are running setuid. Move prefix
2686 computation to get_prefix. Don't call getpwent; we don't need to
2687 any more. Instead, move it to get_user_id().
2688
26892002-04-24 Pavel Janík <Pavel@Janik.cz>
2690
2691 * ebrowse.c (skip_initializer): Return void.
2692
26932002-04-23 Colin Walters <walters@verbum.org>
2694
2695 * update-game-score.c (read_score) [HAVE_GETDELIM]: Trim trailing
2696 space.
2697
26982002-04-22 Francesco Potortì <pot@gnu.org>
2699
2700 * etags.c (last_node): Make it a global variable.
2701 (process_file): Print the tags from the nodes as soon as
2702 possible, and delete the nodes. This brings down the memory
2703 occupancy as etags to almost the same level as when the #line
2704 directives were not parsed.
2705 (free_fdesc): New function.
2706 (find_entries): Use it.
2707 (invalidate_nodes): In etags mode, do not just mark the nodes as
2708 invalid, do delete them.
2709
27102002-04-21 Gerd Moellmann <gerd@gnu.org>
2711
2712 * ebrowse.c (add_declarator): Test *CLS instead of CLS.
2713
27142002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
2715
2716 * update-game-score.c: Move config.h before the other headers, to
2717 avoid compiler warnings.
2718
27192002-04-16 Francesco Potortì <pot@gnu.org>
2720
2721 * etags.c (find_entries): Bug fix in list management.
2722
27232002-04-15 Francesco Potortì <pot@gnu.org>
2724
2725 * etags.c (get_language_from_filename): Add one argument.
2726 (strcaseeq): New function.
2727 (get_language_from_filename): Use it to do a case insensitive
2728 comparison if called with appropriate args.
2729 (find_entries): Try with case insensitive match.
2730 (process_file): Bug fixed.
2731
27322002-04-13 Francesco Potortì <pot@gnu.org>
2733
2734 * etags.c (find_entries): Delete tags previously obtained from
2735 file xxx.c's #line directives when parsing file xxx.y. This is
2736 generally done for automatically generated files containing
2737 #line directives. This handles the case when xxx.y is tagged
2738 before xxx.c, and the entries of xxx.c pointing to xxx.y should
2739 be discarded.
2740 (language): Add the metasource member. Initializers changed.
2741 (invalidate_nodes): New function.
2742 (readline): Discard lines after having found a #line
2743 directive pointing to an already tagged file. This handles the
2744 case when xxx.y is tagged before xxx.c, and the entries of
2745 xxx.c pointing to xxx.y should be discarded.
2746 (fdesc): New structure for keeping track of input files.
2747 (fdesc): Remove `file' member (a string) and use instead a pointer
2748 to a file description structure.
2749 (curfile, curfiledir, curtagfname, curlang, nocharno)
2750 (forced_lang): Global variables removed in favor of fdhead and
2751 curfdp, pointers to file description structures.
2752 (longopts, main, print_help): Use the CTAGS conditional to include
2753 or exclude options that work on etags or ctags only.
2754 (process_file, find_entries, pfnote, add_node, put_entries)
2755 (readline): Use fdhead and curfdp.
2756 (process_file, find_entries): Do not take an arg string, all
2757 callers changed.
2758
2759 * etags.c (longopts, print_help, main): Test CTAGS to disallow
2760 options that are not right for either etags or ctags.
2761
2762 * etags.c (number_len, total_size_of_entries): Define them also
2763 in CTAGS mode, because gcc does not compile all refs away.
2764
27652002-04-14 Colin Walters <walters@debian.org>
2766
2767 * update-game-score.c (lock_file): If the lock file is older than
2768 an hour, delete it. Reset attempts to zero if we have to break
2769 the lock.
2770
27712002-04-14 Andreas Schwab <schwab@suse.de>
2772
2773 * update-game-score.c (read_score): Fix type of second parameter
2774 of getdelim to be of type size_t instead of int. Use 0 instead of
2775 ESUCCES.
2776
27772002-04-10 Colin Walters <walters@verbum.org>
2778
2779 * update-game-score.c (toplevel): Include stdarg.h.
2780 (MAX_DATA_LEN, MAX_SCORES): New.
2781 (SCORE_FILE_PREFIX): If HAVE_SHARED_GAME_DIR is not defined,
2782 default to ~/.emacs.d/games.
2783 (get_user_id): Don't zero uid in the case where we can't get the
2784 username.
2785 (lose): New function.
2786 (main): Actually use `max', and default it to MAX_SCORES.
2787 Correctly handle new default for SCORE_FILE_PREFIX. Use `lose'
2788 function.
2789 (read_score): Handle the case of reading unamelen characters, then
2790 finishing. Use mktemp if mkstemp isn't available.
2791 (lock_file, unlock_file): Delete unused versions.
2792 (lock_file): Always sleep, even if we unlinked the lock file.
2793
2794 * Makefile.in (gamedir, gameuser): New variables.
2795 (toplevel, UTILITIES): Add update-game-score.
2796 (${archlibdir}): Handle HAVE_SHARED_GAME_DIR.
2797
27982002-04-07 Colin Walters <walters@verbum.org>
2799
2800 * update-game-score.c (SCORE_FILE_PREFIX): Don't hardcode.
2801 (get_user_id): Take struct passwd as an argument.
2802 (get_home_dir): New function.
2803 (main): Read in user information here. Discover home directory if
2804 necessary.
2805 (read_score): Trim newline only in `getline' case.
2806
28072002-04-05 Colin Walters <walters@debian.org>
2808
2809 * update-game-score.c (toplevel): Include pwd.h.
2810 (struct score_entry): Add username field.
2811 (push_score): Use it.
2812 (get_user_id): New function.
2813 (main): Don't malloc excessively.
2814 (main): Use username field.
2815 (read_score): Read it.
2816 (push_score): Handle it.
2817 (write_scores): Write it.
2818 (read_score): Handle arbitrary length data.
2819
28202002-03-30 Eli Zaretskii <eliz@is.elta.co.il>
2821
2822 * ebrowse.c (add_declarator): Fix the first call to add_member_defn.
2823
28242002-03-29 Gerd Moellmann <gerd@gnu.org>
2825
2826 * ebrowse.c (add_declarator, skip_initializer): New functions.
2827 (declaration): Use them.
2828
28292002-03-28 Jason Rumney <jasonr@gnu.org>
2830
2831 * makefile.w32-in (lisp): Move backquote.elc into emacs-lisp.
2832
28332002-03-27 Colin Walters <walters@debian.org>
2834
2835 * update-game-score.c: New file.
2836
28372002-03-22 Paul Eggert <eggert@twinsun.com>
2838
2839 * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
2840 `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
2841 the latter usage.
2842
28432002-03-12 Francesco Potortì <pot@gnu.org>
2844
2845 * etags.c (Python_functions): Skip spaces at beginning of lines.
2846 (Python_functions, PHP_functions): Name tags, for ctags' sake.
2847 (TeX_commands): Name tags. Correction of old disabled code.
2848
2849 * etags.c (curfiledir, curtagfname): New global variables.
2850 (process_file): Initialise them.
2851 (readline): Canonicalize the name found in #line directive.
2852
28532002-03-06 Jason Rumney <jasonr@gnu.org>
2854
2855 * etags.c (put_entries): Use #if !CTAGS, to fix link error on
2856 compilers that don't optimize out dead code.
2857
28582002-03-05 Francesco Potortì <pot@gnu.org>
2859
2860 * etags.c: Honour #line directives.
2861 (no_line_directive): New global var; set it for old behavior.
2862 (main): Remove some #ifdef in the getopt switch.
2863 (add_node, put_entries): Code added to merge different chunks of
2864 nodes referring to the same file. Currently the tags are just
2865 appended, without any check for duplicates.
2866 (Perl_functions): Do not special case ctags.
2867 (readline): Identify #line directives and do the right thing.
2868 (nocharno, invalidcharno): New global vars.
2869 (process_file): Reset nocharno.
2870 (readline): Set nocharno.
2871 (pfnote): Read nocharno and maybe put invalidcharno in node.
2872 (total_size_of_entries, put_entries): Use invalidcharno.
2873
2874 * etags.c: Keep the whole tag table in memory, even in etags mode.
2875 (main): Call put_entries here even in CTAGS mode.
2876 (main, process_file): Check the return values of fclose and pclose.
2877 (process_file): Do not call put_entries after parsing each file.
2878 (process_file): Canonicalise file names even for ctags.
2879 (process_file): Set curfile here...
2880 (find_entries): ... not here any more.
2881 (add_node): In etags mode, build a linked list of entries (on
2882 right pointer) for each file, and link the first entry of each
2883 file on left nodes.
2884 (put_entries): Print here the name of the file.
2885 (put_entries): Print the entries starting from the first file.
2886 (number_len, total_size_of_entries): Define these only in etags
2887 mode, make the second work only on the right nodes.
2888
2889 * etags.c: Make all global variables static.
2890
28912002-02-25 Juanma Barranquero <lektu@terra.es>
2892
2893 * makefile.w32-in (lisp): Add missing backslash.
2894
28952002-02-24 Jason Rumney <jasonr@gnu.org>
2896
2897 * makefile.w32-in (WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to
2898 using .elc files.
2899 (lisp): Sync with list in src/Makefile.in.
2900 (VMS_SUPPORT, MSDOS_SUPPORT): Define, so DOC files can be shared.
2901
29022002-02-10 Paul Eggert <eggert@twinsun.com>
2903
2904 * rcs-checkin: Use `sort -k 2', not `sort +1', as POSIX 1003.1-2001
2905 disallows the old syntax.
2906
29072002-02-03 Paul Eggert <eggert@twinsun.com>
2908
2909 * rcs2log (Copyright): Update to 2002.
2910 (AWK, TMPDIR): Work around portability problem in broken shells that
2911 don't understand `: ${VAR=val}'.
2912 (SORT_K_OPTIONS): New var, for hosts that conform to POSIX 1003.1-2001.
2913 Prefer the new -k option to the traditional +M -N option.
2914
29152002-01-01 Pavel Janík <Pavel@Janik.cz>
2916
2917 * b2m.c (main): Parenthesize assignment when used as truth value
2918 to prevent gcc warnings.
2919
2920 * fakemail.c: Include <config.h>.
2921
29222001-12-29 Pavel Janík <Pavel@Janik.cz>
2923
2924 * cvtmail.c, emacsclient.c, emacsserver.c, pop.c, sorted-doc.c,
2925 * yow.c: Include <config.h>.
2926
29272001-12-21 Francesco Potortì <pot@gnu.org>
2928
2929 * etags.c (Perl_functions): Tag packages and use them in sub tags.
2930 (get_tag): Return a pointer to the tag that is found.
2931
2932 * etags.c (LOOKING_AT): Use !intoken instead of iswhite.
2933 (F_takeprec): Rename from takeprec. All callers changed.
2934 (F_getit): Rename from getit. All callers changed.
2935 (nocase_tail): Rename from tail. All callers changed.
2936 (Ada_getit): Rename from adagetit. All callers changed.
2937 (L_getit): Simplify by using get_tag.
2938 (Perl_functions, Postscript_functions, erlang_attribute): Use the
2939 modified LOOKING_AT.
2940 (notinname): Remove '[' and added ')' to the recognised chars.
2941 (LOOKING_AT, get_tag, PHP_functions): Use notinname.
2942 (Ada_getit, Ada_funcs, Python_functions, Scheme_functions):
2943 Clarified, using strneq or notinname.
2944 (L_isdef, L_isquote): Removed.
2945 (Lisp_functions, L_getit): Clarified.
2946
2947 * etags.c (P_): Rename to __P for consistency with config.h.
2948 [HAVE_CONFIG_H]: Let config.h deal with __P.
2949 [__STDC__] [!HAVE_CONFIG_H]: Define PTR as in config.h.
2950 [!__STDC__] [!HAVE_CONFIG_H]: Do not undefine static, because
2951 gperf code needs it.
2952 [HAVE_CONFIG_H] [!PTR]: Define PTR (for use with XEmacs).
2953 [HAVE_CONFIG_H] [!__P]: Define __P (for use with XEmacs).
2954 (xmalloc, xrealloc): Use PTR instead of long *.
2955 (bool): Make it a define, not a typedef, for C++ compilers.
2956 (pattern): Members renamed to avoid name clash in some C++ compilers.
2957 (get_language_from_langname): Use const argument.
2958
29592001-12-22 Pavel Janík <Pavel@Janik.cz>
2960
2961 * makefile.nt, makefile.w32-in: Remove mocklisp files.
2962
29632001-12-19 Pavel Janík <Pavel@Janik.cz>
2964
2965 * emacsserver.c: Conditionally include config.h.
2966
2967 * fakemail.c: Likewise.
2968
2969 * emacsclient.c: Include "config.h", not <../src/config.h>.
2970 (main): Parenthesize assignment when used as truth value to
2971 prevent gcc warnings.
2972
2973 * ebrowse.c: Include stdlib.h and string.h conditionally.
2974
29752001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
2976
2977 * yow.c (main): Use time_t, not long, to avoid a compiler warning.
2978
29792001-12-18 Pavel Janík <Pavel@Janik.cz>
2980
2981 * test-distrib.c: Fix previous change.
2982
29832001-12-18 Dave Love <fx@gnu.org>
2984
2985 * test-distrib.c: Conditionally include fcntl.h.
2986
2987 * fakemail.c: Include "config.h", not <../src/config.h>.
2988 (_XOPEN_SOURCE): Define as 500.
2989
2990 * emacsserver.c: Include "config.h", not <../src/config.h>.
2991
2992 * cvtmail.c: Include config.h, stdlib.h.
2993 (xmalloc, xrealloc, skip_to_lf sysfail): Prototype.
2994
2995 * yow.c: Conditionally include various headers. Use "epaths.h",
2996 not <../src/epaths.h>.
2997 (malloc, realloc) [!HAVE_STDLIB_H]: Prototype.
2998
29992001-12-12 Francesco Potortì <pot@gnu.org>
3000
3001 * etags.c (PHP_functions): New function for parsing PHP.
3002 (LOOKING_AT): New macro.
3003 (Perl_functions, Python_functions, PHP_functions)
3004 (Scheme_functions, Texinfo_nodes): Use it.
3005 (Perl_functions): Use strneq.
3006 (prolog_pred): Rename to prolog_pr.
3007 (prolog_pr): Recognise Prolog rules in addition to predicates.
3008 [ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent
3009 unmodified compile, as Cygwin's regex.h is incompatible with us.
3010 [!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string.
3011
30122001-12-11 Richard M. Stallman <rms@gnu.org>
3013
3014 * Makefile.in (clean): Don't delete ../etc/DOC*.
3015
30162001-12-11 Pavel Janík <Pavel@Janik.cz>
3017
3018 * COPYING: Moved back.
3019
30202001-11-30 Andrew Innes <andrewi@gnu.org>
3021
3022 * makefile.w32-in (FACE_SUPPORT):
3023 (MOUSE_SUPPORT):
3024 (FLOAT_SUPPORT):
3025 (WINNT_SUPPORT):
3026 (lisp): Reference .el files instead of .elc files, to simplify
3027 bootstrapping.
3028 ($(DOC)): Change dependency to just `make-docfile'.
3029
30302001-11-29 Pavel Janík <Pavel@Janik.cz>
3031
3032 * COPYING: Removed.
3033
30342001-11-28 Paul Eggert <eggert@twinsun.com>
3035
3036 * rcs2log (Copyright): Add '(C)' as per coding guidelines.
3037
3038 The following changes are derived from suggestions by Bob Chapman
3039 <rechapman@compuserve.com>.
3040
3041 * rcs2log (printlogline): Also allow tab and newline to separate
3042 '(function):' from the rest of a comment.
3043 (reformat the sorted log entries): Require date and author to
3044 match the clumpname.
3045
30462001-11-16 Gerd Moellmann <gerd@gnu.org>
3047
3048 * ebrowse.c (matching_regexp): Escape '\\'.
3049
30502001-11-15 Pavel Janík <Pavel@Janik.cz>
3051
3052 * Makefile.in: Add support for --program-prefix, --program-suffix
3053 and --program-transform-name options.
3054
30552001-11-03 Richard M. Stallman <rms@gnu.org>
3056
3057 * cvtmail.c (xrealloc): Always pass two args to `fatal'.
3058
3059 * movemail.c (popmail): Always pass two args to `error'.
3060
30612001-10-24 Ken Raeburn <raeburn@gnu.org>
3062
3063 * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
3064 -lhesiod and maybe -lresolv.
3065 (CRYPTOLIB) [HAVE_LIBK5CRYPTO]: Use -lk5crypto for Kerberos
3066 support if it's available.
3067
30682001-10-21 Miles Bader <miles@gnu.org>
3069
3070 * make-docfile.c (struct rcsoc_state): New type.
3071 (read_c_string_or_comment): Add SAW_USAGE
3072 parameter, and implement scanning for a `usage:' keyword.
3073 Use a variable of type `rcsoc_state' to hold most of our state.
3074 (put_char): Add STATE parameter, and remove all other parameters
3075 except CH. Use STATE to get access to all needed state.
3076 (scan_keyword_or_put_char): New function.
3077 (scan_c_file): Pass SAW_USAGE argument to read_c_string_or_comment.
3078 Don't output a usage-string if there was one in the doc-string.
3079
30802001-10-20 Gerd Moellmann <gerd@gnu.org>
3081
3082 * (Version 21.1 released.)
3083
30842001-10-19 Pavel Janík <Pavel@Janik.cz>
3085
3086 * b2m.c: Properly spell the name of Emacs.
3087
30882001-10-17 Miles Bader <miles@gnu.org>
3089
3090 * make-docfile.c (put_char): New function.
3091 (read_c_string_or_comment): Strip trailing spaces and newlines.
3092
30932001-10-16 Miles Bader <miles@gnu.org>
3094
3095 * make-docfile.c (scan_c_file): Handle `new style' doc strings in
3096 comments [with `doc:' keyword prefix].
3097
30982001-10-15 Gerd Moellmann <gerd@gnu.org>
3099
3100 * make-docfile.c (read_c_string_or_comment): Don't drop a '*'
3101 in a C doc comment.
3102
31032001-10-13 Gerd Moellmann <gerd@gnu.org>
3104
3105 * make-docfile.c (read_c_string_or_comment): Rename from
3106 read_c_string. Add parameter COMMENT. Read C-style comments.
3107 (scan_c_file): Handle doc strings in C comments.
3108
31092001-10-12 Andrew Innes <andrewi@gnu.org>
3110
3111 * makefile.nt (ALL): Do not include fakemail.
3112
3113 * makefile.w32-in (install): Do not copy fakemail.
3114
31152001-10-10 Jason Rumney <jasonr@gnu.org>
3116
3117 * makefile.w32-in (ALL): Do not include fakemail.
3118
3119 * makefile.nt (install): Ditto.
3120
31212001-10-09 Gerd Moellmann <gerd@gnu.org>
3122
3123 * emacsserver.c (main): Cast geteuid in sprintf to int.
3124
3125 * emacsclient.c (main): Cast isdigit argument to unsigned char.
3126
31272001-10-07 Pavel Janík <Pavel@Janik.cz>
3128
3129 * profile.c: Include config.h, not ../src/config.h.
3130 Include systime.h, not ../src/systime.h.
3131
31322001-10-05 Gerd Moellmann <gerd@gnu.org>
3133
3134 * Branch for 21.1.
3135
31362001-10-01 Alexander Zhuckov <zuav@int.spb.ru>
3137
3138 * ebrowse.c (struct alias): Add two new struct members: NAMESP and
3139 ALIASEE to help work with namespace aliases.
3140 (struct sym): Remove struct member NAMESP_ALIASES.
3141 (namespace_alias_table): New variable.
3142 (make_namespace): Add parameter CONTEXT.
3143 (check_namespace): New function.
3144 (find_namespace): Add parameter CONTEXT.
3145 (check_namespace_alias): New function.
3146 (register_namespace_alias): Change type of parameter OLD_NAME.
3147 Search for already defined alias in NAMESPACE_ALIAS_TABLE.
3148 (check_namespace): New function.
3149 (enter_namespace): Call find_namespace with CONTEXT parameter.
3150 (match_qualified_namespace_alias): New function.
3151 (parse_qualified_ident_or_type): Fix typo in comment.
3152 While parsing qualified ident or type update namespace context and
3153 restore it on exit.
3154 (parse_qualified_param_ident_or_type): Fix typo in comment.
3155 (globals): Change handling of namespace aliases.
3156 (version): Add year 2001.
3157
31582001-09-15 Eli Zaretskii <eliz@is.elta.co.il>
3159
3160 * etags.c (analyse_regex): If regex_arg is NULL, return
3161 immediately after a call to free_patterns.
3162
31632001-09-05 Paul Eggert <eggert@twinsun.com>
3164
3165 * rcs2log (Help, mainline code): Add new option -L FILE.
3166 (Copyright): Update year.
3167 (LANG, LANGUAGE, LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES)
3168 (LC_NUMERIC, LC_TIME): New shell vars, to make sure we live in the
3169 C locale.
3170 (mainline code): Handle nonstandard -u option differently, by
3171 transforming it to standard form. Check for "Working file: ", not
3172 "Working file:". Allow file names with spaces.
3173 (SOH, rlogfile): New shell vars.
3174 (rlogout): Remove. Its old functionality is mostly migrated to
3175 rlogfile.
3176
3177 Append ';;' to the last arm of every case statement, for
3178 portability to ancient broken BSD shells.
3179
3180 (logins): Fix bug; was not being computed at all, lowering performance.
3181 (pository): New var. This fixes some bugs where repositories are
3182 remote, or have trailing slashes.
3183 (authors): $llogout is never an empty shell var, so don't worry
3184 about that possibility.
3185 (printlogline, mainline code): Fix bug with SOH's being put into
3186 the output.
3187
31882001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
3189
3190 * ebrowse.c (SEEK_END): #define if not defined by system headers.
3191 Suggested by Dave Love <d.love@dl.ac.uk>.
3192
31932001-08-29 Eli Zaretskii <eliz@is.elta.co.il>
3194
3195 * makefile.nt (lisp): Synchronize with src/Makefile.in.
3196 * makefile.w32-in (lisp): Ditto.
3197
31982001-07-25 Juanma Barranquero <lektu@terra.es>
3199
3200 * grep-changelog (parse_changelog): Remove unused local variable.
3201
3202 * grep-changelog (main): Add new option --reverse.
3203 (print_log): Use it.
3204 (parse_changelog): Use it.
3205
32062001-07-20 Gerd Moellmann <gerd@gnu.org>
3207
3208 * grep-changelog: Remove RCS Id keyword.
3209
32102001-07-20 Juanma Barranquero <lektu@terra.es>
3211
3212 * grep-changelog (parse_changelog): Add tests for defined values
3213 to quiet warning from Perl 5.005 or above.
3214 (entry_match_p, header_match_p): Fix handling of null or empty
3215 argument to prevent duplicate headers.
3216
3217 * grep-changelog (main, parse_changelog): Make "use strict"-clean.
3218
32192001-07-17 Jan Nieuwenhuizen <janneke@gnu.org>
3220
3221 * emacsclient.c (print_help_and_exit): Fix help message for
3222 +LINE:COLUMN option.
3223
32242000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
3225
3226 * emacsclient.c (main): Add support for +LINE:COLUMN command line
3227 argument.
3228
32292001-07-16 Gerd Moellmann <gerd@gnu.org>
3230
3231 * ebrowse.c (main): Check that the output file exists and
3232 is non-empty if invoked with `--append'.
3233
32342001-05-14 Francesco Potortì <pot@gnu.org>
3235
3236 * etags.c (add_regex): Reset the whole newly allocated pattern
3237 buffer instead of the individual members. It's safer and works
3238 with XEmacs.
3239
3240 * etags.1: Markups corrected.
3241
32422001-05-08 Gerd Moellmann <gerd@gnu.org>
3243
3244 * ebrowse.c (enter_namespace): Fix reallocation of namespace_stack.
3245
32462001-05-03 Gerd Moellmann <gerd@gnu.org>
3247
3248 * ebrowse.c (globals): Fix handling of namespace aliases.
3249
32502001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
3251
3252 * etags.c (print_help): Enclose the regexp in the help text
3253 example in quotes.
3254
32552001-04-05 Dave Love <fx@gnu.org>
3256
3257 * emacsclient.c (fail): Don't return a value.
3258 (main): Cast uid values for sprintf.
3259
32602001-04-03 Gerd Moellmann <gerd@gnu.org>
3261
3262 * emacsclient.c (fail, main): Don't use implicit int return type.
3263
3264 * b2m.c (main): Always return a value.
3265
32662001-03-02 Gerd Moellmann <gerd@gnu.org>
3267
3268 * ebrowse.c (parse_qualified_param_ident_or_type): Return a
3269 freshly allocated object in *LAST_ID.
3270 (read_line): Accept \r\n line endings.
3271
32722001-02-24 Andrew Innes <andrewi@gnu.org>
3273
3274 * makefile.w32-in: Fix copyright notice.
3275
32762001-02-23 Francesco Potortì <pot@gnu.org>
3277
3278 * etags.c (enum sym_type): New label st_C_template.
3279 (gperf input): Use it for switching to C++ from C.
3280 (consider_token): Do it.
3281 (C_entries): Initialise typdefcblev to quiet compilers.
3282 [!HAVE_CONFIG_H] [!__STDC__]: #define static as nothing.
3283
32842001-02-22 Andrew Innes <andrewi@gnu.org>
3285
3286 * makefile.nt ($(BLD)\movemail.obj): Remove reference to
3287 VMS header files.
3288 ($(BLD)\profile.obj): Ditto.
3289
3290 * makefile.w32-in ($(BLD)/movemail.$(O)): Remove reference to
3291 VMS header files.
3292 ($(BLD)/profile.$(O)): Ditto.
3293
32942001-02-05 Andrew Innes <andrewi@gnu.org>
3295
3296 * makefile.w32-in ($(DOC)): Use $(THISDIR) instead of . in
3297 invocation of make-docfile, to work with Windows 2000.
3298
32992001-01-31 Dave Love <fx@gnu.org>
3300
3301 * etags.c (in_word_set): Use `static' in definition (for pcc).
3302
33032001-01-31 Francesco Potortì <pot@gnu.org>
3304
3305 * etags.c [NDEBUG]: #undef assert and #define it as ((void)0), for
3306 the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
3307 (C_entries): Tag token renamed to still_in_token because sunos4
3308 pcc wants to expand it as the token() macro even though it has no
3309 arguments.
3310
33112001-01-30 Andrew Innes <andrewi@gnu.org>
3312
3313 * etags.c (assert) [__MINGW32__]: Redefine assert to work around a
3314 bug in the Mingw32 assert.h header file.
3315
33162001-01-30 Francesco Potortì <pot@gnu.org>
3317
3318 * etags.c [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
3319 #define it for the sake of XEmacs.
3320 [WINDOWSNT]: #undef HAVE_NTGUI even if built without
3321 HAVE_CONFIG_H. This change only affects a standalone etags.
3322 [WINDOWSNT]: #undef DOS_NT and #define it even if built with
3323 HAVE_CONFIG_H. This change does nothing in Emacs, as DOS_NT is
3324 always defined when HAVE_CONFIG_H and WINDOWS are both defined.
3325 [!HAVE_UNISTD_H]: Use defined(WINDOWSNT) instead of the bare
3326 WINDOWSNT, as this is the correct way to use it.
3327
33282001-01-28 Francesco Potortì <pot@gnu.org>
3329
3330 * etags.c: Be capable to parse nested struct-like structures.
3331 (structdef, structtag): Struct state machine revisited.
3332 (struct tok): Revisited.
3333 (cstack, nestlev, instruct): New struct and macros.
3334 (pushclass_above, popclass_above, write_classname): New functions
3335 for dealing with nested class names.
3336 (consider_token, make_C_tag, C_entries): Many changes for dealing
3337 with arbitrarily nested structures.
3338 (etags_getcwd): #if MSDOS, not #ifdef MSDOS!
3339 (C_entries): Consider templates in C++.
3340 (sym_type): New constant st_C_class for detecting "class" also in
3341 C mode.
3342 (C_AUTO): New macro for automatic detection of C++.
3343 (consider_token): Automatic set C++ mode.
3344 (C_entries): New security check for yacc.
3345 (print_language_names, print_help): Mention the autodetect
3346 feature, do not show help for the -C option, now mostly useless.
3347 (C_entries): Tag C++ forward declarations if --declarations.
3348 (C_entries): Don't be fooled by things like XDEFUN.
3349 (consider_token): Discard asm pseudo function.
3350
33512001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
3352
3353 * etags.c: Add a coding: tag.
3354
33552001-01-26 Gerd Moellmann <gerd@gnu.org>
3356
3357 * ebrowse.c (matching_regexp_buffer, matching_regexp_end_buf):
3358 New variables.
3359 (matching_regexp): Use them instead of static variables in
3360 function scope.
3361
33622001-01-25 Francesco Potortì <pot@gnu.org>
3363
3364 * etags.c (struct tok): Rename from struct token.
3365 (token): Rename from tok.
3366 (structtype): Make it a local variable.
3367 [DEBUG]: Use assert.
3368 (xrnew): Change the synopsis.
3369 (typedefs_or_cplusplus): Rename from typedefs_and_cplusplus.
3370 (grow_linebuffer): Don't call xrnew when not needed.
3371 (token): Buffer renamed to line.
3372 (C_entries): Three calls to inibuffer moved here from main.
3373 (C_entries): Remove all references to var methodlen, delete it.
3374 (linebuffer_setlen): Was grow_buffer, now also sets len.
3375 (consider_token, C_entries, Pascal_functions): Use it.
3376 (C_entries): Preventing problems relative to extern "C".
3377 (C_entries): Can tag more than one variable or func separated by
3378 comma when --declarations is used.
3379 (C_entries): More accurate tagging of members and declarations.
3380 (yacc_rules): Was global, made local to C_entries.
3381 (next_token_is_func): Removed.
3382 (fvdef): New constants fdefunkey, fdefunname.
3383 (consider_token, C_entries): Use them.
3384 (C_entries): Build proper lisp names for Emacs DEFUNs.
3385
33862001-01-22 Gerd Moellmann <gerd@gnu.org>
3387
3388 * ebrowse.c (xfree): New function.
3389 (member, declaration, globals): Use xmalloc instead of alloca.
3390
33912001-01-15 Francesco Potortì <pot@gnu.org>
3392
3393 * etags.c (print_language_names): Print filenames in addition to
3394 suffixes.
3395
33962001-01-14 Francesco Potortì <pot@gnu.org>
3397
3398 * etags.c (get_language_from_langname): Rename from
3399 get_language_from_name.
3400 (get_language_from_filename): Rename from get_language_from_suffix.
3401 Now first looks for the complete file name.
3402 (language): New member char **filenames.
3403 (Makefile_filenames): List of possible filenames for makefiles.
3404 (lang_names): Add a NULL member for every entry, added an entry
3405 for makefiles.
3406 (Makefile_targets): New function.
3407 (Texinfo_nodes): Rename from Texinfo_fuctions and made
3408 it conformant to the style of the rest of the code.
3409
34102001-01-13 Gerd Moellmann <gerd@gnu.org>
3411
3412 * make-docfile.c (write_c_args): Print newlines as spaces.
3413
34142001-01-06 Andrew Innes <andrewi@gnu.org>
3415
3416 * makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
3417 of *.pdb.
3418
34192001-01-03 Paul Eggert <eggert@twinsun.com>
3420
3421 * rcs2log: Avoid security hole allowing attacker to
3422 cause user of rcs2log to overwrite arbitrary files, fixing
3423 a bug reported by Morten Welinder.
3424
3425 Don't put "exit 1" at the end of the exit trap; it's
3426 ineffective in POSIX shells.
3427
34282001-01-02 Gerd Moellmann <gerd@gnu.org>
3429
3430 * ebrowse.c (yyerror): Change to take two arguments.
3431 Add prototype. Change callers.
3432
34332001-01-02 Eli Zaretskii <eliz@is.elta.co.il>
3434
3435 * ebrowse.c (enter_namespace, main): Cast variables to shut up
3436 compiler warnings.
3437 (yyerror): Change parameter declarations to be of type long, so
3438 that they can take pointers on 64-bit platforms.
3439
3440 * emacsclient.c (main): Remove unused local variable statbfr.
3441 (main) <homedir>: Make its declaration conditional on
3442 SERVER_HOME_DIR, to avoid compiler warnings.
3443
3444 * emacsserver.c (main) <homedir>: Make its declaration conditional
3445 on SERVER_HOME_DIR, to avoid compiler warnings.
3446
3447 * fakemail.c (readline): Cast buffer to "long *" to pacify
3448 over-zealous compilers.
3449
34502000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
3451
3452 * etags.c (canonicalize_filename) [DOS_NT]: Fix last change.
3453
34542000-12-15 Gerd Moellmann <gerd@gnu.org>
3455
3456 * ebrowse.c (operator_name): Cast argument of isalpha to
3457 unsigned char.
3458
3459 * etags.c (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
3460 Use them throughout instead of ctype functions/macros.
3461 (lowcase): Cast to unsigned char.
3462 (UPCASE): New macro.
3463 (canonicalize_filename): Use UPCASE instead toupper.
3464
3465 * fakemail.c (get_keyword): Make sure that isspace and
3466 similar aren't called with a negative argument.
3467
34682000-12-13 Dave Love <fx@gnu.org>
3469
3470 * ebrowse.c (ensure_scope_buffer_room): Fix xrealloc call.
3471
34722000-12-06 Andrew Innes <andrewi@gnu.org>
3473
3474 * makefile.w32-in (LOCAL_FLAGS): Remove -DVERSION flag, since we
3475 don't know the real version, and I can't seem to get the quoting
3476 right in all circumstances.
3477
3478 * ebrowse.c (VERSION): Provide default definition, like etags.c
3479 does, because Windows build can't snarf this from version.el.
3480
34812000-11-30 Andrew Innes <andrewi@gnu.org>
3482
3483 * makefile.w32-in ($(BLD)/ebrowse.exe): Use tabs not spaces.
3484 (install): Ditto.
3485
34862000-11-23 Jason Rumney <jasonr@gnu.org>
3487
3488 * makefile.w32-in: Add targets for ebrowse.exe.
3489 (LOCAL_FLAGS): Add -DVERSION flag.
3490
34912000-09-25 Dave Love <fx@gnu.org>
3492
3493 * sorted-doc.c: Include config.h.
3494 [!HAVE_STDLIB_H]: Declare malloc.
3495
34962000-09-14 Andrew Innes <andrewi@gnu.org>
3497
3498 * makefile.w32-in: Revert to Unix line endings.
3499
35002000-09-04 Dave Love <fx@gnu.org>
3501
3502 * movemail.c (index, rindex): Prototype conditionally.
3503
35042000-09-03 Andrew Innes <andrewi@gnu.org>
3505
3506 * makefile.w32-in: Change to DOS line endings.
3507
35082000-09-01 Eli Zaretskii <eliz@is.elta.co.il>
3509
3510 * movemail.c (toplevel): Remove redundant fcntl.h.
3511 [!F_OK]: Provide default definitions only after including both
3512 fcntl.h and unistd.h.
3513
35142000-08-29 Dave Love <fx@gnu.org>
3515
3516 * movemail.c: Revert previous change.
3517
35182000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
3519
3520 * Makefile.in (profile, make-docfile, hexl): Depend on config.h.
3521
35222000-08-28 Dave Love <fx@gnu.org>
3523
3524 * movemail.c (toplevel) [HAVE_STRING_H]: Include string.h.
3525 (toplevel) [HAVE_STRINGS_H]: Include strings.h.
3526
35272000-08-22 Andrew Innes <andrewi@gnu.org>
3528
3529 * ntlib.h (WIN32): Remove unnecessary definition.
3530 (sleep): Make argument unsigned long.
3531 (_WINSOCK_H): Undefine so normal winsock definitions can be used.
3532
3533 * ntlib.c (sleep): Make argument unsigned long.
3534
3535 * movemail.c (main) [WINDOWSNT]: Force binary mode for fileio.
3536
3537 * makefile.w32-in: New file.
3538
35392000-08-20 Eli Zaretskii <eliz@is.elta.co.il>
3540
3541 * etags.c (canonicalize_filename) [DOS_NT]: Upcase the first
3542 letter only if it is a drive letter.
3543
35442000-07-14 Gerd Moellmann <gerd@gnu.org>
3545
3546 * ebrowse.c (xrealloc, xmalloc): Rename from yrealloc and ymalloc.
3547
3548 * etags.c (xmalloc, xrealloc): Make externally visible, for use
3549 by alloca.o.
3550
3551 * Makefile.in (alloca.o): Add -Demacs so that alloca will use xmalloc.
3552
35532000-07-10 Gerd Moellmann <gerd@gnu.org>
3554
3555 * ebrowse.c (yylex): Accept string literals with newlines in them.
3556 (process_pp_line): Handle case of string literal with newline
3557 in it in replacement text, which counts as continuing the
3558 replacement text in GNU C.
3559
35602000-07-02 Gerd Moellmann <gerd@gnu.org>
3561
3562 * ebrowse.c (token_string): Add missing tokens.
3563 (parm_list): Handle case of qualified pointers.
3564
35652000-06-23 Dave Love <fx@gnu.org>
3566
3567 * ebrowse.c: Move config.h before other includes (which may use
3568 feature tests).
3569
35702000-06-14 Jim Meyering <meyering@lucent.com>
3571
3572 * grep-changelog: Fix typos in comments. Remove trailing blanks.
3573
35742000-06-11 Jason Rumney <jasonr@gnu.org>
3575
3576 * makefile.nt: Add targets for ebrowse.
3577
3578 * ebrowse.c [WINDOWS_NT]: Use stricmp instead of strcasecmp to
3579 compare filenames.
3580
35812000-06-06 Gerd Moellmann <gerd@gnu.org>
3582
3583 * ebrowse.c (ymalloc): Rename from xmalloc.
3584 (yrealloc): Rename from xrealloc.
3585
35862000-05-21 Dave Love <fx@gnu.org>
3587
3588 * movemail.c: Include config.h, not ../src/config.h.
3589 (Errmsg): Bump length.
3590
3591 * pop.c (ERROR_MAX): Increase to 160.
3592
35932000-05-04 Gerd Moellmann <gerd@gnu.org>
3594
3595 * ebrowse.c (DEFAULT_OUTFILE): Set to `BROWSE'.
3596
35972000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
3598
3599 * ebrowse.c (PATH_LIST_SEPARATOR) [__MSDOS__ || WINDOWSNT]:
3600 Define to semi-colon.
3601 (FILENAME_EQ): New macro, for comparing file names.
3602 (add_member_decl, add_global_decl, add_member_defn): Use FILENAME_EQ.
3603 (process_file): Don't assume that fread always reads as many bytes
3604 as it was told to (DOS-style CR-LF text files fail this logic).
3605 (open_file): Allocate enough space for path->path plus the file
3606 name and the slash.
3607
36082000-04-19 Dave Love <fx@gnu.org>
3609
3610 * etags.c (Texinfo_functions): New function.
3611 (lang_names): Install it.
3612 (Texinfo_suffixes): New variable.
3613
36142000-04-19 Gerd Moellmann <gerd@gnu.org>
3615
3616 * ebrowse.c (xmalloc, xrealloc): Rewritten.
3617 (declaration): Remove parameter IS_EXTERN.
3618 (class_definition): Remove unused variable.
3619
36202000-04-09 Gerd Moellmann <gerd@gnu.org>
3621
3622 * Makefile.in (INSTALLABLES): Add ebrowse.
3623 (ebrowse): New target.
3624
3625 * ebrowse.c: New file.
3626
36272000-03-29 Andreas Schwab <schwab@suse.de>
3628
3629 * make-docfile.c (scan_lisp_file): Also look for `defsubst'.
3630
36312000-03-02 Gerd Moellmann <gerd@gnu.org>
3632
3633 * etags.c (lisp_suffixes): Add `LSP'.
3634
36352000-02-10 Francesco Potortì <pot@gnu.org>
3636
3637 * etags.c (iswhite): Redefine not to consider '\0' as white
3638 space, and use it throughout in place of isspace, thus preventing a
3639 potential signed char to int conversion problem.
3640 (MSDOS): #undefine before redefining.
3641
36422000-02-04 Francesco Potortì <pot@gnu.org>
3643
3644 * etags.c (many functions): Add prototypes.
3645
36462000-02-10 Dave Love <fx@gnu.org>
3647
3648 * etags.c (pfnote, new_pfnote, C_entries, prolog_pred)
3649 (erlang_func): Add `static' to definitions to keep pcc happy.
3650
36512000-01-31 Francesco Potortì <pot@gnu.org>
3652
3653 * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
3654 (get_compressor_from_suffix, process_file): Use MSDOS in if clause.
3655 (etags_strchr, etags_strrchr): Use const char * and int as arguments.
3656 (getenv, getcwd): Only declare them if necessary.
3657 (EMACS_NAME): New constant macro.
3658 (print_version): Use it.
3659 (P_) [__STDC__]: Macro for defining function prototypes.
3660
36612000-01-18 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
3662
3663 * etags.c [WINDOWSNT]: #include <direct.h>
3664
36652000-01-18 Martin Buchholz <martin@xemacs.org>
3666
3667 * etags.c (all functions): Made them static.
3668 (all functions): Write prototypes.
3669
36702000-01-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3671
3672 * movemail.c (main): Improve error message if can't create lock file.
3673
36742000-01-28 Eric Hanchrow <offby1@blarg.net>
3675
3676 * emacsclient.c (socket_status): New function.
3677 (main): If $LOGNAME or $USER exist and differ from our euid, look
3678 for a socket based on the UID associated with the name.
3679
36802000-01-12 Han-Wen Nienhuys <hanwen@cs.uu.nl>
3681
3682 * emacsclient.c: Add option -a EDITOR and environment variable
3683 ALTERNATE_EDITOR. Exec this editor if we fail to contact Emacs.
3684
36851999-12-10 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
3686
3687 * movemail.c (popmail): Allow mailbox specifications of the
3688 form `po:username:hostname'.
3689
36901999-11-19 Francesco Potortì <pot@gnu.org>
3691
3692 * etags.c (_GNU_SOURCE): Define only if undefined.
3693 (get_scheme): Declaration deleted.
3694 (main): Error was called with an integer as second arg, instead of
3695 a char pointer.
3696 (canonicalize_filename): Bug removed.
3697
36981999-11-18 Dave Love <d.love@dl.ac.uk>
3699
3700 * etags.c (C_entries): Rename label `intoken', avoiding K&R
3701 lossage from name clash with macro.
3702
37031999-11-13 Gerd Moellmann <gerd@gnu.org>
3704
3705 * Makefile.in (b2m): Add dependency on GETOPTDEPS.
3706
37071999-11-03 Gerd Moellmann <gerd@gnu.org>
3708
3709 * etags.c (print_help): Change email address to send bugs to.
3710
37111999-11-01 Francesco Potortì <pot@gnu.org>
3712
3713 * etags.c: Add suffix psw for PSWrap.
3714 (L_getit): Generalize a "cp!=' '" into "!isspace(*cp)".
3715 (Postscript_functions): Add code for PSWrap.
3716 (Scheme_functions): Use local pointer and new get_tag function.
3717 (get_tag): New name for old get_scheme.
3718 (process_file): Do not free NULL when file does not exist.
3719 (typdef): ttypedefseen renamed to tkeyseen, new label ttypeseen.
3720 (C_entries): Modifications that make --members tag even inside
3721 typedefs and C nested structs (one level only).
3722 (consider_token): Correct a bug which prevented tagging of enum
3723 constants.
3724 (C_stab_entry): Add if, for, while, switch, return as
3725 st_C_ignore. This makes it simpler to work when cblev!=0.
3726
3727 * etags.c (C_entries): Tag member function declarations when
3728 --declarations is used.
3729
3730 * etags.c (C_entries, consider_token): C++ `operator' now is
3731 tagged in most cases.
3732 As before, :: is not recognised if surrounded by spaces.
3733
3734 * etags.c (relative_filename): Account for DOS file names such
3735 that is impossible to make one relative to another.
3736
3737 * etags.c (sym_type): New st_C_extern tag.
3738 (gperf input): Use it for spotting external declarations.
3739 (print_help): Document the new behavior of --declarations.
3740 (fvextern): New global variable.
3741 (consider_token, C_entries): Use it.
3742
3743 * etags.c (HAVE_GETCWD) [WINDOWSNT]: Define if undefined.
3744 (etags_getcwd): Remove test for WINDOWSNT.
3745
3746 * etags.c (process_file) [MSDOS]: If foo.c.gz is not found, try
3747 foo.cgz, foo.cz, etc.
3748
3749 * etags.c (declarations): New global switch.
3750 (longopts): Describe it.
3751 (print_help): Document it.
3752 (C_entries): Use it.
3753 (process_file): Don't process a file twice.
3754
3755 * etags.c (Fortran_functions): No tags for "procedure".
3756
37571999-11-01 Eli Zaretskii <eliz@is.elta.co.il>
3758
3759 * etags.c (get_compressor_from_suffix): Second argument EXTPTR, if
3760 non-zero, returns a pointer to where the extension begins; callers
3761 changed.
3762 [MSDOS]: Support DOS file names by handling e.g. foo.cgz as if it
3763 were foo.c.gz.
3764
37651999-11-01 Francesco Potortì <pot@gnu.org>
3766
3767 * etags.c (sym_type, C_stab_entry): New constant st_C_operator.
3768 (fvdev): New constant foperator.
3769 (consider_token): Use it to get "operator" in C++.
3770 (C_entries): Extend length of operator@ function name.
3771 (C_entries): Use foperator when necessary.
3772
3773 * etags.c (main) [!ETAGS_REGEXPS]: Do not call free_patterns.
3774
3775 * etags.c (compressor): New struct for compressed files.
3776 (get_compressor_from_suffix): New function.
3777 (get_language_from_suffix): Use it. Also, semantics changed.
3778 (process_file): Consider compressed files, close file.
3779 (find_entries): Use different call arg for get_language_from_suffix,
3780 don't close file.
3781
3782 * etags.c (main): Call free_tree.
3783 (find_entries): Do not free curfile.
3784 (pfnote): Cosmetic change: NULL and '\0' where appropriate.
3785 (prolog_pred, erlang_func, substitute): Cast strlen to int when
3786 comparing.
3787 (canonicalize_filename): Shut up compiler warning.
3788 (Perl_functions): Make tag significant.
3789
37901999-11-01 Dave Love <d.love@dl.ac.uk>
3791
3792 * etags.c (longopts, optstring): New option --ignore-case-regex (-c).
3793 (argument_type): New member at_icregexp.
3794 (lc_trans): New global.
3795 (main): Fill lc_trans. Process -c args.
3796 (add_regex): New arg determining whether to use translation table.
3797 (analyse_regex): New arg. Use it for add_regex.
3798
37991999-11-01 Francesco Potortì <pot@gnu.org>
3800
3801 * etags.c (init): Cosmetic change: NULL --> '\0'.
3802 (erlang_attribute): Bug corrected (uninitialized variable).
3803 (filename_is_absolute): New function replaces absolutefn macro and
3804 corrects a bug. All callers changed.
3805 (canonicalize_filename): New function.
3806 (process_file, etags_getcwd, absolute_dirname): Use it.
3807 (relative_filename, absolute_filename): Remove var shadowing.
3808 (C_entries, Pascal_functions): Add fake initializations to keep
3809 compilers quiet.
3810 (TeX_functions, Prolog_functions, Erlang_functions): Cleanup.
3811
3812 * etags.c (xrnew): New macro. All callers of xrealloc changed.
3813 (language): New typedef (was struct lang_entry).
3814 (curlang): New global variable.
3815 (node): Typedef renamed from NODE.
3816 (linebuffer): New typedef (was struct linebuffer).
3817 (pattern): New typedef (was struct pattern). Some members added.
3818 Now used as element of a linked list.
3819 (patterns, num_patterns): Global variables deleted.
3820 (p_head): New global variable.
3821 (forced_lang): New global variable (replaces lang_func).
3822 (get_language_from_name, get_language_from_interpreter)
3823 (get_language_from_suffix): Semantics changed. All callers changed.
3824 (last_node): New global variable.
3825 (free_tree, add_node, put_entries, total_size_of_entries):
3826 Change name of local vars to avoid clashes with typedef node.
3827 (number_len): Rewritten for elegance.
3828 (token): New typedef replaces TOKEN.
3829 (analyse_regex, add_regex): Rewritten for new functionality.
3830 (free_patterns): New function called from main and add_regex.
3831 (initbuffer, readline_internal, readline, grow_linebuffer):
3832 Change name of local vars to avoid clashes with typedef linebuffer.
3833 (readline): Rewritten for new functionality.
3834
3835 * etags.c (Scheme_suffixes): New suffix ".ss".
3836 (print_help): --globals is now used for more than C-type languages.
3837 (Perl_functions): Tag global variables ("my" and "local").
3838
3839 * etags.c (print_help): Some messages clarified.
3840 (LOOP_ON_INPUT_LINES): New macro.
3841 (just_read_file, Fortran_functions, Asm_labels, Perl_functions)
3842 (Python_functions, Cobol_paragraphs, Pascal_functions)
3843 (Lisp_functions, Postscript_functions, Scheme_functions)
3844 (TeX_functions, Prolog_functions, Erlang_functions): Use it.
3845 (Cobol_paragraphs, Postscript_functions, TeX_functions)
3846 (Prolog_functions, Erlang_functions): Use a local variable instead
3847 of the global variable dbp.
3848 (Pascal_functions, L_isquote, Scheme_functions): Use GNU coding
3849 standard indentation.
3850
3851 * etags.c (Python_suffixes, lang_names, Python_functions):
3852 Python support.
3853 (skip_spaces, skip_non_spaces): Utility functions.
3854 (find_entries, takeprec, getit, Fortran_functions, Perl_functions)
3855 (Python_functions, L_getit, Lisp_functions, Scheme_functions)
3856 (prolog_pred, erlanf_func, erlang_attribute): Use them.
3857 (eat_white): Deleted.
3858
3859 * etags.c (CHAR, init): Keep into account non US-ASCII
3860 characters and compilers with default signed chars.
3861 (L_getit): Tag "(defstruct (foo", "(defun (operator" and similar
3862 constructs.
3863 (C_stab_entry): "interface" in Java behaves like "class".
3864
3865 * etags.c (HAVE_NTGUI) [WINDOWSNT]: #undef if HAVE_CONFIG_H.
3866 (main): Put interval syntax here.
3867 (add_regex): And remove it from here.
3868
3869 * etags.c (suggest_asking_for_help): Provide a
3870 meaningful help message with and without LONG_OPTIONS.
3871
3872 * etags.c (<io.h>) [MSDOS]: Include it, don't include string.h.
3873 <stdlib.h, string.h>: Don't test MSDOS when including them.
3874 (white, nonam, endtk): Like elsewhere, use \r instead of \013.
3875 (put_entries): Correctly use %ld instead of %d in printf.
3876
3877 * etags.c (<unistd.h>) [HAVE_UNISTD_H]: Include conditionally, else
3878 declare getcwd if HAVE_GETCWD.
3879 (consider_token): Dead break instruction removed.
3880
38811999-10-19 Paul Eggert <eggert@twinsun.com>
3882
3883 Add support for large files. Merge glibc 2.1.2.
3884
3885 * b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
3886 * movemail.c, pop.c:
3887 Do not include <stdlib.h>, as <config.h> does this now.
3888
3889 * b2m.c, emacsserver.c, etags.c, profile.c:
3890 Include <config.h> before any system include files.
3891
3892 * emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
3893 * test-distrib.c:
3894 (read, write, open, close): Do not undef.
3895
3896 * getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
3897 (const): Do not define if HAVE_CONFIG_H; that's config.h's job.
3898
3899 * getopt.h: Adopt glibc 2.1.2.
3900
39011999-10-15 Dave Love <fx@gnu.org>
3902
3903 * Makefile.in (pop.o): Depend on config.h.
3904
39051999-10-11 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
3906
3907 * pop.c: Use "pop3" as the POP service name on all platforms,
3908 instead of using "pop" on Unix and "pop3" on Windows NT. "pop3"
3909 has been the standard service name since RFC 1340 was published in
3910 July 1992, so I think it's safe to start using it by default.
3911
39121999-09-27 Dave Love <fx@gnu.org>
3913
3914 * make-docfile.c (scan_lisp_file): Fix typo causing infloop.
3915
39161999-09-19 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3917
3918 * make-docfile.c (scan_lisp_file): Fix previous changes;
3919 swallow CRLF like just CR or just LF.
3920
39211999-09-03 Richard Stallman <rms@gnu.org>
3922
3923 * make-docfile.c: Include config.h not ../src/config.h.
3924 (main, fopen, chdir): Add #undef.
3925 (read_c_string, scan_c_file, skip_white, read_lisp_symbol)
3926 (scan_lisp_file): Handle \r like \n.
3927
39281999-08-30 Andreas Schwab <schwab@gnu.org>
3929
3930 * make-docfile.c, fakemail.c: Include <stdlib.h> if available.
3931
3932 * emacsserver.c: Include <stdlib.h> if available. Don't declare
3933 errno if it's a macro.
3934
3935 * test-distrib.c: Include <unistd.h> if available.
3936
39371999-08-29 Richard Stallman <rms@gnu.org>
3938
3939 * emacsclient.c (print_help_and_exit): Mention --version.
3940
39411999-08-25 Richard M. Stallman <rms@gnu.org>
3942
3943 * emacsclient.c (decode_options): Update version output.
3944 (print_help_and_exit): Update bug report address.
3945
39461999-08-13 Richard M. Stallman <rms@gnu.org>
3947
3948 * emacsclient.c (main): Move the dynamic allocation of
3949 system_name outside of the SERVER_HOME_DIR conditional.
3950 * emacsserver.c (main): Likewise.
3951
39521999-08-10 Gerd Moellmann <gerd@gnu.org>
3953
3954 * grep-changelog: New.
3955 * Makefile.in (INSTALLABLE_SCRIPTS): Add it.
3956
39571999-07-12 Richard Stallman <rms@gnu.org>
3958
3959 * Version 20.4 released.
3960
39611999-06-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
3962
3963 * Makefile.in (clean): Remove fns*.el.
3964
39651999-06-23 Dave Love <fx@gnu.org>
3966
3967 * etags.c (erlang_attribute): Fix undefined variable usage (after
3968 Potorti).
3969
39701999-05-02 Andrew Innes <andrewi@gnu.org>
3971
3972 * movemail.c (main) [WINDOWSNT]: Call ftruncate, which is now
3973 mapped to _chsize.
3974
39751999-04-29 Richard M. Stallman <rms@gnu.org>
3976
3977 * emacsclient.c (main, both versions): Use quote_file_name on cwd.
3978
39791999-03-30 Dave Love <fx@gnu.org>
3980
3981 * sorted-doc.c (main): Split up tables. Modify the preamble
3982 somewhat.
3983
39841999-03-05 Geoff Voelker <voelker@cs.washington.edu>
3985
3986 * makefile.nt: Remove common multiple file compilation commands.
3987
39881999-02-26 Richard Stallman <rms@gnu.org>
3989
3990 * Makefile.in (yow): Depend on epaths.h, not paths.h.
3991
3992 * yow.c: Refer to epaths.h.
3993
39941999-02-22 Simon Josefsson <jas@pdc.kth.se>
3995
3996 * emacsserver.c (perror_1, fatal_error): Don't compile unless needed.
3997
39981999-01-27 Andrew Innes <andrewi@gnu.org>
3999
4000 * makefile.nt: Do make version comparison as strings.
4001
40021999-01-25 Richard Stallman <rms@gnu.org>
4003
4004 * emacsclient.c (xmalloc): Fix previous change.
4005
40061999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
4007
4008 * emacsclient.c (xmalloc): Declare to return long.
4009
40101999-01-22 Geoff Voelker <voelker@cs.washington.edu>
4011
4012 * etags.c (etags_getcwd, absolute_filename) [DOS_NT]: Canonicalize
4013 the case of the drive letter.
4014
40151999-01-15 Richard Stallman <rms@psilocin.ai.mit.edu>
4016
4017 * emacsserver.c (main): Eliminate arbitrary limit on
4018 length of system_name.
4019
4020 * emacsclient.c (main): Eliminate arbitrary limit on
4021 length of system_name.
4022 (xmalloc): Define unconditionally.
4023
40241999-01-12 Darrin B. Jewell <jewell@mit.edu>
4025
4026 * etags.c (relative_filename): Stop backward search at beginning
4027 of string, since non-Unix systems can have absolute paths with no
4028 initial slash.
4029
40301998-12-08 Geoff Voelker <voelker@cs.washington.edu>
4031
4032 * makefile.nt: Do string comparision of _NMAKE_VER.
4033
40341998-11-03 Theodore Jump <tjump@cais.com>
4035
4036 * makefile.nt: Compile multiple source files when possible.
4037
40381998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
4039
4040 * Makefile.in: Replace tabs with spaces
4041 when they might confuse some Make versions.
4042
40431998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
4044
4045 * emacsclient.c (main): Null-terminate system_name.
4046
4047 * emacsserver.c (main): Null-terminate system_name.
4048
40491998-09-21 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4050
4051 * movemail.c (popmail, pop_retr) [MAIL_USE_POP]: When displaying
4052 an error message from POP, mention that it's from POP, to
4053 distinguish it from local error messages.
4054
40551998-09-04 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4056
4057 * movemail.c [MAIL_USE_POP]: Add the "-r" flag to reverse the
4058 order of messages downloaded from a POP server (e.g., if the
4059 server stores messages in mailboxes in reverse order).
4060
40611998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
4062
4063 * Version 20.3 released.
4064
40651998-08-11 Paul Eggert <eggert@twinsun.com>
4066
4067 * rcs2log: Update copyright date and bug report address.
4068 (initialize_fullname): Prefer getent if available.
4069
40701998-07-30 Paul Eggert <eggert@twinsun.com>
4071
4072 * Makefile.in (REGEXPDEPS, regex.o):
4073 Prepend $(srcdir)/ to rule dependencies outside this dir.
4074
40751998-06-09 Andrew Innes <andrewi@harlequin.co.uk>
4076
4077 * etags.c (etags_getcwd) [WINDOWSNT]: Use getcwd on Windows.
4078
40791998-06-06 Richard Stallman <rms@psilocin.ai.mit.edu>
4080
4081 * Makefile.in: Properly terminate a comment.
4082
40831998-06-01 Andrew Innes <andrewi@mescaline.gnu.org>
4084
4085 * movemail.c (sys_wait): Rename to wait.
4086
4087 * ntlib.h: Undefine _WINSOCKAPI_.
4088
4089 * makefile.nt (LOCAL_FLAGS): Define HAVE_CONFIG_H.
4090
40911998-05-30 Geoff Voelker <voelker@cs.washington.edu>
4092
4093 * ntlib.c (getppid): Look for EM_PARENT_PROCESS_ID.
4094
40951998-05-01 Andrew Innes <andrewi@harlequin.co.uk>
4096
4097 * movemail.c [WINDOWSNT]: Undefine DISABLE_DIRECT_ACCESS.
4098 Force all file i/o to be in binary mode. Include ntlib.h.
4099
41001998-04-27 Andreas Schwab <schwab@delysid.gnu.org>
4101
4102 * make-docfile.c: Include <unistd.h> for chdir.
4103
41041998-04-25 Richard Stallman <rms@psilocin.gnu.org>
4105
4106 * etags.c (TEX_decode_env): Don't free the value getenv returns.
4107
41081998-04-17 Geoff Voelker <voelker@cs.washington.edu>
4109
4110 * makefile.nt (obj): Update with new files in src.
4111 (clean): Delete patch scratch files, optimized compilation dir.
4112
41131998-04-08 Dave Love <fx@gnu.org>
4114
4115 * emacsclient.c: Move inclusion of unistd.h to top, else fails on
4116 Irix6, at least.
4117
41181998-04-06 Andreas Schwab <schwab@gnu.org>
4119
4120 Silence -Wimplicit:
4121 * movemail.c: Move cancelations up. Include <stdlib.h> if
4122 available.
4123 * fakemail.c (_XOPEN_SOURCE): Define for declaration of cuserid.
4124 (parse_header): Explicitly declare return type.
4125 * emacsserver.c: Include <unistd.h> if available.
4126 (main, handle_signals, perror_1, fatal_error): Explicitly declare
4127 return types. Add forward declarations.
4128 * emacsclient.c: Include <stdlib.h> and <unistd.h> if available.
4129 Don't declare geteuid.
4130 (print_help_and_exit): Change return type to void.
4131 Forward declare it.
4132 * b2m.c: Include <stdlib.h> if available.
4133 (main): Explicitly declare return type.
4134
41351998-04-03 Richard Stallman <rms@psilocin.gnu.org>
4136
4137 * etags.c (put_entries): Use %ld.
4138
4139 * b2m.c (fatal): Declare the arg.
4140
41411998-03-26 Richard Stallman <rms@psilocin.gnu.org>
4142
4143 * pop.c (pop_getline): Rename from getline.
4144
41451998-03-05 Richard Stallman <rms@psilocin.gnu.org>
4146
4147 * Makefile.in (install): Use INSTALL_STRIP with INSTALL_PROGRAM
4148 for the utilities.
4149
41501998-01-23 Dave Love <d.love@dl.ac.uk>
4151
4152 * etags.c (getit, Cobol_paragraphs, Pascal_functions,
4153 Postscript_functions, prolog_pred, erlang_func, erlang_attribute):
4154 Always make named tags.
4155 (Fortran_functions): Grok BLOCK DATA.
4156
41571998-01-23 Andreas Schwab <schwab@gnu.org>
4158
4159 * movemail.c (main): Fix interwoven brace and cpp conditional
4160 nesting.
4161
41621997-12-03 Paul Eggert <eggert@delysid.gnu.org>
4163
4164 * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which quotes
4165 with a '>' any lines starting with "From " read from the POP server,
4166 but leave the code in place, wrapped in #ifdef
4167 MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
4168 because it turns out that something is depending on it.
4169 Change suggested by Paul Eggert <eggert@twinsun.com>.
4170 Convert the character \037 (^_) at the beginning of a line into
4171 the character '^' followed by the character '_', because otherwise
4172 Emacs can't parse the resulting file as a valid BABYL file.
4173 Change suggested by Paul Eggert <eggert@twinsun.com>.
4174
41751997-12-03 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4176
4177 * movemail.c, pop.c, pop.h: Allow messages retrieved from the POP
4178 server to contain embedded nulls.
4179
41801997-12-02 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4181
4182 * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which
4183 quotes with a '>' any lines starting with "From " read from the
4184 POP server, but leave the code in place, wrapped in #ifdef
4185 MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
4186 because it turns out that something is depending on it.
4187 Change suggested by Paul Eggert <eggert@twinsun.com>.
4188
4189 Convert the character \037 (^_) at the beginning of a line into
4190 the character '^' followed by the character '_', because otherwise
4191 Emacs can't parse the resulting file as a valid BABYL file.
4192 Change suggested by Paul Eggert <eggert@twinsun.com>.
4193
41941997-11-22 Richard Stallman <rms@gnu.org>
4195
4196 * b2m.c: Include getopt.h.
4197 (main): Use getopt_long to handle --version and --help.
4198
4199 * Makefile.in (b2m): Define VERSION. Link with $(GETOPTOBJS).
4200
42011997-10-31 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4202
4203 * pop.c (fullwrite): Get rid of an extra call to write.
4204 Problem pointed out by Chiaki Ishikawa.
4205
42061997-10-16 Dave Love <d.love@dl.ac.uk>
4207
4208 * etags.c (L_getit): Always make named tags so that Emacs
4209 completion on symbols containing `:' etc. works.
4210 (get_scheme): Likewise.
4211
42121997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4213
4214 * pop.c: Use system header files instead of declaring C-library
4215 functions explicitly.
4216
42171997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4218
4219 * Version 20.2 released.
4220
42211997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4222
4223 * Version 20.1 released.
4224
42251997-09-02 Andrew Innes <andrewi@harlequin.co.uk>
4226
4227 * makefile.nt (movemail.exe): Link wsock32.lib before LIBS.
4228
4229 * ntlib.c (getpid): Delete function.
4230
42311997-08-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
4232
4233 * make-docfile.c (scan_lisp_file): Handle custom-declare-variable.
4234
42351997-08-26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
4236
4237 * emacsclient.c [HAVE_SYSVIPC]: Include errno.h, as in the other case.
4238 (main) [!BSD_SYSTEM]: Fix error message for getcwd failure.
4239
42401997-08-14 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4241
4242 * emacsserver.c (main): Use SOCKLEN_TYPE for fromlen, if it is defined.
4243
42441997-08-13 Kazushi (Jam) Marukawa <jam@poboxes.com>
4245
4246 * profile.c (get_time): Cast arg to fprintf.
4247
4248 * hexl.c (main): Use %08lx instead of %08x in printf because the
4249 variable named addresses is long.
4250
42511997-08-08 Geoff Voelker <voelker@cs.washington.edu>
4252
4253 * makefile.nt (lisp): Update paths to lisp files that have moved.
4254
42551997-08-08 Andrew Innes <andrewi@harlequin.co.uk>
4256
4257 * makefile.nt (ctags.obj): New target.
4258 (etags.obj, getopt.obj, make-docfile.obj): Update dependencies.
4259
4260 * ntlib.h: Add includes.
4261 Undo definitions of crt routines from config.h.
4262
42631997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4264
4265 * etags.c (Yacc_suffixes, Asm_suffixes): Add some alternatives.
4266
42671997-07-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4268
4269 * pop.c: Support auto-configuration of both Kerberos V4 and
4270 Kerberos V5 for movemail, including detection of V4 and V5 header
4271 files and libraries.
4272 Include <string.h> when STDC_HEADERS is defined, to get
4273 declarations of string functions.
4274 [KERBEROS5] (socket_connection): Support the current MIT Kerberos
4275 V5 API rather than the old one.
4276 [KERBEROS] (socket_connection): Change a constant name from
4277 SOCKET_ERROR to POP_SOCKET_ERROR to avoid a namespace conflict
4278 with a constant in a header file.
4279
4280 * Makefile.in: Support auto-configuration of both Kerberos V4 and
4281 Kerberos V5 for movemail, including detection of V4 and V5 header
4282 files and libraries.
4283
42841997-07-17 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4285
4286 * fakemail.c [HAVE_UNISTD_H]: Include unistd.h.
4287
4288 * etags.c [HAVE_UNISTD_H]: Include unistd.h.
4289
42901997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4291
4292 * emacsclient.c [C_ALLOCA] (xmalloc): New function.
4293
42941997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4295
4296 * movemail.c (rindex): Add declaration.
4297
42981997-07-01 Geoff Voelker <voelker@cs.washington.edu>
4299
4300 * makefile.nt (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
4301 (movemail.exe): Depend upon and link with getopt files.
4302 (obj): Include new source files.
4303 (FACE_SUPPORT, MOUSE_SUPPORT, FLOAT_SUPPORT, WINNT_SUPPORT): Define.
4304 (lisp): Include new and reorganized elisp files.
4305
43061997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4307
4308 * Makefile.in (blessmail): Find blessmail.el in mail subdirectory.
4309
43101997-06-25 Paul Eggert <eggert@twinsun.com>
4311
4312 * rcs2log: Don't assign to $0 in awk; some awks don't allow this.
4313
43141997-06-14 Karl Heuer <kwzh@gnu.ai.mit.edu>
4315
4316 * b2m.c (readline): Terminate buffer properly when EOF seen.
4317 Test for valid pointer before dereferencing it.
4318
43191997-05-30 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4320
4321 * Makefile.in (etags): Remove -DETAGS_REGEXPS, because now it is
4322 defined inside etags.c if HAVE_CONFIG_H is defined.
4323
43241997-05-29 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4325
4326 * etags.c (logical): Type name changed to bool.
4327 (ETAGS_REGEXPS, LONG_OPTIONS) [HAVE_CONFIG_H]: #define them.
4328 (<getopt.h>) [LONG_OPTIONS]: Include conditionally.
4329 (getopt_long) [!LONG_OPTIONS]: Redefine as macro.
4330 (main): Accepted options depend on ETAGS_REGEXPS and LONG_OPTIONS.
4331 (longopts): New long options without short counterpart are
4332 globals, members, no-globals, no-members. Regexp options are now
4333 defined conditionally to ETAGS_REGEXPS.
4334 (print_help): Updated.
4335
43361997-05-22 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4337
4338 * etags.c (C_entries): Use "." instead of "::" for Java.
4339 (consider_token): is_func renamed to is_func_or_var.
4340 (C_entries): is_func renamed to funorvar.
4341 (C_entries): Initialise tok.named.
4342 (sym_type, C_stab_entry, consider_token): st_C_ignore is used to
4343 get rid of "import", "package" and "friend".
4344 (fvdef): Rename from funcdef. Also some constants renamed.
4345 All users changed.
4346 (C_entries): Make separate tags for variables separated by comma.
4347 (globals, members): New flags.
4348 (main, C_entries): Use them.
4349 (make_C_tag, C_entries): Make tok a global variable.
4350
43511997-05-16 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4352
4353 * etags.c (funcdef): New vignore constant.
4354 (consider_token, C_entries): Use it to tag global variables.
4355 (print_help): Update for global variables.
4356 (consider_token, C_entries): Set the len member of token_name.
4357 (prolog_pred): Cleanup according to GNU coding standards.
4358 (Cobol_suffixes, lang_names, Cobol_paragraphs): Cobol support.
4359 (prolog_white, erlang_white): Rename to eat_white, callers changed.
4360
43611997-05-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4362
4363 * etags.c (CHARS, CHAR): New constant and macro.
4364 (iswhite, begtoken, intoken, endtoken): Use them.
4365 (notinname, _nin, nonam): New macro, array, string.
4366 (init): Cleanup and init _nin.
4367 (new_pfnote): New function.
4368 (make_C_tag) [traditional_tag_style]: Use it.
4369 (traditional_tag_style): Constant set to TRUE for now.
4370
43711997-05-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4372
4373 * etags.c (C_entries, Pascal_functions): Cleanup.
4374 (TeX_functions): NULL as a function arg needs a cast.
4375 (Erlang_functions, erlang_func, erlang_attribute): Cleanup.
4376
43771997-05-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4378
4379 * etags.c (TeX_functions): Cleaned up.
4380 (tex_getit): Removed.
4381
43821997-05-13 Paul Eggert <eggert@twinsun.com>
4383
4384 * rcs2log (files): When computing arguments automatically, ignore
4385 non-files within the RCS subdirectory.
4386
43871997-05-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4388
4389 * etags.c (C_JAVA): New #define.
4390 (Cjava_suffixes): .java is Java.
4391 (Cjava_entries): New function.
4392 (lang_names): Add Java.
4393 (sym_type): Add st_C_javastruct for Java.
4394 (C_stab_entry): Add `extends' and `implements' keywords.
4395 (consider_token, C_entries): Recognise Java structures.
4396
43971997-05-12 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4398
4399 * etags.c (Cplusplus_suffixes): .pdb is Postscript with C syntax.
4400 (Postscript_suffixes): .ps is Postscript.
4401 (lang_names): Add Postscript.
4402 (Postscript_functions): New function.
4403 (TEX_decode_env): Close minor memory leak.
4404 (just_read_file): Correct the char number of the tag.
4405
44061997-05-11 Paul Eggert <eggert@twinsun.com>
4407
4408 * rcs2log (loginFullnameMailaddrs, logins, rlog_options, files):
4409 Don't prepend $nl since this causes some shells to generate the
4410 empty string when IFS is $nl.
4411 (printlogline): Use SOH (octal code 1), not CR, since some
4412 PC-based shells mishandle CR.
4413 (initialize_fullname): Set NIS_PATH to the empty string before invoking
4414 nismatch, in case it's set to some nonstandard value.
4415
44161997-05-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4417
4418 * pop.c (getline): Don't miss CRLF pairs when the CR and LF are
4419 read in separate blocks.
4420
44211997-04-30 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4422
4423 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
4424 (struct linebuffer): New member `len' is the length of the string.
4425 (find_entries, Pascal_functions, TeX_functions, TEX_getit):
4426 Use it instead of strlen.
4427 (TEX_getit): Declare and define unconditionally as static.
4428 (TeX_functions): Use if instead of #if TeX_named_tokens.
4429 (add_regex): Set RE_INTERVALS flag for regex compilation.
4430 (substitute): Code cleanup.
4431 (readline_internal): Code cleanup, set new member `len'.
4432 (readline): Bug corrected.
4433
44341997-04-23 Geoff Voelker <voelker@cs.washington.edu>
4435
4436 * makefile.nt: Change references of windowsnt.h to ms-w32.h.
4437 (obj): Change references of nt*.c files to w32*.c files.
4438
44391997-04-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4440
4441 * etags.c (xnew): Add support for debugging with chkmalloc.
4442 (error): Use this instead of printf whenever possible.
4443 (main): Only call xnew after having initialised progname.
4444 (substitute): Bad memory corruption error corrected.
4445
44461997-04-08 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4447
4448 * etags.c (add_regex): Undo previous change.
4449 (relative_filename): Small memory leak closed.
4450 (absolute_filename): Cleaned up the code, possibly closing a bug.
4451 (absolute_dirname): Always return a newly allocated string.
4452
44531997-03-21 Paul Eggert <eggert@twinsun.com>
4454
4455 * rcs2log (files): Ignore files in RCS directory whose names are
4456 of the form ,*, or *_; they are probably RCS lock files.
4457 Also, ignore files named .rcsfreeze.log or .rcsfreeze.ver;
4458 they are used by rcsfreeze.
4459
44601997-03-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4461
4462 * etags.c (add_regex): Reset *putbuf before using it.
4463
44641997-02-23 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4465
4466 * movemail.c (popmail): Remove some unnecessary function
4467 declarations.
4468 (popmail, pop_retr): Since popmail always passes mbx_write and mbf
4469 into pop_retr, there's no reason to pass in mbx_write, and the
4470 file argument can be declared FILE * explicitly. This fixes a
4471 compilation problem on systems with 64-bit pointers.
4472
44731997-02-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4474
4475 * movemail.c: Delete duplicate inclusion of fcntl.h
4476 and duplicate #undefs of open, read, write, close.
4477
44781997-01-20 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4479
4480 * movemail.c (main): Do not display "[POP-password]" in the usage
4481 message when movemail is compiled without POP support.
4482 (main, popmail): Add the optional "-p" argument, which causes
4483 movemail to leave mail in the inbox after copying it into the
4484 output file.
4485
4486 * Makefile.in (movemail): Link with getopt.
4487
44881997-01-20 Paul Eggert <eggert@twinsun.com>
4489
4490 * rcs2log (--help, --version): New options, per GNU coding standards.
4491 (Copyright, Help, Id): New variables, for above.
4492 (rlog): Use -q option with cvs log, to avoid useless chatter.
4493
4494 Treat logs of "Initial revision" (RCS) or "file F was initially added
4495 on branch B." (CVS) as if they said "New file.", for consistency with
4496 change log entries.
4497
44981997-01-01 Paul Eggert <eggert@twinsun.com>
4499
4500 * vcdiff (PATH): Add /usr/xpg4/bin,
4501 where XPG4 SCCS hangs out in Solaris 2.5.
4502 (sid1): Don't use bare -r, since XPG4 `get' does not allow it.
4503
45041996-12-19 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4505
4506 * etags.c (streq, strneq): Use == NULL rather than !.
4507
45081996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
4509
4510 * Makefile.in (LIBMAIL): New macro. Conditionally includes -lmail.
4511 (movemail): Use LIBMAIL, to link against -lmail.
4512
4513 * movemail.c: Include maillock.h (conditionally).
4514 Remove a redundant inclusion of <stdio.h>.
4515 (MAIL_USE_MAILLOCK): New macro, conditionally defined.
4516 (main): Add variable spool_name.
4517 Support the usage of maillock and mailunlock to
4518 lock and unlock mailboxes.
4519 (mail_spool_name): New function.
4520
4521 * movemail.c: Fix an uninitialized variable which could cause
4522 movemail to exit with an error status incorrectly on systems which
4523 use lock files rather than a system locking function to lock
4524 mailboxes.
4525
45261996-12-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4527
4528 * pop.c (socket_connection): Free realhost after using it.
4529
45301996-12-04 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4531
4532 * etags.c (C_entries): Test tok.valid. This handles some
4533 particular cases involving function declarations that failed.
4534
45351996-11-22 Charles Hannum <mycroft@gnu.ai.mit.edu>
4536
4537 * pop.c (socket_connection):
4538 gethostbyname may return a pointer to static data.
4539 krb_realmofhost can clobber it. So copy it.
4540
45411996-11-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4542
4543 * etags.c (pfnote, fatal, error): Callers using a NULL pointer
4544 must cast it to (char *) because we have no prototypes.
4545 (make_C_tag): Macro deleted, new function.
4546 (C_entries): Calls to make_C_tag macro changed to call function.
4547
45481996-11-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4549
4550 * etags.c (grow_linebuffer): New function.
4551 (GROW_LINEBUFFER): Macro deleted. All callers changed.
4552 (make_tag): Macro renamed to make_C_tag. All callers changed.
4553 (<stdlib.h>, <string.h>) [STDC_HEADERS]: New #include's.
4554 (Prolog_functions): prolog_skip_comment was called with wrong
4555 number of arguments.
4556 (xrealloc): fatal was called with wrong number of arguments.
4557
45581996-11-08 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4559
4560 * etags.c (relative_filename): Bug corrected.
4561 (etags_getcwd): Avoid warning of unused variable.
4562 (C_entries, consider_token): Add support for enum labels.
4563
45641996-11-03 Paul Eggert <eggert@twinsun.com>
4565
4566 * rcs2log: When processing cvs log output, remove `Attic/' from
4567 repository file names.
4568
45691996-10-22 Karl Heuer <kwzh@gnu.ai.mit.edu>
4570
4571 * emacsserver.c: Fix 1996-09-02 change.
4572
45731996-10-12 Paul Eggert <eggert@twinsun.com>
4574
4575 * rcs2log (rlog_options): Look for ' option' rather than 'unknown
4576 option', since CVS says 'invalid option'.
4577 (datearg): Use the empty string, not '-d>1970-01-01', to extract all
4578 revisions, since some hosts reject 1970-01-01 when east of UTC.
4579 (date): Remove.
4580
45811996-10-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4582
4583 * etags.c (etags_getcwd) [WINDOWSNT]: Convert backslashes to slashes.
4584
45851996-10-02 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4586
4587 * etags.c (print_version): Print copyright info.
4588
4589 * etags.c (print_help): Print the bug reporting address.
4590 (main): Use return as the last instruction, instead of exit.
4591
4592 * etags.c (main): Don't open the tags file in cxref mode.
4593
45941996-09-29 Dave Love <d.love@dl.ac.uk>
4595
4596 * rcs2log (date): Make default format acceptable to CVS post v1.8
4597 as well as earlier CVSs and RCS.
4598
45991996-09-29 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4600
4601 * movemail.c (main): If the lock call fails with EBUSY or
4602 EAGAIN, retry a few times.
4603
46041996-09-25 Paul Eggert <eggert@twinsun.com>
4605
4606 * rcs2log (rlog_options): Use $rlog, not rlog, when deciding
4607 whether to append -zLT.
4608
46091996-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
4610
4611 * fakemail.c: Replaced symbol BSD with BSD_SYSTEM.
4612 * emacsclient.c, movemail.c: Likewise.
4613
46141996-09-09 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4615
4616 * emacsclient.c (longopts): Change nowait to no-wait.
4617 (print_help_and_exit): Fix option name; upcase metavars.
4618
46191996-09-06 Erik Naggum <erik@naggum.no>
4620
4621 * emacsserver.c (main): Declare `fromlen' as size_t.
4622
46231996-09-02 Eli Zaretskii <eliz@is.elta.co.il>
4624
4625 * etags.c (etags_getcwd): Use getcwd if available even if MSDOS.
4626
46271996-09-02 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4628
4629 * emacsclient.c (quote_file_name): Quote with &, not \.
4630 Quote `-' only at start of file name. Terminate the value string.
4631
4632 * emacsserver.c: Include signal.h properly;
4633 delete the duplicate includes for it.
4634
4635 * emacsserver.c: On fatal signal, delete socket-file:
4636 * emacsserver.c: Include signal.h.
4637 (xmalloc, fatal, error): New functions.
4638 (delete_socket, handle_signals): New functions.
4639 (progname, socket_name): New variables.
4640 [HAVE_SOCKETS] (main): Call handle_signals; set the new variables.
4641
46421996-09-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4643
4644 * emacsclient.c (quote_file_name): New function.
4645 (main, both versions): Use quote_file_name.
4646 (decode_options): Don't return a value.
4647 (main, both versions): Use optind.
4648 Don't check for -nowait here.
4649
4650 * emacsclient.c (decode_options): New function.
4651 (main, both versions): Call decode_options.
4652 (print_help_and_exit): New function.
4653 (VERSION): New macro.
4654
4655 * Makefile.in (emacsclient): Link with getopt.
4656 Add -DVERSION so emacsclient knows its version number.
4657
46581996-08-31 Geoff Voelker <voelker@cs.washington.edu>
4659
4660 * makefile.nt (lisp): Include dos-nt.elc.
4661
46621996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4663
4664 * Makefile.in (blessmail): Use $srcdir to find blessmail.el.
4665
46661996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4667
4668 * emacsclient.c (both versions): Handle -nowait and --nowait
4669 by sending data to the server.
4670
46711996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4672
4673 * Makefile.in (INSTALL_STRIP): New variable.
4674 (${archlibdir}): Use INSTALL_STRIP.
4675
4676 * Makefile.in (MOVE_LIBS): Use conditionals on KERBEROS,
4677 HAVE_LIBKRB, HAVE_LIBDES, HAVE_LIBCOM_ERR to set it up.
4678
4679 * pop.c: Reverse conditional in previous change.
4680
46811996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4682
4683 * pop.c: Include des.h krb.h with no dir name if SOLARIS2.
4684
46851996-08-24 Paul Eggert <eggert@twinsun.com>
4686
4687 * rcs2log: Use ISO 8601 date format, with time zone appended
4688 if change-log-time-zone-rule is non-nil, instead of
4689 traditional Unix date format.
4690
4691 (datearg): When computing default from ChangeLog, handle ISO format
4692 dates in addition to old-fashioned dates from Emacs 19.31 and earlier.
4693 Don't worry about hh:mm:ss since the resolution is now by day.
4694 Use empty datearg, not empty rlog_options, to decide whether to pass
4695 "$datearg" option to $rlog.
4696 (logTZ): New variable, set to TZ specified by change-log-time-zone-rule.
4697 (month_data): Remove `mo'; no longer needed.
4698 (rlog_options): Use -zLT for localtime output, if `rlog' supports it.
4699
4700 Match `revision' line of rlog output more accurately.
4701
4702 Add -c, -v options.
4703
47041996-08-23 Eli Zaretskii <eliz@is.elta.co.il>
4705
4706 * hexl.c: Include <config.h>, so DOS_NT is defined on MSDOS.
4707
47081996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4709
4710 * Version 19.33 released.
4711
47121996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4713
4714 * Version 19.32 released.
4715
47161996-07-23 Andrew Innes <andrewi@harlequin.co.uk>
4717
4718 * etags.c (readline_internal) [DOS_NT]: Don't include CRs when
4719 computing character positions in source files.
4720
47211996-07-16 Andrew Innes <andrewi@harlequin.co.uk>
4722
4723 * makefile.nt (clean): Use OBJDIR macro.
4724
47251996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
4726
4727 * cvtmail.c, sorted-doc.c, yow.c, emacsserver.c: Undo previous change.
4728
47291996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
4730
4731 * cvtmail.c, sorted-doc.c, yow.c [__GNU_LIBRARY__]: Use <string.h>.
4732 * emacsserver.c (main) [__GNU_LIBRARY__]: Use size_t for fromlen.
4733 * etags.c, fakemail.c, profile.c: Declare main as int, not void.
4734
47351996-07-15 Andrew Innes <andrewi@harlequin.co.uk>
4736
4737 * ntlib.h: Correct return type of getwd.
4738 * ntlib.c (getwd): Correct return type.
4739
47401996-07-02 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4741
4742 * emacsserver.c (main) [HAVE_SOCKETS]: Call rewind before writing
4743 to infile.
4744
47451996-07-01 Andrew Innes <andrewi@harlequin.co.uk>
4746
4747 * makefile.nt: Remove all references to wakeup.
4748
47491996-06-28 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4750
4751 * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
4752 explicit, mutable, typename.
4753
47541996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4755
4756 * emacsclient.c (main) [HAVE_SOCKETS]: Use two separate stdio
4757 streams, one for sending and one for reading the reply.
4758
47591996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4760
4761 * Makefile.in (timer, timer.o, getdate.o, $(srcdir)/getdate.c)
4762 (wakeup): Target deleted.
4763 (UTILITIES): Delete wakeup and timer.
4764
4765 * wakeup.c, timer.c, getdate.y, getdate.c: Files deleted.
4766
47671996-06-11 Geoff Voelker <voelker@cs.washington.edu>
4768
4769 * etags.c (etags_getcwd) [DOS_NT]: Change conditional to MSDOS only.
4770 * makefile.nt (ETAGS_CFLAGS): Define HAVE_GETCWD macro.
4771
47721996-06-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4773
4774 * etags.c (main): Copy cwd when appending slash.
4775
47761996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
4777
4778 * Version 19.31 released.
4779
47801996-05-17 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4781
4782 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
4783 (Pascal_functions): Increase linecharno by the correct number of
4784 chars, inline the GET_NEW_LINE macro and delete its definition.
4785
47861996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
4787
4788 * makefile.nt (OBJDIR, BLD): Remove macro definitions.
4789
47901996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
4791
4792 * makefile.nt (LOCAL_FLAGS): Include path to NT shadow includes.
4793 (movemail.exe, fakemail.exe): Now built under Win32.o.
4794
4795 * ntlib.c: Include ntlib.h.
4796 (nt_sleep): Rename to sleep.
4797 (getwd): Return directory.
4798 (getlogin, cuserid, getuid, setuid, getpwuid, getpass, fchown,
4799 sys_ctime, sys_fopen): New functions.
4800
4801 * ntlib.h: New file.
4802
48031996-04-29 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
4804
4805 * pop.c (SEND, RECV): Rename from send, recv.
4806 (pop_open, pop_trash): Make the trash_started code unconditional.
4807 (socket_connection): Delete casts to void.
4808
48091996-04-28 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
4810
4811 * movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP):
4812 Definitions copied from lisp.h.
4813
48141996-04-22 Andrew Innes <andrewi@harlequin.co.uk>
4815
4816 * fakemail.c [WINDOWSNT]: Include ntlib.h.
4817
4818 * hexl.c [DOSNT]: Include fcntl.h.
4819 [WINDOWSNT]: Include io.h.
4820 (main) [MSDOS]: Change conditional to DOS_NT.
4821
4822 * movemail.c (access, unlink) [WINDOWSNT]: Macros undefined.
4823 (fork, syswait, DISABLE_DIRECT_ACCESS) [WINDOWSNT]: Macros defined.
4824 [WINDOWSNT]: Include locking.h.
4825 (main): Update usage message. Use IS_DIRECTORY_SEP.
4826 (main) [DISABLE_DIRECT_ACCESS]: Don't check access if defined.
4827 (main) [WINDOWSNT]: Invoke locking instead of flock.
4828 (main) [MAIL_USE_SYSTEM_LOCK && WINDOWSNT]: Emulate ftruncate.
4829 (main) [MAIL_USE_POP]: Pass password to popmail if used.
4830 Include winsock.h; don't include unix inet headers.
4831 (popmail): Add password argument and pass it to pop_open.
4832 Open output file in binary mode.
4833
4834 * pop.c [WINDOWSNT]: Include winsock.h and ntlib.h.
4835 Macro SOCKET_ERROR undefined.
4836 Don't declare h_errno.
4837 [!WINDOWSNT]: Define macros recv and send.
4838 [!WINDOWSNT] (POP_SERVICE): Change to pop3.
4839 (pop_open) [WINDOWSNT]: Initialize trash_started.
4840 (have_winsock) [WINDOWSNT]: New variable.
4841 (socket_connection) [WINDOWSNT]: Initialize winsock.
4842 (socket_connection): Use closesocket instead of close.
4843 (getline): Use recv instead of read.
4844 (fullwrite): Use send instead of write.
4845 (pop_trash): Use closesocket instead of close.
4846 (pop_trash) [WINDOWSNT]: Cleanup winsock.
4847 Check if being called recursively by sendline.
4848
4849 * pop.h (struct _popserver): New field trash_started.
4850
4851 * wakeup.c [HAVE_CONFIG_H]: Only include config.h when defined.
4852
48531996-04-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4854
4855 * hexl.c (main) [DJGPP v2]: Don't change to binary for a tty.
4856
48571996-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4858
4859 * etags.c [WINDOWSNT]: Include io.h.
4860
48611996-04-10 Geoff Voelker <voelker@cs.washington.edu>
4862
4863 * makefile.nt (CTAGSOBJ): Compile with regexp support.
4864
48651996-04-09 Eli Zaretskii <eliz@is.elta.co.il>
4866
4867 * hexl.c [DJGPP v2]: Include io.h.
4868 (main) [DJGPP v2]: Switch standard streams to binary with setmode.
4869
4870 * b2m.c (main) [MSDOS]: Switch standard streams to binary under
4871 DJGPP v2.
4872
48731996-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4874
4875 * etags.c (absolute_filename): Use absolutefn.
4876
48771996-03-31 Eli Zaretskii <eliz@is.elta.co.il>
4878
4879 * etags.c (absolutefn) [DOS_NT]: Support Novell drives whose drive
4880 letter isn't an alphabetic character.
4881 (main) [DOS_NT]: Use binary mode on redirected `stdout'.
4882 (process_file) [DOS_NT]: Convert all slashes to forward style.
4883 (absolute_filename) [DOS_NT]: Emit error message for relative
4884 paths with a drive letter.
4885 (absolute_filename) [DOS_NT]: Handle absolute pathnames with
4886 DOS/NT drive letters which try to reference the parent of the root.
4887 (absolute_dirname) [DOS_NT]: Convert all slashes to forward style.
4888
48891996-03-27 Geoff Voelker <voelker@cs.washington.edu>
4890
4891 * makefile.nt: Change uses of del to $(DEL).
4892
48931996-03-22 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4894
4895 * etags.c (just_read_file): Reset lineno and charno on entry.
4896
48971996-03-15 Anders Lindgren <andersl@csd.uu.se>
4898
4899 * etags.c: Prolog language totaly rewritten.
4900 (Prolog_functions): Rewritten from scratch.
4901 (skip_comment, prolog_getit): Removed.
4902 (prolog_skip_comment): New function, like old skip_comment.
4903 (prolog_pred, prolog_atom, prolog_white): New functions.
4904 (erlang_func, erlang_attributes): Forward declarations added.
4905 (erlang_atom): Check if backslash ends line inside quoted atom.
4906
49071996-03-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
4908
4909 * etags.c (absolutefn): DOS_NT version corrected.
4910 (main): Append "/" to the dir name only if not already there.
4911 (print_help): Explain the absolute/relative file name issue.
4912
49131996-03-08 Anders Lindgren <andersl@csd.uu.se>
4914
4915 * etags.c: New Language Erlang added.
4916 (Erlang_functions, erlang_func, erlang_attribute, erlang_atom)
4917 (erlang_white): New functions.
4918 (Erlang_suffixes): New suffix list.
4919 (lang_names): Erlang entry added.
4920 (prolog_getit): Accepts headers spanning several lines.
4921 Always name tags.
4922 (Prolog_functions): Remove incorrect compensation for
4923 newline characters.
4924 (readline_internal): Zero-terminate last line.
4925
49261996-03-20 Mike Long <mike.long@analog.com>
4927
4928 * b2m.c (main): Initialize progname variable before using it.
4929 Quote `username' in From_ header.
4930
49311996-03-18 Geoff Voelker <voelker@cs.washington.edu>
4932
4933 * ntlib.c (getpid): New function.
4934
49351996-02-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4936
4937 * emacsclient.c (main, both definitions):
4938 Print a newline for normal termination.
4939
49401996-02-21 Noah Friedman <friedman@prep.ai.mit.edu>
4941
4942 * tcp.c (main): Convert port to network byte order.
4943
49441996-01-20 Karl Heuer <kwzh@gnu.ai.mit.edu>
4945
4946 * pop.c (pop_retrieve, getline): Avoid type clashes.
4947
49481996-01-19 Karl Heuer <kwzh@gnu.ai.mit.edu>
4949
4950 * etags.c (enum sym_type, anonymous enum): Delete final comma.
4951
49521996-01-15 Paul Eggert <eggert@twinsun.com>
4953
4954 * rcs2log (initialize_fullname): Add support for NIS+.
4955 (hostname): Fully qualify the default hostname with the domainname
4956 if the hostname lacks a `.'.
4957
49581996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
4959
4960 * etags.c (consider_token): Fix typo in expression.
4961
49621996-01-04 Paul Eggert <eggert@twinsun.com>
4963
4964 * etags.c (substitute): Fix spelling in message.
4965
49661996-01-03 George V. Reilly <georger@microcrafts.com>
4967
4968 * makefile.nt (etags, ctags): Compile with regexp support.
4969 (make-docfile, wakeup, etags, ctags, hexl): Ensure build
4970 subdirectory exists before compiling.
4971
49721996-01-02 Karl Heuer <kwzh@gnu.ai.mit.edu>
4973
4974 * emacsserver.c (main): Do chmod based on existing permission.
4975
49761995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4977
4978 * Makefile.in (install): Turn on read/execute permission.
4979
49801995-12-03 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4981
4982 * Makefile.in (LIB_STANDARD_LIBSRC): Use this instead of LIB_STANDARD.
4983 (LOADLIBES): Use LIB_STANDARD_LIBSRC.
4984
49851995-12-01 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4986
4987 * Makefile.in (THIS_IS_MAKEFILE): Rename from THIS_IS_YMAKEFILE.
4988
49891995-12-07 Francesco Potortì <pot@cnuce.cnr.it>
4990
4991 * etags.c (pfnote): Don't make a tag for ctags if there is no name.
4992 (getit, Asm_labels, Perl_functions, Pascal_functions, L_getit,
4993 get_scheme, prolog_getit): Name the tag in ctags mode.
4994 (pfnote): Truncate ctags lines to 50 chars, like it worked once.
4995 (Perl_interpreters): Accept "@PERL@" as an interpreter.
4996 (suggest_asking_for_help): New function.
4997 (main, get_language_from_name): Use suggest_asking_for_help.
4998 (main): Let get_language_from_name make language existence check.
4999 (streq, strneq): Check the arguments #if DEBUG.
5000
50011995-12-06 Francesco Potortì <pot@cnuce.cnr.it>
5002
5003 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
5004 (gperf): Add keywords for Objective C and GNU macros.
5005 (sym_type): Add values to account for Objective C and GNU macros.
5006 (begtk): The '@' character can start a token.
5007 (objdef, methodlen, objtag): New variables for Objective C.
5008 (consider_token, C_entries): Add code for Objective C.
5009 (plain_C_suffixes): Add .m and .lm for Objective C.
5010 (Yacc_suffixes): Add .ym for Objective yacc.
5011 (GROW_LINEBUFFER): New macro.
5012 (consider_token, C_entries, Pascal_functions): Use the new macro.
5013 (consider_token): Take one more argument. Caller changed.
5014 (consider_token): Use the hashing function to spot GNU macros.
5015 (C_entries): Consider // as a comment start even in plain C for
5016 the sake of Objective C parsing.
5017
50181995-12-04 Francesco Potortì <pot@cnuce.cnr.it>
5019
5020 * Makefile.in (ctags): Depend on etags only for simplicity;
5021 compile with regexp support enabled.
5022
50231995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5024
5025 * Version 19.30 released.
5026
50271995-11-22 Geoff Voelker <voelker@cs.washington.edu>
5028
5029 * makefile.nt (DOC, clean): Don't use switches to del not
5030 supported by Windows 95.
5031
50321995-11-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5033
5034 * Makefile.in (regex.o): Depend on ../src/config.h.
5035
50361995-11-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5037
5038 * Makefile.in (LIB_STANDARD): Extract this as in src/Makefile.in.
5039 (LOADLIBES): Use LIB_STANDARD.
5040
50411995-11-07 Kevin Gallo <kgallo@microsoft.com>
5042
5043 * makefile.nt (DOC): Include strings from w32term.c, w32xfns.c,
5044 w32fns.c, w32faces.c, w32select.c, w32menu.c, w32reg.c; remove
5045 Windows 95 conditional.
5046
50471995-11-06 Francesco Potortì (pot@cnuce.cnr.it)
5048
5049 * etags.c (get_lang_from_name, get_lang_from_interpreter)
5050 (get_lang_from_suffix): New functions.
5051 (get_language): Function deleted.
5052 (lang_entry): Two members added to struct.
5053 (lang_names): Reflect the new layout of lang_entry.
5054 (print_language_names, main, find_entries): Use the new functions.
5055 (find_entries): Look at the first line for #! if no language.
5056 (C_entries): Invalidate the token when funcdef is reset.
5057 (Perl_functions): New function.
5058 (lang_suffixes): .pl and .pm are Perl suffixes.
5059
50601995-11-02 Francesco Potortì (pot@cnuce.cnr.it)
5061
5062 * etags.c (lowcase): Use the standard tolower function.
5063 (substitute): Remove some wrong and some useless code related with
5064 escape '\' character in regexp replacement string.
5065 (TEX_defenv): Add part, appendix, entry, index. Remove typeout.
5066 (lang_suffixes): New suffixes: .hpp for C++; .f90 for Fortran;
5067 .bib, .ltx, .TeX for TeX (.bbl, .dtx removed); .ml for Lisp;
5068 .prolog for prolog (.pl removed).
5069 (massage_name, etags_getcwd): Use lowcase instead of tolower.
5070 (C_entries, find_entries): Add comments about memory leakage.
5071 (add_node): Dead code removed.
5072
50731995-10-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5074
5075 * Makefile.in (getdate.o, movemail.o): Specify -Demacs.
5076 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Delete -Demacs.
5077
50781995-08-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5079
5080 * test-distrib.c: Add #undef for open, close, read, write.
5081
50821995-08-23 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
5083
5084 * test-distrib.c [HAVE_CONFIG_H]: Include config.h.
5085 [! O_RDONLY]: Define it to zero.
5086 (main): Use O_RDONLY instead of explicit zero.
5087
50881995-08-17 Francesco Potortì (pot@cnuce.cnr.it)
5089
5090 * etags.c (Pascal_functions): Close comment bug corrected.
5091 (add_node): Correctly compare node file names.
5092 (Pascal_functions): Correctly allocate and free memory for tline.
5093 (pfnote): Put the definition of fp in the innermost block.
5094 (NODE): `named' member removed.
5095 (pfnote, free_tree, put_entries, total_size_of_entries): Do not
5096 use the `named' member, check whether `name' is NULL instead.
5097 (pfnote): `named' argument removed, all callers changed.
5098 (getit, Asm_labels, Pascal_functions, L_getit, get_scheme,
5099 TeX_functions, TEX_getit, prolog_getit): Useless string allocation
5100 removed from pfnote call, some code cleanup.
5101 (relative_filename): Free temporary space allocated by concat.
5102
51031995-08-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5104
5105 * Makefile.in (getdate.c): New target.
5106 (getdate.o): Just compile getdate.c.
5107
51081995-08-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
5109
5110 * fakemail.c (xrealloc): Change cast to match return type.
5111
51121995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5113
5114 * fakemail.c (xmalloc, xrealloc): Use return-type long *.
5115
51161995-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5117
5118 * movemail.c (main): Fix previous change.
5119 Add error check for empty OUTNAME.
5120
51211995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5122
5123 * movemail.c (main): Mention lock file name in error message.
5124
51251995-07-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5126
5127 * profile.c (gettimeofday): New function, defined if necessary.
5128
51291995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5130
5131 * Makefile.in: Renamed from Makefile.in.in.
5132 (distclean): Delete Makefile.c, not Makefile.in.
5133
51341995-07-17 Michael Shields <shields@tembel.org>
5135
5136 * Makefile.in.in (tags): Synonym for `TAGS'.
5137
51381995-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
5139
5140 * Makefile.in.in (install, maybe-blessmail): Don't cd ..;
5141 configure has already set $(INSTALL) to the proper relative path.
5142
51431995-07-08 Paul Eggert <eggert@twinsun.com>
5144
5145 * rcs2log (datearg): Separate date from time with comma, not space,
5146 to work around CVS 1.5 bug.
5147 (CVSROOT): Don't abort when unset if repository is absolute.
5148
51491995-07-07 Paul Eggert <eggert@twinsun.com>
5150
5151 * rcs-checkin, rcs2log, vcdiff:
5152 Replace `#!/bin/sh' with `#! /bin/sh', for benefit of systems
5153 that interpret `#! /' as a 4-byte magic number.
5154
51551995-06-29 Jonathan I. Kamens <jik@cam.ov.com>
5156
5157 * movemail.c (main) [MAIL_USE_POP]: When a user specifies a
5158 mailbox with "po:mailbox", the mailbox is everything after the
5159 "po:" prefix.
5160
51611995-06-28 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5162
5163 * emacsserver.c: Make all error messages start with `Error: '.
5164 (fatal_error, perror_1): New functions, use throughout.
5165
51661995-06-28 Paul Eggert <eggert@twinsun.com>
5167
5168 * rcs2log (CVSROOT, repository):
5169 Allow remote repositories a la CVS 1.4.
5170
51711995-06-27 Francesco Potortì (pot@cnuce.cnr.it)
5172
5173 * etags.c (plain_C_entries): New function.
5174 (lowcase): New macro.
5175 (tail, Fortran_functions, Pascal_functions): Use new macro lowcase.
5176 (lang_suffixes): New suffix ".pc" for Pro*C files.
5177 (consider_token): Don't tag all tokens beginning with DEFUN & Co..
5178 (tail): Look for the end of the token when comparing.
5179 (takeprec): Since now tail behaves differently, use strneq.
5180
51811995-06-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5182
5183 * movemail.c (main): Add newline in usage message.
5184
51851995-06-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5186
5187 * make-docfile.c (scan_file): Make sure it never looks at filename[-1].
5188
51891995-06-21 Francesco Potortì (pot@cnuce.cnr.it)
5190
5191 * etags.c (find_entries): Rewind before rereading the input file.
5192
51931995-06-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5194
5195 * Version 19.29 released.
5196
5197 * make-docfile.c (main) [MSDOS]: Do set _fmode.
5198 This undoes part of the previous change.
5199
52001995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5201
5202 * make-docfile.c (main): On MSDOS, don't change stdout
5203 to binary, and insist on an -o option.
5204
52051995-06-13 Geoff Voelker <voelker@cs.washington.edu>
5206
5207 * etags.c (process_file,absolute_filename): Handle filenames
5208 starting with a drive letter.
5209
5210 * makefile.nt (install): Copy wakeup.exe properly.
5211
52121995-06-08 Karl Heuer <kwzh@gnu.ai.mit.edu>
5213
5214 * make-docfile.c [MSDOS]: #undef chdir.
5215
52161995-06-04 Paul Eggert <eggert@twinsun.com>
5217
5218 * rcs2log (output_authors): Allow ':' in time zone,
5219 as per ISO 8601 and RCS 5.6.8 beta.
5220
52211995-05-29 Francesco Potortì (pot@cnuce.cnr.it)
5222
5223 * etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
5224 compatibility problems.
5225
52261995-05-26 Richard Stallman <rms@gnu.ai.mit.edu>
5227
5228 * etags.c (etags_getcwd): Don't use #elif.
5229 Have just one function body.
5230
52311995-05-25 Geoff Voelker <voelker@cs.washington.edu>
5232
5233 * makefile.nt (LIBS): Use BASE_LIBS.
5234 (make-docfile.exe,hexl.exe,wakeup.exe,etags.exe): Don't depend
5235 upon LIBS.
5236 (DOC): Use del instead of rm.
5237 (DOC) [WINDOWS95]: Use DOC.
5238 (clean): Handle MSVC aux files.
5239 (config.h,paths.h): Use $(CP) instead of cp.
5240 (config.h): Use $(CONFIG_H)
5241 (make-docfile.obj): Depend upon config.h.
5242 Clean up comments.
5243
52441995-05-23 Francesco Potortì (pot@cnuce.cnr.it)
5245
5246 * etags.c (etags_getcwd): Use /bin/pwd instead of pwd because the
5247 former gives the true path even in the presence of simlinks.
5248
52491995-05-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5250
5251 * movemail.c (main): Increase lock timeout to five minutes.
5252
52531995-05-06 Geoff Voelker <voelker@cs.washington.edu>
5254
5255 * makefile.nt (obj): Use .c files.
5256
52571995-05-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5258
5259 * make-docfile.c: Include config.h.
5260 (NO_SHORTNAMES): New definition.
5261 (xmalloc): Return long *.
5262
5263 * etags.c (C_entries): Cast result of xrealloc.
5264 (xmalloc, xrealloc): Declare them to return long *.
5265
5266 * b2m.c (xmalloc, xrealloc): Declare them long *.
5267
5268 * movemail.c (xmalloc): Declare it to return long *.
5269
52701995-04-30 Paul Eggert <eggert@twinsun.com>
5271
5272 * rcs2log (datearg): If rlog options are specified explicitly,
5273 omit the implicit '-d>DATE' option.
5274 (repository, rlog): Allow absolute paths to CVS repositories.
5275 Look only at the first line of CVS/Repository.
5276
52771995-04-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
5278
5279 * Makefile.in.in (extraclean): Depend on maintainer-clean, not
5280 realclean.
5281
52821995-04-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5283
5284 * Makefile.in.in [REGEXP_IN_LIBC] (REGEXPOBJ, REGEXPDEPS):
5285 Alternative (empty) definitions.
5286
52871995-04-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5288
5289 * emacsclient.c (main): Add argv[0] to an error message.
5290
52911995-04-13 Karl Heuer <kwzh@gnu.ai.mit.edu>
5292
5293 * emacsclient.c (main): Improve error handling.
5294 * cvtmail.c (main, skip_to_lf): Improve error handling.
5295 (sysfail): New function.
5296
5297 * b2m.c (main): Check for trailing ", " before trying to delete it.
5298
52991995-04-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
5300
5301 * Makefile.in.in (all): Build test-distrib and make-docfile.
5302
5303 * make-docfile.c (scan_c_file): At end, restore file name last char
5304 to its original value.
5305
53061995-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5307
5308 * emacsclient.c, emacsserver.c: Test NO_SOCKETS_IN_FILE_SYSTEM.
5309
53101995-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5311
5312 * Makefile.in.in (BASE_CFLAGS): Rename from ALLOCA_CFLAGS.
5313 (alloca.o, regex.o): Use BASE_CFLAGS.
5314
53151995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5316
5317 * emacsclient.c [Berkeley sockets version] (main): Declare getcwd.
5318
53191995-04-04 Karl Heuer <kwzh@gnu.ai.mit.edu>
5320
5321 * Makefile.in.in (aixcc, aixcc.c): Targets deleted.
5322 (SOURCES, distclean): Remove obsolete references to aixcc.
5323
53241995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5325
5326 * aixcc.lex: File deleted--surely obsolete now.
5327
53281995-03-23 Paul Eggert <eggert@twinsun.com>
5329
5330 * rcs2log (output_authors): Replace /[/]/ by /[\/]/, for
5331 portability to mawk and nawk.
5332
53331995-03-21 Paul Eggert <eggert@twinsun.com>
5334
5335 * rcs2log: Treat -u "login:fullname:mailaddr" as if it were
5336 -u "login<tab>fullname<tab>mailaddr".
5337
53381995-03-21 Paul Eggert <eggert@twinsun.com>
5339
5340 * rcs2log: Add -u "login<tab>fullname<tab>mailaddr" option, which
5341 replaces the (now obsolescent) -n login fullname mailaddr option.
5342 Add -R option for recursive rlog.
5343 (AWK): New environment variable (default `awk') for awk program name.
5344 (output_authors, tab, loginFullnameMailaddrs, recursive): New vars.
5345 Quote authors and fullnames correctly.
5346 Don't omit path from repository root when logging CVS files.
5347
53481995-03-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5349
5350 * emacsclient.c, emacsserver.c: Use BSD sockets whenever available,
5351 even if HAVE_SYSVIPC.
5352 * emacsclient.c (main): Use getcwd if not BSD.
5353
53541995-03-13 Francesco Potortì (pot@cnuce.cnr.it)
5355
5356 * etags.c (process_file): Free (filename) after using it.
5357 (readline_internal): Do not access the char before start of line.
5358
53591995-02-22 Francesco Potortì (pot@cnuce.cnr.it)
5360
5361 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
5362 savetok.valid. Mark token as valid when it is initialised.
5363 (make_tag): Make token only if token is valid and reset validity.
5364 (CNL_SAVE_DEFINEDEF): Test for savetok.valid instead of token_saved.
5365 (TOKEN): Add a new member: valid.
5366
53671995-02-15 Francesco Potortì (pot@cnuce.cnr.it)
5368
5369 * etags.c (C_entries): Bug corrected in xrealloc of token_str.
5370 (main): Do not read twice the last filename in the stdin file list.
5371
53721995-02-14 Francesco Potortì (pot@cnuce.cnr.it)
5373
5374 * etags.c (C_entries): Initialise the new members of TOKEN.
5375 (C_entries): Do not allocate a new space for each token found by
5376 consider_token. Let make_tag do that instead.
5377 (make_tag): Since now TOKEN has memory of where it is taken from,
5378 this new macro substitutes both make_tag_from_new_lb and
5379 make_tag_from_oth_lb. All callers changed.
5380 (TOKEN): Add linepos and buffer members.
5381 (main): Initialise token_str.
5382 (lang_extensions): Recognise .c++ and .h++ as C++ file suffixes.
5383 (token_str): New global variable used by C_entries.
5384
53851995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
5386
5387 * Makefile.in.in (maintainer-clean): Rename from realclean.
5388
53891995-02-01 Francesco Potortì (pot@cnuce.cnr.it)
5390
5391 * etags.c (pfnote): Initialise been_warned in the node.
5392 (C_entries): Remove a speed hack for the sake of clarity.
5393
53941995-01-18 Francesco Potortì (pot@cnuce.cnr.it)
5395
5396 * etags.c (longopts, print_help, main): Use -I as abbreviation
5397 for the --ignore-indentation option.
5398 (main): Do not print an error message for unknown options.
5399
54001995-01-12 Francesco Potortì (pot@cnuce.cnr.it)
5401
5402 * etags.c (FILEPOS, GET_CHARNO, GET_FILEPOS, max, LINENO): Deleted.
5403 (append_to_tagfile, typedefs, typedefs_and_cplusplus)
5404 (constantypedefs, update, vgrind_style, no_warnings)
5405 (cxref_style, cplusplus, noindentypedefs): Were int, now logical.
5406 (permit_duplicates): Was a var, now a #define.
5407 (filename_lb): Was global, now local to main.
5408 (main): Open the tag file when in cxref mode.
5409 Use a BUFSIZ size buffer for making the shell commands.
5410 Look at the return value from the system routine.
5411 Exit when cannot open the tag file.
5412 (process_file): Open the file and pass the FILE* to find_entries.
5413 (find_entries): Now void, because does not open the file itself.
5414 (pfnote): Recovering from lack of memory does not work. Removed.
5415 Use savenstr and simplify the code.
5416 (free_tree): Only free the name space if node is named.
5417 (structtag): Now a pointer, not a fixed length array of chars.
5418 (consider_token): Don't take a token as argument. Use savenstr
5419 when saving a tag in structtag. Callers changed.
5420 (TOKEN): Structure changed. Now used only in C_entries.
5421 (TOKEN_SAVED_P, SAVE_TOKEN, RESTORE_TOKEN): Deleted.
5422 (C_entries): nameb and savenameb deleted. Use dinamic allocation.
5423 (pfcnt): Deleted. Users updated.
5424 (getit, Asm_labels, Pascal_functions, L_getit, get_scheme)
5425 (TEX_getit, prolog_getit): Use dinamic allocation for storing
5426 the tag instead of a fixed size buffer.
5427
54281995-01-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5429
5430 * movemail.c (main): Skip past the colon in inname.
5431
54321995-01-10 Francesco Potortì (pot@cnuce.cnr.it)
5433
5434 * etags.c (pfatal): New function.
5435 (main, etags_getcwd): Use pfatal.
5436 (etags_getcwd): Corrected another bug in the HAVE_GETCWD version.
5437
54381995-01-10 Francesco Potortì (pot@cnuce.cnr.it)
5439
5440 * etags.c (Lang_function): Use void instead to declare the
5441 language functions, because many compilers are buggy.
5442 (etags_getcwd): Fix the previous fix on the #else branch.
5443 (readline_internal): Discard possible \r before \n here.
5444 (C_entries): Do not deal with \r here: undo previous fix.
5445
54461995-01-09 Francesco Potortì (pot@fly)
5447
5448 * b2m.c (concat, xmalloc, xrealloc, readline, xnew): Four new
5449 functions and a macro that allow the program to work on input
5450 lines of whatever length. Copied from etags.c.
5451 (fatal): Print a fatal error message and exit.
5452 (main): Use the new functions. Fixed a bug that made a \037 char
5453 appear at the end of the output.
5454
54551995-01-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5456
5457 * etags.c (C_entries): Ignore carriage return at end of line.
5458
54591994-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5460
5461 * fakemail.c (xmalloc, xrealloc): Add casts.
5462 (add_field): Handle <...> and "..." syntax.
5463 (setup_files, get_keyword): Clean up parens and line breaks.
5464 (args_size): Likewise.
5465
54661994-12-21 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
5467
5468 * yow.c: Include program name in error messages.
5469
54701994-12-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5471
5472 * make-docfile.c (scan_lisp_file): Handle dynamic doc strings.
5473 (xmalloc, fatal, error): New functions.
5474 (progname): New variable.
5475 (main): Set progname.
5476
54771994-12-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5478
5479 * emacsclient.c, emacsserver.c [HAVE_SYSVIPC]: Include sys/utsname.h.
5480 (main): If socket/mqueue name is in home dir, add in the host name.
5481 Rename .emacs_server to .emacs-server....
5482
54831994-12-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5484
5485 * emacsclient.c [!HAVE_SYSVIPC] (main): Fix error message diction.
5486
54871994-11-22 Francesco Potortì (pot@cnuce.cnr.it)
5488
5489 * etags.c (print_help): Print --regex usage for ctags also.
5490 (main): Use -h in addition to -H as abbreviation for --help.
5491
54921994-11-16 Francesco Potortì (pot@cnuce.cnr.it)
5493
5494 * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
5495 is compiled if this is defined. The new functions and variables
5496 added #ifdef ETAGS_REGEXP are not listed in this ChangeLog.
5497 [VMS]: All VMS specific code previously contained in
5498 etags-vmslib.c is now included here, modified for dealing with
5499 language and regex options intermixed with filenames.
5500 (header_file): Global variable deleted.
5501 (Lang_Function): New typedef. All language parser functions
5502 changed to this new type.
5503 (string_numeric_p, substr, prestr): Functions deleted.
5504 (readline_internal): Does the job that readline did previously.
5505 (longopts): --language and --regex options added.
5506 (lang_names, lang_extensions, lang_func, print_language_names):
5507 New structures, variables and functions for choosing languages.
5508 (print_help): Help strings updated. Calls print_language_names.
5509 (argument_type, ARGUMENT): Typedefs for dealing with language and
5510 regex options intermixed with filenames.
5511 (main): Change the way of dealing with arguments on the command
5512 line to deal with language and regex options intermixed with
5513 filenames.
5514 (get_language, default_C_entries, Cplusplus_entries,
5515 Cstar_entries, Yacc_entries, just_read_file): New functions.
5516 (find_entries): Use the new method for choosing the language.
5517 (Pascal_functions): Allow intermixing of comment styles.
5518 (prolog_getit, skip_comment): Rewritten for speed.
5519 (readline): Rewritten to deal with regexps.
5520
55211994-11-16 Francesco Potortì (pot@cnuce.cnr.it)
5522
5523 * etags.c (<errno.h>): #include added.
5524 (etags_getcwd): Check return value from getcwd.
5525
55261994-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5527
5528 * profile.c (TV1, TV2): Use EMACS_TIME as type.
5529 (get_time): Use EMACS_SUB_TIME.
5530
55311994-10-30 Geoff Voelker <voelker@cs.washington.edu>
5532
5533 * ntlib.c: New file.
5534 * makefile.nt: New file.
5535
5536 * make-docfile.c (main) [WINDOWSNT]: Set _fmode and stdout to O_BINARY.
5537 [WINDOWSNT]: Include the NT headers.
5538 (READ_TEXT, READ_BINARY): Test DOS_NT, not MSDOS.
5539
5540 * etags.c (main, etags_getcwd): Test DOS_NT instead of MSDOS.
5541 [WINDOWSNT]: Include some NT headers.
5542
55431994-10-24 Jonathan I. Kamens (jik@cam.ov.com)
5544
5545 * pop.c (getline): When a search of already-read input for CRLF
5546 fails, store the fact that we've searched it and don't search it
5547 again after reading more data.
5548
5549 * pop.c (getline): When determining whether or not it's necessary
5550 to grow the input buffer, take into account the null that's stored
5551 at the end of already-read input in the buffer.
5552
55531994-10-21 Francesco Potortì (pot@cnuce.cnr.it)
5554
5555 * etags.c (prestr, substr): Return a logical type.
5556 (consider_token): Comment out "EXFUN". Use "DEFUN" instead of "DEF".
5557 (consider_token): Set funcdef to fignore when a DEFUN is met.
5558 (C_entries): Now we can use Tom Hageman patch for extern "C".
5559
55601994-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5561
5562 * movemail.c: PopServer renamed to popserver throughout.
5563
55641994-10-20 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
5565
5566 * etags.c: Don't declare malloc, since we include config.h.
5567 * fakemail.c: Likewise.
5568
55691994-10-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5570
5571 * movemail.c: Don't declare malloc.
5572
55731994-10-19 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
5574
5575 * rcs-checkin: Use test -r instead of < to check readability, to
5576 avoid syntax error.
5577
55781994-10-19 Jonathan I. Kamens (jik@cam.ov.com)
5579
5580 * pop.c: Only include ../src/config.h if HAVE_CONFIG_H is
5581 defined, and if HAVE_CONFIG_H isn't defined, define
5582 MAIL_USE_POP always (so that this file can be included in
5583 other programs besides emacs).
5584
5585 * pop.c: Only declare h_errno if HAVE_H_ERRNO isn't defined or
5586 HAVE_CONFIG_H isn't defined.
5587
5588 * pop.c (find_crlf, getline): Instead of using strstr, use a
5589 custom function for finding CRLF.
5590 (my_strstr): Function deleted.
5591
55921994-10-17 Jonathan I. Kamens (jik@cam.ov.com)
5593
5594 * pop.c (getline): Fix a segfault because of passing a
5595 non-null-terminated string into strstr(). Fix from
5596 djm@va.pubnix.com (David J. MacKenzie).
5597
5598 * pop.c: Don't include <string.h> and <strings.h>.
5599
5600 * pop.c: Include <des.h> before <krb.h>, rather than after.
5601 They should be interchangeable, and indeed the inclusion is done in
5602 both orders in various files in the Kerberos 4 library sources,
5603 but djm@va.pubnix.com (David J. MacKenzie) reports that BSDI
5604 requires that <des.h> be included first, and I don't see any harm
5605 in changing the order.
5606
5607 * pop.c: Include ../src/config.h, to get HAVE_STRING_H and
5608 STDC_HEADERS, if they're defined. Undef open, read, write and
5609 close after including it.
5610
56111994-10-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5612
5613 * pop.c: Fix mismatch in conditionals.
5614
5615 * make-docfile.c (main): Don't process one input file twice.
5616 Never use exit code > 1.
5617
5618 * pop.c (open, close, read, write): Add #undefs.
5619
5620 * pop.c: Don't declare malloc, realloc, free.
5621 Include ../src/config.h.
5622 Don't include string.h or strings.h.
5623 Include des.h before krb.h.
5624 Do declare my_strstr.
5625 (getline): Really use my_strstr.
5626 Leave one empty place in server->buffer,
5627 and put a null at the end of the data in it.
5628
56291994-10-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
5630
5631 * emacsserver.c [SYSV_IPC] (main): Catch SIGHUP as well.
5632 Don't call kill with pid 0. Handle EINTR when receiving messages.
5633
56341994-10-17 Karl Heuer <kwzh@gnu.ai.mit.edu>
5635
5636 * Makefile.in.in (regex.o): Use full path to find regex.c.
5637
56381994-10-17 Francesco Potortì (pot@fly.cnuce.cnr.it)
5639
5640 * Makefile.in.in (etags): Add dependency on regex.o, link with it.
5641 (REGEXPOBJ, REGEXPDEPS, regex.o): Target and macros added.
5642
56431994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
5644
5645 * Makefile.in.in (DONT_INSTALL): Remove make-path.
5646 (${archlibdir}): Use mkinstalldirs instead.
5647
5648 * movemail.c: Make functions that return nothing void, not
5649 implicitly int.
5650 (main): Improve usage message.
5651 (error): Write to stderr, not stdout.
5652
5653 * b2m.c, cvtmail.c, digest-doc.c, emacsclient.c, emacsserver.c:
5654 * etags.c, fakemail.c, hexl.c, make-docfile.c, profile.c, sorted-doc.c:
5655 * test-distrib.c, timer.c, wakeup.c, yow.c: Eliminate some -Wall
5656 warnings from unused variables and implicitly declared functions.
5657
56581994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5659
5660 * Makefile.in.in (clean): rm DOC* and *.tab.[ch].
5661 (distclean): Not here.
5662
5663 * Makefile.in.in (libexecdir): Rename from libdir.
5664
56651994-10-11 Francesco Potortì (pot@cnuce.cnr.it)
5666
5667 * etags.c (C_entries): Name the #define's that are macros.
5668
56691994-10-10 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
5670
5671 * emacsserver.c [! SYSVIPC] (main): Fix uses of FD_* macros:
5672 fd_set arg is a pointer, descriptor arg comes first.
5673
56741994-09-29 Francesco Potortì (pot@cnuce.cnr.it)
5675
5676 * etags.c (C_entries): Recognise typedef of ANSI style functions.
5677 (C_entries): Recognise #define inside a struct.
5678 (C_entries): ANSI tells that preprocessor commands do not have to
5679 start on the first column.
5680 (print_help): Documentation corrected for -d and -D.
5681 (white, endtk): ANSI tells the vertical tab is a separator.
5682
56831994-09-24 Jonathan I. Kamens (jik@gza-client1.aktis.com)
5684
5685 * Makefile.in.in (MOVE_FLAGS, MOVE_LIBS): New variables.
5686 (pop.o, movemail.o): New targets.
5687 (movemail): Link in pop.o and movemail.o. Use MOVE_LIBS, MOVE_FLAGS.
5688
5689 * pop.c, pop.h: New files.
5690
5691 * movemail.c: Improve POP code, move most of it into a separate file.
5692 (mbx_delimit_end, mbx_delimit_begin): Check for errors.
5693 (mbx_write): Check for errors and for From line.
5694 (pop_retr, popmail): Use subroutines in pop.c to do the real work.
5695 (get_errmsg, multiline, getline, putline, pop_stat, pop_command)
5696 (pop_init): Functions deleted.
5697
56981994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
5699
5700 * make-path.c (touchy_mkdir): Make dir ugo+rx even if it isn't new.
5701 Rename path to dirname.
5702
57031994-09-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5704
5705 * Makefile.in.in (UTILITIES):
5706 Remove test-distrib, make-docfile, make-path.
5707 (DONT_INSTALL): New variable--list those files here.
5708 (clean): Delete the files in DONT_INSTALL.
5709
57101994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5711
5712 * b2m.c (from, labels, data): Use MAX_DATA_LEN as length.
5713 (main): Use fgets, not gets.
5714
57151994-09-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5716
5717 * timer.c: Don't declare malloc.
5718
57191994-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
5720
5721 * emacsserver.c (FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already
5722 defined, use simple 32-bit versions of these macros.
5723 (main) [HAVE_SOCKETS & !HAVE_SYSVIPC]: Use these macros.
5724
57251994-09-16 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
5726
5727 * etags.c (etags_getcwd): Use getcwd if available.
5728
57291994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5730
5731 * Version 19.27 released.
5732
57331994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5734
5735 * Version 19.26 released.
5736
57371994-08-15 Paul Eggert <eggert@twinsun.com>
5738
5739 * rcs2log: Add support for CVS.
5740 Work with `rlog's that output ISO 8601 dates.
5741
57421994-08-09 Lawrence R. Dodd <dodd@roebling.poly.edu>
5743
5744 * rcs2log: Use <> to delimit email address.
5745
57461994-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5747
5748 * emacsserver.c [SYSV_IPC] (main): Make a separate process
5749 so we can listen for multiple requests.
5750
57511994-08-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5752
5753 * movemail.c: Include config.h first thing.
5754
57551994-08-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5756
5757 * emacsserver.c (main): Add casts to avoid warnings.
5758
57591994-07-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5760
5761 * Makefile.in.in (${archlibdir}): Compare the proper dir
5762 before installing the scripts.
5763
57641994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5765
5766 * emacsclient.c (main): New local var progname saves argv[0].
5767
57681994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5769
5770 * emacsclient.c (main): Don't actually modify argv[0].
5771 Modify a copy instead.
5772
57731994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5774
5775 * profile.c (reset_watch, get_time): Use EMACS_GET_TIME.
5776 (tzp): Var deleted.
5777
5778 * Makefile.in.in: Add #undef alloca.
5779
57801994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5781
5782 * timer.c (xmalloc): New function.
5783
57841994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5785
5786 * Makefile.in.in (ALLOCA_CFLAGS): New variable.
5787 (alloca.o): New target.
5788
57891994-07-08 Dave Love (d.love@dl.ac.uk)
5790
5791 * etags.c (takeprec): Recognise `character*(*) function'.
5792
57931994-07-08 Francesco Potortì (pot@cnuce.cnr.it)
5794
5795 * etags.c (main): Don't barf on obsolete -t and -T switches.
5796 (main): Print an explicative message when a switch is not known.
5797
57981994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5799
5800 * hexl.c: Don't declare exit or perror.
5801
5802 * emacsserver.c (main): Don't declare geteuid.
5803 Don't declare getenv if convex.
5804
58051994-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5806
5807 * Makefile.in.in (test-distrib): Use ALL_CFLAGS.
5808
58091994-06-03 Francesco Potortì (pot@fly.cnuce.cnr.it)
5810
5811 * etags.c (absolute_filename): Remove infinite loop bug when
5812 accessing files in directories whose name begins with a dot.
5813
58141994-06-03 Francesco Potortì (pot@fly.cnuce.cnr.it)
5815
5816 * etags.c (etags_getcwd): Delete the trailing newline from cwd.
5817
58181994-06-01 Morten Welinder (terra@diku.dk)
5819
5820 * yow.c (rootrelativepath) [MSDOS]: Define, expanding to dynamic
5821 location of data directory.
5822
58231994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5824
5825 * Version 19.25 released.
5826
58271994-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5828
5829 * Makefile.in.in (distclean): Delete Makefile, Makefile.in, blessmail.
5830
58311994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5832
5833 * Makefile.in.in (blessmail): Don't depend on ../src/emacs.
5834
58351994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5836
5837 * Version 19.24 released.
5838
58391994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5840
5841 * make-docfile.c (write_c_args): Put `default' in upper case.
5842
58431994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5844
5845 * etags.c (etags_getcwd): Cast result of popen.
5846 (popen): Declaration deleted.
5847
58481994-05-17 Karl Heuer (kwzh@gnu.ai.mit.edu)
5849
5850 * etags.c [!MSDOS]: Declare popen.
5851
58521994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5853
5854 * b2m.c (main): Avoid crash if argc is 1.
5855
58561994-05-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5857
5858 * Version 19.23 released.
5859
5860 * Makefile.in.in (blessmail): Specify directory for blessmail.el.
5861
58621994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5863
5864 * Makefile.in.in (maybe-blessmail): Mention bless-mail is in lib-src.
5865
58661994-05-05 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
5867
5868 * Makefile.in.in: Fix out of date comment.
5869
58701994-05-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5871
5872 * Makefile.in.in: Put in a separator for where to start cpp procssing.
5873 Move all autoconf substitutions above that point.
5874 Above that point, use Make-style comments.
5875 This goes with changes in ../configure.in.
5876
58771994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5878
5879 * Makefile.in.in (maybe-blessmail): New target to print the blessmail
5880 warning message.
5881 (${archlibdir}): Don't do it here. Don't depend on blessmail.
5882
58831994-05-02 Karl Heuer (kwzh@gnu.ai.mit.edu)
5884
5885 * Makefile.in.in (${archlibdir}): Be lenient about wc output format.
5886
58871994-05-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5888
5889 * Makefile.in.in (${archlibdir}): Don't run blessmail; instead
5890 print advice to run it, if it has anything significant to do.
5891 And only if MOVEMAIL_NEEDS_BLESSING.
5892 (blessmail): Use emacs, not temacs.
5893 (configuration): Rename from configname.
5894
58951994-04-30 Morten Welinder (terra@diku.dk)
5896
5897 * etags.c (find_entries): Treat `*.cpp' as C++ files.
5898
58991994-04-30 Morten Welinder (terra@diku.dk)
5900
5901 * etags.c [MSDOS]: #include <sys/param.h> for the following.
5902 [MSDOS] (etags_getcwd): Define simple MSDOS version without spawning
5903 a shell.
5904
59051994-04-29 Morten Welinder (terra@diku.dk)
5906
5907 * hexl.c [MSDOS]: Don't define proto type for exit.
5908
59091994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5910
5911 * b2m.c: Don't include string.h or strings.h.
5912
59131994-04-27 Karl Heuer (kwzh@gnu.ai.mit.edu)
5914
5915 * Makefile.in.in: C_SWITCH_SYSTEM and C_SWITCH_MACHINE are now cpp
5916 symbols, not make variables.
5917
59181994-04-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5919
5920 * Makefile.in.in (etags, ctags): Make VERSION a string constant.
5921 * etags.c (print_version): Print VERSION as a string.
5922
59231994-04-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5924
5925 * fakemail.c (readline): Fix updating of p when buffer grows.
5926
59271994-04-20 Karl Heuer (kwzh@gnu.ai.mit.edu)
5928
5929 * Makefile.in.in (blessmail): New target.
5930 ${archlibdir}: Use blessmail when installing movemail.
5931
59321994-04-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5933
5934 * fakemail.c (readline): When extending the buffer,
5935 calculate end afresh using the new size.
5936
59371994-04-18 Francesco Potortì (pot@fly.cnuce.cnr.it)
5938
5939 * etags.c (main, print_help): Eliminate the -F option.
5940
59411994-04-18 Francesco Potortì (pot@fly.cnuce.cnr.it)
5942
5943 * etags.c (absolute_filename): Compare against '\0' instead of NULL.
5944
59451994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5946
5947 * Makefile.in.in: Renamed from Makefile.in.
5948 Makefile.in is now generated from it, and then preprocessed.
5949 Change comments to C syntax.
5950 Include config.h.
5951 (LIBS_SYSTEM, LIBS_MACHINE): Define as empty if not defined.
5952 (LOADLIBES): Define from LIBS_SYSTEM and LIBS_MACHINE.
5953
59541994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5955
5956 * movemail.c [HAVE_UNISTD_H]: Include unistd.h.
5957
59581994-04-12 Francesco Potortì (pot@fly.cnuce.cnr.it)
5959
5960 * etags.c (etags_getcwd): Initialize bufsize.
5961
59621994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5963
5964 * profile.c (gettimeofday): If system doesn't have this, define it
5965 to give a fatal error.
5966
59671994-04-11 Karl Heuer (kwzh@gnu.ai.mit.edu)
5968
5969 * movemail.c (main): Use setuid, not seteuid.
5970
59711994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5972
5973 * etags.c: #undef static.
5974
59751994-04-08 Francesco Potortì (pot@fly.cnuce.cnr.it)
5976
5977 * etags.c (outf, outfiledir): Rename to tagf, tagfiledir.
5978 (PF_funcs, Asm_funcs, L_funcs, PAS_funcs, TEX_funcs)
5979 (Scheme_funcs, prolog_funcs): Rename to Fortran_functions,
5980 Asm_labels, Lisp_functions, Pascal_functions, Scheme_functions,
5981 TeX_functions, Prolog_functions.
5982 (inf): No more a global variable.
5983 (C_entries): Take 2nd parameter `inf' instead of using the global one.
5984 (find_entries): Add the cp1 var for optimisation.
5985 (find_entries): Add more suffixes for assembler files.
5986 (Asm_funcs): Now finds labels even without an ending colon.
5987
59881994-03-30 Francesco Potortì (pot@fly.cnuce.cnr.it)
5989
5990 * etags.c (main): Use etags_getcwd for compatibility.
5991 (etags_getcwd): New function.
5992
59931994-03-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5994
5995 * Makefile.in (etags, ctags): Pass -D for VERSION.
5996
59971994-03-25 Francesco Potortì (pot@cnuce.cnr.it)
5998
5999 * etags.c (emacs_tags_format, ETAGS): Removed. Use CTAGS instead.
6000 (main): Don't allow the use of -t and -T in etags mode.
6001 (print_help): Don't show options enabled by default.
6002 (print_version): Show the emacs version number if VERSION is #defined.
6003 (find_entries): Add "ss" as suffix for Chez Scheme.
6004
60051994-03-23 Francesco Potortì (pot@cnuce.cnr.it)
6006
6007 * etags.c (cwd, outfiledir): Vars added.
6008 (relative_filename, absolute_filename, absolute_dirname):
6009 functions added to compute filenames in tags files.
6010 (process_file): Filenames in tags file are relative to the
6011 directory where the tags file is (useful with the -o option).
6012 (main): Initialise the outfiledir var.
6013 (TYPEDST): Add the `tignore' value.
6014 (C_entries): Corrected various small bugs.
6015
60161994-03-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6017
6018 * Makefile.in (UTILITIES): `env' deleted.
6019 (env): Target deleted.
6020 * env.c: File deleted.
6021
60221994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6023
6024 * Makefile.in (install, ${archlibdir}): Switch back to ..
6025 before running INSTALL_PROGRAM.
6026
60271994-03-14 Francesco Potortì (pot@cnuce.cnr.it)
6028
6029 * etags.c (TYPEDST): Add the `tignore' value.
6030 (C_entries): Corrected various bugs, now correctly parses the
6031 `extern "C" {' construction (patch by Tom R.Hageman).
6032
60331994-03-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6034
6035 * b2m.c: Use <...> to include config.h.
6036 Don't include stdlib.h.
6037
60381994-03-03 Heiko Muenkel (muenkel@tnt.uni-hannover.de)
6039
6040 * b2m.c (main): Change delimiter from "^L" to "^_^L".
6041 Allow for text following "BABYL OPTIONS:".
6042 Add --help option. Use argv[0] in error messages.
6043
60441994-03-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6045
6046 * emacsclient.c (main) [HAVE_SYSVIPC]:
6047 Make msgp->mtext longer if necessary.
6048 On HPUX, error if it's more than 512 chars.
6049
60501994-02-26 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
6051
6052 * etags-vmslib.c: Use GPL.
6053 * emacstool.c: Use GPL.
6054 * fakemail.c: Update GPL.
6055
6056 * make-path.c (main): Return 1 on error, not -1.
6057 Update GPL.
6058
6059 * cvtmail.c: Declare malloc, realloc, xmalloc, xrealloc, getenv.
6060 (xmalloc, xrealloc): Return char *, not int.
6061 (error): Write to stderr, not stdout.
6062 Update GPL.
6063
60641994-02-23 Karl Heuer (kwzh@gnu.ai.mit.edu)
6065
6066 * profile.c (main, get_time): Don't crash on invalid input.
6067
60681994-02-22 Karl Heuer (kwzh@gnu.ai.mit.edu)
6069
6070 * profile.c (get_time): Simplify; avoid calling index.
6071 (main): Exit on EOF.
6072
60731994-02-17 Francesco Potortì (pot@cnuce.cnr.it)
6074
6075 * etags.c (--absolute-pathnames): Option removed.
6076
60771994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6078
6079 * fakemail.c (put_line): Don't break the line if it all fits.
6080
60811994-02-14 Francesco Potortì (pot@fly)
6082
6083 * etags.c (absolute_pathnames, cwd): Add global vars.
6084 (longopts, print_help, main, process_file): Put absolute filenames
6085 in the tag file if the -A --absolute-pathnames option is used.
6086 (print_help): Alphabetically order the options.
6087 (malloc, realloc, strcpy, strncpy, strcmp): Remove extern declar.
6088
60891994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6090
6091 * Makefile.in (C_SWITCH_MACHINE): Get this from autoconf.
6092 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use C_SWITCH_MACHINE.
6093
60941994-02-07 Christian Lynbech (lynbech@avignon)
6095
6096 * emacsserver.c (main) [HAVE_SYSVIPC]: Reverse test of fork value.
6097
60981994-02-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6099
6100 * Makefile.in (UTILITIES): Mention profile.
6101 (profile): New target.
6102
6103 * profile.c: New file.
6104
61051994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6106
6107 * make-docfile.c: Make the argument list output look more like the
6108 Lisp docstrings do.
6109 (write_c_args): Take new arg FUNC. Make output
6110 look like lisp call prototypes: (function ARG1 ARG2), upcasing args.
6111 (scan_c_file): Pass BUF to write_c_args for FUNC arg.
6112
61131994-01-14 Francesco Potortì (pot@cnuce.cnr.it)
6114
6115 * etags.c (stab_entry, stab_create, stab_find, stab_search,
6116 stab_type, add_keyword, C_reate_stab, C_create_stabs): Deleted.
6117 Use gperf generated hash table instead of linked list.
6118 (C_stab_entry, hash, in_word_set, get_C_stab, C_symtype): Added.
6119 Mostly code generated by gperf.
6120 (consider_token): Remove unused parameter `lp'.
6121 (PF_funcs, getit): Allow subroutine and similar declarations
6122 to span multiple lines.
6123 (C_entries): Check for newline if inchar to avoid bus errors.
6124 (process_file, find_entries): Distinguish among nonexistent
6125 and not regular file.
6126
61271994-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6128
6129 * timer.c: Include errno.h; don't include fasync.h.
6130 (schedule): Don't return a value.
6131 (sigcatch): Reestablish the handler first.
6132 (getevent): Always call notify at the end.
6133 (notify): Defer alarms around the whole body of function.
6134
61351994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6136
6137 * timer.c (main): Don't request SIGIO, and don't handle it.
6138 Loop calling getevent.
6139 (sigcatch): Delete code to handle SIGIO.
6140 if defer_alarms is set, don't call notify, just set alarm_deferred.
6141 (getevent): Use read, not getchar. Handle EINTR and EAGAIN.
6142 Set defer_alarms around realloc and schedule.
6143 If alarm_deferred gets set, call notify.
6144 Likewise if this event is the only pending event.
6145 Make buf and buf_size global variables.
6146 Don't malloc buf if it is already non-zero.
6147 (schedule): Just exit if run out of memory.
6148 Return the number of events.
6149 (signal) [_CX_UX]: Add #undef.
6150
61511994-01-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6152
6153 * timer.c [USG] (SIGIO): Define as SIGPOLL.
6154 (main) [USG]: Do ioctl to enable SIGPOLL.
6155
61561994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6157
6158 * timer.c: Don't declare sys_errlist; declare strerror instead.
6159 (schedule, main): Call strerror instead of using sys_errlist.
6160 * movemail.c (get_errmsg, pfatal_with_name, pfatal_and_delete):
6161 Call strerror instead of using sys_errlist.
6162 * env.c (main): Call strerror instead of using sys_errlist.
6163 * emacsclient.c: Don't declare sys_errlist; declare strerror instead.
6164 (main): Call strerror instead of using sys_errlist.
6165 * emacsclient.c [! HAVE_STRERROR] (strerror): Define the function.
6166 * env.c [! HAVE_STRERROR] (strerror): Likewise.
6167 * timer.c [! HAVE_STRERROR] (strerror): Likewise.
6168 * movemail.c [! HAVE_STRERROR] (strerror): Likewise.
6169
61701994-01-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6171
6172 * hexl.c: Fix up whitespace. Get rid of spurious casts to void.
6173
6174 * movemail.c (malloc): Don't declare it.
6175 (xmalloc): Cast result of malloc.
6176 (strcpy): Don't declare it.
6177
61781993-11-14 Morten Welinder (terra@diku.dk)
6179
6180 * hexl.c [MSDOS]: Use binary file modes for non-text side of pipe.
6181 (main): Use fclose to close file opened by fopen.
6182
6183 * fakemail.c (main) [MSDOS]: Dummy stub just to make the file compile.
6184
6185 * movemail.c [MSDOS]: #undef `access'.
6186
6187 * b2m.c (main) [MSDOS]: Open all files as binary.
6188 * etags.c (main) [MSDOS]: Open all files as binary.
6189
6190 * make-docfile.c [MSDOS]: Use text/binary mode as appropriate.
6191 (scan_c_file, scan_lisp_file): Extra parameter for the mode to open
6192 with.
6193
61941994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6195
6196 * Makefile.in (ALL_CFLAGS): Include LDFLAGS.
6197 Use ALL_CFLAGS in all the rules that compile and link with one cmd.
6198 (LINK_CFLAGS): New variable.
6199 (timer): Use LINK_CFLAGS.
6200
62011993-12-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6202
6203 * movemail.c: Include syswait.h.
6204 Fork a subprocess and use it to copy the mail file.
6205
62061993-12-07 Richard Stallman (rms@srarc2)
6207
6208 * make-docfile.c (scan_lisp_file): Don't add newline at end of string.
6209
62101993-12-04 Richard Stallman (rms@srarc2)
6211
6212 * movemail.c (main): When making tempname, cast result of xmalloc.
6213 Include room for EXXXXXX in the size.
6214 Don't use result of strcpy.
6215
62161993-12-03 Paul Eggert (eggert@twinsun.com)
6217
6218 * vcdiff: Add --brief option.
6219
62201993-12-02 Richard Stallman (rms@srarc2)
6221
6222 * Makefile.in (${archlibdir}, install): Use $(INSTALL_PROGRAM)
6223 for all executables and scripts.
6224
62251993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6226
6227 * Version 19.22 released.
6228
62291993-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6230
6231 * Makefile.in (mostlyclean): Make it distinct from clean.
6232
62331993-11-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6234
6235 * Makefile.in (${archlibdir}): Don't do chown or chgrp.
6236
62371993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6238
6239 * Version 19.21 released.
6240
6241 * Makefile.in (install): Don't change mode or group when installing.
6242
6243 * etags.c (FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
6244
62451993-11-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6246
6247 * make-docfile.c (read_c_string): For "", concatenate the two strings.
6248
6249 * movemail.c (main): Fix error message text.
6250
62511993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6252
6253 * Version 19.20 released.
6254
62551993-11-08 Tom Hageman (tom@basil.icce.rug.nl)
6256
6257 * etags.c (C_entries): Keep track of ()-parenthesis level so that
6258 functions returning a pointer to a function, a la `signal', can be
6259 parsed. This also required new state `fstartlist' to `FUNCST'.
6260 (SAVE_TOKEN, RESTORE_TOKEN, TOKEN_SAVED_P): 1-deep token save stack.
6261 (C_entries, CNL): Use it to isolate preprocessor directive processing
6262 from the other state engines.
6263 (begtk): Add '~', for C++ class destructors.
6264
62651993-11-02 Francesco Potortì (pot@cnuce.cnr.it)
6266
6267 * etags.c (consider_token): Remove unused variable firsttok.
6268 (prolog_getit): Call pfnote with the right number of arguments.
6269
62701993-10-19 Paul Eggert (eggert@twinsun.com)
6271
6272 * rcs2log (printlogline): Don't generate lines containing only
6273 white space.
6274
62751993-10-04 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6276
6277 * Makefile.in (${archlibdir}):
6278 Install ${SCRIPTS} from ${srcdir}, not cwd.
6279
62801993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6281
6282 * Makefile.in: Fixed typos or brainos of whoever thought `@' was
6283 the comment character.
6284
62851993-10-01 Francesco Potortì (pot@cnuce.cnr.it)
6286
6287 * etags.c (process_file): Dead code removed.
6288 (S_ISREG): #define it using S_IFREG if not defined.
6289 (process_file): Regular files have nothing to do with symlinks.
6290
62911993-09-28 Brian J. Fox (bfox@ai.mit.edu)
6292
6293 * Makefile.in (${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not
6294 from current directory. Only chmod and chgrp files that we
6295 installed, which excludes ${INSTALLABLE_SCRIPTS}. They go in
6296 ${bindir}.
6297 (INSTALLFLAGS): Delete definition, since it is an unused variable
6298 now.
6299
63001993-09-27 Brian J. Fox (bfox@ai.mit.edu)
6301
6302 * Makefile.in (INSTALL, INSTALL_PROGRAM, INSTALL_DATA):
6303 Let configure figure out the correct values for these variables.
6304
63051993-09-14 Brian J. Fox (bfox@ai.mit.edu)
6306
6307 * Makefile.in (archlibdir): Only install executables internally
6308 used by emacs; don't install bindir binaries here.
6309
63101993-09-24 Paul Eggert (eggert@twinsun.com)
6311
6312 * rcs2log: Add -h, -n, -r options.
6313 By default, look for *,v files as well as RCS/*,v files.
6314 Use $TMPDIR (default /tmp) instead of /tmp.
6315
63161993-09-20 Francesco Potortì (pot@fly)
6317
6318 * etags.c (C_entries): is_func is initialised here instead of in
6319 consider_token for the sake of the yacc rules section.
6320 (C_entries): Now class, struct, enum, union and typedef produce
6321 named tags.
6322
63231993-09-11 Roland McGrath (roland@baalperazim.gnu.ai.mit.edu)
6324
6325 * yow.c: Include <src/paths.h>, instead of "src/paths.h".
6326
63271993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6328
6329 * Makefile.in: Support configuring in a different directory when
6330 ${srcdir} has already been configured.
6331 (ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir}
6332 -I${srcdir}/../src.
6333 (b2m, movemail, fakemail, env, emacsserver, emacsclient,
6334 getdate.o, timer.o, timer): Remove `-I${srcdir}/../src', since it
6335 is already in CPP_FLAGS.
6336 * etags.c, emacsclient.c, wakeup.c, timer.c, b2m.c, fakemail.c,
6337 movemail.c, emacsserver.c: Include <config.h> instead of "config.h".
6338
63391993-08-25 Paul Eggert (eggert@twinsun.com)
6340
6341 * rcs2log: Change /{/ to /\{/ for Posix ERE compatibility;
6342 otherwise, HP awk complains.
6343
6344 * vcdiff: Append /usr/ccs/bin and /usr/sccs to PATH, since these
6345 are common hangouts for SCCS commands.
6346
63471993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6348
6349 * Version 19.19 released.
6350
63511993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6352
6353 * Makefile.in (make-path): Dep on config.h.
6354
63551993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6356
6357 * b2m.c (TRUE, FALSE): Don't define if already defined.
6358
63591993-08-09 Paul Eggert (eggert@twinsun.com)
6360
6361 * rcs2log (awkscript):
6362 Some sites put comma-separated junk after the fullname.
6363 Remove it, but leave "Bill Gates, Jr" alone.
6364 Remove the junk from fullnames like "0000-Admin(0000)".
6365
63661993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6367
6368 * Version 19.18 released.
6369
63701993-08-04 Francesco Potortì (pot@spiff.gnu.ai.mit.edu)
6371
6372 * etags.c (L_isdef, L_isquote, L_getit): Small optimisations.
6373 (L_funcs): The (foo::defmumble stuff now should work.
6374 (consider_token): Function returned random value--corrected.
6375 (C_entries): Corrected == versus = typo.
6376
63771993-08-01 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6378
6379 * etags.c (put_entries): For NODE->rewritten, put pattern before
6380 \177 and name after, not vice versa.
6381
63821993-08-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6383
6384 * timer.c (main): Generate a SIGIO as soon as we've initialized.
6385
63861993-07-30 Francesco Potortì (pot@cnuce.cnr.it)
6387
6388 * etags.c (FINCST): Add the fignore status. Means we are
6389 after the parameter list and before the open curly brace.
6390 Allows correct parsing of C++ constructors.
6391 (C_entries, consider_token): Make use of fignore.
6392 (consider_token): Reset funcdef when next_token_is_func: when in
6393 ctags mode makes DEFVAR and others work better.
6394 (L_isquote): Function that recognises the "(quote" string.
6395 (L_getit): Ignore quoting via "'" or "(quote". Useful for defalias.
6396
63971993-07-29 Paul Eggert (eggert@twinsun.com)
6398
6399 * rcs-checkin: Don't check whether a file is readable until we have
6400 decided not to ignore it.
6401
64021993-07-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6403
6404 * Makefile.in (etags): Depend on ../src/config.h.
6405
6406 * emacsserver.c: Include types.h before file.h.
6407
64081993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6409
6410 * Makefile.in (install): Use .n, not .new, for temporary filenames.
6411
64121993-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6413
6414 * Version 19.17 released.
6415
64161993-07-15 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6417
6418 * etags.c (print_help): Break up the very long strings containing
6419 the help message into shorter strings, to placate chintzy C
6420 compilers which can't handle strings that long.
6421
6422 * wakeup.c: Use CPP tangle from autoconf manual to #include the
6423 correct combination of <time.h> and <sys/time.h>.
6424
64251993-07-08 Francesco Potortì (pot@cnuce.cnr.it)
6426
6427 * etags.c (alloca): Remove all references to it.
6428 (main): Now calls xnew instead of alloca for portability.
6429 (../src/config.h): Included only if HAVE_CONFIG_H.
6430 (const): Void definition removed--config.h takes care of it.
6431
64321993-07-08 Francesco Potortì (pot@cnuce.cnr.it)
6433
6434 * etags.c (consider_token): Was `==', now is `='.
6435 (consider_token): DEFUNs now treated like funcs in ctags mode.
6436
6437 * etags.c (LEVEL_OK_FOR_FUNCDEF): Removed.
6438 (C_entries): Optimized the test that used LEVEL_OK_FOR_FUNCDEF.
6439 (C_entries): Remove a piece of useless code.
6440 (C_entries): Making typedef tags is delayed until a semicolon
6441 is met. This handles "typedef int X, Y, Z;" correctly.
6442
64431993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6444
6445 * Version 19.16 released.
6446
6447 * b2m.c: #include <sys/types.h>.
6448 (ltoday): Declare this to be time_t.
6449
64501993-06-30 Paul Eggert (eggert@twinsun.com)
6451
6452 * vcdiff: Add -q option.
6453
64541993-06-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6455
6456 * etags.c: #include "config.h" and the alloca CPP tangle before
6457 #including the system headers and getopt.h. AIX requires the
6458 #pragma to come before any actual C code.
6459
64601993-06-21 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6461
6462 * Makefile.in (ctags): Depend on etags, so that parallel makes
6463 don't write etags.o files on top of each other.
6464
64651993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6466
6467 * version 19.15 released.
6468
64691993-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6470
6471 * etags.c (add_node): Move var last_node to file scope.
6472
64731993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6474
6475 * Version 19.14 released.
6476
64771993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6478
6479 Bring mumbleclean targets into conformance with GNU coding standards.
6480 * Makefile.in (distclean): Call clean to do most of the work.
6481 Delete aixcc.c and TAGS.
6482 (realclean): Just call distclean.
6483
6484 * Makefile.in: Remember, spaces are not tabs.
6485
64861993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6487
6488 * Makefile.in (CPP_CFLAGS): New variable.
6489 Use it instead of ALL_CFLAGS when compiling a .c file.
6490 (getopt.o, getopt1.o): Add explicit compilation commands.
6491
64921993-06-10 Mark D. Baushke (mdb@cisco.com)
6493
6494 * etags.c: Reinstate old -f option as an alias for -o for
6495 installed base uses.
6496
64971993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6498
6499 * emacsserver.c (main): When we're passing a `struct sockaddr_un'
6500 to bind or accept, cast the pointer, to avoid warnings on systems
6501 which declare prototypes for this.
6502 * emacsclient.c (main): Same.
6503
6504 * Makefile.in (YACC): New variable, to be set by top-level Makefile.
6505
65061993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6507
6508 * Version 19.13 released.
6509
6510 * wakeup.c: Include sys/types.h, too; I think that's where time_t
6511 comes from, not sys/time.h.
6512
65131993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6514
6515 * wakeup.c: Include sys/time.h.
6516
6517 * etags.c: #undef static.
6518
6519 * Version 19.12 released.
6520
6521 * Makefile.in (all): Exclude INSTALLABLE_SCRIPTS and SCRIPTS from deps.
6522
65231993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6524
6525 * Version 19.11 released.
6526
6527 * timer.c [LINUX]: #undef signal.
6528 * emacsserver.c: #undef signal.
6529
65301993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6531
6532 * wakeup.c (main): Make when a time_t.
6533
65341993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6535
6536 * Makefile.in (${archlibdir}): Use `(cd foo && pwd)' instead of
6537 `(cd foo ; pwd)' to get the canonical name of a directory; cd
6538 might fail, and have pwd print out the current directory.
6539
6540 * movemail.c [MAIL_USE_POP] (main): Don't use non-portable
6541 string-handling functions.
6542
65431993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6544
6545 * Version 19.10 released.
6546
65471993-05-29 Paul Eggert (eggert@twinsun.com)
6548
6549 * rcs2log: When given no file arguments, inspect RCS/.* as well
6550 as RCS/*. Don't report an error if RCS is empty or nonexistent.
6551
65521993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6553
6554 * Makefile.in (timer): Link with $(LOADLIBES).
6555
65561993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6557
6558 * fakemail.c (put_line): Don't output \n\t unless more text follows.
6559
65601993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6561
6562 * etags.c: Replace the CPP tangle for alloca with the one from the
6563 autoconf documentation, since that's working elsewhere.
6564
65651993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6566
6567 * Makefile.in (ALL_CFLAGS): Add "-I.", so the system and machine
6568 description files can find their ancestors.
6569
65701993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6571
6572 * Makefile.in (install): Get the scripts from ${srcdir},
6573 unlike the executables.
6574 (ALL_CFLAGS): Add -I../src.
6575
65761993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6577
6578 * Version 19.9 released.
6579
65801993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6581
6582 * Makefile.in (install): Do install the programs listed in
6583 INSTALLABLE_SCRIPTS. Make the renaming loop use INSTALLABLES and
6584 INSTALLABLE_SCRIPTS, instead of writing the programs out.
6585
6586 * Makefile.in (ALL_CFLAGS): Include -I${srcdir}.
6587 (getopt.o, getopt1.c): Use ${srcdir} as appropriate.
6588
65891993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6590
6591 * etags.c: Include ../src/config.h.
6592
6593 * Makefile.in (install): Don't handle INSTALLABLE_SCRIPTS
6594 in first loop. Delete files from bindir before installing new ones.
6595 (ALL_CFLAGS): Use ${srcdir} to find .../src dir.
6596
65971993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6598
6599 * Version 19.8 released.
6600
6601 * make-docfile.c: Doc fix.
6602
66031993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6604
6605 * tcp.c: Fix comment syntax at top of file.
6606 (main): Don't call htons with the port number.
6607
66081993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6609
6610 * Makefile.in (timer.o, sorted-doc.c): Link with alloca.o, if it's
6611 appropriate.
6612
6613 * Makefile.in (install): Refer to the variables INSTALLABLES and
6614 INSTALLABLE_SCRIPTS, instead of writing them out.
6615
66161993-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6617
6618 * make-path.c (main): Return 0.
6619
66201993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6621
6622 * Version 19.7 released.
6623
66241993-05-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6625
6626 * make-docfile.c (scan_lisp_file): Recognize defalias like fset.
6627
66281993-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6629
6630 * tcp.c: New file.
6631
66321993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6633
6634 * Makefile.in (.c.o): Make the rule start with a tab, not spaces.
6635
66361993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6637
6638 * timer.c (notify): Don't call sighold or sigrelse; they're USG
6639 only. We should really fix this later, but let's just make it
6640 compile for now.
6641
6642 Install patches from David J. Mackenzie to make the srcdir option
6643 work.
6644 * Makefile.in (srcdir, VPATH): Get this value from the top-level
6645 Makefile.
6646 (INSTALLABLES): Split this into two lists - INSTALLABLES and
6647 INSTALLABLE_SCRIPTS.
6648 (INSTALLABLE_SCRIPTS): New list.
6649 (EXECUTABLES): Include INSTALLABLE_SCRIPTS.
6650 (${archlibdir}): The scripts to be installed live in the source
6651 tree, not in the object tree.
6652 (test-distrib): Note that the data file lives in the source tree,
6653 not the object tree.
6654 (GETOPTDEPS): Note that getopt.h lives in the source tree.
6655 (all other targets): Change references to source files to use
6656 ${srcdir}, except for config.h, which lives in the object dir.
6657 (timer.o): Note that this depends on ../src/config.h.
6658 * make-docfile.c (main): Add a -d option, to tell it where to find
6659 the source files.
6660 * test-distrib.c (main): Take the name of the distribution file to
6661 test from the command line.
6662
6663 * timer.c: Fix misspellings of get_date function's name.
6664
66651993-05-12 Roland McGrath (roland@geech.gnu.ai.mit.edu)
6666
6667 * etags.c (main):
6668 Don't require that there be input files if -i switches were given.
6669
66701993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6671
6672 The GNU coding standards specify that CFLAGS should be left for
6673 users to set.
6674 * Makefile.in (CFLAGS): Put this in the "things configure might
6675 edit" section, and have it default to -g.
6676 (ALL_CFLAGS): New variable, set to all the flags which should be
6677 passed to compilations. Replace all other uses of CFLAGS with
6678 ALL_CFLAGS.
6679 (.c.o): New rule, to pass ALL_CFLAGS to compilations.
6680
6681 * Makefile.in (DEFS): Remove this; it's always just going to be
6682 "-DHAVE_CONFIG_H -Demacs".
6683
66841993-05-03 Paul Eggert (eggert@twinsun.com)
6685
6686 * rcs2log: mawk, SunOS 4.1.3 nawk, and Ultrix/MKS nawk all barf on
6687 /[/]/, so change it to /[\/]/. This should work on all
6688 Posix-compliant awks. It's slightly wrong with traditional awk,
6689 since it matches \ too, but that's a minor problem compared to awk
6690 syntax errors.
6691
66921993-05-01 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6693
6694 * Makefile.in (ALLOCA): New variable, whose value we should
6695 inherit from the top-level makefile.
6696 (etags, ctags): Include ALLOCA in the list of object files that
6697 these executables depend on and link.
6698
66991993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6700
6701 * Makefile.in (DEFS): Rename from CONFIG_CFLAGS.
6702
67031993-04-07 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
6704
6705 * make-docfile.c (write_c_args): Print an argument named "defalt"
6706 as "default".
6707
67081993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6709
6710 * Makefile.in (C_SWITCH_SYSTEM): New variable.
6711 (CFLAGS): Include C_SWITCH_SYSTEM in the flags to pass to the
6712 compiler.
6713
67141993-03-22 Francesco Potortì (pot@cnuce.cnr.it)
6715
6716 * etags.c (YACC): Flag added to c_ext.
6717 (c_ext): No more a synonim for c_ext&C_PLPL because of YACC.
6718 (find_entries): Consistently use streq when reasonable.
6719 (find_entries): A .y file is a yacc file.
6720 (get_C_stab): c_ext becomes c_ext&C_PLPL.
6721 (C_entries): Logical cplpl means c_ext&C_PLPL.
6722 (C_entries): Logical yacc_rules means we are after the first %%.
6723 (C_entries): Add logic for yacc files.
6724
67251993-03-16 Francesco Potortì (pot@cnuce.cnr.it)
6726
6727 * etags.c (C_entries): ':' case moved to the second switch.
6728 (C_entries): Do not examine token if structdef==scolonseen.
6729 (consider_token): structtag set to null string for enum.
6730
67311993-03-12 Francesco Potortì (pot@cnuce.cnr.it)
6732
6733 * etags.c (GET_COOKIE): And related macros removed.
6734 (logical): Is now int, no more a char.
6735 (reg): Define deleted.
6736 (isgood, _gd, notgd): Deleted.
6737 (gotone): Deleted.
6738 (TOKEN): Member linestart removed.
6739 (linepos, prev_linepos, lb1): Deleted.
6740 (main): Call initbuffer on lbs array instead of lb1.
6741 (init): Remove the initialisation of the logical _gd array.
6742 (find_entries): A .sa suffix means assembler file.
6743 (C_create_stab): "auto", "void", "extern", "static" are st_C_typespec.
6744 All C state machines rewritten.
6745 (C_entries): Complete rewrite.
6746 (condider_token): Complete rewrite.
6747 (getline): Deleted.
6748
67491993-03-01 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
6750
6751 * etags.c (C_entries): Add the quotednl logical variable.
6752 Used for parsing of #define's spanning multiple lines.
6753
67541993-02-23 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
6755
6756 * etags.c (C_entries): Save the definedef status even when a
6757 newline is met inside a string.
6758
67591993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
6760
6761 * Makefile.in (EXECUTABLES): Add rcs-checkin.
6762
6763 * Makefile.in (unlock, relock): New productions.
6764
67651993-03-16 Paul Eggert (eggert@twinsun.com)
6766
6767 * rcs2log: Some awks don't understand "\r". Code around this.
6768 Unfortunately this requires putting a carriage return in the
6769 source code. Don't assume that rlog will tolerate times like
6770 `10:10:60'; RCS 5.7 won't allow this.
6771
67721993-03-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6773
6774 * timer.c (main): Set the ownership of the stdin file descriptor
6775 to the current process. Print error messages if either of the
6776 fcntl's fails.
6777
6778 * timer.c (sigcatch): Declare this to return SIGTYPE (defined in
6779 ../src/config.h), not void.
6780
67811993-03-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6782
6783 * b2m.c (main): Don't exit upon reading a blank line.
6784
67851993-03-01 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
6786
6787 * etags.c (C_entries): New local variable quotednl. Used for
6788 parsing of #define's spanning multiple lines.
6789
6790 * etags.c (C_entries): Save the definedef status
6791 even when a newline is met inside a string.
6792
67931993-02-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6794
6795 * timer.c (notify): Initialize waitfor properly.
6796
67971993-02-22 Francesco Potortì (pot@CNUCE.CNR.IT)
6798
6799 * etags.c (C_entries): Don't reset definedef when a newline inside a
6800 comment is met.
6801
68021993-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6803
6804 * etags.c (find_entries): If filename ends in .f or .for,
6805 don't try anything but Fortran.
6806
68071993-01-08 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
6808
6809 * timer.c (notify): Flush stdout after writing message to avoid lossage
6810 on terminals.
6811
6812 (notify): Also, write a newline after the token.
6813
68141992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6815
6816 * Makefile.in (exec_prefix): New variable.
6817 (bindir, libdir): Use it instead of `prefix'.
6818
6819 * Makefile.in (CFLAGS): #define HAVE_CONFIG_H, too.
6820
6821 * Makefile.in (libdir): Default to ${prefix}/lib.
6822 (archlibdir): Adjust to match.
6823
6824 * Makefile.in (distclean): Don't delete backup or autosave files.
6825 (extraclean): Like realclean, but does delete backup and autosave
6826 files.
6827
6828 * Makefile.in (realclean): Ignore errors from rm.
6829
6830 * Makefile.in (distclean): Don't bother to delete ../arch-lib;
6831 that doesn't exist anymore.
6832
68331992-12-11 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6834
6835 * Makefile.in (prefix, bindir, libdir, srcdir): New variables, as
6836 described in the top-level Makefile.
6837 (UTILITIES): Add make-path to the list of utility programs.
6838 (../arch-lib): Replaced by the ${archlibdir} target, which places
6839 the executables in their permanent home.
6840 (install, install.sysv, install.xenix): Consolidated into one
6841 target which should work under all circumstances, modulo a few
6842 ignored error messages.
6843
6844 * make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
6845 a different number of arguments than other DEFVARs, recognize it
6846 specially, and expect the right number of commas.
6847
68481992-12-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6849
6850 * make-path.c: New program, to help with the installation process.
6851 * Makefile.in (make-path): New target.
6852
6853 * make-path.c (touchy_mkdir): Remove debugging output.
6854
68551992-11-05 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6856
6857 * Makefile.in (getdate.o): Add explicit target for this, so we
6858 can indicate that it depends on ../src/config.h.
6859
68601992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6861
6862 * Makefile.in (CONFIG_CFLAGS): Let the configure script edit this
6863 instead of CFLAGS.
6864 (CFLAGS): Add -Demacs and -I../src to CONFIG_CFLAGS to produce this.
6865
68661992-09-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6867
6868 * getdate.y: Correctly recognize Mt. Xinu BSD running on an HP
6869 9000/300 as BSD; don't include both <sys/time.h> and <time.h> on
6870 that system.
6871
6872 * Makefile.in (arch-lib): Give rm the `-f' option.
6873
68741992-09-28 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6875
6876 * make-docfile.c (write_c_args): Rewritten to correctly print
6877 &optionals before the first identifier, but after the first paren.
6878 This code used to just wait for commas or spaces; now it notices
6879 identifier boundaries.
6880
68811992-09-26 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6882
6883 * rcs2log: When getting date, use %02d instead of %.2d in awk printf.
6884
68851992-09-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6886
6887 * make-docfile.c (write_c_args): Print the argument lists properly
6888 when the first argument is optional.
6889
68901992-09-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6891
6892 * sorted-doc.c (main): Redefine special chars to use fonts tensy, teni.
6893 Redefine @item. Set catcode of +.
6894
68951992-08-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6896
6897 * emacsclient.c (main): Set IPC_CREAT in msgget call.
6898
68991992-08-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6900
6901 * etags.c (TEX_funcs): Keep just 1 of two redundant nested loops.
6902 (TEX_decode_env): Make `tab' one element longer.
6903
69041992-08-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6905
6906 * etags.c (PF_funcs): Recognize the "entry" keyword.
6907
69081992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6909
6910 * Makefile.in: Add rcs2log and vcdiff to the list of utilities.
6911
69121992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6913
6914 * timer.c (events): Rather than having slots marked as in use or
6915 out of use by the `token' field, keep all pending events at the
6916 beginning of the array. When we delete an event in the middle of
6917 the array, we move the last event into its place.
6918 (num_events): New variable.
6919 (schedule): It is now cheaper to find a free event slot;
6920 events[num_events] is the first free slot.
6921 (notify): Scan events[0 .. num_events-1], instead of the whole
6922 array. When an event fires, move the last event in the array into
6923 its spot. Use num_events to determine whether or not there are
6924 any pending events, not wait_for.
6925 (getevent): Delete unused variable `ep'.
6926 (sigcatch): It's now easier to find all the active events.
6927 (main): Initialize num_events.
6928
6929 * etags.c: Rather than fret about which systems have index and
6930 which systems have strchr, and how to tell the difference between
6931 them, we just write out our own versions. Big deal.
6932 (index, rindex): Extern declarations removed.
6933 (NEED_INDEX, NEED_RINDEX): Special hacks for hpux removed.
6934 (etags_index, etags_rindex): New declarations.
6935 (process_file, find_entries, pfnote, TEX_funcs, TEX_decode_env,
6936 TEX_getit, substr): Use the etags_*index functions, rather than
6937 the native *index functions.
6938 (rindex, index): Rename to etags_rindex and tags_rindex, and
6939 made them unconditionally defined, rather than having them depend
6940 on NEED_*INDEX.
6941
6942 * etags.c (savenstr): Add declaration for this at top of file.
6943 (TEX_decode_env): Don't declare it local to this function.
6944
6945 * b2m.c: #include "../src/config.h", so we can test for the USG
6946 macro, and decide whether to include <string.h> or <strings.h>.
6947 * Makefile.in: Note that b2m.c depends on ../src/config.h.
6948
69491992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6950
6951 * timer.c: Reformatted according to the GNU coding standards.
6952 Removed arbitrary limits on the number of events queued and the
6953 length of the tokens used to identify them.
6954 Removed casts to (void).
6955 Removed debugging printfs; they clutter the code, and the need
6956 can be better filled using a real debugger.
6957
69581992-08-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6959
6960 * timer.c: Installed new version from Eric Raymond; this is more
6961 portable, since it doesn't try to use SIGIO.
6962
69631992-07-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6964
6965 * emacsclient.c (main): If we can't find the socket in this
6966 person's home directory, print a message which asks if they've
6967 started the server, instead of just printing the message from
6968 sys_errmsg; Cygnus finds that people are much less confused by
6969 this.
6970
69711992-07-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6972
6973 * etags.c: Rather than defining "notdef" when "hpux" is #defined,
6974 so that index and rindex get defined, why don't we actually
6975 control index and rindex using symbols called "NEED_INDEX" and
6976 "NEED_RINDEX", and define them if hpux is defined? Isn't that a
6977 little more readable than defining something whose name implies
6978 that it's not?
6979
69801992-07-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6981
6982 * movemail.c: Merged changes from Jamie Zawinski's byte compiler
6983 distribution:
6984 Miscellaneous doc fixes.
6985 (skip_white, read_lisp_symbol): New functions.
6986 (scan_lisp_file): Instead of using long hairy strings of ifs, call
6987 read_lisp_symbol and then see what we got. Call skip_white
6988 instead of writing out a loop to do its job. Correctly extract
6989 docstrings from "defmacro" declarations.
6990
69911992-06-25 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6992
6993 * movemail.c (strcpy): Declare this to return char *.
6994
69951992-06-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6996
6997 * etags.c (C_entries): When we find a C++ comment, do actually
6998 skip to the end of the line; do a 'break' instead of a 'continue'.
6999
70001992-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7001
7002 * etags.c (getit): Add missing parenthesis to expression which
7003 decides if this token is an identifier.
7004
70051992-06-04 Roland McGrath (roland@geech.gnu.ai.mit.edu)
7006
7007 * etags.c (consider_token): Recognize `ENTRY' macro used in libc.
7008
70091992-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7010
7011 * etags.c (put_entries): Always put space between name and line num.
7012
70131992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
7014
7015 * etags.c (getit): Parenthesize &&/|| expression to avoid gcc
7016 warning.
7017 (LEVEL_OK_FOR_FUNCDEF): Ditto.
7018
70191992-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7020
7021 * make-docfile.c (write_c_args): Pass both arguments to putc.
7022
70231992-05-10 Roland McGrath (roland@albert.gnu.ai.mit.edu)
7024
7025 * etags.c (C_entries): Fix reading of "..." strings.
7026 (consider_token): Recognize `SYSCALL' and `PSEUDO' macros, used in
7027 the C library source.
7028
7029 * etags.c (C_entries): When we see a backslash inside a quoted
7030 string, skip to the next character. This allows us to correctly
7031 deal with strings containing quotes.
7032
70331992-05-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7034
7035 * make-docfile.c (write_c_args): Print the C argument names as
7036 they would be written in Elisp; print '_' as '-'.
7037
70381992-05-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7039
7040 * movemail.c [POP]: Get user name via getpwuid.
7041
70421992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7043
7044 * Makefile.in: Flags in CC invocations rearranged for no reason.
7045
70461992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7047
7048 * etags.c (print_help): Remember not to embed raw newlines in
7049 strings - end the lines with `\n\'.
7050
70511992-04-17 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7052
7053 * timer.c (getevent): Remove declaration of memcpy; since
7054 different systems have different return types, and we're not even
7055 using the return type anyway, it wasn't doing us any good.
7056
70571992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7058
7059 * emacsserver.c (msgcatch): Use the SIGTYPE macro to declare the
7060 type of this function.
7061
70621992-04-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7063
7064 * ChangeLog: Since the old etc contents have been split into etc
7065 and lib-src, the old etc's ChangeLog has been duplicated in the
7066 new etc and lib-src. That means that each contains complete and
7067 coherent information, although each contains extraneous
7068 information.
7069
70701992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7071
7072 * etags.c: "--no-warning" option renamed to "--no-warn",
7073 to be consistent with other GNU programs, like makeinfo.
7074
7075 * Makefile: Renamed to Makefile.in; the configure script
7076 will edit this to produce Makefile.
7077
70781992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7079
7080 * etags.c (print_help, print_version): New functions.
7081 (main): Options added to support them.
7082
7083 * etags.c (longopts): New array of long names for the options.
7084 (main): Recognize them.
7085
70861992-04-06 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7087
7088 * etags.c (C_entries): Remove comment saying that \" in a string
7089 isn't recognized as magic, because it is correctly handled.
7090
7091 * getopt.c, getopt.h: New files, from GNU C library.
7092 * etags.c: Rewritten to use getopt.
7093 #include "getopt.h".
7094 (file_num): Variable deleted; its role is now played by getopt's
7095 optind.
7096 (main): Argument processing loop rewritten to call getopt to get
7097 next option. Options which take parameters (-o and -i) rewritten
7098 to get parameter from optarg instead of argv[1].
7099 Filename preprocessing loop and update command changed similarly.
7100 * Makefile (etags, ctags): Depend on and link with getopt.h,
7101 getopt.o, and getopt1.o.
7102 (getopt.o, getopt1.o): New targets for the GNU getopt routines.
7103
7104 * etags.c (outfflag): Variable deleted; it is non-zero iff outfile
7105 is non-zero.
7106
7107 (main): In the argument processing loop, the 'goto next_arg'
7108 statements are breaking out of the switch statement in exactly the
7109 same way that a simple 'break' statement would; replace the gotos
7110 with breaks, and remove the label.
7111
71121992-04-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7113
7114 * etags.c (C_entries): Clear tydef and next_token_is_func at start.
7115 (consider_token): Move next_token_is_func to global.
7116
71171992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7118
7119 * Makefile: Conform with GNU coding standards:
7120 (mostlyclean): New target, synonymous with clean.
7121 (TAGS, check): New targets.
7122 (INSTALL, INSTALLFLAGS): New variables.
7123
71241992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7125
7126 * lib-src/Makefile, etc/MACHINES, etc/NEWS: Changed references to
7127 `config.emacs' to `configure'.
7128
7129 * lib-src/Makefile: Adjusted for renaming of share-lib to etc.
7130 * etc/MACHINES: Same.
7131
71321992-03-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7133
7134 * movemail.c (main): Allow tempname to be as long as necessary,
7135 instead of limiting it to 39 characters.
7136
7137 * movemail.c (main): Move declaration of buf from top of function
7138 to local block surrounding the copy loop. This makes it less
7139 likely to be confused with the buf used by the code which checks the
7140 permissions on outname's directory.
7141
71421992-03-20 Jim Kingdon (kingdon@albert.gnu.ai.mit.edu)
7143
7144 * SERVICE: Remove my entry.
7145
71461992-03-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
7147
7148 * Makefile (emacstool, nemacstool, xvetool): Use ${CFLAGS}, not
7149 hardcoded -g.
7150
7151 * movemail.c (xmalloc): Return char *, not int.
7152 (main) [!MAIL_USE_FLOCK]: Add a new conditional, MAIL_UNLINK_SPOOL,
7153 that is off by default -- normally don't unlink the mail spool
7154 file, just empty it. Pass creat mode 0600, not 0666.
7155
71561992-02-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7157
7158 * Makefile (../arch-lib): Depend on ${EXECUTABLES}.
7159 (all): Instead of here.
7160 (install): Don't use the -s option, since people need symbols to
7161 debug code.
7162
71631992-01-19 Eric Youngdale (youngdale@v6550c.nrl.navy.mil)
7164
7165 * etags-vmslib.c (fn_exp): Add type cast.
7166
71671992-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7168
7169 * movemail.c: Changes in comments.
7170
71711992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7172
7173 * Makefile: Make the distclean target erase the DOC files from
7174 ../share-lib and the executables from ../arch-lib.
7175
71761992-01-09 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7177
7178 * emacsclient.c: #include <sys/stat.h>
7179 (main): Do declare statbfr.
7180
71811991-12-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7182
7183 * emacsserver.c, emacsclient.c [BSD]: Use either /tmp or ~
7184 for the socket, depending on SERVER_HOME_DIR.
7185 If using /tmp, put host name in the socket name.
7186
7187 * movemail.c (pfatal_and_delete): New function.
7188 (main, popmail): Use it.
7189 (popmail): Close output before deleting messages.
7190 Check for error on close and on fsync.
7191 Use `fatal' where appropriate.
7192 (main): Remove (void).
7193
7194 * aixcc.lex: New file. Not officially part of Emacs.
7195 * Makefile: Rules for that.
7196
71971991-12-04 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
7198
7199 * yow.c (main): Rename all references to PATH_EXEC to PATH_DATA.
7200
7201 * etags.c (main): Properly cast call to alloca that initializes
7202 included_files.
7203
72041991-08-17 Roland McGrath (roland@geech.gnu.ai.mit.edu)
7205
7206 * etags.c (files_are_tag_tables): Remove global var.
7207 (process_file): Don't test it. Also remove hack checking for a
7208 file named "TAGS".
7209 (main): -i now takes an arg which is the name of a file to include.
7210 Collect these names and emit include tags for them after processing
7211 all the argument files.
7212
72131991-07-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7214
7215 * wakeup.c: Terminate if parent goes away.
7216
72171991-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7218
7219 * etags.c (C_entries): Process token before handling end of line.
7220 When inner loops reach end of line, just back up.
7221 Let the real end of line processing happen in just one place.
7222 (consider_token): Likewise.
7223
72241991-04-11 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
7225
7226 * etags.c (TEX_mode): Skip comments while scanning the text to see
7227 which escape character this file uses.
7228
72291991-03-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7230
7231 * emacsserver.c [USG]: Terminate if msgrcv fails.
7232
72331991-03-03 Richard Stallman (rms@mole.ai.mit.edu)
7234
7235 * emacsserver.c [BSD]: Check for errors on stdin after scanf.
7236
72371991-01-25 Jim Blandy (jimb@churchy.ai.mit.edu)
7238
7239 * make-docfile: Find the arguments to a C function correctly,
7240 by not ignoring the character that read_c_string returns.
7241 Don't even try to find argument names for functions that take MANY
7242 or UNEVALLED arguments, since they're a figment of the docstring's
7243 imagination.
7244
72451991-01-14 Jim Blandy (jimb@churchy.ai.mit.edu)
7246
7247 * make-docfile: Read the .elc files generated by the new byte
7248 compiler.
7249
72501990-12-31 Richard Stallman (rms@mole.ai.mit.edu)
7251
7252 * refcard.tex: Use cm fonts, not am, in multi-column mode.
7253
72541990-11-29 Richard Stallman (rms@mole.ai.mit.edu)
7255
7256 * movemail.c (mbx_delimit_begin): Put space before `unseen'.
7257
72581990-11-27 Richard Stallman (rms@mole.ai.mit.edu)
7259
7260 * Makefile (install*): No need to install wakeup.
7261
72621990-11-26 Richard Stallman (rms@mole.ai.mit.edu)
7263
7264 * Makefile (install*): Install emacsclient like etags.
7265
72661990-11-13 Richard Stallman (rms@mole.ai.mit.edu)
7267
7268 * movemail.c (error): Handle 3 args.
7269 (main): Don't check input access if using pop.
7270
72711990-10-16 Richard Stallman (rms@mole.ai.mit.edu)
7272
7273 * etags.c (find_entries): Check for numbers after Scheme suffix.
7274
72751990-10-14 Richard Stallman (rms@mole.ai.mit.edu)
7276
7277 * termcap.dat (vt200-80): Fix ke and ks to frob flag 1.
7278
72791990-10-09 Richard Stallman (rms@mole.ai.mit.edu)
7280
7281 * Makefile (nemacstool, xvetool): New targets.
7282
72831990-09-26 Richard Stallman (rms@mole.ai.mit.edu)
7284
7285 * emacsclient.c: Include errno.h and define related variables.
7286
72871990-09-23 Richard Stallman (rms@mole.ai.mit.edu)
7288
7289 * emacsclient.c: Change usage message.
7290
72911990-08-30 David Lawrence (tale@pogo.ai.mit.edu)
7292
7293 * emacs.1: Add break before -nw option.
7294
72951990-08-19 David J. MacKenzie (djm@apple-gunkies)
7296
7297 * qsort.c: Replace with GNU version.
7298
72991990-08-14 David J. MacKenzie (djm@apple-gunkies)
7300
7301 * wakeup.c: New program replacing loadst.c.
7302
73031990-08-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7304
7305 * emacsclient.c [USG]: Pass msgsnd only 4 args.
7306
73071990-08-09 David J. MacKenzie (djm@pogo.ai.mit.edu)
7308
7309 * etags.c: Rename `flag' variables for what they do instead of
7310 which option character sets them.
7311
73121990-05-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7313
7314 * loadst.c (main): Conditional to get load average on Apollo.
7315
73161990-05-22 Joseph Arceneaux (jla@churchy.ai.mit.edu)
7317
7318 * emacsserver.c: Set the permission on the socket to 0600.
7319
73201990-03-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7321
7322 * emacsclient.c [BSD]: Print clean message for failing getwd.
7323
73241990-03-20 David Lawrence (tale@pogo.ai.mit.edu)
7325
7326 * getdate.y: Use the getdate.y from GNU tar for timer.
7327
73281990-03-18 Jim Kingdon (kingdon@pogo.ai.mit.edu)
7329
7330 * emacsclient.c (main): Don't put brackets around "filename" in
7331 usage message. It isn't optional.
7332
73331990-03-14 Joseph Arceneaux (jla@churchy.ai.mit.edu)
7334
7335 * etags.c (getit): Recognize '$' as beginning identifiers.
7336
73371990-02-22 David Lawrence (tale@pogo.ai.mit.edu)
7338
7339 * emacsserver.c: Renamed from server.c.
7340 * Makefile: Reference emacsserver rather than server.
7341 * MACHINES: Doc fix for new emacsserver name.
7342
73431990-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7344
7345 * emacsclient.c: Print program name in error messages.
7346
73471990-01-19 David Lawrence (tale@cocoa-puffs)
7348
7349 * timer.c, getdate.y (new files) and Makefile:
7350 Sub-process support for run-at-time in timer.el.
7351 Doesn't yet work correctly for USG.
7352
73531990-01-10 Jim Kingdon (kingdon@pogo)
7354
7355 * MACHINES: Add HP 300 running BSD.
7356
73571990-01-02 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7358
7359 * yow.c: Dynamically allocate buffer; skip header before random
7360 choice to avoid bias toward first item.
7361
73621989-12-24 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7363
7364 * etags.c (readline): Separate out init of `pend'.
7365
73661989-12-17 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7367
7368 * etags.c: Undo changes relating to isgoodhdr.
7369
73701989-12-16 Mosur Mohan (rms@sugar-bombs.ai.mit.edu)
7371
7372 * etags.c (isgoodhdr): New macro.
7373 (_gdh, notgdh): New variable used by that.
7374 (init): Initialize _gdh.
7375 (find_entries): Set header_file.
7376 (consider_token): Use isgoodhdr if in header file.
7377
7378 * etags.c (total_size_of_entries):
7379 Was miscalculating by 1 in rewritten case.
7380
7381 * etags.c (PAS_funcs): One arg to pfnote was missing.
7382
73831989-12-05 Joseph Arceneaux (jla@spiff)
7384
7385 * MACHINES: Change for the ULTRIX entry.
7386
73871989-11-21 Joseph Arceneaux (jla@spiff)
7388
7389 * etags.c (process_file): If file is not regular, return.
7390
73911989-11-06 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7392
7393 * loadst.c (main): Handle FIXUP_KERNEL_SYMBOL_ADDR.
7394
73951989-10-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7396
7397 * loadst.c (load_average): If HAVE_GETLOADAVG, use getloadavg.
7398 (main): If HAVE_GETLOADAVG, don't call `nlist'.
7399
74001989-10-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7401
7402 * etags.c (consider_token): Allow any number of typespec keywords
7403 after `typedef', before new type name.
7404 (enum sym_type): Add st_C_typespec.
7405 (C_create_stab): Put typespec kwds in table.
7406
74071989-08-27 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
7408
7409 * etags.c (main): Don't depend on name invoked by.
7410 If CTAGS is not defined, assume it is ETAGS.
7411
74121989-07-31 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7413
7414 * etags.c (L_funcs): Allow package name in define construct,
7415 as in (foo::defmumble name-defined ...).
7416
74171989-07-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7418
7419 * etags.c (find_entries): Stupid bug testing for C filename suffixes.
7420
7421 * Makefile (yow): Depends on ../src/paths.h.
7422
74231989-07-04 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
7424
7425 * etags.c: Fix compilation by moving Pascal after Fortran.
7426
74271989-06-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7428
7429 * movemail.c [USG]: Define F_OK, etc., if not found in header.
7430
74311989-05-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7432
7433 * hexl.c: New file, supports hexl-mode.
7434
74351989-05-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7436
7437 * movemail.c: New compilation flag MAIL_USE_MMDF.
7438
74391989-05-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7440
7441 * emacsclient.c: Use BSD code whenever HAVE_SOCKETS.
7442 * server.c: Likewise.
7443
7444 * make-docfile.c (scan_c_file): Output argument names at end of string.
7445 (write_c_args): New subroutine.
7446
74471989-04-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7448
7449 * movemail.c: Report failure of flock.
7450
74511989-04-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7452
7453 * etags.c (find_entries): Allow multi-letter extensions for fortran.
7454
74551989-04-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7456
7457 * loadst.c: On bsd4.3, use gettimeofday instead of CPUSTATES.
7458
74591989-03-15 Jeff Peck (rms@sugar-bombs.ai.mit.edu)
7460
7461 * emacstool.c: setenv IN_EMACSTOOL=t, TERM=sun, TERMCAP=.
7462
7463 * emacstool.1: Update to document environment variables.
7464
74651989-02-21 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7466
7467 * etags.c (PAS_funcs): New function by Mosur Mohan.
7468
7469 * movemail.c: On sysv, include unistd.h.
7470
74711989-02-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7472
7473 * b2m.c: New file.
7474
74751989-02-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7476
7477 * etags.c: Prolog support from Sunichirou Sugou.
7478
74791989-02-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7480
7481 * Makefile (clean): New target.
7482
74831989-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7484
7485 * fakemail.c (put_line): Break header lines at 79 cols.
7486
74871989-01-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7488
7489 * etags.c: Greatly rewritten by Sam Kendall for C++ support and for
7490 multiple tags per line.
7491
74921989-01-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7493
7494 * movemail.c: Check access before doing real work.
7495 Check that outfile is in a writable directory.
7496 On fatal error, delete the lock file.
7497
74981988-12-31 Richard Mlynarik (mly@rice-chex.ai.mit.edu)
7499
7500 * env.c: Add decl for my-index
7501 * etags.c (file-entries): .oak => scheme.
7502
75031988-12-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7504
7505 * movemail.c: Use `access' to check input and output files.
7506
75071988-12-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7508
7509 * emacsclient.c (main): Ignore all of CWD before first slash.
7510
75111988-12-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7512
7513 * etags.c (readline): Double linebuffer->size outside the xrealloc.
7514
75151988-12-22 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7516
7517 * server.c, emacsclient.c: Don't try to use gid_t; it isn't defined.
7518 * server.c: chmod the socket to 0700.
7519
75201988-12-09 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7521
7522 * fakemail.c (main): Let env var FAKEMAILER override pgm to run.
7523 (add_field): Delete comments and turn `<', `>' to spaces
7524 in header lines.
7525 (USE_FAKEMAIL): New customization macro says to make fakemail
7526 not be a no-op even on a BSD system.
7527
75281988-12-01 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7529
7530 * etags.c (consider_token): Skip comments just like whitespace.
7531 Notice `struct', etc. and set strtag for those tokens.
7532 Return 1 for the token following `struct' if an open-brace follows it.
7533 (C_entries): Special handling of token following `struct'
7534 needed because we have probably advanced to the following line
7535 to find the `{'.
7536 (main): New option `T' sets tflag and strflag.
7537 Set both of them by default if eflags.
7538
75391988-11-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7540
7541 * movemail.c: Do fsync before closing output.
7542
75431988-11-29 Richard Mlynarik (mly@pickled-brain.ai.mit.edu)
7544
7545 * movemail.c: Better error message when can't create tempname.
7546 This file needs a great deal of extra error-checking and lucid reporting...
7547
75481988-11-16 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7549
7550 * etags.c: Support assembler code for .s and .a files.
7551 (getit): Allow underscore in a tag.
7552
75531988-11-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7554
7555 * movemail.c: Close output and check errors before deleting input.
7556
75571988-10-01 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
7558
7559 * emacsclient.c [SYSVIPC]: Compute cwd only once; decide properly
7560 whether to prefix it. Handle line number args.
7561
75621988-09-24 Richard Stallman (rms@gluteus.ai.mit.edu)
7563
7564 * etags.c (main): Default setting of eflag was backwards.
7565
75661988-09-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7567
7568 * etags.c: New option -i. -f renamed -o.
7569 `-' as input file means read input file names from stdin.
7570 -i spec'd or input file named TAGS means the input file is another
7571 tag table; output an "include" line for it.
7572
75731988-09-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7574
7575 * Makefile: New vars DESTDIR, BINDIR, LIBDIR, MANDIR, MANEXT.
7576 New targets install, install.sysv, install.xenix.
7577 This makefile is now responsible for installing executables
7578 and documentation from this directory into system directories.
7579
75801988-09-16 Richard Stallman (rms@corn-chex.ai.mit.edu)
7581
7582 * server.c, emacsclient.c (main): Compute socket name from euid.
7583
75841988-08-04 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7585
7586 * emacsclient.c: Args like +DIGITS are passed through unchanged.
7587
75881988-07-12 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7589
7590 * server.c: If both BSD and HAVE_SYSVIPC, use the latter.
7591 * emacsclient.c: Likewise.
7592 In the HAVE_SYSVIPC alternative, if BSD, use getwd instead of getcwd.
7593
75941988-06-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7595
7596 * etags.c: Handle `typedef struct foo {' (price@mcc.com).
7597 (istoken): New string-comparison macro.
7598 (consider_token): New arg `level'. New state `tag_ok' in `tydef'.
7599
76001988-06-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7601
7602 * etags.c: Changes for VMS.
7603 Always define ETAGS on VMS.
7604 Define macros GOOD and BAD for success and failure exit codes.
7605 (begtk, intk): Allow `$' in identifiers.
7606 (main): Don't support -B, -F or -u on VMS.
7607 Alternate loop for scanning filename arguments.
7608 (system): Delete definition of this function.
7609
7610 * etags-vmslib.c (system): Undefine this; VMS now provides it.
7611
76121988-06-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
7613
7614 * loadst.c: Prevent multiple-def errors on BSD and BSD4_3
7615 around include of param.h. (Like fns.c.)
7616
76171988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
7618
7619 * loadst.c (load_average): Move load-average code to this new fn.
7620 Add conditionals to compute load ave on UMAX.
7621
76221988-05-14 Richard Stallman (rms@lucky-charms.ai.mit.edu)
7623
7624 * loadst.c: Change DK_HEADER_FILE to DKSTAT_HEADER_FILE
7625 with opposite sense.
7626
76271988-05-13 Chris Hanson (cph@kleph)
7628
7629 * emacsclient.c: Delete references to unused variable `out'.
7630 This caused a bus error when used under hp-ux.
7631
76321988-05-06 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
7633
7634 * loadst.c: Control dk.h conditional with DK_HEADER_FILE.
7635
76361988-05-04 Richard Stallman (rms@rice-krispies.ai.mit.edu)
7637
7638 * etags.c (find_entries): `.t' or `.sch' means scheme code.
7639
76401988-04-29 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
7641
7642 * loadst.c: Add BSD4_3 conditional for file dk.h instead of dkstat.h.
7643
76441988-04-28 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
7645
7646 * movemail.c: #undef close, since config can #define it on V.3.
7647 * emacsclient.c, fakemail.c, loadst.c, server.c: Likewise.
7648
76491988-04-26 Richard Stallman (rms@lucky-charms.ai.mit.edu)
7650
7651 * etags.c (TEX_mode, etc.): Remove superfluous backslashes from
7652 invalid escape sequences such as `\{'.
7653
7654 * loadst.c: Add `sequent' conditional for file dk.h.
7655
76561988-03-20 Richard M. Stallman (rms@wilson)
7657
7658 * server.c [not BSD and not HAVE_SYSVIPC]: Fix error message.
7659
7660 * loadst.c (main) [XENIX]: Use /usr/spool/mail, not /usr/mail.
7661
7662;; Local Variables:
7663;; coding: utf-8
7664;; End:
7665
7666 Copyright (C) 1988-1999, 2001-2011 Free Software Foundation, Inc.
7667
7668 This file is part of GNU Emacs.
7669
7670 GNU Emacs is free software: you can redistribute it and/or modify
7671 it under the terms of the GNU General Public License as published by
7672 the Free Software Foundation, either version 3 of the License, or
7673 (at your option) any later version.
7674
7675 GNU Emacs is distributed in the hope that it will be useful,
7676 but WITHOUT ANY WARRANTY; without even the implied warranty of
7677 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7678 GNU General Public License for more details.
7679
7680 You should have received a copy of the GNU General Public License
7681 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.