* ebrowse.c (insert_keyword): Rename parameter to avoid shadowing diagnostic.
[bpt/emacs.git] / lib-src / ChangeLog
CommitLineData
34e6d782
PE
12011-02-26 Paul Eggert <eggert@cs.ucla.edu>
2
3 * ebrowse.c (putstr): Rename from PUTSTR and turn into a function.
4 All callers changed. This is cleaner, and avoids GCC warnings about
5 passing NULL to fputs.
70279bd1 6 (insert_keyword): Rename parameter to avoid shadowing diagnostic.
34e6d782 7
564ff1f2
PE
82011-02-25 Paul Eggert <eggert@cs.ucla.edu>
9
7e6bb4c9 10 * emacsclient.c (main): Avoid dangling 'if'.
b9170155
PE
11 (xstrdup): Remove; no longer needed.
12 (get_current_dir_name, w32_getenv, get_server_config, find_tty):
13 (set_local_socket, main):
14 Use const char *, not char *, for pointers that are not assigned
15 through.
4be3dfc5
PE
16 (IF_LINT): New macro.
17 (set_local_socket, main): Use it to suppress warnings with
18 GCC -Wuninitialized.
7e6bb4c9 19
b0bbc07d
PE
20 * emacsclient.c: Redo local variables to avoid shadowing problems.
21 (message, socket_status, start_daemon_and_retry_set_socket):
22 Rename locals.
23 (main): Move decl of "i".
24
3f5e6230
PE
25 * etags.c (ISUPPER): Move to inside the only #ifdef where it's used.
26 This avoids an unused-macro warning with some GCC settings.
27
564ff1f2
PE
28 * make-docfile.c (write_globals): Change char * to char const *
29 to avoid a GCC "assignment discards qualifiers" diagnostic
30 in some configurations.
8dfa32f6
PE
31 (scan_c_file): Refactor local variable decls to make their scope
32 more accurate and to avoid a GCC -Wuninitialized diagnostic.
564ff1f2 33
b97decf2
EZ
342011-02-22 Eli Zaretskii <eliz@gnu.org>
35
32e793fa
EZ
36 * etags.c (canonicalize_filename, ISUPPER): Fix last change.
37
b97decf2
EZ
38 * makefile.w32-in ($(BLD)/ebrowse.$(O), $(BLD)/pop.$(O)): Depend
39 on ../lib/min-max.h.
40
f68c809d
PE
412011-02-22 Paul Eggert <eggert@cs.ucla.edu>
42
e5075711
PE
43 etags: Downcase drive letters, for consistency with Emacs proper.
44 * etags.c (upcase): Remove; no longer used.
45 (canonicalize_filename): Downcase drive letters.
46
f68c809d
PE
47 Assume S_ISLNK etc. work, since gnulib supports this.
48 * etags.c (S_ISREG): Remove.
49
b97decf2
EZ
502011-02-22 Paul Eggert <eggert@cs.ucla.edu>
51
52 Assume S_ISLNK etc. work, since gnulib supports this.
53 * etags.c (S_ISREG): Remove.
54
602a5739
JB
552011-02-22 Juanma Barranquero <lekktu@gmail.com>
56
57 * makefile.w32-in (obj): Remove filemode.o.
58
b23b5a5b
PE
592011-02-21 Paul Eggert <eggert@cs.ucla.edu>
60
ba01e9d7
PE
61 New file "lib/min-max.h".
62 * ebrowse.c (min, max): Define them by including <min-max.h>
63 instead of defining it ourselves.
64 * pop.c (min): Likewise.
d47d6319 65 * Makefile.in (ebrowse${EXEEXT}, pop.o): Depend on min-max.h.
ba01e9d7 66
f0939c31
PE
67 * movemail.c (popmail): Report fchown failure instead of ignoring it.
68 But if the file already has the right ownership, don't worry about it.
69
4df52042 70 * make-docfile.c (input_buffer): Rename variables to avoid shadowing.
08c69097 71 * test-distrib.c (buf): Make this local, to avoid shadowing.
4df52042 72
27d41fb4 73 * movemail.c (main, pop_retr): Rename locals to avoid shadowing.
1afca8cc 74 (progname, sfi, sfo, ibuffer, obuffer): Remove unused vars.
5ecec6a7
PE
75 (DONE): Remove unused macro.
76 (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_FROM_LINE):
77 Define these macros only in the contexts that need them.
0d7fdc0e
PE
78 * pop.c (index): Remove unused macro.
79 (KPOP_PORT): Define only if KERBEROS is defined.
27d41fb4 80
b23b5a5b
PE
81 Declare file-scope functions and variables static if not exported.
82 This is more consistent, and is nicer with gcc -Wstrict-prototypes.
83 * ebrowse.c, emacsclient.c, fakemail.c, make-docfile.c, movemail.c:
84 * profile.c, test-distrib.c, update-game-score.c:
85 Declare non-'main' functions and variables to be static.
86 * ebrowse.c: Omit redundant function prototypes.
87
25c51af3
EZ
882011-02-21 Eli Zaretskii <eliz@gnu.org>
89
90 * makefile.w32-in ($(BLD)/ctags.$(O), $(BLD)/emacsclient.$(O))
91 ($(BLD)/etags.$(O), $(BLD)/movemail.$(O), $(BLD)/ntlib.$(O)):
92 Depend on $(EMACS_ROOT)/nt/inc/sys/stat.h.
93
6ca1c3b4
BK
942011-02-21 Ben Key <bkey76@gmail.com> (tiny change)
95
96 * make-docfile.c (scan_c_file): Adapt DEFVAR_PER_BUFFER case to
97 the new BVAR macro.
98
50a4e25a
JB
992011-02-20 Juanma Barranquero <lekktu@gmail.com>
100
101 * makefile.w32-in (obj): Remove md5.o.
102
b166dcd8
KC
1032011-02-18 Karl Chen <Karl.Chen@quarl.org>
104
105 * emacsclient.c (main): Loop while `recv' return EINTR.
106
64df8c10
PE
1072011-02-09 Paul Eggert <eggert@cs.ucla.edu>
108
109 * make-docfile.c (EMACS_INTEGER): Rename from EMACS_INT.
110 This avoids collision with config.h's EMACS_INT on some
111 configurations. All uses changed.
112
00b3c7ac
TT
1132011-02-08 Tom Tromey <tromey@redhat.com>
114
115 * make-docfile.c: Unconditionally include stdlib.h.
116 (generate_globals): New global.
117 (xrealloc): New function.
118 (main): Handle '-g'. Call start_globals, write_globals.
119 (scan_file): Conditionally call put_filename.
120 (start_globals): New function.
121 (struct global): New.
122 (num_globals, globals): New globals.
123 (add_global, compare_globals, write_globals): New functions.
124 (scan_c_file): Update for "-g".
125 (scan_lisp_file): Fail if "-g".
126
03fc768b
PE
1272011-02-05 Paul Eggert <eggert@cs.ucla.edu>
128
602a5739 129 * emacsclient.c: Conform to C89 pointer rules.
03fc768b
PE
130 (file_name_absolute_p): Accept const char *, not const unsigned
131 char *, to satisfy C89 rules.
132
d9f1f55e
EZ
1332011-02-02 Eli Zaretskii <eliz@gnu.org>
134
b166dcd8
KC
135 * makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS):
136 Add ``-DEMACS_NAME="\"GNU Emacs\""''.
83cc5772 137 (obj): Remove strftime.o.
d9f1f55e 138
70b0d280
EZ
1392011-01-31 Eli Zaretskii <eliz@gnu.org>
140
141 * makefile.w32-in (VERSION): Don't define, defined on nt/config.nt.
142 (ECLIENT_CFLAGS): Remove -DVERSION.
143 ($(BLD)/emacsclient.$(O)): Don't depend on makefile.w32-in.
144
16fab143
PE
1452011-01-31 Paul Eggert <eggert@cs.ucla.edu>
146
147 src/emacs.c now gets version number from configure.in
148 * ebrowse.c: Adjust comment to say that.
149
8aec9916
JM
1502011-01-30 Jim Meyering <meyering@redhat.com>
151
152 make-docfile: don't corrupt heap for an invalid .elc file
153 "printf '#@1a' > in.elc; ./make-docfile in.elc" would store 0
154 one byte before just-malloc'd saved_string buffer.
155 * make-docfile.c (scan_lisp_file): Diagnose an invalid dynamic
156 doc string length. Also fix an always-false while-loop test.
157
f915f0f7
EZ
1582011-01-29 Eli Zaretskii <eliz@gnu.org>
159
160 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
161 (GETOPTOBJS, GETOPTDEPS): Remove targets.
162 (MOVEMAILOBJS): Replace $(GETOPTOBJS) with ../lib/$(BLD)/libgnu.$(A).
163 ($(BLD)/movemail.exe): Depend on ../lib/getopt.h.
164 (ECLIENTOBJS, ETAGSOBJ, CTAGSOBJ, EBROWSEOBJ): Replace getopt.o
165 and getopt1.o with ../lib/$(BLD)/libgnu.$(A).
166 (clean): Don't remove getopt.h.
167 (getopt.h, $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O)): Remove targets.
168 ($(BLD)/ctags.$(O), $(BLD)/etags.$(O)): Replace getopt.h with
169 $(EMACS_ROOT)/lib/getopt.h.
170
1712011-01-28 Chong Yidong <cyd@stupidchicken.com>
172
173 * ntlib.c (setregid): New stub, renamed from setegid.
174
175 * ntlib.h: Update prototype.
176
06d8ace5 1772011-01-25 Chong Yidong <cyd@stupidchicken.com>
fbf4af3a
CY
178
179 * movemail.c (main): Use setregid instead of setegid, which is
180 missing on older systems. Suggested by Peter O'Gorman (Bug#6811).
181
9055082e
PE
1822011-01-23 Paul Eggert <eggert@cs.ucla.edu>
183
184 Check return values of some library calls.
185 * hexl.c (main): Check fread result.
186 * make-docfile.c (main): Check chdir result.
187 (scan_c_file): Check fscanf result.
188 * movemail.c (main): Check ftruncate result.
189
33fe4243 1902011-01-17 Paul Eggert <eggert@cs.ucla.edu>
e275c824 191
4004364e
PE
192 Include <unistd.h> unilaterally.
193 * emacsclient.c, etags.c, fakemail.c, make-docfile.c, movemail.c:
194 * pop.c, test-distrib.c, update-game-score.c:
195 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
196 unistd.h is always present now, possibly supplied by gnulib.
197
613f7bda
PE
198 Include <getopt.h> not "getopt.h".
199 * ebrowse.c, emacsclient.c: Include <getopt.h>, not "getopt.h".
200 Since getopt.h is no longer in this directory, there's no point
201 using the form with double-quotes.
202
e275c824
PE
203 Remove unused files.
204 * getopt.c, getopt1.c, getopt_.h, getopt_int.h: Remove.
205 These files are now in ../lib, copied from gnulib.
206
207 Use gnulib's getopt-gnu module.
208 * Makefile.in (mostlyclean): Do not clean getopt.h or getopt.h-t,
209 as these are now done by gnulib.
210 (GETOPT_H, getopt.h, GETOPTOBJS, GETOPTDEPS, getopt.o, getopt1.o):
211 Remove; now done by gnulib. All uses removed.
212
9a514d4a
PE
213 Automate syncing from gnulib.
214 * Makefile.in (EXE_FILES): New macro.
215 (BASE_CFLAGS): Add -I../lib and -I${srcdir}/../lib,
216 for gnulib's .h files.
217 (LOADLIBES): Add ../lib/libgnu.a.
218 ($(EXE_FILES)): Depend on ../lib/libgnu.a.
219 (../lib/libgnu.a): New rule.
220
72427c46
PE
2212011-01-08 Paul Eggert <eggert@cs.ucla.edu>
222
223 * Makefile.in (EXECUTABLES): Remove; macro unused since 1993.
224
4967fa34
GM
2252011-01-08 Glenn Morris <rgm@gnu.org>
226
e7a42417
GM
227 * Makefile.in (EMACSOPT): Add --no-site-lisp.
228
4967fa34
GM
229 * Makefile.in (EMACSOPT): Remove --multibyte, it does nothing any more.
230
d7bfa7a1
GM
2312011-01-02 Glenn Morris <rgm@gnu.org>
232
233 * ebrowse.c (version) <emacs_copyright>:
234 * etags.c (print_version) <emacs_copyright>:
235 * rcs2log (Copyright): Set short copyright year to 2011.
236
da2b5401
JM
2372010-11-27 Joe Matarazzo <joe.matarazzo@gmail.com> (tiny change)
238
239 * ebrowse.c (yylex): If end of input buffer encountered while
240 searching for a newline after "//", return YYEOF. (Bug#7446)
241
4a47c275 2422010-11-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
76cc4cd6
YM
243
244 * emacsclient.c (set_local_socket) [DARWIN_OS]: Add fall-back
245 definition of _CS_DARWIN_USER_TEMP_DIR for Mac OS X 10.4 and older.
246
f16cafe3
DN
2472010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
248
249 * test-distrib.c: Remove include guards for config.h and fcntl.h.
250 (O_RDONLY): Do not define.
251 (cool_read): Fix type for variable "sofar".
252
6a5c2175
GM
2532010-10-25 Glenn Morris <rgm@gnu.org>
254
255 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove easymenu.elc.
256
17284e30
GM
2572010-10-23 Glenn Morris <rgm@gnu.org>
258
259 * digest-doc.c, sorted-doc.c: Remove files.
260 * Makefile.in (UTILITIES): Remove digest-doc and sorted-doc.
261 (digest-doc${EXEEXT}, sorted-doc${EXEEXT}): Remove rules.
262 * makefile.w32-in (ALL): Remove digest-doc and sorted-doc.
263 ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe, sorted-doc, digest-doc)
264 ($(BLD)/digest-doc.$(O), $(BLD)/sorted-doc.$(O)): Remove rules.
265 (install): Don't install digest-doc.exe or sorted-doc.exe.
266
a4daeecf
DN
2672010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
268
269 * Makefile.in (PROFILING_LDFLAGS): Remove, not needed.
270
3fb78d1f
GM
2712010-10-09 Glenn Morris <rgm@gnu.org>
272
273 * b2m.c, b2m.pl: Remove files.
274 * Makefile.in (INSTALLABLES): Remove b2m.
275 * makefile.w32-in ($(BLD)/b2m.$(O)): Remove.
276
4628bef1 2772010-10-08 Glenn Morris <rgm@gnu.org>
b336bfcd
GM
278
279 * emacsclient.c (set_local_socket) [DARWIN_OS]: Try as a fall-back
280 DARWIN_USER_TEMP_DIR. (Bug#3992)
281
f99d75f5
DN
2822010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
283
728a982d
DN
284 * test-distrib.c (cool_read):
285 * movemail.c (main, concat):
286 * make-docfile.c (scan_file, write_c_args):
602a5739 287 * emacsclient.c (get_server_config): Fix -Wconversion warning.
728a982d
DN
288 (egetenv): Move conditional definition earlier.
289 (progname): Use const.
290 * sorted-doc.c (xstrdup): Use const.
291
f99d75f5
DN
292 * Makefile.in: Remove ^L, old makes choke on it.
293
3ecb8d93
WS
2942010-10-02 Wolfgang Schnerring <wosc@wosc.de> (tiny change)
295
296 * emacsclient.c (main): Return EXIT_FAILURE if Emacs sends us an
297 error string (Bug#6963).
298
54b65f7b
JB
2992010-10-02 Juanma Barranquero <lekktu@gmail.com>
300
301 * makefile.w32-in (tags): Remove target.
302
73077a9a
EZ
3032010-10-01 Eli Zaretskii <eliz@gnu.org>
304
305 * makefile.w32-in (tags, TAGS): New targets.
306
968ef9b4
JB
3072010-09-30 Juanma Barranquero <lekktu@gmail.com>
308
309 * emacsclient.c (get_server_config): Don't read Emacs pid from
310 the authentication file.
311
6ab88e02
JB
3122010-09-29 Juanma Barranquero <lekktu@gmail.com>
313
a69edb8a
JB
314 * makefile.w32-in (../src/config.h): Remove target, it is stale.
315
6ab88e02
JB
316 * emacsclient.c (main): Remove unused variables.
317 (start_daemon_and_retry_set_socket): Use EXIT_FAILURE.
318
4c964351
UM
3192010-09-25 Ulrich Mueller <ulm@gentoo.org>
320
321 * etags.c (compressors, print_language_names): Support xz compression.
322
988e88ab
J
3232010-08-11 Jan Djärv <jan.h.d@swipnet.se>
324
70e31436 325 * fakemail.c: Include stdlib.h for getenv. Remove declaration of
5e3b9a89 326 popen, fclose and pclose.
70e31436 327 (my_name, fatal, error, put_line): Use const char*.
5e3b9a89
J
328 (main): Remove extern getenv, mail_program_name is const char*.
329
988e88ab
J
330 * update-game-score.c (get_prefix, write_scores, main): Use const char*.
331
332 * sorted-doc.c (error, fatal, states): Use const char *.
333
334 * pop.h (pop_multi_first): Use const char *.
335 (_ARGS): Remove.
336
70e31436 337 * pop.c (pop_multi_first, socket_connection, sendline): Use const char*.
988e88ab
J
338
339 * movemail.c (fatal, error, concat): Use const char *.
340
b166dcd8
KC
341 * make-docfile.c (error, fatal, scan_c_file, scan_lisp_file):
342 Use const char *.
988e88ab
J
343
344 * etags.c (compressor, language, Ada_suffix, Ada_help, Asm_suffixes)
345 (Asm_help, default_C_suffixes, default_C_help, Cplusplus_suffixes)
346 (Cplusplus_help, Cjava_suffixes, Cobol_suffixes, Cstar_suffixes)
347 (Erlang_suffixes, Erlang_help, Forth_suffixes, Forth_help)
348 (Fortran_suffixes, Fortran_help, HTML_suffixes, HTML_help)
349 (Lisp_suffixes, Lisp_help, Lua_suffixes, Lua_help)
350 (Makefile_filenames, Makefile_help, Objc_suffixes, Objc_help)
351 (Pascal_suffixes, Pascal_help, Perl_suffixes, Perl_interpreters)
352 (Perl_help, PHP_suffixes, PHP_help, plain_C_suffixses, PS_suffixes)
353 (PS_help, Prolog_suffixes, Prolog_help, Python_suffixes, Python_help)
354 (Scheme_suffixes, Scheme_help, TeX_suffixes, TeX_help, Texinfo_suffixes)
355 (Texinfo_help, Yacc_suffixes, Yacc_help, auto_help, none_help)
356 (no_lang_help, print_language_names)
357 (get_language_from_interpreter, get_language_from_filename)
358 (init, make_tag, struct C_stab_entry, write_classname, TEX_defenv)
359 (TEX_decode_env, nocase_tail, savestr, savenstr, fatal, pfatal)
360 (concat): Use const char*.
361
362 * emacsclient.c (message, sock_err_message, send_to_emacs)
363 (quote_argument, set_local_socket)
364 (start_daemon_and_retry_set_socket): Use const char*.
365
366 * ebrowse.c (struct member): filename, def_filename is const.
367 (struct sym): filename, sfilename is const.
368 (struct kw): name is const.
369 (add_sym, yyerror, token_string, insert_keyword, main): Use const char*.
370
371 * b2m.c (concat, fatal): Use const char*.
372 (main): Don't assign labels a string literal.
373
0e9c8657
JB
3742010-08-07 Juanma Barranquero <lekktu@gmail.com>
375
376 * ebrowse.c (usage, version, mark_virtual):
377 Remove duplicate declarations.
378
0613f5d5
DN
3792010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
380
381 * emacsclient.c: Move socket related #includes together with the
70e31436 382 rest of the #includes. Move WINDOWSNT includes closer together.
0613f5d5
DN
383 (HAVE_CONFIG_H): Remove.
384 (NO_RETURN): Remove, defined in config.h.
385 (main): Convert definition to standard C.
386
a94a477d
JB
3872010-07-29 Juanma Barranquero <lekktu@gmail.com>
388
389 * make-docfile.c (write_c_args): Warn for old-style empty arglist ().
390
35a7804d
JB
3912010-07-25 Juanma Barranquero <lekktu@gmail.com>
392
393 * emacsclient.c (getcwd): Fix previous change: make getcwd
394 conditional on HAVE_GETCWD and declare with the correct POSIX
395 profile (for some reason MinGW headers define its 2nd arg as int,
396 not size_t; but getcwd is not used on Windows nonetheless).
397
361358ea
JB
3982010-07-25 Juanma Barranquero <lekktu@gmail.com>
399
400 * emacsclient.c (getcwd, w32_getenv):
401 * ntlib.h (getlogin, getuid, getegid, getgid): Fix prototypes.
402
68441b90
DN
4032010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
404
087b38a0 405 * update-game-score.c (usage): Add NO_RETURN specifier.
68441b90
DN
406 * movemail.c (fatal, pfatal_with_name, pfatal_and_delete):
407 * make-docfile.c (fatal):
408 * hexl.c (usage):
409 * fakemail.c (fatal):
410 * etags.c (fatal, suggest_asking_for_help, pfatal):
411 * emacsclient.c (fatal):
412 * b2m.c (fatal): Likewise.
413
554d39be
JB
4142010-07-23 Juanma Barranquero <lekktu@gmail.com>
415
416 * make-docfile.c (write_c_args): Correctly handle prefixes of "defalt".
417
7c3320d8
JB
4182010-07-20 Juanma Barranquero <lekktu@gmail.com>
419
420 * emacsclient.c (get_current_dir_name, w32_get_resource)
421 (w32_getenv, w32_set_user_model_id, w32_window_app, w32_execvp)
422 (close_winsock, initialize_sockets, w32_find_emacs_process)
423 (w32_give_focus):
424 * ntlib.c (getlogin, getuid, getgid, getegid):
425 Convert definitions to standard C.
426
e6cfa7c3
AS
4272010-07-12 Andreas Schwab <schwab@linux-m68k.org>
428
429 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
430 (PROFILING_LDFLAGS): Set from substitution.
431 (BASE_CFLAGS): Add ${C_WARNINGS_SWITCH}.
432 (ALL_CFLAGS, CPP_CFLAGS): Add ${PROFILING_CFLAGS}.
433 (LINK_CFLAGS): Add ${PROFILING_LDFLAGS}.
434
f09e4c6b
EZ
4352010-07-12 Eli Zaretskii <eliz@gnu.org>
436
437 * makefile.w32-in (lisp2): Change hebrew.el to hebrew.elc (see
438 2010-07-12T05:25:46Z!handa@etlken).
439
8966b757
AS
4402010-07-11 Andreas Schwab <schwab@linux-m68k.org>
441
442 * emacsclient.c (set_local_socket): Use strchr, strrchr instead of
443 index, rindex.
444 * movemail.c (mail_spool_name, popmail): Likewise.
445 * pop.c (pop_list): Likewise.
446
994a7c3b
EZ
4472010-07-11 Eli Zaretskii <eliz@gnu.org>
448
a628ad9d 449 * makefile.w32-in (obj): Add menu.o, bidi.o, w32uniscribe.o,
994a7c3b
EZ
450 and unexw32.o. (Bug#6603)
451
c971758d
EZ
4522010-07-10 Eli Zaretskii <eliz@gnu.org>
453
454 * Makefile.in ($(DESTDIR)${archlibdir}): Convert spaces to TABs.
455
91a7f76d
AS
4562010-07-09 Andreas Schwab <schwab@linux-m68k.org>
457
458 * make-docfile.c (write_c_args): Restructure scanning loop.
459
0508c67f
DN
4602010-07-09 Dan Nicolaescu <dann@ics.uci.edu>
461
462 * make-docfile.c (write_c_args): Deal with type names in DEFUN
463 arguments.
464
0216627e
DN
4652010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
466
467 * update-game-score.c (P_): Remove macro.
468 * ebrowse.c: Remove include guards.
469 (P_): Remove macro.
470
72af86bd
AS
4712010-07-07 Andreas Schwab <schwab@linux-m68k.org>
472
473 * ebrowse.c (add_sym, make_namespace): Replace bcopy, bzero by
474 memcpy, memmove, memset.
475 * pop.c (pop_retrieve, socket_connection, pop_getline): Likewise.
476
e2ad23ef
AS
4772010-07-06 Andreas Schwab <schwab@linux-m68k.org>
478
479 * movemail.c: Add MAIL_USE_POP around prototypes.
1725ae55
AS
480 Include <string.h> if HAVE_STRING_H.
481 (strerror): Only declare if !HAVE_STRERROR.
482 (fatal): Make static.
483 (error): Likewise.
484 (pfatal_with_name): Likewise.
70e31436 485 (pfatal_and_delete): Likewise.
1725ae55
AS
486 (concat): Likewise.
487 (xmalloc): Likewise.
488 (popmail): Likewise.
489 (pop_retr): Likewise.
490 (mbx_write): Likewise.
491 (mbx_delimit_begin): Likewise.
492 (mbx_delimit_end): Likewise.
e2ad23ef 493
b8463cbf
DN
4942010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
495
496 * fakemail.c (action): Convert function definitions to standard C.
497 (add_a_stream):
498 * test-distrib.c (cool_read):
499 (main): Likewise.
500
a52a00a3
AS
5012010-07-03 Andreas Schwab <schwab@linux-m68k.org>
502
503 * sorted-doc.c (cmpdoc): Fix signature.
504 (qsort_compare): Delete.
505 (main): Remove cast.
506
35d99b72
JB
5072010-07-03 Juanma Barranquero <lekktu@gmail.com>
508
509 * ebrowse.c (match_qualified_namespace_alias): Check for null pointer.
510
3a35a84c
JB
5112010-07-03 Juanma Barranquero <lekktu@gmail.com>
512
513 Fix prototype warnings.
514
515 * ebrowse.c (match_qualified_namespace_alias):
516 Pass sym* to find_namespace, not link*.
517
518 * emacsclient.c (send_to_emacs, quote_argument): Arg s is HSOCKET.
519
520 * sorted-doc.c (qsort_compare): New typedef.
521 (main): Use it to cast cmpdoc.
522
873fbd0b
DN
5232010-07-03 Dan Nicolaescu <dann@ics.uci.edu>
524
525 * update-game-score.c: Convert function definitions to standard C.
526 * sorted-doc.c:
527 * profile.c:
528 * pop.c:
529 * movemail.c:
530 * make-docfile.c:
531 * hexl.c:
532 * fakemail.c:
533 * etags.c:
534 * ebrowse.c:
535 * digest-doc.c:
536 * b2m.c: Likewise.
537
c532d349
DN
5382010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
539
540 * make-docfile.c (xmalloc, xrealloc, concat, readline, fatal):
541 * b2m.c (scan_file, scan_lisp_file, scan_c_file): Convert to
542 standard C prototypes.
543
f57e2426
J
5442010-07-02 Jan Djärv <jan.h.d@swipnet.se>
545
546 * ebrowse.c: Remove P_ and __P.
547 * etags.c:
548 * movemail.c:
549 * pop.c:
550 * update-game-score.c: Likewise.
551
3b3807f8
JB
5522010-06-24 Juanma Barranquero <lekktu@gmail.com>
553
554 * movemail.c (error): Avoid warning when there are no args.
555
5fee75d4
JB
5562010-06-11 Juanma Barranquero <lekktu@gmail.com>
557
558 * makefile.w32-in (lisp2): Fix references to vc/vc-hooks.elc
559 and vc/ediff-hook.elc.
560
3085237c
DN
5612010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
562
563 * ntlib.h: Remove code dealing with BSTRING.
564
0191e222
CY
5652010-05-29 Chong Yidong <cyd@stupidchicken.com>
566
567 * emacsclient.c (longopts, decode_options, print_help_and_exit):
568 New arg `-parent-id'.
569 (main): Send parent-id to Emacs.
570
81ac4f35
GM
5712010-05-27 Glenn Morris <rgm@gnu.org>
572
573 * Makefile.in (distclean): No more Makefile.c.
574
4e3028f8
JD
5752010-05-22 Jan Djärv <jan.h.d@swipnet.se>
576
577 * Makefile.in (STAMP_INST_SCRIPTS, STAMP_SCRIPS): New (Bug #6246).
578 (all): Depend onSTAMP_INST_SCRIPTS, STAMP_SCRIPS (Bug #6246).
579 (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff):
580 New rules (Bug #6246).
581 (clean): Remove stamp-* (Bug #6246).
582
44b031a6
GM
5832010-05-12 Glenn Morris <rgm@gnu.org>
584
585 * Makefile.in (INSTALLABLES): Remove @LIB_SRC_EXTRA_INSTALLABLES@.
586
acddf8ae
GM
5872010-05-11 Glenn Morris <rgm@gnu.org>
588
c88b05a9
GM
589 * Makefile.in (.m.o): Remove, there are no .m files.
590 (BASE_CFLAGS): New variable.
591 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use $BASE_CFLAGS.
592 (check): Update the message.
593 (update-game-score${EXEEXT}): Do not use $MOVE_FLAGS.
594
d3b23034
GM
595 * Makefile.in: Convert comments to makefile format.
596
acddf8ae
GM
597 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
598 (config.h) [MSDOS]: Do not include.
599
7490175b
GM
6002010-05-10 Glenn Morris <rgm@gnu.org>
601
97efb629
GM
602 * Makefile.in (LIBS_SYSTEM): Set with configure, not cpp.
603 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
604 (NOT_C_CODE): Remove, no longer used.
605 (config.h) [!MSDOS]: No longer include.
606 (LOADLIBES): Use LIBS_SYSTEM as a variable.
607
7490175b
GM
608 * Makefile.in (BLESSMAIL_TARGET): Set with configure, not cpp.
609
7b42b29f
GM
6102010-05-08 Glenn Morris <rgm@gnu.org>
611
612 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
613
61a808e8
CY
6142010-05-07 Chong Yidong <cyd@stupidchicken.com>
615
616 * Version 23.2 released.
617
f6c0ee20
GM
6182010-05-06 Glenn Morris <rgm@gnu.org>
619
620 * Makefile.in: Minimize blessmail-related cpp usage.
621 (BLESSMAIL_TARGET): New variable.
622 (MOVEMAIL_NEEDS_BLESSING): Remove, replace by above variable.
623 (blessmail): Always define this rule.
624 (need-blessmail): New rule, split out from maybe-blessmail.
625 (maybe-blessmail): Use BLESSMAIL_TARGET.
626
49628785
GM
6272010-05-04 Glenn Morris <rgm@gnu.org>
628
629 * Makefile.in: Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
630 @c_switch_system@, @c_switch_machine@.
631
7e10844c
DN
6322010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
633
634 * Makefile.in (LIBS_MACHINE): Remove all uses, unused.
635
4794a582
DN
6362010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
637
638 * Makefile.in (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Move to the
639 non-cpp section.
640
76bd8202
DN
6412010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
642
643 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE): Define using
644 autoconf, not cpp.
645 (ALL_CFLAGS): Use them as make variables.
646
53cfe624 6472010-04-07 Christoph Scholtes <cschol2112@googlemail.com>
42d3cab7
C
648
649 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis
650 for macros for nmake compatibility.
651
b372fceb
JB
6522010-04-03 Juanma Barranquero <lekktu@gmail.com>
653
654 Add stubs for Windows, required after CVE-2010-0825 change.
655 * ntlib.c (getgid, getegid, setegid): New stubs.
656 * ntlib.h (getgid, getegid, setegid): Declare them.
657
51a91f9d
CY
6582010-04-02 Dan Rosenberg <dan.j.rosenberg@gmail.com> (tiny change)
659
b166dcd8
KC
660 * movemail.c (main): Check return values of setuid.
661 Avoid possibility of symlink attack when movemail is setgid mail
51a91f9d
CY
662 (CVE-2010-0825).
663
42a2c622
DN
6642010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
665
666 Remove extern errno declarations.
667 * movemail.c:
668 * etags.c:
669 * emacsclient.c: Remove extern errno declarations.
670
5e58e3a4
GM
6712010-03-20 Glenn Morris <rgm@gnu.org>
672
673 * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
674 (LIBHESIOD, LIBRESOLV): Make previous change a bit more friendly by
675 defining these as Makefile variables.
676 (LIBS_MOVE): Add LIBS_MAIL into this.
677 (movemail${EXEEXT}): Just use LIBS_MOVE, not LIBS_MAIL as well.
678
aded53ff
GM
6792010-03-18 Glenn Morris <rgm@gnu.org>
680
681 * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
682 (HESIODLIB, LIBS_MAIL): Set using autoconf rather than cpp.
683 (BASE_CFLAGS): Remove (identical to CPP_CFLAGS).
684
f8388570
TO
6852010-03-18 Tetsurou Okazaki <okazaki@be.to> (tiny change)
686
687 * Makefile.in (uninstall): Handle the case where archlibdir does not
688 exist. (Bug#5720)
689
288f9fc0
CY
6902010-03-10 Chong Yidong <cyd@stupidchicken.com>
691
692 * Branch for 23.2.
693
f9b84f9f
CY
6942010-02-20 Kevin Ryde <user42@zip.com.au>
695
696 * etags.c (Scheme_functions): Don't loop past a null character
697 (Bug#5601).
698
c14902e0 6992010-01-29 Kester Habermann <kester@linuxtag.org> (tiny change)
9d77a91f 700
a628ad9d 701 * etags.c (Fortran_functions): Handle recursive keyword (Bug#5484).
9d77a91f 702
6589a2f9
GM
7032010-01-11 Glenn Morris <rgm@gnu.org>
704
705 * ebrowse.c (version):
706 * etags.c (print_version):
707 * rcs2log (Copyright): Set copyright year to 2010.
708
03dcfe01
CY
7092009-12-09 David Robinow <drobinow@gmail.com> (tiny change)
710
711 * makefile.w32-in: Use parenthesis for macros for nmake
712 compatibility.
713
5ce6e4f4 7142009-11-23 Tobias Ringström <tobias@ringis.se> (tiny change)
46f3381a 715
f7e0618c 716 * etags.c (absolute_filename): Use memmove if we have it for
46f3381a
JD
717 overlapping copy.
718
f6195dfb
DN
7192009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
720
721 * make-docfile.c (scan_lisp_file): Also look for `defvaralias'.
722
b53f6df2
JB
7232009-10-15 Juanma Barranquero <lekktu@gmail.com>
724
725 * .gitignore: Add echolisp.tmp.
726
9fc3db2b
GM
7272009-10-15 Glenn Morris <rgm@gnu.org>
728
5f54cae6
GM
729 * emacsclient.c (print_help_and_exit): Fix bug report instructions.
730
9fc3db2b
GM
731 * makefile.w32-in (echolisp): New rule.
732 (clean): Delete echolisp.tmp.
733
614bd9cf
EZ
7342009-09-27 Eli Zaretskii <eliz@gnu.org>
735
736 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Add term/internal.elc,
737 term/pc-win.elc, emacs-lisp/easymenu.elc, and term/ns-win.elc, to
738 be consistent with src/Makefile.in.
739
24e9e996
SM
7402009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
741
742 * update-game-score.c (main): Sort scores before trimming them,
743 reported by Jason Feng <jfeng@ozbert.com> (bug#4397).
744
c5a139ca
GM
7452009-09-09 Glenn Morris <rgm@gnu.org>
746
747 * Makefile.in ($(DESTDIR)${archlibdir}): Set umask to world-readable
748 before creating directories and game score files.
749
a8a8ec61
GM
7502009-08-19 Glenn Morris <rgm@gnu.org>
751
0916a29e 752 * cvtmail.c: Remove file.
a8a8ec61
GM
753 * Makefile.in (UTILITIES): Remove cvtmail.
754 (cvtmail${EXEEXT}): Remove.
755
678bc1f5
CY
7562009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
757
758 * b2m.c (main): Ensure that each message ends in two newlines.
759
0a3472c7
JR
7602009-07-03 Jason Rumney <jasonr@gnu.org>
761
762 * emacsclient.c (w32_set_user_model_id): Use standard types.
763
f2d6b714
EZ
7642009-07-03 Eli Zaretskii <eliz@gnu.org>
765
766 * makefile.w32-in (WINNT_SUPPORT): Add common-win.elc, like
767 src/Makefile.in did.
768
ff90fbde
JR
7692009-06-30 Jason Rumney <jasonr@gnu.org>
770
771 * emacsclient.c (w32_give_focus): Use GetModuleHandle for library
772 that is already loaded.
773 (w32_set_user_model_id): New function.
774 (main): Use it to associate emacsclient with emacs (bug#1849).
775
e0f59195
JM
7762009-06-29 Jim Meyering <meyering@redhat.com>
777
778 Remove useless if-before-free test.
779 * make-docfile.c (scan_lisp_file): Remove useless test.
780
f5f20f6c
DN
7812009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
782
783 * Makefile.in (movemail.o): Don't pass -Demacs, unused.
784
70243478
CY
7852009-06-21 Chong Yidong <cyd@stupidchicken.com>
786
787 * Branch for 23.1.
788
fa44da6e
AR
7892006-06-09 Adrian Robert <Adrian.B.Robert@gmail.com>
790
791 * mac-fix-env.m:
792 * Makefile.in (mac-fix-env): Remove.
793
a7f2b0b1
AR
7942006-06-06 David Reitter <david.reitter@gmail.com>
795
796 * Makefile.in (mac-fix-env): Compile it using ALL_CFLAGS.
797
9dfda22f
JB
7982009-04-20 Juanma Barranquero <lekktu@gmail.com>
799
800 * emacsclient.c (print_help_and_exit): Fix typo and tabify (careful
801 spacing is required in the message output, as the comment suggests).
802
24d5010d
CY
8032009-04-20 Chong Yidong <cyd@stupidchicken.com>
804
805 * emacsclient.c (print_help_and_exit): Clarify argument placement
806 for short option names.
807
6133a1a9
DN
8082009-04-02 Dan Nicolaescu <dann@ics.uci.edu>
809
810 * emacsclient.c (print_help_and_exit): Fix typo.
811
22749e9a
EZ
8122009-03-21 Eli Zaretskii <eliz@gnu.org>
813
814 * ntlib.c (setuid): Argument is now unsigned.
815 (getuid): Return value is now unsigned.
816 (getpwuid): Argument is now unsigned.
817 (fchown): UID and GID arguments are now unsigned.
818
819 * ntlib.h (fchown): UID and GID arguments are now unsigned.
820 (getuid): Return value is now unsigned.
821 (setuid): Argument is now unsigned.
822 (getpwuid): Remove prototype (it's declared in nt/inc/pwd.h).
823
b57ac69d 8242009-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
6cde1b21
JB
825
826 * emacsclient.c (main): Revert part of last change, so
827 drive-relative file names again work on Windows.
828
ba528748
SM
8292009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
830
831 * emacsclient.c (main): Always pass cwd via "-dir". Pass the file
832 names without prepending cwd to them, so Emacs uses its customary
833 rules to determine how to interpret the file name.
834
f213f2c0
GM
8352009-03-04 Glenn Morris <rgm@gnu.org>
836
837 * movemail.c (main) [MAIL_USE_POP]: Add -r to usage message.
838
8ee7d7be
CY
8392009-02-13 Sven Joachim <svenjoac@gmx.de>
840
841 * movemail.c: Include time.h unconditionally.
842 (main): Use time_t for time variables.
843
d228a23c
GM
8442009-02-11 Glenn Morris <rgm@gnu.org>
845
846 * movemail.c (mbx_delimit_begin): Also write the current time.
847
3f32be22
GM
8482009-02-10 Glenn Morris <rgm@gnu.org>
849
850 * movemail.c (mbx_delimit_begin, mbx_delimit_end): Write mbox rather
851 than Babyl format. (Bug#2196)
852
e7534fc4
AR
8532009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
854
855 * emacsclient.c (decode_options): Use a dummy display name under
856 NS/Cocoa.
857
9eb67dd9
CY
8582009-01-14 Lars Rasmusson <lars.rasmusson@gmail.com> (tiny change)
859
860 * ebrowse.c (matching_regexp): Fix OB1 error.
861
b433a991
GM
8622009-01-05 Glenn Morris <rgm@gnu.org>
863
864 * ebrowse.c (version):
865 * etags.c (print_version):
866 * rcs2log (Copyright): Update copyright for 2009.
867
81f82586
CY
8682009-01-01 Chong Yidong <cyd@stupidchicken.com>
869
870 * movemail.c (main): Fatal if hard links cannot be created.
871
fd95644b
DN
8722008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
873
874 * emacsclient.c (start_daemon_and_retry_set_socket): Improve error
875 checking.
876
67c1df01
DN
8772008-12-14 Dan Nicolaescu <dann@ics.uci.edu>
878
879 * emacsclient.c: Include syswait.h instead of sys/types.h.
880
f0131492 8812008-12-11 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
5445ab06 882
d4835507
JB
883 * emacsclient.c (WCONTINUED): New compatibility define
884 for older systems.
5445ab06 885
d50299d5
DN
8862008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
887
888 * emacsclient.c (main): Fix previous change.
889
52016647
JB
8902008-12-10 Juanma Barranquero <lekktu@gmail.com>
891
892 * emacsclient.c (main): Fix mindless breakage where emacsclient
893 does not work *at all* on Windows, even if it *can* connect.
894
802bdb3c
DN
8952008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
896
897 * emacsclient.c (EMACS_DAEMON): Remove definition.
898 (decode_options): Do not allow an empty alternate_editor on
899 WINDOWSNT.
900 (print_help_and_exit): Replace EMACS_DAEMON with WINDOWSNT.
901 (start_daemon_and_retry_set_socket): Likewise.
45ce4570 902 (main): Fail in case of not being able to connect.
802bdb3c 903
c3f995a2
JB
9042008-12-10 Juanma Barranquero <lekktu@gmail.com>
905
906 * emacsclient.c [!WINDOWSNT] (EMACS_DAEMON): New define.
907 Changes when EMACS_DAEMON is not defined:
908 (print_help_and_exit): Don't add daemon information to help.
909 (start_daemon_and_retry_set_socket): Make a no-op.
910 (main): Don't set `start_daemon_if_needed' (which is initialized to 0).
911
636b507b
DN
9122008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
913
914 * emacsclient.c (print_help_and_exit): Describe what an empty
915 string argument does for --alternate-editor.
916 (set_socket): Make it possible to not exit in case of an error.
917 (start_daemon_and_retry_set_socket): New function.
918 (main): Use it. Restore the NULL value for socket_name and
919 server_file after the set_socket call.
920
448d4085
DN
9212008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
922
7b641241 923 * emacsclient.c: Include <arpa/inet.h>.
448d4085 924
938ebc4f
DN
9252008-12-01 Dan Nicolaescu <dann@ics.uci.edu>
926
927 * make-docfile.c (scan_lisp_file): Use xmalloc instead of malloc.
928
3d864325
GM
9292008-11-22 Derek Peschel <dpeschel@eskimo.com> (tiny change)
930
931 * etags.c (add_regex): Pass correct length to re_compile_pattern.
932
48c2dc68
CY
9332008-11-02 Chong Yidong <cyd@stupidchicken.com>
934
935 * emacsclient.c (window_system): Delete redundant variable.
936 (decode_options): Don't use it.
937 (find_tty): New function.
938 (main): Use find_tty, and don't use window_system.
939
d41784ee
EZ
9402008-11-01 Eli Zaretskii <eliz@gnu.org>
941
942 * emacsclient.c (main) [WINDOWSNT]: Don't ifdef away the call to
943 `ttyname'.
944 (w32_getenv): Treat $TERM specially: if not found in the
945 environment and in the Registry, return "w32console".
946 (ttyname) [WINDOWSNT]: New function.
947
322ca650
AS
9482008-10-31 Andreas Schwab <schwab@suse.de>
949
950 * emacsclient.c (main): Don't force sending tty when in eval mode.
951
8a8a7cd3
CY
9522008-10-30 Chong Yidong <cyd@stupidchicken.com>
953
954 * emacsclient.c (main): If using the current frame, send tty
955 information to Emacs in case daemon mode needs to occupy this tty.
956
f8baa639
JB
9572008-10-29 Juanma Barranquero <lekktu@gmail.com>
958
bc558f3e
JB
959 * emacsclient.c (EXTRA_SPACE): New macro.
960 (get_server_config, set_local_socket): Use it.
961
f8baa639
JB
962 * makefile.w32-in ($(BLD)/sorted-doc.$(O)): Remove spurious backslash.
963 Reported by Guillaume Conjat <gconjat.ext@orange-ftgroup.com>.
964
f77b11a0
JB
9652008-10-29 Ulrich Mueller <ulm@gentoo.org>
966
967 * emacsclient.c (set_local_socket): Use TMPDIR (default /tmp)
968 instead of hardcoded /tmp.
969
dc1cd5f7
DN
9702008-10-13 Dan Nicolaescu <dann@ics.uci.edu>
971
972 * emacsclient.c (longopts, print_help_and_exit): Add -nw.
973 (decode_options): Use getopt_long_only.
974
7a09249b
EZ
9752008-09-30 Eli Zaretskii <eliz@gnu.org>
976
977 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove ccl.elc and
978 codepage.elc.
979
997ec957
CY
9802008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
981
982 * emacsclient.c (main): Use stdout rather than stdin to obtain the
983 terminal (bug#427).
984
0d80bf29
FP
9852008-08-25 Francesco Potortì <pot@gnu.org>
986
987 * etags.c (main): Do not use static space for the tagfile string.
988
34a23e94
FP
9892008-08-17 Francesco Potortì <pot@gnu.org>
990
991 * etags.c (main): Use canonicalize_filename on tags file name.
992 (relative_filename): Revert 3.85: do not collapse slashes here.
993 (absolute_dirname): Remove useless call to canonicalize_filename.
994 (canonicalize_filename): Collapse multiple slashes here.
995
48fad8e8
DN
9962008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
997
10d1d0af
JB
998 * Makefile.in (INSTALLABLES): Add LIB_SRC_EXTRA_INSTALLABLES.
999 Do not special case for NS_IMPL_COCOA.
48fad8e8 1000
6088b51f 10012008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
f4494e84
AR
1002
1003 * Makefile.in (CFLAGS): Drop -universal under NS_IMPL_COCOA.
1004 (.m.o): Dispense with GNUstep-specific flags.
1005
39b8bb9b
CY
10062008-08-05 Ulrich Mueller <ulm@gentoo.org>
1007
1008 * pop.c (socket_connection): Add conditionals for
1009 HAVE_KRB5_ERROR_TEXT and HAVE_KRB5_ERROR_E_TEXT to support
1010 compilation with MIT Kerberos and Heimdal, respectively.
1011
7c2fb837
DN
10122008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
1013
1014 * etags.c:
1015 * emacsclient.c: Remove VMS support.
1016
9e2a2647
DN
10172008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
1018
1019 Remove support for Mac Carbon.
1020 * makefile.w32-in:
1021 * emacsclient.c: Remove code for Carbon.
1022
7f619bab
DN
10232008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
1024
1025 * Makefile.in (mac-fix-env): Remove #ifdef around rule.
1026
32cc3925
AS
10272008-07-17 Andreas Schwab <schwab@suse.de>
1028
1029 * Makefile.in (INSTALL_SCRIPT): Remove duplicate definition.
1030 (LIB_STANDARD_LIBSRC): Don't define.
1031 (LOADLIBES): Remove LIB_STANDARD_LIBSRC.
1032
ba60bd44 10332008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
122e9f8f
AR
1034
1035 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
1036 NS_IMPL_COCOA.
1037
50863f58
DN
10382008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
1039
ba60bd44
JB
1040 * ntlib.h (fcloseall, fgetchar, flushall, fputchar, putw):
1041 Remove, unused.
50863f58 1042
ba60bd44 10432008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
edfda783
AR
1044
1045 * .cvsignore: Add mac-fix-env.
1046 * mac-fix-env.m: New file, automatically update
1047 ~/.MacOSX/environment.plist on OS X systems to expose environment
1048 variables inside Emacs started from icon.
1049 * Makefile.in: Add -universal to CFLAGS on OS X, add mac-fix-env to
1050 programs to build.
1051 * make-docfile.c: Add .m to list of file extensions.
1052
bba104c1
DN
10532008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
1054
1055 * movemail.c (main): Use int instead of WAITTYPE.
1056
da007124
JB
10572008-07-05 Juanma Barranquero <lekktu@gmail.com>
1058
1059 * makefile.w32-in (OTHER_PLATFORM_SUPPORT):
1060 Remove vmsproc.el and vms-patch.el.
1061
c9fc02c7
JB
10622008-06-26 Juanma Barranquero <lekktu@gmail.com>
1063
1064 * makefile.w32-in (obj): Remove w32bdf.o.
1065
f2a77c3a
DN
10662008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
1067
1068 * fakemail.c: Remove references to obsolete variables.
1069
c2cd06e6
JM
10702008-06-02 Jim Meyering <meyering@redhat.com>
1071
e914c409 1072 * ebrowse.c (xfree): Remove definition; s/xfree/free/.
5c19cd0b 1073
e914c409 1074 Remove useless if-before-free tests.
70fdbb46
JM
1075 * ebrowse.c (xfree): Likewise.
1076 * etags.c (process_file_name, free_tree, free_fdesc): Likewise.
c2cd06e6 1077 (popclass_above, Prolog_functions, Erlang_functions): Likewise.
70fdbb46 1078 * pop.c (pop_quit): Likewise.
c2cd06e6 1079
01b996ad
JB
10802008-05-30 Juanma Barranquero <lekktu@gmail.com>
1081
1082 * makefile.w32-in (lisp2): Add minibuffer.elc.
1083
2926947a
SM
10842008-05-29 Tom Tromey <tromey@redhat.com>
1085
1086 * etags.c (relative_filename): Treat "///" like "/" in filenames.
1087
10fea9c4
EZ
10882008-05-09 Eli Zaretskii <eliz@gnu.org>
1089
1090 * ntlib.c: Include sys/types.h, sys/stat.h, and errno.h.
1091 (IS_DIRECTORY_SEP): New macro.
1092 (convert_time, is_exec, stat): New functions.
1093
86914123
EZ
10942008-05-08 Eli Zaretskii <eliz@gnu.org>
1095
1096 * makefile.w32-in (lisp2): Rename epa-file-hook.elc to epa-hook.elc.
1097
58bb7d50
EZ
10982008-05-03 Eli Zaretskii <eliz@gnu.org>
1099
1100 * makefile.w32-in (lisp2): Add epa-file-hook.elc, to track the
1101 corresponding change in src/Makefile.in.
1102
63b9b605
GM
11032008-04-24 Adam Gołębiowski <adamg@pld-linux.org> (tiny change)
1104
1105 * Makefile.in (etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo.
1106
4429f88c
JR
11072008-04-10 Jason Rumney <jasonr@gnu.org>
1108
1109 * makefile.w32-in (CLIENTRES): New variable and target.
1110 (TRES): Remove.
1111 ($(BLD)/emacsclientw.exe): Use $(CLIENTRES) instead of $(TRES).
1112
14b11401
SM
11132008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1114
1115 * vcdiff: Use "sccs get" rather than "get"; leave PATH alone.
1116
95de358c
RF
11172008-04-18 Steve Grubb <sgrubb@redhat.com> (tiny change)
1118
1119 * vcdiff: Use mktemp (CVE-2008-1694).
1120
6948400c
JR
11212008-04-09 Jason Rumney <jasonr@gnu.org>
1122
1123 * makefile.w32-in (distclean, maintainer-clean): New targets.
1124
afd27920
GM
11252008-03-13 Glenn Morris <rgm@gnu.org>
1126
1127 * makefile.w32-in (VERSION): Set to 23.0.60.
1128
3d193d0f
JB
11292008-03-04 Juanma Barranquero <lekktu@gmail.com>
1130
1131 * .cvsignore: Add oo.
1132
1797886f
SM
11332008-02-27 Yuri Shtil <yuris@juniper.net> (tiny change)
1134
1135 * etags.c (Perl_functions): Fix call to skip_spaces.
1136
9d2818d6
DN
11372008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
1138
1139 * Makefile.in (NO_SHORTNAMES):
1140 * emacsclient.c (NO_SHORTNAMES):
1141 * fakemail.c (NO_SHORTNAMES):
1142 * make-docfile.c (NO_SHORTNAMES):
1143 * movemail.c (NO_SHORTNAMES):
1144 * pop.c (NO_SHORTNAMES): Remove references to obsolete variable.
1145
79d48c1a
JR
11462008-02-23 Jason Rumney <jasonr@gnu.org>
1147
1148 * makefile.w32-in (MOUSE_SUPPORT): Remove duplicate tooltip.elc.
1149 (MSDOS_SUPPORT, VMS_SUPPORT): Remove.
290afd83 1150 (OTHER_PLATFORM_SUPPORT): Replace above. Add X specific files too.
79d48c1a
JR
1151 (lisp2): Add new languages.
1152 ($(DOC)): Use OTHER_PLATFORM_SUPPORT.
1153
9c61c734
JB
11542008-02-22 Juanma Barranquero <lekktu@gmail.com>
1155
1156 * makefile.w32-in (lisp2): Remove devanagari.el, kannada.el,
1157 malayalam.el, and tamil.el. Add sinhala.el.
1158
50f271cb
JB
11592008-02-20 Juanma Barranquero <lekktu@gmail.com>
1160
1161 * emacsclient.c (main) [WINDOWSNT]: Understand DRIVE:NAME,
1162 where NAME is relative to DRIVE'S current directory.
1163
d07529f3
JB
11642008-02-15 Juanma Barranquero <lekktu@gmail.com>
1165
1166 * emacsclient.c (print_help_and_exit): Show -d option on Windows.
1167
45c1955d
DN
11682008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
1169
1170 * fakemail.c: Undo previous change.
1171
deeaffe1
DN
11722008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
1173
4624371d
DN
1174 * fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional.
1175 (main): Replace MAIL_PROGRAM_NAME with its value.
1176
d07529f3 1177 * Makefile.in (REGEXP_IN_LIBC): Remove reference to obsolete variable.
deeaffe1 1178
9997dc15
SM
11792008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1180
1181 * emacsclient.c (decode_options): Pass --display implicitly if -c
1182 is specified. Only set tty if -t or -c is specified.
1183
0c55bf82
JR
11842008-02-04 Jason Rumney <jasonr@gnu.org>
1185
1186 * makefile.w32-in (lisp1): Use (), not {}.
1187
31cdf671
CY
11882008-02-04 Tom Tromey <tromey@redhat.com>
1189
d07529f3
JB
1190 * etags.c: Add "GTY" as synonym for __attribute__.
1191 Update gperf output.
31cdf671 1192
9303f985 11932008-02-01 Jason Rumney <jasonr@gnu.org>
aca7a3d2 1194
c4cc8b9a 1195 * makefile.w32-in (obj): Sync with src/Makefile.in.
aca7a3d2
MB
1196 (TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
1197 (WINNT_SUPPORT): Add term/w32-win.elc.
1198 (lisp1, lisp2): Sync with lisp in src/Makefile.in.
1199
9303f985 12002008-02-01 Jason Rumney <jasonr@gnu.org>
aca7a3d2 1201
d07529f3 1202 * makefile.w32-in (obj): Add font.o and w32font.o.
aca7a3d2 1203
d07529f3 12042008-02-01 Zhang Wei <id.brep@gmail.com> (tiny change)
aca7a3d2 1205
290afd83 1206 * makefile.w32-in (lisp1): Delete ucs-tables.elc,
aca7a3d2
MB
1207 utf-8.elc, and latin-*.el.
1208
0ea5797a
SM
12092008-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
1210
bcc891c2 1211 * emacsclient.c (decode_options): Default to NULL display, as Emacs-22.
0ea5797a
SM
1212 Allow the -d option under w32 again, for those rare cases where it
1213 actually does make sense.
1214
5ab73228
JB
12152008-01-25 Juanma Barranquero <lekktu@gmail.com>
1216
1217 * emacsclient.c (set_tcp_socket): Don't send "\n" after
1218 the authentication string; there's no need to haste.
1219
702123a8
CY
12202008-01-22 Chong Yidong <cyd@stupidchicken.com>
1221
1222 * pop.c (pop_stat, pop_last): Fix last fix.
1223
76ed5e01
DN
12242008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
1225
1226 * movemail.c: Remove references to XENIX.
1227
e39a993c
DN
12282008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
1229
1230 * movemail.c:
1231 * make-docfile.c: Remove reference to symbols defined by systems
1232 not supported anymore: MAC_OS8, XENIX and STRIDE.
1233
0ebec7d3
EZ
12342008-01-12 Eli Zaretskii <eliz@gnu.org>
1235
1236 * emacsclient.c (decode_options) [WINDOWSNT]: Don't use the value
1237 of DISPLAY in the environment. Don't support -d.
1238 (print_help_and_exit) [WINDOWSNT]: Don't show the --display option.
1239 (longopts) [WINDOWSNT]: Remove --display.
1240
6eae3ad4
CY
12412008-01-10 Chong Yidong <cyd@stupidchicken.com>
1242
1243 * pop.c (pop_stat, pop_last): Check validity of string-to-integer
1244 conversion. Mistakes spotted by Nico Golde.
1245
78da39c6
GM
12462008-01-09 Glenn Morris <rgm@gnu.org>
1247
1248 * emacsclient.c: Add missing final newlines to message calls.
1249
34a14ec9 12502008-01-09 Daniel Hackney <dan@haxney.org> (tiny change)
78da39c6
GM
1251
1252 * emacsclient.c (set_socket): Add final newline to socket error message.
1253
a408ea17
GM
12542008-01-04 Glenn Morris <rgm@gnu.org>
1255
07655e62
JB
1256 * ebrowse.c (version) <emacs_copyright>: New variable.
1257 Just use current year for copyright.
a408ea17
GM
1258
1259 * etags.c (print_version):
1260 * rcs2log (Copyright): Update to 2008.
1261
0dc7a8bc
JR
12622007-11-28 Jason Rumney <jasonr@gnu.org>
1263
1264 * makefile.w32-in (VMS_SUPPORT): No longer byte-compiled.
1265
880820fe 12662007-11-27 Jan Djärv <jan.h.d@swipnet.se>
7291159e
JD
1267
1268 * pop.c (socket_connection): Remove AI_ADDRCONFIG.
1269
880820fe 12702007-11-19 Jan Djärv <jan.h.d@swipnet.se>
ee15f312
JD
1271
1272 * pop.c (socket_connection): Move realhost out of #ifdefs.
1273 Set realhost both for HAVE_GETADDRINFO and !HAVE_GETADDRINFO.
1274
880820fe 12752007-11-18 Jan Djärv <jan.h.d@swipnet.se>
33a2a872
JD
1276
1277 * pop.c (socket_connection): Use getaddrinfo if available.
1278
880820fe 12792007-11-22 Francesco Potortì <pot@gnu.org>
63f018cd 1280
65841dd8 1281 * etags.c (default_C_help) [CTAGS]: Differentiate the help string,
63f018cd 1282 as the defaults in ctags are different from etags.
63f018cd 1283
880820fe 12842007-11-15 Francesco Potortì <pot@gnu.org>
21e14641
FP
1285
1286 * etags.c: Make prototypes for extern definitions, and add all
1287 that are needed to quench warnings on 64-bit.
1288 (main): Use the same defaults for ctags as for etags: find
1289 typedefs, structure tags, macro constants, enum constants, struct
1290 members and global variables.
1291 (make_C_tag) [DEBUG]: Add debugging printout.
1292 (C_entries): In case '}' decrement bracelev before testing it.
1293
7455effc
FP
12942007-11-15 Masatake YAMATO <jet@gyve.org>
1295
1296 * etags.c (C_entries): In case '}', set fvdef to fvnone
1297 unconditioned to (!ignoreindent && lp == newlb.buffer + 1).
1298
04a697fe
DN
12992007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
1300
1301 * makefile.w32-in (obj): Remove sunfns.o.
1302
a2666217
JB
13032007-10-28 Juanma Barranquero <lekktu@gmail.com>
1304
1305 * makefile.w32-in (obj): Remove abbrev.o.
1306
7ce8671d
JB
13072007-10-26 Juanma Barranquero <lekktu@gmail.com>
1308
1309 * emacsclient.c: Add a wrapper for getenv so it also checks the
1310 registry on Windows. Suggestion and algorithm by Eli Zaretskii.
1311 Code partially based on w32_get_resource and init_environment (w32.c).
1312 (egetenv): New wrapper for getenv.
1313 (get_current_dir_name, decode_options, get_server_config)
1314 (set_local_socket, set_socket, main): Use egetenv, not getenv.
1315 (w32_get_resource, w32_getenv) [WINDOWSNT]: New functions.
1316
d22b00e5
JR
13172007-10-25 Jason Rumney <jasonr@gnu.org>
1318
1319 * emacsclient.c (sock_err_message): New function.
1320 (set_tcp_socket): Use it.
1321
c4b858e3
JB
13222007-10-09 Juanma Barranquero <lekktu@gmail.com>
1323
1324 * emacsclient.c (print_help_and_exit): Fix space to improve
1325 alignment in output messages.
1326
dbf60b07
JR
13272007-09-27 Jason Rumney <jasonr@gnu.org>
1328
1329 * makefile.w32-in (emacsclient, emacsclientw): Link to COMCTL32.
1330
1331 * emacsclient.c (w32_window_app): Init common controls when windowed.
1332
165e85b2
GM
13332007-09-21 Glenn Morris <rgm@gnu.org>
1334
1335 * emacstool.c: Remove file.
1336 * Makefile.in (emacstool, nemacstool, xvetool, xveterm):
1337 Delete targets built from emacstool.
1338
c1b8e896
SM
13392007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
1340
1341 * emacsclient.c (decode_options): -t implies -c.
1342
cb06b8dc
SM
13432007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1344
1345 * emacsclient.c (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP)
1346 (IS_ANY_SEP): Only define if !defined(HAVE_GET_CURRENT_DIR_NAME).
1347 (main_argc): Remove.
1348 (strprefix): Use strncmp.
1349
c801ad51
JR
13502007-09-20 Jason Rumney <jasonr@gnu.org>
1351
1352 * emacsclient.c (main) [SIGSTOP]: Change conditional from WINDOWSNT.
1353
31fa6595
SM
13542007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1355
1356 * emacsclient.c (current_frame): Change the default.
1357 (longopts): Replace --current-frame by --create-frame.
1358 (decode_options): Reverse the meaning of -c.
1359 (print_help_and_exit): Update help text accordingly.
1360 (main): Remove the -version and -good-version messages.
1361
58573230
GM
13622007-09-12 Glenn Morris <rgm@gnu.org>
1363
1364 * Makefile.in (SOURCES, unlock, relock): Delete.
1365
bfd9ce71
GM
13662007-08-29 Glenn Morris <rgm@gnu.org>
1367
1368 * makefile.w32-in (VERSION): Increase to 23.0.50.
1369
8d9cc0b7
MB
13702007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
1371
1372 * emacsclient.c (w32_execvp): Move definition before use.
1373 (decode_options): Don't use a tty on mac carbon or windows.
1374
13752007-08-29 Jason Rumney <jasonr@gnu.org>
1376
31fa6595 1377 * emacsclient.c (SEND_STRING, SEND_QUOTED): Remove obfuscation macros.
8d9cc0b7
MB
1378 (quote_argument, set_tcp_socket, handle_sigcont, handle_sigtstp):
1379 (main): Expand removed macros inline.
1380 (main) [WINDOWSNT]: Don't call ttyname. Don't recognize -suspend
1381 option.
1382 (main) [NO_SOCKETS_IN_FILE_SYSTEM]: Don't call init_signals.
1383
880820fe 13842007-08-29 Károly Lőrentey <lorentey@elte.hu>
8d9cc0b7
MB
1385
1386 * emacsclient.c (signal.h): New include.
1387 (sys/stat.h, errno.h): Always include, even on WINDOWSNT.
31fa6595
SM
1388 (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
1389 Copy definitions here from src/lisp.h.
1390 (main_argc, main_argv, current_frame, window_system, tty): New vars.
8d9cc0b7
MB
1391 (longopts): Add tty, current-frame.
1392 (xmalloc, xstrdup): New functions.
1393 (get_current_dir_name): New function, copied from src/sysdep.c.
1394 (decode_options): Set display from environment. Add tty and
1395 current_frame options. Make --no-wait imply --current-frame,
1396 except when it is the only option given. Make sure no frame is
1397 opened when --current-frame is set.
1398 (print_help_and_exit): Document tty and current-frame options.
1399 (fail): Change arguments to void.
1400 (main): When sockets are not defined, set main_argc, main_argv,
1401 and call fail() with no arguments.
1402 (emacs_socket): New variable (moved out from main `s').
1403 (quote_file_name): Rename to quote_argument.
1404 (quote_argument): New name for old quote_file_name.
1405 (unquote_argument, strprefix, pass_signal_to_emacs)
1406 (handle_sigcont, handle_sigtstp, init_signals): New functions.
1407 (set_local_socket): Initialize saved_errno to 0. If socket-name
1408 is too long, call `fail' rather than `exit'.
1409 (main): Doc update. Set main_argc, main_argv. New var `str'.
1410 Don't need a filename or argument if tty or window_system set.
1411 Call fail with no arguments. Use get_current_dir_name to send
1412 over the current directory. Send version number to Emacs for
1413 verification. If tty is set, check TERM, and pass name and type
1414 to Emacs. Pass window_system to Emacs. Move sending of eval to
1415 optind loop. Send -position, -file to Emacs. Call fsync after
31fa6595
SM
1416 fflush. Check for a client/server version match.
1417 Handle -emacs-pid, -window-system-unsupported, -print, -error, and
1418 -suspend commands. Don't exit prematurely on --no-wait, let Emacs
1419 close the connection for us. When creating a new frame, send
8d9cc0b7
MB
1420 environment and pwd to Emacs. Send current-frame to Emacs.
1421
ca4ea90f
EZ
14222007-08-25 Eli Zaretskii <eliz@gnu.org>
1423
1424 * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
1425 Prepend "-" to the command, in case srcdir=. and file is copied
1426 into itself.
1427
cacc7b51
GM
14282007-07-25 Glenn Morris <rgm@gnu.org>
1429
1430 * Relicense all FSF files to GPLv3 or later.
1431
1432 * COPYING: Switch to GPLv3.
1433
880820fe 14342007-07-17 Francesco Potortì <pot@gnu.org>
180f5b99
FP
1435
1436 * etags.c (C_entries): Reset the fvdef machine when out of function.
21b2cdc7
FP
1437 (PRINT_UNDOCUMENTED_OPTIONS_HELP): #define as FALSE if undefined.
1438 (print_help): Use it in if() rather than #if.
1439 (print_help): Conditionally print help about --no-line-directive.
180f5b99 1440
9724908a
EZ
14412007-07-16 Eli Zaretskii <eliz@gnu.org>
1442
1443 * makefile.w32-in (clean): Don't delete *~.
1444
5cf9ca93
GM
14452007-06-07 Glenn Morris <rgm@gnu.org>
1446
1447 * etags.c (print_version): Add `emacs_copyright' string, for
1448 easier automatic updating.
1449
880820fe 14502007-05-18 Francesco Potortì <pot@gnu.org>
cabfc1bc
FP
1451
1452 * etags.c: Extern definitions of some more pointer functions for
1453 standalone compilation, especially important for 64bit platforms.
1454 (main, print_help): --members is now the default for etags.
1455 (C_entries): Parse start of C comment as a space == end of token.
1456 This is not necessary for C++ comment, already parsed as newline.
1457
07016031
GM
14582007-04-26 Glenn Morris <rgm@gnu.org>
1459
1460 * makefile.w32-in (VERSION): Increase to 22.1.50.
1461
7dfc4cda
CY
14622007-06-02 Chong Yidong <cyd@stupidchicken.com>
1463
1464 * Version 22.1 released.
1465
880820fe 14662007-02-26 Francesco Potortì <pot@gnu.org>
11d2d983 1467
d620ddb3 1468 * Makefile.in (etags, ctags): Define EMACS_NAME as "GNU Emacs".
11d2d983 1469
0971f887
GM
14702007-02-20 Ulrich Mueller <ulm@kph.uni-mainz.de> (tiny change)
1471
1472 * Makefile.in (EMACS, EMACSOPT): New variables.
1473 (blessmail): Use `--no-site-file' when compiling.
1474
880820fe 14752007-02-05 Francesco Potortì <pot@gnu.org>
933ccc8c
FP
1476
1477 * etags.c (default_C_help, Cplusplus_help, PHP_help, print_help)
1478 (main): Now --members is the default for etags, not for ctags yet.
1479
d881944f 14802007-02-04 Per Cederqvist <ceder@ingate.com> (tiny change)
953dea63 1481
47dad44f 1482 * etags.c (gperf, in_word_set): Change attribute for Java to
953dea63
FP
1483 (C_JAVA & ~C_PLPL). The previous change introduced 2004-09-13 was
1484 broken, as (C_JAVA & !C_PLPL) always evaluates to 0. This caused
1485 import, package, extends, implements and interface to be treated
1486 specially for all kinds of C-style files, not just Java files.
1487
880820fe 14882007-01-02 Francesco Potortì <pot@gnu.org>
ed8bbc0e 1489
47dad44f 1490 * etags.c (longopts): New undocumented option --no-duplicates.
ed8bbc0e
FP
1491 (no_duplicates): Static variables for the above option.
1492 (print_help): Do not print help for --no-warn, now undocumented.
1493 (add_node): Allow duplicate tags in ctags mode unless --no-duplicates.
56c0d866 1494 (main): Pass the -u option to sort in ctags mode.
ed8bbc0e 1495
880820fe 14962006-12-28 Francesco Potortì <pot@gnu.org>
18f9bf25
FP
1497
1498 * etags.c (readline): When creating a relative file name from a
1499 #line directive, leave the file name alone. The previous
a7c29764 1500 behavior was to make it relative to the tags file directory,
18f9bf25
FP
1501 under the hypothesis that the #line directive file name was
1502 relative to the directory of the tagged file. That hypothesis is
1503 wrong with Cpp and Lex.
17d5f8a6 1504 (Makefile_targets): Do not include spaces in tag names.
18f9bf25 1505
5e059fc1
EZ
15062006-12-22 Eli Zaretskii <eliz@gnu.org>
1507
1508 * makefile.w32-in (make-docfile, ctags, etags, ebrowse, hexl)
1509 (movemail, fakemail, sorted-doc, digest-doc, emacsclient)
47dad44f 1510 (test-distrib, $(DOC), all): Depend on stamp_BLD instead of $(BLD).
5e059fc1
EZ
1511 ($(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O))
1512 ($(BLD)/sorted-doc.$(O) $(BLD)/digest-doc.$(O))
1513 ($(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS))
1514 ($(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O))
1515 ($(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O)): Depend on stamp_BLD.
6808dce1 1516 (clean): Delete stamp_BLD.
5e059fc1 1517
880820fe 15182006-12-20 Francesco Potortì <pot@gnu.org>
bd3b41c6
FP
1519
1520 * etags.c (C_entries): DEFUN names were longer by one: corrected.
1521
0e0dced5
JB
15222006-12-18 Juanma Barranquero <lekktu@gmail.com>
1523
1524 * emacsclient.c [WINDOWSNT] (set_fg, get_wc): New variables.
1525 [WINDOWSNT] (w32_find_emacs_process, w32_give_focus): New functions.
1526 (main) [WINDOWSNT]: Remove code to release the focus; call
1527 w32_give_focus instead.
1528
4472aef4
JB
15292006-12-15 Juanma Barranquero <lekktu@gmail.com>
1530
1531 * emacsclient.c (w32_execvp): New function; wrapper for `execvp'.
1532 (execvp) [WINDOWSNT]: Redefine to `w32_execvp'.
1533 (fail): Remove Windows-specific fix (subsumed into w32_execvp).
1534 Suggestions and comment by Eli Zaretskii.
1535
12f7728e 15362006-12-06 Christoph Conrad <christoph.conrad@gmx.de>
c388769e
JB
1537
1538 * makefile.w32-in ($(BLD)/emacsclient.exe, $(BLD)/emacsclientw.exe):
1539 Use $(USER32) for compatibility with Visual Studio .NET 2003.
1540
310afa17
JB
15412006-11-30 Juanma Barranquero <lekktu@gmail.com>
1542
1543 * emacsclient.c (emacs_pid): New variable.
1544 (message): Remove leftover code.
1545 (get_server_config): Set emacs_pid. Don't allow Emacs to grab the
1546 focus yet; emacsclient can still display an informational message
1547 before sending requests to Emacs.
1548 (main): Allow Emacs to grab the focus. Simplify message() call.
1549
15502006-11-30 Michael Mauger <mmaug@yahoo.com>
1551
1552 * emacsclient.c (message): Make sure the message is properly
1553 written even if it contains printf escapes, and flush the result.
1554 (set_tcp_socket): Make the message for non-local connections
1555 informational rather than an error.
1556
8c57275b 15572006-11-28 Kevin Ryde <user42@zip.com.au>
9b492fad
FP
1558
1559 * etags.c (readline): Check for double quote after #line.
1560
880820fe 15612006-11-28 Jan Djärv <jan.h.d@swipnet.se>
9b492fad
FP
1562
1563 * etags.c (readline): sscanf could in principle return 2.
1564
880820fe 15652006-11-28 Francesco Potortì <pot@gnu.org>
9b492fad
FP
1566
1567 * etags.c (readline): lno is unsigned.
1568 (TeX_commands): Use p++ (rather than *p++) to increment p.
1569 (Lua_functions): Explicitly discard LOOKING_AT's return value.
1570
4d91c8f9
JB
15712006-11-27 Juanma Barranquero <lekktu@gmail.com>
1572
1573 * makefile.w32-in (TRES): New macro (copied from nt/makefile.w32-in).
1574 ($(TRES)): New rule (copied from nt/makefile.w32-in).
1575 ($(BLD)/emacsclientw.exe): Add dependency.
1576
340d34a5
EZ
15772006-11-27 Eli Zaretskii <eliz@gnu.org>
1578
d620ddb3 1579 * makefile.w32-in ($(BLD)/emacsclient.$(O)): Depend on makefile.w32-in.
340d34a5 1580
7dce1990
JB
15812006-11-25 Juanma Barranquero <lekktu@gmail.com>
1582
1583 * makefile.w32-in (VERSION): New macro.
1584 (ECLIENT_CFLAGS): Add -DVERSION.
1585
410797a5 15862006-11-25 Jason Rumney <jasonr@gnu.org>
402767e4
JR
1587
1588 * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Use isalpha().
1589
410797a5 15902006-11-24 Michael Mauger <mmaug@yahoo.com>
cb0297bb 1591
4472aef4
JB
1592 * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Support absolute
1593 file names with forward slashes.
cb0297bb 1594
30aa95ce
JB
15952006-11-23 Juanma Barranquero <lekktu@gmail.com>
1596
1597 * emacsclient.c (print_help_and_exit): Tweak message contents and
1598 tabs/spaces to improve alignment in message boxes.
1599
42073bfb
JB
16002006-11-22 Lennart Borgman <lennart.borgman.073@student.lu.se>
1601
1602 * emacsclient.c: Include <stdarg.h>.
1603 [WINDOWSNT]: Include <windows.h>.
1604 (w32_check_console_app): New function.
1605 (message): New function.
1606 (decode_options, print_help_and_exit, fail, main)
1607 (initialize_sockets, get_server_config, set_tcp_socket)
1608 (set_local_socket, set_socket): Use message().
1609
32dd9283 16102006-11-13 Jason Rumney <jasonr@gnu.org>
1ac3c910 1611
32dd9283
JR
1612 * emacsclient.c [WINDOWSNT]: Let config.h define HAVE_SOCKETS and
1613 HAVE_INET_SOCKETS.
1614
1bbea9fc
JB
16152006-11-13 Juanma Barranquero <lekktu@gmail.com>
1616
1617 * makefile.w32-in (emacsclient): Depend also on emacsclientw.exe.
1618 ($(BLD)/emacsclientw.exe): New target.
1619 (install): Install emacsclientw.exe.
1620 ($(BLD)/cvtmail.$(O), $(BLD)/emacstool.$(O)): Remove obsolete targets.
1621 (ECLIENT_CFLAGS): Remove redundant flags.
1622
1623 * emacsclient.c [WINDOWSNT]: Undef _WINSOCKAPI_ and _WINSOCK_H.
1624
a48db427
JR
16252006-11-13 Jason Rumney <jasonr@gnu.org>
1626
1627 * makefile.w32-in ($(BLD)/emacsclient.$(O)): Use CFLAGS.
1628
21f89bb7 16292006-11-10 David Reitter <david.reitter@gmail.com>
ed4a3730
JB
1630
1631 * emacsclient.c [!WINDOWSNT]: Include <sys/types.h>.
1632
d5abc12c
JB
16332006-11-08 Juanma Barranquero <lekktu@gmail.com>
1634
ed4a3730
JB
1635 * emacsclient.c (get_server_config) [WINDOWSNT]: Declare set_fg as
1636 FARPROC to avoid a compiler warning.
d5abc12c 1637
18b8c421
JB
16382006-11-07 Juanma Barranquero <lekktu@gmail.com>
1639
88b46d84
JB
1640 * emacsclient.c (get_server_config) [WINDOWSNT]: Look for the server
1641 file on APPDATA if it doesn't exist on HOME, even if HOME is defined.
1642
18b8c421
JB
1643 * emacsclient.c (get_server_config): Extract also the Emacs pid
1644 from the server file. On Windows, try to force the Emacs frame to
1645 the foreground.
1646
b03d27bd
JB
16472006-11-06 Juanma Barranquero <lekktu@gmail.com>
1648
21f89bb7 1649 * emacsclient.c (longopts) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't show
b03d27bd
JB
1650 option --socket-name.
1651 (decode_options): Don't get EMACS_SERVER_FILE here, it could override
1652 command line options.
21f89bb7 1653 (decode_options) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't parse "-s" option.
b03d27bd
JB
1654 (fail): Don't check for missing arguments, it is now done in set_socket.
1655 (file_name_absolute_p): New function (loosely based on the one in
1656 fileio.c).
1657 (initialize_sockets): Don't check for duplicate loading of Winsock.
1658 (get_server_config): Only try relative paths in the default
1659 directory locations.
1660 (set_tcp_socket): Don't call INITIALIZE(). Warn when connecting to
1661 a remote server.
1662 (set_socket): Call INITIALIZE(). Search explicit command-line
1663 arguments, then environment variable EMACS_SERVER_FILE, then implicit
1664 socket paths, before trying the alternate editor.
1665 (main): Use file_name_absolute_p.
1666
b20d6154
EZ
16672006-11-04 Eli Zaretskii <eliz@gnu.org>
1668
1669 * makefile.w32-in (../src/$(BLD)/temacs.exe): Create as temporary
1670 file if it doesn't already exist.
1671
9c92edca
JB
16722006-11-03 Juanma Barranquero <lekktu@gmail.com>
1673
1674 * emacsclient.c (initialize_sockets): Don't initialize Winsock
1675 more than once.
1676
b6ce9c46
JB
16772006-11-03 Mark Davies <mark@mcs.vuw.ac.nz>
1678
1679 * Makefile.in (INSTALL_SCRIPT): New macro.
1680 ($(DESTDIR)${archlibdir}, install): Use it, instead of INSTALL_PROGRAM.
1681
4418616b
JB
16822006-11-02 Juanma Barranquero <lekktu@gmail.com>
1683
1684 * grep-changelog: When called with no arguments (not even a
1685 filter), show help instead of blindingly dumping every single
1686 ChangeLog available. Doc fix. Update version.
1687
1e7823d0
JB
16882006-11-02 Tim Van Holder <tim.vanholder@gmail.com> (tiny change)
1689
1690 * emacsclient.c [WINDOWSNT]: Define HAVE_INET_SOCKETS.
1691 [!WINDOWSNT]: Include <netinet/in.h> if available.
1692 [HAVE_SOCKETS]: Also require HAVE_INET_SOCKETS.
1693 (IOCTL, IOCTL_BOOL_ARG): Remove.
1694 (set_tcp_socket): Don't set the socket in blocking mode.
1695 Remove c_arg.
1696
ebc20ca0
JB
16972006-11-01 Juanma Barranquero <lekktu@gmail.com>
1698
1699 * emacsclient.c (fail) [WINDOWSNT]: Force the first argv passed to
1700 execvp to point to alternate_editor (otherwise .BAT scripts can't run).
1701
880820fe 17022006-10-31 Óscar Fuentes <ofv@wanadoo.es> (tiny change)
411b80a5
JB
1703
1704 * emacsclient.c [WINDOWSNT]: Include <malloc.h> and <stdlib.h>.
1705 (close_winsock): Declare as __cdecl.
1706
880820fe 17072006-10-31 Jan Djärv <jan.h.d@swipnet.se>
95d0feaa
JB
1708
1709 * emacsclient.c [!WINDOWSNT]: Include <fcntl.h> if available.
1710 (set_tcp_socket): Prefer O_NONBLOCK, then O_NDELAY, then FIONBIO
1711 to set the socket in non-blocking mode.
1712
e35fc962
JB
17132006-10-31 Tim Van Holder <tim.vanholder@gmail.com> (tiny change)
1714
d4fa60c8 1715 * emacsclient.c [!WINDOWSNT]: Include <netinet/in.h> and <sys/ioctl.h>.
e35fc962
JB
1716 (INVALID_SOCKET): Define.
1717 (initialize_sockets): Put #endif at the right place.
1718 (set_local_socket): Use progname, not argv[0].
1719
ecc54057
JB
17202006-10-31 Juanma Barranquero <lekktu@gmail.com>
1721
1722 * makefile.w32-in (ALL): Add emacsclient.
1723 (ECLIENT_CFLAGS, ECLIENTOBJS): New macros.
1724 (emacsclient, $(BLD)/emacsclient.exe): New targets.
1725 (install): Install emacsclient.
1726
1727 * emacsclient.c: Add support for TCP sockets.
1728 (SEND_STRING, SEND_QUOTED, HSOCKET, CLOSE_SOCKET, IOCTL)
1729 (INITIALIZE): New macros.
1730 (IOCTL_BOOL_ARG): New typedef.
1731 (server_file): New global variable.
1732 (longopts): New option --server-file.
1733 (decode_options): Process new option --server-file and environment
1734 variable EMACS_SERVER_FILE.
1735 (print_help_and_exit): Document new option.
1736 (fail): If no connection available and no alternate editor,
1737 suggest using options to make them explicit.
1738 (AUTH_KEY_LENGTH, SEND_BUFFER_SIZE): New constants.
1739 (send_buffer, sblen): New variables.
31fa6595 1740 (send_to_emacs): New function to buffer output and send it with `send'.
ecc54057
JB
1741 (quote_file_name): Use SEND_STRING.
1742 (close_winsock, initialize_sockets): New functions to load and
1743 unload Winsock.
1744 (get_server_config, set_tcp_socket): New functions to create and
1745 set up TCP sockets.
1746 (set_local_socket): New function to create and set up Unix
1747 socket (code moved from previous implementation).
10d1d0af 1748 (set_socket): New function to choose between TCP and Unix sockets.
ecc54057
JB
1749 (main): Use SEND_STRING and SEND_QUOTED. Most code moved to
1750 set_local_socket. Use set_socket. Get answers from server.el with
1751 recv(), not file stream functions.
1752
70846e2a
EZ
17532006-10-09 Eli Zaretskii <eliz@gnu.org>
1754
1755 * makefile.w32-in (../src/config.h): Fix error message.
1756
e2247cd0
EZ
17572006-09-30 Eli Zaretskii <eliz@gnu.org>
1758
1759 * .cvsignore: Add blessmail.
1760
45a2056c
JB
17612006-09-15 Jay Belanger <belanger@truman.edu>
1762
1763 * COPYING: Replace "Library Public License" by "Lesser Public
1764 License" throughout.
1765
880820fe 17662006-08-09 Jan Djärv <jan.h.d@swipnet.se>
1f4edc37 1767
ecc54057 1768 * etags.c (readline): Expect sscanf returns >= 1.
ea90c5d3 1769 (readline): Change position on %n and \" in sscanf.
1f4edc37 1770
1520a816
JD
17712006-08-07 Masatake YAMATO <jet@gyve.org>
1772
ecc54057
JB
1773 * etags.c (readline): Expect sscanf returns 2, not 1.
1774
867cc23e
JD
17752006-08-07 Masatake YAMATO <jet@gyve.org>
1776
9984b9d5 1777 * etags.c (TEX_mode): Check getc returns EOF.
867cc23e
JD
1778 File ended without newline causes infinite loop.
1779
6088b51f 17802006-07-30 Adrian Aichner <adrian@xemacs.org> (tiny change)
fc185ae6 1781
ecc54057 1782 * etags.c: It's XEmacs, not Xemacs: change all the occurrences.
fc185ae6 1783
880820fe 17842006-07-30 Francesco Potortì <pot@gnu.org>
fc185ae6
FP
1785
1786 * etags.c [ETAGS_REGEXPS]: Now is unconditionally defined.
1787 [LONG_OPTIONS]: Changed to NO_LONG_OPTIONS, which is undefined.
1788 (Objc_suffixes): Suggest using --lang=c for full help.
1789 (C_entries): Initialise savetoken to 0 to shut up the compiler.
1790
116e754b
AS
17912006-07-20 Andreas Schwab <schwab@suse.de>
1792
1793 * fakemail.c (fatal): Drop second parameter and treat first
1794 parameter as a plain string. Callers changed.
1795
2381d38d
DN
17962006-07-18 Dan Nicolaescu <dann@ics.uci.edu>
1797
1798 * ebrowse.c (usage, version): Mark as NO_RETURN.
1799
1800 * emacsclient.c (print_help_and_exit): Likewise.
1801
880820fe 18022006-07-10 Francesco Potortì <pot@gnu.org>
327891eb
FP
1803
1804 * etags.c (absolute_filename): Free unused space (cosmetic change).
1805 (in_word_set): In C, also tag #undef symbols.
1806
7cb93181
EZ
18072006-06-09 Eli Zaretskii <eliz@gnu.org>
1808
1809 * yow.c: Remove file.
1810
1811 * makefile.w32-in ($(BLD)/yow.$(O)): Remove target.
1812
1813 * Makefile.in (UTILITIES): Remove yow${EXEEXT}.
1814 yow${EXEEXT}: Remove target.
1815
0f29c66d
MY
18162006-06-04 Masatake YAMATO <jet@gyve.org>
1817
63fbb644 1818 * ebrowse.c (main): Exit with EXIT_FAILURE if BROWSE file
0f29c66d
MY
1819 doesn't exist, is not seekable, not is failed in ftall.
1820
a941b26b
EZ
18212006-06-03 Eli Zaretskii <eliz@gnu.org>
1822
9781fb53
EZ
1823 * makefile.w32-in (ALL): Add sorted-doc and digest-doc.
1824 ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe)
1825 ($(BLD)/test-distrib.exe): New targets.
1826 (sorted-doc, digest-doc, test-distrib): New targets.
1827 (install): Install sorted-doc.exe and digest-doc.exe.
1828 ($(BLD)/sorted-doc.$(O)): Update dependencies.
1829
1b178b99
EZ
1830 * digest-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
1831 (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
1832 terminal device.
1833
ae85efdb
EZ
1834 * sorted-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
1835 [WINDOWSNT] <top level>: Don't redeclare malloc.
1836 (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
1837 terminal device.
6088b51f 1838 (main): Initialize bp, to avoid compiler warnings.
ae85efdb 1839
a941b26b
EZ
1840 * makefile.w32-in: Delete traces of leditcfns.c.
1841
1842 * leditcfns.c: Remove file.
1843
880820fe 18442006-05-23 Francesco Potortì <pot@gnu.org>
8a6d5da7 1845
31fa6595
SM
1846 * pop.c (pop_open, socket_connection, KPOP_SERVICE):
1847 Add comments explaining why the "kpop" service is never used.
8a6d5da7 1848
642c61f3
EZ
18492006-05-13 Eli Zaretskii <eliz@gnu.org>
1850
1851 * makefile.w32-in (lisp1): Add fringe.elc.
1852
880820fe 18532006-05-02 Francesco Potortì <pot@gnu.org>
7e237d24
FP
1854
1855 * etags.c (Perl_functions): Free space allocated for var package.
1856 (Erlang_functions): Possibly free space allocated for var last.
1857 (Prolog_functions): Possibly free space allocated for var last.
1858
7c47913b
DN
18592006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
1860
7fe8b491
DN
1861 * sorted-doc.c (main): Initialize docs to NULL.
1862
cdeda579
DN
1863 * yow.c (yow): Free buf.
1864
7c47913b
DN
1865 * etags.c: Delete c-indentation-style local variable.
1866
2ef88a94
RS
18672006-04-29 Richard Stallman <rms@gnu.org>
1868
5e5b35c7
RS
1869 * movemail.c (main): Check for negative value from `read'.
1870
2ef88a94
RS
1871 * fakemail.c (read_header): Give fatal error if input has no header.
1872
d65b4235
PE
18732006-04-02 Paul Eggert <eggert@cs.ucla.edu>
1874
1875 * b2m.c (main): Don't include <limits.h>.
1876 (TM_YEAR_BASE): New macro.
1877 (TM_YEAR_IN_ASCTIME_RANGE): Don't define if already defined, so
1878 that s/ files can override this. Use the more-conservative range
1879 1000-9999.
1880 (main): Check for asctime returning NULL.
1881 * fakemail.c: Likewise.
1882
f5565804
PE
18832006-03-27 Paul Eggert <eggert@cs.ucla.edu>
1884
1885 * b2m.c: Include <limits.h>.
1886 (TM_YEAR_IN_ASCTIME_RANGE): New macro.
1887 (main): Check for out-of-range time stamps.
1888 * fakemail.c: Likewise.
1889
90c9c343
AS
18902006-03-18 Andre Spiegel <spiegel@gnu.org>
1891
1892 * vcdiff: Use "echo" as a default for $echo, otherwise we'll
1893 execute $DIFF twice, and once with the wrong options.
1894
a6a2b5d4
EZ
18952006-02-23 Claudio Fontana <claudio@gnu.org>
1896
9e2bcc86
EZ
1897 * Makefile.in (install, uninstall): Add DESTDIR variable to
1898 support staged installations.
a6a2b5d4 1899
ef3f69f9
EZ
19002005-12-30 Eli Zaretskii <eliz@gnu.org>
1901
1902 * makefile.w32-in (MOUSE_SUPPORT): Add tooltip.elc.
fc8dc7cf
EZ
1903 (lisp1): Add rfn-eshadow.elc, international/utf-16.elc, image.elc,
1904 international/fontset.elc, dnd.elc, mwheel.elc, and tool-bar.elc.
1905 Rearrange the list to be similar to $(shortlisp) in
1906 src/Makefile.in.
ef3f69f9
EZ
1907 (lisp2): Add language/kannada.el, emacs-lisp/syntax.elc,
1908 emacs-lisp/timer.elc, jka-cmpr-hook.elc, font-lock.elc,
1909 jit-lock.elc. Rearrange the list to be similar to $(shortlisp) in
1910 src/Makefile.in.
1911
30cfcf7f
RS
19122005-12-22 Richard M. Stallman <rms@gnu.org>
1913
1914 * Makefile.in (update-game-score.o): Delete spurious final `\'.
1915
ecc54057 19162005-11-18 Hideki IWAMOTO <h-iwamoto@kit.hi-ho.ne.jp> (tiny change)
2e0bea68
FP
1917
1918 * etags.c (main): Cxref mode writes to stdout: do not close tagf,
1919 which was never opened.
1920
283879ef 19212005-10-20 Olli Savia <ops@iki.fi> (tiny change)
ce0ae3a9
EZ
1922
1923 * etags.c: Undef STDIN if defined. (LynxOS defines it in system
1924 header files.)
1925
880820fe 19262005-09-27 Francesco Potortì <pot@gnu.org>
55102b5d
FP
1927
1928 * etags.c: Preliminary Forth support.
1929 (prolog_pr): Cast strlen to int before comparison.
1930 (LOOKING_AT, LOOKING_AT_NOCASE): Let the preprocessor check that
1931 the second argument is indeed a literal string.
b9509712 1932 (main): In append mode, sort the tags file after writing it.
55102b5d
FP
1933
19342005-09-27 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
1935
1936 * etags.c (longopts, print_help, main): The -a (--append) option
1937 can be used in ctags also; for one, the Linux make file uses it.
1938
41ea4df8
CY
19392005-09-20 Chong Yidong <cyd@stupidchicken.com>
1940
1941 * ebrowse.c (add_sym): Compare namespace names instead of
1942 namespace objects. This prevents the parser from incorrectly
1943 treating classes whose superclass is in another namespace.
1944
5c4757d3
RS
19452005-09-15 Richard M. Stallman <rms@gnu.org>
1946
1947 * Makefile.in (update-game-score.o): New target.
10d1d0af 1948 Compile and link this program separately.
5c4757d3
RS
1949 (update-game-score${EXEEXT}): Use GETOPTDEPTS.
1950
df1b2142
JR
19512005-09-11 Jason Rumney <jasonr@gnu.org>
1952
ecc54057 1953 * makefile.w32-in (../src/config.h): Don't overwrite. Print a
df1b2142 1954 message instead.
31fa6595 1955 (../src/paths.h): Remove.
df1b2142 1956
c638055f
JB
19572005-07-27 Juanma Barranquero <lekktu@gmail.com>
1958
1959 * .cvsignore: Don't ignore fns-* and fns.el, which are no longer
1960 generated. Ignore also ctags.c and getopt.h.
1961
1962 * makefile.w32-in (clean): Delete getopt.h.
1963 (getopt.h): New rule.
1964
9eff9fe3
PE
19652005-07-26 Paul Eggert <eggert@cs.ucla.edu>
1966
1967 Merge gnulib getopt implementation into Emacs.
1968
1969 * Makefile.in (mostlyclean): Remove getopt.h, getopt.h-t.
1970 (GETOPT_H): New macro, from gnulib.
1971 (getopt.h): New rule, from gnulib.
1972 (GETOPTOBJS): Now autoconfigured.
1973 (GETOPTDEPS): getopt.h is now autoconfigured.
1974 (getopt.o, getopt1.o): Depend on $(GETOPT_H), not ${srcdir}/getopt.h.
1975 (getopt.o): Depend on ${srcdir}/gettext.h.
1976 (movemail.o): Depend on $(GETOPT_H).
1977 * getopt.c, getopt1.c: Sync from gnulib.
1978 * getopt_.h, getopt_int.h, gettext.h: New files, from gnulib.
1979 * getopt.h: Removed (now is getopt_.h).
1980
ec641d50
KR
19812005-07-13 Ken Raeburn <raeburn@gnu.org>
1982
0e0dced5
JB
1983 * pop.c: Don't include des.h (or variants thereof); krb.h will do it.
1984 (sendline): Add the \r\n to the line in a temporary buffer, and write
1985 it all at once.
ec641d50 1986
a0ec7a4a
LK
19872005-07-04 Lute Kamstra <lute@gnu.org>
1988
1989 Update FSF's address in GPL notices.
1990
0e0dddda
EZ
19912005-06-13 Eli Zaretskii <eliz@gnu.org>
1992
1993 * makefile.w32-in ($(DOC)): Fix last change.
1994
5a77c8e2
EZ
19952005-06-12 Eli Zaretskii <eliz@gnu.org>
1996
1997 * makefile.w32-in ($(DOC)): Depend on make-docfile.exe,
1998 temacs.exe, and the preloaded *.elc files. This avoids
1999 unnecessary dumping and DOC rebuilding.
2000
1a8fb426
EZ
20012005-06-04 Eli Zaretskii <eliz@gnu.org>
2002
2003 * ntlib.h (fileno): Don't define if already defined.
2004
7235a58f
TTN
20052005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
2006
2007 * yow.c (setup_yow): Use EXIT_FAILURE in case no separators found.
2008 (yow): Use EXIT_FAILURE in case of memory error.
2009
5063dbbf
YM
20102005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2011
2012 * make-docfile.c (DIRECTORY_SEP): New macro.
2013 (IS_DIRECTORY_SEP): Use it.
2014
880820fe 20152005-03-18 Jan Djärv <jan.h.d@swipnet.se>
5b9562c3
JD
2016
2017 * emacsclient.c: Avoid expansion of getcwd when defined as a macro.
2018
ba025f6d
YM
20192005-03-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2020
2021 * make-docfile.c: Undo previous change.
2022
a9eedf40
AS
20232005-02-04 Andreas Schwab <schwab@suse.de>
2024
0e0dced5
JB
2025 * movemail.c (fatal): Accept third parameter and pass down to error.
2026 (pfatal_with_name): Pass error string as format parameter instead of
2027 as part of format string.
a9eedf40
AS
2028 (pfatal_and_delete): Likewise.
2029 (main): Adjust call to fatal.
2030 (xmalloc): Likewise.
2031
5a92a9eb
RS
20322005-01-29 Richard M. Stallman <rms@gnu.org>
2033
2034 * movemail.c (popmail): Don't use Errmsg as format string.
2035
e6973a25
ST
20362004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2037
0e0dced5 2038 * make-docfile.c: Include stdlib.h even if WINDOWSNT is not defined.
e6973a25 2039
1bb3da38
AS
20402004-12-15 Andreas Schwab <schwab@suse.de>
2041
2042 * etags.c (main): Fix typo in conversion of LONG_OPTIONS from
2043 preprocessing to compile time constant.
2044
d4a38fdd
KS
20452004-11-17 Kim F. Storm <storm@cua.dk>
2046
2047 * etags.c: Undo last change.
2048
f2eb41c8
KS
20492004-11-09 Kim F. Storm <storm@cua.dk>
2050
2051 * make-docfile.c (scan_c_file): Set defvarperbufferflag to
2052 silence compiler.
2053
2054 * hexl.c (main): Init local var c to silence compiler.
2055
2056 * etags.c (main, consider_token, C_entries): Add misc switch
2057 default targets to silence compiler.
2058
880820fe 20592004-11-09 Jan Djärv <jan.h.d@swipnet.se>
3cf5c994
JD
2060
2061 * makefile.w32-in (obj): Add all files (X and Mac) to doc so the
2062 resulting DOC file can be used on Unix/Mac also.
2063
880820fe 20642004-09-13 Francesco Potortì <pot@gnu.org>
e057dc50
FP
2065
2066 * etags.c (main): When relative file names are given as argument,
2067 make them relative to the current working dir, rather than
2068 relative to the output tags file, if the latter is in /dev.
2069
880820fe 20702004-09-13 Francesco Potortì <pot@gnu.org>
05d9a399
FP
2071
2072 * etags.c [EXIT_SUCCESS, EXIT_FAILURE]: Define them when no
2073 <stdlib.h> is available.
2074 (enum sym_type): New st_C_attribute value for parsing
2075 gcc's __attribute__. Deleted st_C_typespec value.
2076 (gperf, in_word_set): Use gperf 3, options changed. Added the
2077 __attribute__ keyword, removed all the st_C_typespec keywords,
2078 changed attribute for Java to (C_JAVA & !C_PLPL).
2079 (inattribute): New global bool, part of the C state machine.
2080 (cblev): Identifier renamed to bracelev throughout.
2081 (consider_token, C_entries): Numerous changes for making the
2082 parser more robust and adding support for __attribute__.
2083
20842004-09-13 David A. Capello <dacap@users.sourceforge.net> (tiny change)
2085
ecc54057 2086 * etags.c (Lua_suffixes, Lua_help, lang_names, Lua_functions):
05d9a399
FP
2087 Support the Lua scripting language <http://www.lua.org>.
2088
880820fe 20892004-09-08 Francesco Potortì <pot@gnu.org>
fba74375 2090
d57727c9 2091 * etags.c [LONG_OPTIONS]: Make it TRUE (ifdef) or FALSE (ifndef)
fba74375
FP
2092 for ease of use.
2093
3751eb00
RS
20942004-07-17 Richard M. Stallman <rms@gnu.org>
2095
2096 * emacsclient.c (quote_file_name): Pass COPY thru %s to output it.
2097
86d373e6
JB
20982004-06-01 Juanma Barranquero <lektu@terra.es>
2099
2100 * makefile.w32-in (obj): Add image.c.
2101
80e26b66
TTN
21022004-05-10 Thien-Thi Nguyen <ttn@gnu.org>
2103
0e0dced5 2104 * test-distrib.c (main): For failing cases, exit with `EXIT_FAILURE'.
80e26b66 2105
e6662c8b
JR
21062004-05-08 Jason Rumney <jasonr@gnu.org>
2107
2108 * makefile.w32-in (lisp1, lisp2): Split lisp to avoid long
2109 command-lines.
2110
65396510
TTN
21112004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
2112
2113 * cvtmail.c: Throughout, replace 0 destined for `exit' arg
2114 with `EXIT_SUCCESS'. Likewise, replace 1 with `EXIT_FAILURE'.
2115 (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
2116
2117 * ebrowse.c, emacsclient.c, fakemail.c, hexl.c,
86d373e6
JB
2118 * make-docfile.c, movemail.c, profile.c, sorted-doc.c,
2119 * test-distrib.c, update-game-score.c, yow.c: Likewise.
65396510 2120
c2bcfb19
TTN
21212004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
2122
2123 * Makefile.in (emacsclient${EXEEXT}): Use makefile var `version'.
2124
3f0656ff
TTN
21252004-05-07 Thien-Thi Nguyen <ttn@gnu.org>
2126
2127 * b2m.c (GOOD, BAD): Delete macros. Throughout,
2128 replace w/ `EXIT_SUCCESS' and `EXIT_FAILURE', respectively.
2129 (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
2130
2131 * etags.c: Likewise.
2132
238add5e
JR
21332004-05-03 Jason Rumney <jasonr@gnu.org>
2134
2135 * makefile.nt: Remove.
2136
b09c5608
EZ
21372004-04-26 Eli Zaretskii <eliz@gnu.org>
2138
2139 * make-docfile.c (IS_DIRECTORY_SEP): New macro.
2140 (put_filename): Remove unused variable len. Use IS_DIRECTORY_SEP
2141 instead of a literal '/'.
2142
d814862a
JB
21432004-04-23 Juanma Barranquero <lektu@terra.es>
2144
2145 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
2146
442a2160
PE
21472004-04-17 Paul Eggert <eggert@gnu.org>
2148
2149 * rcs2log (Help): Clarify wording of the usage message.
2150 Problem reported by Alan Mackenzie in
2151 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-04/msg00188.html>.
2152
d5d66b7e
SM
21532004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2154
2155 * make-docfile.c (xmalloc): Fix return type.
2156 (put_filename): New fun.
2157 (scan_file): Use it.
2158
bdfd0369
JB
21592004-03-09 Juanma Barranquero <lektu@terra.es>
2160
2161 * grep-changelog: Changes to support ChangeLog.10+.
2162 (main): Tidy up usage string. Fix "Use of uninitialized value"
2163 warning. Set version to 0.2. Parse the directory listing to get
2164 any ChangeLog.n file, not just 1..9.
2165 (header_match_p, entry_match_p, print_log, parse_changelog):
2166 Remove Perl prototypes (their purpose is to help the parser, which
2167 isn't needed here, not declare arguments).
2168 (parse_changelog): Make --reverse faster on big batches by not
2169 modifying the entries list.
2170
a64387ee
JB
21712004-03-01 Juanma Barranquero <lektu@terra.es>
2172
2173 * makefile.w32-in (obj): Add fringe.c.
2174
9766d41b
PE
21752004-02-14 Paul Eggert <eggert@twinsun.com>
2176
2177 * rcs2log: Work correctly if CVSROOT specifies :fork: or
2178 :local: methods, or omits the colon between the hostname
2179 and the path. Allow :/ in repository path, since CVS does.
2180 Fix typo: "pository" should be set from $CVSROOT, not $repository.
2181 This fixes a bug reported by Wolfgang Scherer in
2182 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-02/msg00085.html>,
2183 along with some related bugs I discovered by inspecting how
2184 CVS itself parses $CVSROOT.
2185
880820fe 21862004-02-04 Jérôme Marant <jmarant@nerim.net> (tiny change)
98c6e531
SM
2187
2188 * emacsclient.c (decode_options): Fix handling of alternate editor.
2189
0734b0d0
SM
21902004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
2191
2192 * emacsclient.c (main): Don't use the hostname in the socket name.
2193 Look for relative socket names in the /tmp dir rather than in cwd.
2194
2a6fc2d9
RS
21952004-01-24 Richard M. Stallman <rms@gnu.org>
2196
2197 * emacsclient.c (main): Restore errno from saved_errno,
2198 so the error message comes from socket_status.
2199
0734b0d0
SM
22002004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
2201
2202 * emacsclient.c (main): Stop if socket name too long.
2203 Only try su-fallback if the socket name was not explicit.
2204 Check socket name length in su-fallback case as well.
2205
152b6e83
AS
22062004-01-08 Andreas Schwab <schwab@suse.de>
2207
2208 * emacsclient.c (main): Save errno from socket_status.
2209
e8228824
AS
22102004-01-04 Andreas Schwab <schwab@suse.de>
2211
2212 * emacsclient.c (main): Fix socket name when using another user.
2213
c9140662
PE
22142003-12-27 Paul Eggert <eggert@twinsun.com>
2215
2216 * rcs2log (rlog_options): Append -rbranchtag if CVS/Tag indicates
2217 a tag, and if the user has not specified an rlog option.
2218 Adapted from a suggestion by Martin Stjernholm in
2219 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2003-07/msg00066.html>.
2220 (Copyright): Update to 2003.
2221
8babaa59
TTN
22222003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
2223
2224 * make-docfile.c (main): For return code, no longer special-case VMS.
2225 Instead, use `EXIT_SUCCESS' and `EXIT_FAILURE' from stdlib.h.
2226
880820fe 22272003-09-28 Andreas Büsching <crunchy@tzi.de> (tiny change)
14ef7288
EZ
2228
2229 * emacsclient.c (quote_file_name): Print the result instead of
2230 returning it. Fix the return type accordingly.
1ae7cf5e
RS
2231 (main): With --eval, if no file name, read from stdin.
2232 Quote file names.
14ef7288 2233
f387bdea
RS
22342003-09-10 Richard M. Stallman <rms@gnu.org>
2235
07655e62 2236 * emacsclient.c (main): Use socket_name.
f387bdea 2237
880820fe 22382003-09-10 Andreas Büsching <crunchy@tzi.de> (tiny change)
f387bdea
RS
2239
2240 * emacsclient.c (socket_name): New variable.
2241 (longopts, decode_options, print_help_and_exit):
2242 Handle --socket-name argument.
2243
0b7e7337
FP
22442003-08-25 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2245
783bcffa 2246 * etags.c (consider_token): Check C++ `operator' only when the
0b7e7337
FP
2247 token len is long enough.
2248
ac06b30b
DL
22492003-08-20 Dave Love <fx@gnu.org>
2250
2251 * Makefile.in: Remove obsolete references to alloca.
2252
32b0a3c6
JB
22532003-07-29 Ken Brush <ken@wirex.com>
2254
2255 * emacsclient.c (main)
2256 * etags.c (suggest_asking_for_help)
2257 * movemail.c (main): Fix having macros in a printf statement.
2258
3867c42d
JB
22592003-05-31 Juanma Barranquero <lektu@terra.es>
2260
2261 * makefile.w32-in (lisp): Fix references to byte-run.el,
2262 float-sup.el and map-ynp.el, which are now in emacs-lisp.
2263
7933722a
DL
22642003-05-22 Dave Love <fx@gnu.org>
2265
2266 * update-game-score.c (difftime) [!HAVE_DIFFTIME]: Define.
2267 (strerror) [!HAVE_STRERROR && !WINDOWSNT]: New.
2268
463f55ee
DL
22692003-05-20 Dave Love <fx@gnu.org>
2270
2271 * movemail.c: Check HAVE_LIBLOCKFILE like HAVE_LIBMAIL.
2272
2273 * Makefile.in [HAVE_LIBLOCKFILE]: Define LIBS_MAIL=-llockfile.
2274
1b7a835b
JB
22752003-04-27 Oliver Scholz <alkibiades@gmx.de>
2276
0e0dced5 2277 * update-game-score.c (read_scores): Fix corruption of scores on read.
1b7a835b 2278
eec54bd7
SM
22792003-04-12 Stefan Monnier <monnier@cs.yale.edu>
2280
2281 * emacsclient.c (main): Use new safe location for socket.
2282
ff4bd681
JB
22832003-03-12 Tom Tromey <tromey@redhat.com>
2284
eec54bd7
SM
2285 * emacsclient.c (print_help_and_exit): Print to stdout.
2286 Exit successfully. Added some blank lines for readability.
ff4bd681
JB
2287 (decode_options): Don't call print_help_and_exit in default case.
2288 Print version information to stdout.
2289 (main): Don't call print_help_and_exit.
2290
dd132e44
RS
22912003-02-15 Richard M. Stallman <rms@gnu.org>
2292
2293 * cvtmail.c: Cast result of malloc and realloc.
10d1d0af 2294 Don't include stdlib.h, because config.h does.
dd132e44 2295 (malloc, realloc): Declarations deleted.
ff4bd681 2296
dd132e44
RS
2297 * yow.c (yow): Cast result of malloc and realloc.
2298 (malloc, realloc): Declarations deleted.
2299
71ffc53a
JB
23002003-02-11 Juanma Barranquero <lektu@terra.es>
2301
2302 * makefile.w32-in (lisp): Add malayalam.el and tamil.el.
2303
0dfd93c0
AS
23042003-02-08 Andreas Schwab <schwab@suse.de>
2305
2306 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
2307 instead of the substitution.
2308
37d1e680
RS
23092003-02-04 Richard M. Stallman <rms@gnu.org>
2310
2311 * update-game-score.c (push_score, read_scores): Cast values
2312 of malloc and realloc.
2313 (main, lock_file): Avoid assignment inside if.
2314
c60ee5e7
JB
23152003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
2316
2317 * Makefile.in: Use @EXEEXT@ for Cygwin.
2318
b24e2dc7
DL
23192003-01-21 Dave Love <fx@gnu.org>
2320
2321 * etags.c (Cplusplus_help, Cjava_help): Re-phrase and avoid
2322 column-0 `('.
2323
2324 * yow.c: Don't include string.h.
2325
675d000f
RS
23262003-01-20 Richard M. Stallman <rms@gnu.org>
2327
2328 * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
2329 New targets.
2330
207aa3ff
KS
23312003-01-06 Kim F. Storm <storm@cua.dk>
2332
31fa6595 2333 * pop.c (__P): Rename from _P to avoid problems on Cygwin.
207aa3ff
KS
2334 All uses changed.
2335
cf6d30d7
AI
23362002-12-18 Andrew Innes <andrewi@gnu.org>
2337
2338 * makefile.w32-in ($(DOC)): Use -o and -a options to make-docfile,
2339 because GNU make doesn't append when using >> redirection.
2340
f0131492 23412002-12-12 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
649fc2c5
PJ
2342
2343 * b2m.pl: Make sure every message ends with a blank line, because
2344 some mbox parsers require a blank line before "From " lines.
2345
85cce843
RS
23462002-12-08 Richard M. Stallman <rms@gnu.org>
2347
2348 * getopt.c: Do include libintl.h if HAVE_LIBINTL_H.
2349 (_): Test only HAVE_LIBINTL_H to decide what to do.
2350
2ccc4d34
RS
23512002-12-05 Richard M. Stallman <rms@gnu.org>
2352
2353 * getopt.c: Comment out include of libintl.h or gettext.h.
2354
c5992177
RS
23552002-12-04 Richard M. Stallman <rms@gnu.org>
2356
2357 * Update getopt from gnulib version; changes described below.
2358
2359 * getopt1.c: Conditionally find getopt.h.
2360 [_LIBC] (getopt_long, getopt_long_only): Do libc_hidden_def.
2361
2362 * getopt.c (const): Move outside !HAVE_CONFIG_H conditional.
2363 (libintl.h): Include this if _LIBC. Otherwise include gettext.h.
c60ee5e7 2364 (wchar.h): Include, maybe.
10d1d0af 2365 (attribute_hidden): Define if not defined.
c5992177 2366 (__getopt_initialized): Use attribute_hidden.
b166dcd8 2367 (__libc_argc, __libc_argv): Rename from original_argc, etc.
d7982012
JB
2368 (__getopt_nonoption_flags, nonoption_flags_max_len)
2369 (nonoption_flags_len): Conditional on USE_NONOPTION_FLAGS.
c5992177
RS
2370 (SWAP_FLAGS): New definitions.
2371 (exchange): Test USE_NONOPTION_FLAGS.
2372 (_getopt_initialize): Test USE_NONOPTION_FLAGS.
2373 (_getopt_internal): Error if argc < 1. New local var print_errors.
2374 Improve test for ambiguous long option.
2375 Add LIBIO support for error message output.
2376 (NONOPTION_P): Test USE_NONOPTION_FLAGS.
2377
2378 * getopt.h: Maybe include ctype.h.
2379 Treat __cplusplus like __STDC__.
2380 (decls): Use __ in arg names.
2381
4b5e69bd
SE
23822002-12-02 Stephen Eglen <stephen@gnu.org>
2383
2384 * emacsclient.c (main): Tell user how to start server within Emacs
2385 if socket could not be found.
2386
19fa03f3
RS
23872002-12-02 Richard M. Stallman <rms@gnu.org>
2388
2389 * emacsclient.c (main): Test HAVE_GETCWD rather than BSD_SYSTEM.
2390
7be215b4
JB
23912002-11-19 Ben Key <bkey1@tampabay.rr.com>
2392
29f538e6
BK
2393 * makefile.w32-in: Fixed a bug that caused the documentation for
2394 the built in function play-sound-internal not to be included in
2395 /etc/DOC.
7be215b4 2396
1998560a
DL
23972002-11-18 Dave Love <fx@gnu.org>
2398
2399 * update-game-score.c: Include unistd.h, string.h, stdlib.h,
2400 fcntl.h, stdarg.h conditionally.
2401 (_GNU_SOURCE, __attribute__): Don't define.
2402 (optarg, optind, opterr): Declare.
2403 (lose, lose_syserr): Use NO_RETURN.
2404 (get_user_id): Use P_.
2405
8b96caf3
RS
24062002-11-17 Richard M. Stallman <rms@gnu.org>
2407
2408 * Makefile.in (${archlibdir}): Ignore errors operating on $(gamedir).
2409
59daa29a
DL
24102002-11-14 Dave Love <fx@gnu.org>
2411
2412 * movemail.c (pop_retr): Declare comment.
2413
2414 * make-docfile.c (read_c_string_or_comment): Declare msgno.
9a007cb7
DL
2415
2416 * Makefile.in (YACC): Deleted.
2417
f1b443bf
AS
24182002-10-19 Andreas Schwab <schwab@suse.de>
2419
2420 * Makefile.in (${archlibdir}): Always create $(gamedir).
2421 (update-game-score): Pass $(gamedir) as HAVE_SHARED_GAME_DIR.
2422
52402e4f
JB
24232002-10-04 Juanma Barranquero <lektu@terra.es>
2424
2425 * makefile.w32-in (lisp): Load devanagari.el, not .elc.
2426
15dab115
MR
24272002-09-30 Markus Rost <rost@math.ohio-state.edu>
2428
2429 * emacsclient.c (main): Remove reference to SERVER_HOME_DIR
2430 completely.
2431
30be2360
SM
24322002-09-27 Stefan Monnier <monnier@cs.yale.edu>
2433
2434 * emacsclient.c: Remove SYSV support.
2435 (eval, display): New vars.
2436 (longopts): Add --eval and --display.
2437 (decode_options): Add -e and -d processing.
2438 (print_help_and_exit): Update the usage string.
2439 (main): Add support for --eval and --display.
3ecdcd59 2440 (main): Always use /tmp and non-qualified hostname.
30be2360 2441
4208da83
SM
24422002-09-25 Stefan Monnier <monnier@cs.yale.edu>
2443
2444 * emacsserver.c: Remove.
2445
3cf8c6aa
SM
24462002-09-17 Stefan Monnier <monnier@cs.yale.edu>
2447
2448 * emacsclient.c (quote_file_name): Quote \n.
2449 (main): Print a final \n when needed.
2450
880820fe 24512002-09-03 Francesco Potortì <pot@gnu.org>
4c6dce51
FP
2452
2453 * etags.c (regex_tag_multiline, readline): Never pass pfnote a
2454 string that cannot be freed.
2455
880820fe 24562002-08-30 Francesco Potortì <pot@gnu.org>
ba88f8eb
FP
2457
2458 * etags.c (consider_token, C_entries): Switch to C++ parsing when
2459 auto-detection is enabled and the `::' qualifier is met.
2460 (consider_token, C_entries): Several bugs corrected that tagged
2461 some declarations even though --declarations was not used.
2462 (plainc): New macro.
2463 (C_entries): Use it.
2464 (C_entries): Several cosmetic changes.
2465 (C_entries): Invalidate the token is some cases.
2466
880820fe 24672002-08-29 Francesco Potortì <pot@gnu.org>
09cd1a74 2468
eec54bd7 2469 * etags.c (C_entries): Correct a problem with const C++ funcs.
b166dcd8 2470 (ignoreindent): Rename from noindentypedefs.
09cd1a74
FP
2471 (cjava, cplpl): They are now macros instead of local vars.
2472
880820fe 24732002-08-28 Francesco Potortì <pot@gnu.org>
09cd1a74
FP
2474
2475 * etags.c (HTML_labels): Tag ID= also.
2476
880820fe 24772002-08-27 Francesco Potortì <pot@gnu.org>
87046df8
FP
2478
2479 * etags.c (Ada_funcs): Do not tag "use type Xxxx;".
2480
ecc54057 2481 * etags.c (HTML_labels): New language HTML.
8ee14629
FP
2482 (etags_strcasecmp): Like BSD's, for compatibility.
2483 (strcaseeq): Make it into a macro.
2484
2485 * etags.c (make_tag): Never generate null length tag names.
b166dcd8 2486 (linebuffer_init): Rename from initbuffer. All callers changed.
87046df8
FP
2487 (pattern): Structure renamed to `regexp', member regex renamed to
2488 pattern.
2489 (node_st): Member pat renamed to regex.
eec54bd7
SM
2490 (pattern); New member force_explicit_name, for future use.
2491 Now always set to true, cannot be reset.
87046df8
FP
2492 (add_regex, regex_tag_multiline, readline): Use it.
2493 (main): Free some global structures.
8ee14629 2494 (fdesc): New member `written'.
87046df8
FP
2495 (readline, process_file): Initialise it.
2496 (put_entries): Set it.
2497 (main): Use it to create entries for files without tags.
2498 (total_size_of_entries): Do not count invalid tags.
87046df8 2499
02ce3e80
SM
25002002-08-19 Stefan Monnier <monnier@cs.yale.edu>
2501
2502 * make-docfile.c (scan_keyword_or_put_char, write_c_args): Use `fn'
2503 for the function name in the usage info.
2504
5fba5c21
CW
25052002-07-31 Colin Walters <walters@gnu.org>
2506
2507 * update-game-score.c (P_): New macro. Use it for all prototypes.
2508 (lose): Don't use varargs.
2509 (lose_syserr): New function.
2510
2511 * update-game-score.c: Change all functions to K&R style.
2512
712eaee0
AS
25132002-07-30 Andreas Schwab <schwab@suse.de>
2514
2515 * Makefile.in (localstatedir): New variable.
2516
f0131492 25172002-07-29 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
c89ed6ef
PJ
2518
2519 * b2m.pl: Fix regexp for finding return address fields.
2520
1e042160
SM
25212002-07-15 Stefan Monnier <monnier@cs.yale.edu>
2522
2523 * make-docfile.c (scan_c_file): Warn about missing `usage' info.
2524
f0131492 25252002-07-05 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
e9b60209 2526
02ce3e80 2527 * b2m.pl: Obey the rmail file and use the unpruned header properly.
e9b60209 2528
880820fe 25292002-06-26 Pavel Janík <Pavel@Janik.cz>
9ee028d2
PJ
2530
2531 * b2m.pl: New file.
2532
880820fe 25332002-06-21 Francesco Potortì <pot@gnu.org>
e1af8d40 2534
ecc54057 2535 * etags.c (F_getit, Fortran_functions, Ada_getit, Asm_labels)
e1af8d40
FP
2536 (Python_functions, PHP_functions, PHP_functions, PHP_functions)
2537 (PHP_functions, PHP_functions, Cobol_paragraphs)
2538 (Makefile_targets, Postscript_functions, Texinfo_nodes)
2539 (prolog_pr, erlang_func, erlang_attribute)
2540 (Perl_functions, Perl_functions, Pascal_functions)
2541 (TeX_commands, get_tag): Use make_tag instead of pfnote.
2542 (get_tag): Prototype changed, all callers changed.
2543
880820fe 25442002-06-20 Francesco Potortì <pot@gnu.org>
ceaeb365 2545
d76132d0
FP
2546 * etags.c: Implement implicit tag names, that is, unnamed tags
2547 whose name is automatically deduced by etags.el. The advantage is
2548 that there is no explicit tag name in most tags, so the size of
2549 the tags file is reduced, yet find-tag is able to do a match as
eec54bd7 2550 accurate as with named tags. See the comment in make_tag for details.
ceaeb365
FP
2551 (make_tag): New function (was the disabled function new_pfnote).
2552 (make_C_tag): Use it.
2553
880820fe 25542002-06-19 Francesco Potortì <pot@gnu.org>
f175bfff
FP
2555
2556 * etags.c (add_regex): Invalid regexp modifiers are ignored.
2557 (Makefile_targets): Tag variables unless --no-globals.
2558 (LOOP_ON_INPUT_LINES): Serious bug corrected.
2559
880820fe 25602002-06-13 Francesco Potortì <pot@gnu.org>
82ef78b3
FP
2561
2562 * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
2563 (invalidate_nodes): Bug corrected.
2564 (print_help): Better help for regexps.
2565
7a8940da
JB
25662002-06-13 Juanma Barranquero <lektu@terra.es>
2567
2568 * makefile.w32-in (lisp): Add international/ucs-tables.elc and
2569 font-core.elc.
2570
880820fe 25712002-06-12 Francesco Potortì <pot@gnu.org>
6861f0e3
FP
2572
2573 * etags.c: New multi-line regexp and new regexp syntax.
2574 (arg_type): at_icregexp label removed (obsolete).
2575 (pattern): New member multi_line for multi-line regexps.
2576 (filebuf): A global buffer containing the whole file as a string
2577 for multi-line regexp matching.
2578 (need_filebuf): Global flag raised if multi-line regexps used.
2579 (print_help): Document new regexp modifiers, remove references to
2580 obsolete option --ignore-case-regexp.
2581 (main): Do not set regexp syntax and translation table here.
2582 (main): Treat -c option as a backward compatibility hack.
2583 (main, find_entries): Init and free filebuf.
2584 (find_entries): Call regex_tag_multiline after the regular parser.
10d1d0af 2585 (scan_separators): Check for unterminated regexp and return NULL.
6861f0e3
FP
2586 (analyse_regex, add_regex): Remove the ignore_case argument, which
2587 is now a modifier to the regexp. All callers changed.
2588 (add_regex): Manage the regexp modifiers.
2589 (regex_tag_multiline): New function. Reads from filebuf.
2590 (readline_internal): If necessary, copy the whole file into filebuf.
2591 (readline): Skip multi-line regexps, leave them to regex_tag_multiline.
2592
880820fe 25932002-06-11 Francesco Potortì <pot@gnu.org>
6861f0e3
FP
2594
2595 * etags.c (add_regex): Better check for null regexps.
2596 (readline): Check for regex matching null string.
6772c8e1 2597 (find_entries): Reorganization.
6861f0e3 2598
880820fe 25992002-06-07 Francesco Potortì <pot@gnu.org>
f0da41a6
FP
2600
2601 * etags.c (scan_separators): Support all character escape
2602 sequences supported by Gcc.
02ce3e80 2603 (find_entries): Rewind unconditionally.
f0da41a6
FP
2604 (find_entries): Do not call language functions directly, now calls
2605 itself.
2606 (find_entries): Do general initialisations here.
2607 (CNL_SAVE_DEFINEDEF, C_entries, LOOP_ON_INPUT_LINES, F_getit)
2608 (Ada_getit, Pascal_functions, Pascal_functions)
2609 (prolog_skip_comment): Do not do them here.
2610 (readline_internal): Increment lineno here.
2611 (readline): Conditionally undo readline_internal increment.
2612 (readline): Do not return a value.
2613
880820fe 26142002-06-06 Francesco Potortì <pot@gnu.org>
5526f1f6 2615
88c71720 2616 * etags.c: New option --parse-stdin=FILE.
97b90b0a
FP
2617 (enum arg_type): New label at_stdin.
2618 (STDIN): New constant.
2619 (parsing_stdin): New flag.
2620 (longopts): New option --parse-stdin=NAME.
2621 (print_help): Document it.
2622 (main): Handle it.
2623 (process_file): Split into process_file and process_file_name.
2624 (process_file_name): New function.
2625
88c71720 2626 * etags.c: Improvements and bug squashing in TeX handling.
97b90b0a 2627 (TeX_commands): Skip comments.
10d1d0af 2628 (TEX_defenv): Now contains more constructs.
5526f1f6
FP
2629 (TEX_cmt): Make it a static char and move it before TeX_commands.
2630 (TeX_commands): Shorten the tag to the brace after the name.
2631 (TeX_commands): Names now include the initial backslash.
2632 (TeX_commands): Names do not include numeric args #n.
2633 (TeX_commands): Correct line char number in tags.
2634 (TEX_tabent, TEX_token): Deleted.
2635 (TeX_commands, TEX_decode_env): Streamlined.
2636
880820fe 26372002-06-05 Francesco Potortì <pot@gnu.org>
50496bd9
FP
2638
2639 * etags.c (main): Avoid a buffer overrun with sprintf.
2640
a71867c5
RS
26412002-05-30 Richard M. Stallman <rms@gnu.org>
2642
b166dcd8
KC
2643 * Makefile.in (LIBS_MAIL): Rename from LIB_MAIL.
2644 (LIBS_MOVE): Rename from MOVE_LIBS.
a71867c5 2645
b7e67db6
PE
26462002-05-26 Paul Eggert <eggert@twinsun.com>
2647
2648 Reinstate the following change from 2002-03-22, which was
2649 inadvertently lost on 2002-04-13.
2650
2651 * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
2652 `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
2653 the latter usage.
2654
5f226e2c
EZ
26552002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
2656
2657 * pop.c (socket_connection): Move the code to resolve the POP
2658 host right before trying to connect with it.
2659
9021bb49
GM
26602002-05-05 Eli Zaretskii <eliz@is.elta.co.il>
2661
2662 * tcp.c: Delete file since the TCP emulation is no longer in use on any
2663 platform.
2664
5167cfda
CW
26652002-04-28 Colin Walters <walters@verbum.org>
2666
2667 * Makefile.in (${archlibdir}): Don't conditionalize on
2668 HAVE_SHARED_GAME_DIR. Instead, test at installation time whether
2669 or not we have access to the specified game user.
50496bd9 2670
5167cfda
CW
2671 * update-game-score.c (SCORE_FILE_PREFIX): Delete.
2672 (main): New argument -d, for specifying directory.
2673 (usage): Document.
02ce3e80 2674 (get_user_id): Compute.
5167cfda
CW
2675 (get_home_dir): Deleted.
2676 (get_prefix): New function, taken from main.
2677 (main): Check whether or not we are running setuid. Move prefix
2678 computation to get_prefix. Don't call getpwent; we don't need to
2679 any more. Instead, move it to get_user_id().
2680
880820fe 26812002-04-24 Pavel Janík <Pavel@Janik.cz>
beedfcf1
PJ
2682
2683 * ebrowse.c (skip_initializer): Return void.
2684
973c3c87
CW
26852002-04-23 Colin Walters <walters@verbum.org>
2686
2687 * update-game-score.c (read_score) [HAVE_GETDELIM]: Trim trailing
2688 space.
2689
880820fe 26902002-04-22 Francesco Potortì <pot@gnu.org>
8378bcd3 2691
ecc54057 2692 * etags.c (last_node): Make it a global variable.
8378bcd3
FP
2693 (process_file): Print the tags from the nodes as soon as
2694 possible, and delete the nodes. This brings down the memory
2695 occupancy as etags to almost the same level as when the #line
2696 directives were not parsed.
2697 (free_fdesc): New function.
2698 (find_entries): Use it.
2699 (invalidate_nodes): In etags mode, do not just mark the nodes as
2700 invalid, do delete them.
2701
c901ceff
GM
27022002-04-21 Gerd Moellmann <gerd@gnu.org>
2703
2704 * ebrowse.c (add_declarator): Test *CLS instead of CLS.
2705
c42d6dbd
EZ
27062002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
2707
2708 * update-game-score.c: Move config.h before the other headers, to
2709 avoid compiler warnings.
2710
880820fe 27112002-04-16 Francesco Potortì <pot@gnu.org>
090416ca
FP
2712
2713 * etags.c (find_entries): Bug fix in list management.
2714
880820fe 27152002-04-15 Francesco Potortì <pot@gnu.org>
5dab24c1
FP
2716
2717 * etags.c (get_language_from_filename): Add one argument.
2718 (strcaseeq): New function.
10d1d0af 2719 (get_language_from_filename): Use it to do a case insensitive
5dab24c1
FP
2720 comparison if called with appropriate args.
2721 (find_entries): Try with case insensitive match.
2722 (process_file): Bug fixed.
2723
880820fe 27242002-04-13 Francesco Potortì <pot@gnu.org>
c150db23
FP
2725
2726 * etags.c (find_entries): Delete tags previously obtained from
2727 file xxx.c's #line directives when parsing file xxx.y. This is
2728 generally done for automatically generated files containing
2729 #line directives. This handles the case when xxx.y is tagged
2730 before xxx.c, and the entries of xxx.c pointing to xxx.y should
2731 be discarded.
eec54bd7 2732 (language): Add the metasource member. Initializers changed.
c150db23
FP
2733 (invalidate_nodes): New function.
2734 (readline): Discard lines after having found a #line
02ce3e80 2735 directive pointing to an already tagged file. This handles the
c150db23
FP
2736 case when xxx.y is tagged before xxx.c, and the entries of
2737 xxx.c pointing to xxx.y should be discarded.
2738 (fdesc): New structure for keeping track of input files.
2739 (fdesc): Remove `file' member (a string) and use instead a pointer
2740 to a file description structure.
02ce3e80
SM
2741 (curfile, curfiledir, curtagfname, curlang, nocharno)
2742 (forced_lang): Global variables removed in favor of fdhead and
10d1d0af 2743 curfdp, pointers to file description structures.
c150db23
FP
2744 (longopts, main, print_help): Use the CTAGS conditional to include
2745 or exclude options that work on etags or ctags only.
02ce3e80
SM
2746 (process_file, find_entries, pfnote, add_node, put_entries)
2747 (readline): Use fdhead and curfdp.
c150db23
FP
2748 (process_file, find_entries): Do not take an arg string, all
2749 callers changed.
2750
2751 * etags.c (longopts, print_help, main): Test CTAGS to disallow
2752 options that are not right for either etags or ctags.
2753
2754 * etags.c (number_len, total_size_of_entries): Define them also
2755 in CTAGS mode, because gcc does not compile all refs away.
2756
e9d1f248
CW
27572002-04-14 Colin Walters <walters@debian.org>
2758
2759 * update-game-score.c (lock_file): If the lock file is older than
2760 an hour, delete it. Reset attempts to zero if we have to break
2761 the lock.
2762
7605f1bd
AS
27632002-04-14 Andreas Schwab <schwab@suse.de>
2764
2765 * update-game-score.c (read_score): Fix type of second parameter
2766 of getdelim to be of type size_t instead of int. Use 0 instead of
2767 ESUCCES.
2768
e82defd1
CW
27692002-04-10 Colin Walters <walters@verbum.org>
2770
ecc54057 2771 * update-game-score.c (toplevel): Include stdarg.h.
b9b966e0
CW
2772 (MAX_DATA_LEN, MAX_SCORES): New.
2773 (SCORE_FILE_PREFIX): If HAVE_SHARED_GAME_DIR is not defined,
2774 default to ~/.emacs.d/games.
2775 (get_user_id): Don't zero uid in the case where we can't get the
2776 username.
2777 (lose): New function.
2778 (main): Actually use `max', and default it to MAX_SCORES.
2779 Correctly handle new default for SCORE_FILE_PREFIX. Use `lose'
2780 function.
2781 (read_score): Handle the case of reading unamelen characters, then
2782 finishing. Use mktemp if mkstemp isn't available.
2783 (lock_file, unlock_file): Delete unused versions.
2784 (lock_file): Always sleep, even if we unlinked the lock file.
2785
e82defd1
CW
2786 * Makefile.in (gamedir, gameuser): New variables.
2787 (toplevel, UTILITIES): Add update-game-score.
2788 (${archlibdir}): Handle HAVE_SHARED_GAME_DIR.
2789
5795b420
CW
27902002-04-07 Colin Walters <walters@verbum.org>
2791
2792 * update-game-score.c (SCORE_FILE_PREFIX): Don't hardcode.
2793 (get_user_id): Take struct passwd as an argument.
2794 (get_home_dir): New function.
2795 (main): Read in user information here. Discover home directory if
2796 necessary.
2797 (read_score): Trim newline only in `getline' case.
2798
cd553ffb 27992002-04-05 Colin Walters <walters@debian.org>
c150db23 2800
cd553ffb
CW
2801 * update-game-score.c (toplevel): Include pwd.h.
2802 (struct score_entry): Add username field.
2803 (push_score): Use it.
2804 (get_user_id): New function.
2805 (main): Don't malloc excessively.
2806 (main): Use username field.
2807 (read_score): Read it.
2808 (push_score): Handle it.
07655e62 2809 (write_scores): Write it.
c150db23
FP
2810 (read_score): Handle arbitrary length data.
2811
b74bd4a3
EZ
28122002-03-30 Eli Zaretskii <eliz@is.elta.co.il>
2813
2814 * ebrowse.c (add_declarator): Fix the first call to add_member_defn.
2815
fa8bc89d
GM
28162002-03-29 Gerd Moellmann <gerd@gnu.org>
2817
2818 * ebrowse.c (add_declarator, skip_initializer): New functions.
2819 (declaration): Use them.
2820
dd87b4cc
JR
28212002-03-28 Jason Rumney <jasonr@gnu.org>
2822
2823 * makefile.w32-in (lisp): Move backquote.elc into emacs-lisp.
2824
cd553ffb
CW
28252002-03-27 Colin Walters <walters@debian.org>
2826
2827 * update-game-score.c: New file.
2828
dfef6d49
PE
28292002-03-22 Paul Eggert <eggert@twinsun.com>
2830
2831 * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
2832 `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
2833 the latter usage.
2834
880820fe 28352002-03-12 Francesco Potortì <pot@gnu.org>
a13d6523 2836
4fff90e4 2837 * etags.c (Python_functions): Skip spaces at beginning of lines.
a13d6523
FP
2838 (Python_functions, PHP_functions): Name tags, for ctags' sake.
2839 (TeX_commands): Name tags. Correction of old disabled code.
2840
2841 * etags.c (curfiledir, curtagfname): New global variables.
2842 (process_file): Initialise them.
2843 (readline): Canonicalize the name found in #line directive.
893a741e 2844
4fff90e4 28452002-03-06 Jason Rumney <jasonr@gnu.org>
ca55a1e3 2846
893a741e
JR
2847 * etags.c (put_entries): Use #if !CTAGS, to fix link error on
2848 compilers that don't optimize out dead code.
2849
880820fe 28502002-03-05 Francesco Potortì <pot@gnu.org>
51aeded3
FP
2851
2852 * etags.c: Honour #line directives.
a7c29764 2853 (no_line_directive): New global var; set it for old behavior.
51aeded3
FP
2854 (main): Remove some #ifdef in the getopt switch.
2855 (add_node, put_entries): Code added to merge different chunks of
2856 nodes referring to the same file. Currently the tags are just
2857 appended, without any check for duplicates.
2858 (Perl_functions): Do not special case ctags.
2859 (readline): Identify #line directives and do the right thing.
2860 (nocharno, invalidcharno): New global vars.
2861 (process_file): Reset nocharno.
2862 (readline): Set nocharno.
2863 (pfnote): Read nocharno and maybe put invalidcharno in node.
2864 (total_size_of_entries, put_entries): Use invalidcharno.
2865
2866 * etags.c: Keep the whole tag table in memory, even in etags mode.
2867 (main): Call put_entries here even in CTAGS mode.
2868 (main, process_file): Check the return values of fclose and pclose.
2869 (process_file): Do not call put_entries after parsing each file.
2870 (process_file): Canonicalise file names even for ctags.
2871 (process_file): Set curfile here...
2872 (find_entries): ... not here any more.
2873 (add_node): In etags mode, build a linked list of entries (on
2874 right pointer) for each file, and link the first entry of each
2875 file on left nodes.
2876 (put_entries): Print here the name of the file.
2877 (put_entries): Print the entries starting from the first file.
c150db23 2878 (number_len, total_size_of_entries): Define these only in etags
51aeded3
FP
2879 mode, make the second work only on the right nodes.
2880
2881 * etags.c: Make all global variables static.
2882
50ce1f62
JB
28832002-02-25 Juanma Barranquero <lektu@terra.es>
2884
2885 * makefile.w32-in (lisp): Add missing backslash.
2886
82a399d2
JR
28872002-02-24 Jason Rumney <jasonr@gnu.org>
2888
2889 * makefile.w32-in (WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to
2890 using .elc files.
c4cc8b9a 2891 (lisp): Sync with list in src/Makefile.in.
82a399d2
JR
2892 (VMS_SUPPORT, MSDOS_SUPPORT): Define, so DOC files can be shared.
2893
a279c920
PE
28942002-02-10 Paul Eggert <eggert@twinsun.com>
2895
2896 * rcs-checkin: Use `sort -k 2', not `sort +1', as POSIX 1003.1-2001
2897 disallows the old syntax.
2898
0caa685d
PE
28992002-02-03 Paul Eggert <eggert@twinsun.com>
2900
d7982012 2901 * rcs2log (Copyright): Update to 2002.
0caa685d
PE
2902 (AWK, TMPDIR): Work around portability problem in broken shells that
2903 don't understand `: ${VAR=val}'.
2904 (SORT_K_OPTIONS): New var, for hosts that conform to POSIX 1003.1-2001.
2905 Prefer the new -k option to the traditional +M -N option.
2906
880820fe 29072002-01-01 Pavel Janík <Pavel@Janik.cz>
03950b5b
PJ
2908
2909 * b2m.c (main): Parenthesize assignment when used as truth value
2910 to prevent gcc warnings.
2911
2912 * fakemail.c: Include <config.h>.
2913
880820fe 29142001-12-29 Pavel Janík <Pavel@Janik.cz>
2f8fe2f4
PJ
2915
2916 * cvtmail.c, emacsclient.c, emacsserver.c, pop.c, sorted-doc.c,
2917 * yow.c: Include <config.h>.
2918
880820fe 29192001-12-21 Francesco Potortì <pot@gnu.org>
a60e4de9
FP
2920
2921 * etags.c (Perl_functions): Tag packages and use them in sub tags.
2922 (get_tag): Return a pointer to the tag that is found.
2923
2924 * etags.c (LOOKING_AT): Use !intoken instead of iswhite.
b166dcd8
KC
2925 (F_takeprec): Rename from takeprec. All callers changed.
2926 (F_getit): Rename from getit. All callers changed.
2927 (nocase_tail): Rename from tail. All callers changed.
2928 (Ada_getit): Rename from adagetit. All callers changed.
eec54bd7 2929 (L_getit): Simplify by using get_tag.
a60e4de9
FP
2930 (Perl_functions, Postscript_functions, erlang_attribute): Use the
2931 modified LOOKING_AT.
b166dcd8 2932 (notinname): Remove '[' and added ')' to the recognised chars.
a60e4de9
FP
2933 (LOOKING_AT, get_tag, PHP_functions): Use notinname.
2934 (Ada_getit, Ada_funcs, Python_functions, Scheme_functions):
2935 Clarified, using strneq or notinname.
2936 (L_isdef, L_isquote): Removed.
2937 (Lisp_functions, L_getit): Clarified.
2938
b166dcd8 2939 * etags.c (P_): Rename to __P for consistency with config.h.
a60e4de9
FP
2940 [HAVE_CONFIG_H]: Let config.h deal with __P.
2941 [__STDC__] [!HAVE_CONFIG_H]: Define PTR as in config.h.
2942 [!__STDC__] [!HAVE_CONFIG_H]: Do not undefine static, because
2943 gperf code needs it.
ecc54057
JB
2944 [HAVE_CONFIG_H] [!PTR]: Define PTR (for use with XEmacs).
2945 [HAVE_CONFIG_H] [!__P]: Define __P (for use with XEmacs).
a60e4de9
FP
2946 (xmalloc, xrealloc): Use PTR instead of long *.
2947 (bool): Make it a define, not a typedef, for C++ compilers.
2948 (pattern): Members renamed to avoid name clash in some C++ compilers.
2949 (get_language_from_langname): Use const argument.
2950
880820fe 29512001-12-22 Pavel Janík <Pavel@Janik.cz>
c95eaa61
PJ
2952
2953 * makefile.nt, makefile.w32-in: Remove mocklisp files.
2954
880820fe 29552001-12-19 Pavel Janík <Pavel@Janik.cz>
69bfc389 2956
b8509940
PJ
2957 * emacsserver.c: Conditionally include config.h.
2958
594aa066
PJ
2959 * fakemail.c: Likewise.
2960
e69233c2
PJ
2961 * emacsclient.c: Include "config.h", not <../src/config.h>.
2962 (main): Parenthesize assignment when used as truth value to
2963 prevent gcc warnings.
2964
69bfc389
PJ
2965 * ebrowse.c: Include stdlib.h and string.h conditionally.
2966
e4e34e31
EZ
29672001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
2968
2969 * yow.c (main): Use time_t, not long, to avoid a compiler warning.
2970
880820fe 29712001-12-18 Pavel Janík <Pavel@Janik.cz>
ffb7c9c6
PJ
2972
2973 * test-distrib.c: Fix previous change.
2974
fb5aa7ac
DL
29752001-12-18 Dave Love <fx@gnu.org>
2976
2977 * test-distrib.c: Conditionally include fcntl.h.
2978
2979 * fakemail.c: Include "config.h", not <../src/config.h>.
2980 (_XOPEN_SOURCE): Define as 500.
2981
2982 * emacsserver.c: Include "config.h", not <../src/config.h>.
2983
2984 * cvtmail.c: Include config.h, stdlib.h.
2985 (xmalloc, xrealloc, skip_to_lf sysfail): Prototype.
2986
2987 * yow.c: Conditionally include various headers. Use "epaths.h",
2988 not <../src/epaths.h>.
2989 (malloc, realloc) [!HAVE_STDLIB_H]: Prototype.
2990
880820fe 29912001-12-12 Francesco Potortì <pot@gnu.org>
e94a3679 2992
13dc0576 2993 * etags.c (PHP_functions): New function for parsing PHP.
e94a3679
FP
2994 (LOOKING_AT): New macro.
2995 (Perl_functions, Python_functions, PHP_functions)
2996 (Scheme_functions, Texinfo_nodes): Use it.
2997 (Perl_functions): Use strneq.
b166dcd8 2998 (prolog_pred): Rename to prolog_pr.
13dc0576 2999 (prolog_pr): Recognise Prolog rules in addition to predicates.
e94a3679 3000 [ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent
13dc0576 3001 unmodified compile, as Cygwin's regex.h is incompatible with us.
e94a3679
FP
3002 [!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string.
3003
34e39c95
RS
30042001-12-11 Richard M. Stallman <rms@gnu.org>
3005
3006 * Makefile.in (clean): Don't delete ../etc/DOC*.
3007
880820fe 30082001-12-11 Pavel Janík <Pavel@Janik.cz>
296071e7
PJ
3009
3010 * COPYING: Moved back.
3011
76054cc8
AI
30122001-11-30 Andrew Innes <andrewi@gnu.org>
3013
e94a3679
FP
3014 * makefile.w32-in (FACE_SUPPORT):
3015 (MOUSE_SUPPORT):
3016 (FLOAT_SUPPORT):
3017 (WINNT_SUPPORT):
76054cc8
AI
3018 (lisp): Reference .el files instead of .elc files, to simplify
3019 bootstrapping.
3020 ($(DOC)): Change dependency to just `make-docfile'.
3021
880820fe 30222001-11-29 Pavel Janík <Pavel@Janik.cz>
0142178a
PJ
3023
3024 * COPYING: Removed.
3025
e8d6a09b
PE
30262001-11-28 Paul Eggert <eggert@twinsun.com>
3027
3028 * rcs2log (Copyright): Add '(C)' as per coding guidelines.
3029
3030 The following changes are derived from suggestions by Bob Chapman
3031 <rechapman@compuserve.com>.
3032
3033 * rcs2log (printlogline): Also allow tab and newline to separate
3034 '(function):' from the rest of a comment.
3035 (reformat the sorted log entries): Require date and author to
3036 match the clumpname.
3037
9a190096
GM
30382001-11-16 Gerd Moellmann <gerd@gnu.org>
3039
3040 * ebrowse.c (matching_regexp): Escape '\\'.
3041
880820fe 30422001-11-15 Pavel Janík <Pavel@Janik.cz>
8ec1b917
PJ
3043
3044 * Makefile.in: Add support for --program-prefix, --program-suffix
3045 and --program-transform-name options.
3046
6d8f7d5d
RS
30472001-11-03 Richard M. Stallman <rms@gnu.org>
3048
3049 * cvtmail.c (xrealloc): Always pass two args to `fatal'.
3050
3051 * movemail.c (popmail): Always pass two args to `error'.
3052
84e70f78
KR
30532001-10-24 Ken Raeburn <raeburn@gnu.org>
3054
3055 * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
3056 -lhesiod and maybe -lresolv.
3057 (CRYPTOLIB) [HAVE_LIBK5CRYPTO]: Use -lk5crypto for Kerberos
3058 support if it's available.
3059
386ca361
MB
30602001-10-21 Miles Bader <miles@gnu.org>
3061
a3b10252
MB
3062 * make-docfile.c (struct rcsoc_state): New type.
3063 (read_c_string_or_comment): Add SAW_USAGE
386ca361 3064 parameter, and implement scanning for a `usage:' keyword.
a3b10252
MB
3065 Use a variable of type `rcsoc_state' to hold most of our state.
3066 (put_char): Add STATE parameter, and remove all other parameters
3067 except CH. Use STATE to get access to all needed state.
3068 (scan_keyword_or_put_char): New function.
386ca361
MB
3069 (scan_c_file): Pass SAW_USAGE argument to read_c_string_or_comment.
3070 Don't output a usage-string if there was one in the doc-string.
3071
71431a0e
GM
30722001-10-20 Gerd Moellmann <gerd@gnu.org>
3073
6aa97356 3074 * (Version 21.1 released.)
71431a0e 3075
880820fe 30762001-10-19 Pavel Janík <Pavel@Janik.cz>
37a9305e
PJ
3077
3078 * b2m.c: Properly spell the name of Emacs.
3079
945220bd
MB
30802001-10-17 Miles Bader <miles@gnu.org>
3081
3082 * make-docfile.c (put_char): New function.
3083 (read_c_string_or_comment): Strip trailing spaces and newlines.
3084
14242528
MB
30852001-10-16 Miles Bader <miles@gnu.org>
3086
3087 * make-docfile.c (scan_c_file): Handle `new style' doc strings in
3088 comments [with `doc:' keyword prefix].
3089
9f5eb4a3
GM
30902001-10-15 Gerd Moellmann <gerd@gnu.org>
3091
3092 * make-docfile.c (read_c_string_or_comment): Don't drop a '*'
3093 in a C doc comment.
3094
e641b454
GM
30952001-10-13 Gerd Moellmann <gerd@gnu.org>
3096
b166dcd8 3097 * make-docfile.c (read_c_string_or_comment): Rename from
e641b454
GM
3098 read_c_string. Add parameter COMMENT. Read C-style comments.
3099 (scan_c_file): Handle doc strings in C comments.
3100
967d7793
AI
31012001-10-12 Andrew Innes <andrewi@gnu.org>
3102
3103 * makefile.nt (ALL): Do not include fakemail.
3104
3105 * makefile.w32-in (install): Do not copy fakemail.
3106
d682756a
JR
31072001-10-10 Jason Rumney <jasonr@gnu.org>
3108
07655e62 3109 * makefile.w32-in (ALL): Do not include fakemail.
d682756a 3110
07655e62 3111 * makefile.nt (install): Ditto.
d682756a 3112
14a3dff7
GM
31132001-10-09 Gerd Moellmann <gerd@gnu.org>
3114
3115 * emacsserver.c (main): Cast geteuid in sprintf to int.
14a3dff7 3116
95bc7904 3117 * emacsclient.c (main): Cast isdigit argument to unsigned char.
14a3dff7 3118
880820fe 31192001-10-07 Pavel Janík <Pavel@Janik.cz>
f98d41f5
PJ
3120
3121 * profile.c: Include config.h, not ../src/config.h.
3122 Include systime.h, not ../src/systime.h.
3123
ab952a4f
GM
31242001-10-05 Gerd Moellmann <gerd@gnu.org>
3125
3126 * Branch for 21.1.
dff28924 3127
12c64503
GM
31282001-10-01 Alexander Zhuckov <zuav@int.spb.ru>
3129
3130 * ebrowse.c (struct alias): Add two new struct members: NAMESP and
3131 ALIASEE to help work with namespace aliases.
3132 (struct sym): Remove struct member NAMESP_ALIASES.
3133 (namespace_alias_table): New variable.
3134 (make_namespace): Add parameter CONTEXT.
3135 (check_namespace): New function.
3136 (find_namespace): Add parameter CONTEXT.
3137 (check_namespace_alias): New function.
02ce3e80
SM
3138 (register_namespace_alias): Change type of parameter OLD_NAME.
3139 Search for already defined alias in NAMESPACE_ALIAS_TABLE.
12c64503
GM
3140 (check_namespace): New function.
3141 (enter_namespace): Call find_namespace with CONTEXT parameter.
3142 (match_qualified_namespace_alias): New function.
eec54bd7 3143 (parse_qualified_ident_or_type): Fix typo in comment.
02ce3e80 3144 While parsing qualified ident or type update namespace context and
12c64503 3145 restore it on exit.
eec54bd7
SM
3146 (parse_qualified_param_ident_or_type): Fix typo in comment.
3147 (globals): Change handling of namespace aliases.
3148 (version): Add year 2001.
12c64503 3149
990e1190
FP
31502001-09-15 Eli Zaretskii <eliz@is.elta.co.il>
3151
3152 * etags.c (analyse_regex): If regex_arg is NULL, return
3153 immediately after a call to free_patterns.
3154
f2e7e23e
AS
31552001-09-05 Paul Eggert <eggert@twinsun.com>
3156
3157 * rcs2log (Help, mainline code): Add new option -L FILE.
3158 (Copyright): Update year.
02ce3e80
SM
3159 (LANG, LANGUAGE, LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES)
3160 (LC_NUMERIC, LC_TIME): New shell vars, to make sure we live in the
f2e7e23e
AS
3161 C locale.
3162 (mainline code): Handle nonstandard -u option differently, by
3163 transforming it to standard form. Check for "Working file: ", not
3164 "Working file:". Allow file names with spaces.
3165 (SOH, rlogfile): New shell vars.
dff28924 3166 (rlogout): Remove. Its old functionality is mostly migrated to
f2e7e23e
AS
3167 rlogfile.
3168
3169 Append ';;' to the last arm of every case statement, for
3170 portability to ancient broken BSD shells.
3171
02ce3e80 3172 (logins): Fix bug; was not being computed at all, lowering performance.
f2e7e23e
AS
3173 (pository): New var. This fixes some bugs where repositories are
3174 remote, or have trailing slashes.
02ce3e80 3175 (authors): $llogout is never an empty shell var, so don't worry
f2e7e23e 3176 about that possibility.
dff28924 3177 (printlogline, mainline code): Fix bug with SOH's being put into
f2e7e23e 3178 the output.
dff28924 3179
75c911eb
EZ
31802001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
3181
3182 * ebrowse.c (SEEK_END): #define if not defined by system headers.
3183 Suggested by Dave Love <d.love@dl.ac.uk>.
3184
5ae10f4a
EZ
31852001-08-29 Eli Zaretskii <eliz@is.elta.co.il>
3186
3187 * makefile.nt (lisp): Synchronize with src/Makefile.in.
3188 * makefile.w32-in (lisp): Ditto.
3189
0e4011d8 31902001-07-25 Juanma Barranquero <lektu@terra.es>
e743f599
GM
3191
3192 * grep-changelog (parse_changelog): Remove unused local variable.
3193
3194 * grep-changelog (main): Add new option --reverse.
3195 (print_log): Use it.
3196 (parse_changelog): Use it.
3197
3c88ae74
GM
31982001-07-20 Gerd Moellmann <gerd@gnu.org>
3199
3200 * grep-changelog: Remove RCS Id keyword.
3201
41848daa
GM
32022001-07-20 Juanma Barranquero <lektu@terra.es>
3203
6e07c0a5
GM
3204 * grep-changelog (parse_changelog): Add tests for defined values
3205 to quiet warning from Perl 5.005 or above.
177ab8ce 3206 (entry_match_p, header_match_p): Fix handling of null or empty
0e4011d8
GM
3207 argument to prevent duplicate headers.
3208
3209 * grep-changelog (main, parse_changelog): Make "use strict"-clean.
41848daa 3210
467f1209
GM
32112001-07-17 Jan Nieuwenhuizen <janneke@gnu.org>
3212
3213 * emacsclient.c (print_help_and_exit): Fix help message for
3214 +LINE:COLUMN option.
3215
32162000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
990e1190 3217
467f1209
GM
3218 * emacsclient.c (main): Add support for +LINE:COLUMN command line
3219 argument.
3220
bb24c64f
GM
32212001-07-16 Gerd Moellmann <gerd@gnu.org>
3222
3223 * ebrowse.c (main): Check that the output file exists and
3224 is non-empty if invoked with `--append'.
3225
880820fe 32262001-05-14 Francesco Potortì <pot@gnu.org>
fa829470 3227
e335b66a
GM
3228 * etags.c (add_regex): Reset the whole newly allocated pattern
3229 buffer instead of the individual members. It's safer and works
ecc54057 3230 with XEmacs.
fa829470 3231
e335b66a 3232 * etags.1: Markups corrected.
fa829470 3233
6da5c7da
GM
32342001-05-08 Gerd Moellmann <gerd@gnu.org>
3235
02ce3e80 3236 * ebrowse.c (enter_namespace): Fix reallocation of namespace_stack.
6da5c7da 3237
efbecf9d
GM
32382001-05-03 Gerd Moellmann <gerd@gnu.org>
3239
3240 * ebrowse.c (globals): Fix handling of namespace aliases.
3241
f4976ebc
EZ
32422001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
3243
3244 * etags.c (print_help): Enclose the regexp in the help text
3245 example in quotes.
3246
23431241
DL
32472001-04-05 Dave Love <fx@gnu.org>
3248
3249 * emacsclient.c (fail): Don't return a value.
fa829470 3250 (main): Cast uid values for sprintf.
23431241 3251
476bf681
GM
32522001-04-03 Gerd Moellmann <gerd@gnu.org>
3253
b3f6107b
GM
3254 * emacsclient.c (fail, main): Don't use implicit int return type.
3255
476bf681
GM
3256 * b2m.c (main): Always return a value.
3257
ef53d75e
GM
32582001-03-02 Gerd Moellmann <gerd@gnu.org>
3259
3260 * ebrowse.c (parse_qualified_param_ident_or_type): Return a
3261 freshly allocated object in *LAST_ID.
3262 (read_line): Accept \r\n line endings.
3263
425de386
AI
32642001-02-24 Andrew Innes <andrewi@gnu.org>
3265
3266 * makefile.w32-in: Fix copyright notice.
3267
880820fe 32682001-02-23 Francesco Potortì <pot@gnu.org>
f55ae599
FP
3269
3270 * etags.c (enum sym_type): New label st_C_template.
3271 (gperf input): Use it for switching to C++ from C.
3272 (consider_token): Do it.
c2a642c0
FP
3273 (C_entries): Initialise typdefcblev to quiet compilers.
3274 [!HAVE_CONFIG_H] [!__STDC__]: #define static as nothing.
f55ae599 3275
f6839838
AI
32762001-02-22 Andrew Innes <andrewi@gnu.org>
3277
3278 * makefile.nt ($(BLD)\movemail.obj): Remove reference to
3279 VMS header files.
3280 ($(BLD)\profile.obj): Ditto.
3281
3282 * makefile.w32-in ($(BLD)/movemail.$(O)): Remove reference to
3283 VMS header files.
3284 ($(BLD)/profile.$(O)): Ditto.
3285
193fba87
AI
32862001-02-05 Andrew Innes <andrewi@gnu.org>
3287
3288 * makefile.w32-in ($(DOC)): Use $(THISDIR) instead of . in
3289 invocation of make-docfile, to work with Windows 2000.
3290
30526cc6
DL
32912001-01-31 Dave Love <fx@gnu.org>
3292
3293 * etags.c (in_word_set): Use `static' in definition (for pcc).
3294
880820fe 32952001-01-31 Francesco Potortì <pot@gnu.org>
8f79fe72 3296
ecc54057 3297 * etags.c [NDEBUG]: #undef assert and #define it as ((void)0), for
8f79fe72
FP
3298 the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
3299 (C_entries): Tag token renamed to still_in_token because sunos4
3300 pcc wants to expand it as the token() macro even though it has no
3301 arguments.
3302
914d7258
AI
33032001-01-30 Andrew Innes <andrewi@gnu.org>
3304
3305 * etags.c (assert) [__MINGW32__]: Redefine assert to work around a
3306 bug in the Mingw32 assert.h header file.
3307
880820fe 33082001-01-30 Francesco Potortì <pot@gnu.org>
b28e26be 3309
ecc54057
JB
3310 * etags.c [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
3311 #define it for the sake of XEmacs.
b28e26be
FP
3312 [WINDOWSNT]: #undef HAVE_NTGUI even if built without
3313 HAVE_CONFIG_H. This change only affects a standalone etags.
3314 [WINDOWSNT]: #undef DOS_NT and #define it even if built with
3315 HAVE_CONFIG_H. This change does nothing in Emacs, as DOS_NT is
3316 always defined when HAVE_CONFIG_H and WINDOWS are both defined.
2f2c687b 3317 [!HAVE_UNISTD_H]: Use defined(WINDOWSNT) instead of the bare
b28e26be
FP
3318 WINDOWSNT, as this is the correct way to use it.
3319
880820fe 33202001-01-28 Francesco Potortì <pot@gnu.org>
8c463abe
FP
3321
3322 * etags.c: Be capable to parse nested struct-like structures.
3323 (structdef, structtag): Struct state machine revisited.
3324 (struct tok): Revisited.
3325 (cstack, nestlev, instruct): New struct and macros.
3326 (pushclass_above, popclass_above, write_classname): New functions
13dc0576 3327 for dealing with nested class names.
8c463abe
FP
3328 (consider_token, make_C_tag, C_entries): Many changes for dealing
3329 with arbitrarily nested structures.
3330 (etags_getcwd): #if MSDOS, not #ifdef MSDOS!
3331 (C_entries): Consider templates in C++.
3332 (sym_type): New constant st_C_class for detecting "class" also in
3333 C mode.
3334 (C_AUTO): New macro for automatic detection of C++.
3335 (consider_token): Automatic set C++ mode.
3336 (C_entries): New security check for yacc.
3337 (print_language_names, print_help): Mention the autodetect
07655e62 3338 feature, do not show help for the -C option, now mostly useless.
8c463abe
FP
3339 (C_entries): Tag C++ forward declarations if --declarations.
3340 (C_entries): Don't be fooled by things like XDEFUN.
3341 (consider_token): Discard asm pseudo function.
3342
e26f9ced
EZ
33432001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
3344
3345 * etags.c: Add a coding: tag.
3346
a47b7816
GM
33472001-01-26 Gerd Moellmann <gerd@gnu.org>
3348
8c463abe 3349 * ebrowse.c (matching_regexp_buffer, matching_regexp_end_buf):
a47b7816
GM
3350 New variables.
3351 (matching_regexp): Use them instead of static variables in
3352 function scope.
3353
880820fe 33542001-01-25 Francesco Potortì <pot@gnu.org>
d22a24fa 3355
b166dcd8
KC
3356 * etags.c (struct tok): Rename from struct token.
3357 (token): Rename from tok.
d22a24fa
FP
3358 (structtype): Make it a local variable.
3359 [DEBUG]: Use assert.
3360 (xrnew): Change the synopsis.
b166dcd8 3361 (typedefs_or_cplusplus): Rename from typedefs_and_cplusplus.
d22a24fa 3362 (grow_linebuffer): Don't call xrnew when not needed.
02ce3e80 3363 (token): Buffer renamed to line.
d22a24fa 3364 (C_entries): Three calls to inibuffer moved here from main.
eec54bd7 3365 (C_entries): Remove all references to var methodlen, delete it.
d22a24fa
FP
3366 (linebuffer_setlen): Was grow_buffer, now also sets len.
3367 (consider_token, C_entries, Pascal_functions): Use it.
3368 (C_entries): Preventing problems relative to extern "C".
3369 (C_entries): Can tag more than one variable or func separated by
3370 comma when --declarations is used.
3371 (C_entries): More accurate tagging of members and declarations.
3372 (yacc_rules): Was global, made local to C_entries.
3373 (next_token_is_func): Removed.
3374 (fvdef): New constants fdefunkey, fdefunname.
3375 (consider_token, C_entries): Use them.
3376 (C_entries): Build proper lisp names for Emacs DEFUNs.
3377
21c2bbe0
GM
33782001-01-22 Gerd Moellmann <gerd@gnu.org>
3379
3380 * ebrowse.c (xfree): New function.
3381 (member, declaration, globals): Use xmalloc instead of alloca.
3382
880820fe 33832001-01-15 Francesco Potortì <pot@gnu.org>
83be933c
FP
3384
3385 * etags.c (print_language_names): Print filenames in addition to
3386 suffixes.
3387
880820fe 33882001-01-14 Francesco Potortì <pot@gnu.org>
47df1a5e 3389
b166dcd8 3390 * etags.c (get_language_from_langname): Rename from
47df1a5e 3391 get_language_from_name.
b166dcd8 3392 (get_language_from_filename): Rename from get_language_from_suffix.
eec54bd7 3393 Now first looks for the complete file name.
47df1a5e
EZ
3394 (language): New member char **filenames.
3395 (Makefile_filenames): List of possible filenames for makefiles.
eec54bd7 3396 (lang_names): Add a NULL member for every entry, added an entry
47df1a5e 3397 for makefiles.
13dc0576 3398 (Makefile_targets): New function.
b166dcd8 3399 (Texinfo_nodes): Rename from Texinfo_fuctions and made
47df1a5e
EZ
3400 it conformant to the style of the rest of the code.
3401
291c7e74
GM
34022001-01-13 Gerd Moellmann <gerd@gnu.org>
3403
3404 * make-docfile.c (write_c_args): Print newlines as spaces.
3405
0dac6924
AI
34062001-01-06 Andrew Innes <andrewi@gnu.org>
3407
3408 * makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
3409 of *.pdb.
3410
3e99d3b4
GM
34112001-01-03 Paul Eggert <eggert@twinsun.com>
3412
290afd83 3413 * rcs2log: Avoid security hole allowing attacker to
3e99d3b4
GM
3414 cause user of rcs2log to overwrite arbitrary files, fixing
3415 a bug reported by Morten Welinder.
3416
3417 Don't put "exit 1" at the end of the exit trap; it's
3418 ineffective in POSIX shells.
3419
d6bb0c0d
GM
34202001-01-02 Gerd Moellmann <gerd@gnu.org>
3421
eec54bd7
SM
3422 * ebrowse.c (yyerror): Change to take two arguments.
3423 Add prototype. Change callers.
d6bb0c0d 3424
d5c00476 34252001-01-02 Eli Zaretskii <eliz@is.elta.co.il>
315f5865
EZ
3426
3427 * ebrowse.c (enter_namespace, main): Cast variables to shut up
3428 compiler warnings.
3429 (yyerror): Change parameter declarations to be of type long, so
3430 that they can take pointers on 64-bit platforms.
3431
3432 * emacsclient.c (main): Remove unused local variable statbfr.
3433 (main) <homedir>: Make its declaration conditional on
3434 SERVER_HOME_DIR, to avoid compiler warnings.
3435
3436 * emacsserver.c (main) <homedir>: Make its declaration conditional
3437 on SERVER_HOME_DIR, to avoid compiler warnings.
3438
3439 * fakemail.c (readline): Cast buffer to "long *" to pacify
3440 over-zealous compilers.
3441
7c89ea61
EZ
34422000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
3443
3444 * etags.c (canonicalize_filename) [DOS_NT]: Fix last change.
3445
a6768cc5
GM
34462000-12-15 Gerd Moellmann <gerd@gnu.org>
3447
3448 * ebrowse.c (operator_name): Cast argument of isalpha to
3449 unsigned char.
3450
3451 * etags.c (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
3452 Use them throughout instead of ctype functions/macros.
3453 (lowcase): Cast to unsigned char.
3454 (UPCASE): New macro.
3455 (canonicalize_filename): Use UPCASE instead toupper.
3456
3457 * fakemail.c (get_keyword): Make sure that isspace and
3458 similar aren't called with a negative argument.
3459
70de49cc
DL
34602000-12-13 Dave Love <fx@gnu.org>
3461
3462 * ebrowse.c (ensure_scope_buffer_room): Fix xrealloc call.
3463
4e8b894c
AI
34642000-12-06 Andrew Innes <andrewi@gnu.org>
3465
3466 * makefile.w32-in (LOCAL_FLAGS): Remove -DVERSION flag, since we
3467 don't know the real version, and I can't seem to get the quoting
3468 right in all circumstances.
3469
3470 * ebrowse.c (VERSION): Provide default definition, like etags.c
3471 does, because Windows build can't snarf this from version.el.
3472
88257bc8
AI
34732000-11-30 Andrew Innes <andrewi@gnu.org>
3474
3475 * makefile.w32-in ($(BLD)/ebrowse.exe): Use tabs not spaces.
3476 (install): Ditto.
3477
d19249e7
JR
34782000-11-23 Jason Rumney <jasonr@gnu.org>
3479
3480 * makefile.w32-in: Add targets for ebrowse.exe.
3481 (LOCAL_FLAGS): Add -DVERSION flag.
3482
7df6adc3
DL
34832000-09-25 Dave Love <fx@gnu.org>
3484
3485 * sorted-doc.c: Include config.h.
3486 [!HAVE_STDLIB_H]: Declare malloc.
3487
fe83b953
AI
34882000-09-14 Andrew Innes <andrewi@gnu.org>
3489
3490 * makefile.w32-in: Revert to Unix line endings.
3491
517699ca
DL
34922000-09-04 Dave Love <fx@gnu.org>
3493
3494 * movemail.c (index, rindex): Prototype conditionally.
3495
f8803e97
AI
34962000-09-03 Andrew Innes <andrewi@gnu.org>
3497
3498 * makefile.w32-in: Change to DOS line endings.
3499
f72adc12
EZ
35002000-09-01 Eli Zaretskii <eliz@is.elta.co.il>
3501
4034f3a8 3502 * movemail.c (toplevel): Remove redundant fcntl.h.
f72adc12
EZ
3503 [!F_OK]: Provide default definitions only after including both
3504 fcntl.h and unistd.h.
3505
f678f592
DL
35062000-08-29 Dave Love <fx@gnu.org>
3507
3508 * movemail.c: Revert previous change.
3509
5b671d04
EZ
35102000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
3511
3512 * Makefile.in (profile, make-docfile, hexl): Depend on config.h.
3513
6fa86045
DL
35142000-08-28 Dave Love <fx@gnu.org>
3515
3516 * movemail.c (toplevel) [HAVE_STRING_H]: Include string.h.
3517 (toplevel) [HAVE_STRINGS_H]: Include strings.h.
3518
746d9caf
AI
35192000-08-22 Andrew Innes <andrewi@gnu.org>
3520
3521 * ntlib.h (WIN32): Remove unnecessary definition.
3522 (sleep): Make argument unsigned long.
3523 (_WINSOCK_H): Undefine so normal winsock definitions can be used.
3524
3525 * ntlib.c (sleep): Make argument unsigned long.
3526
3527 * movemail.c (main) [WINDOWSNT]: Force binary mode for fileio.
3528
3529 * makefile.w32-in: New file.
3530
3b541489
EZ
35312000-08-20 Eli Zaretskii <eliz@is.elta.co.il>
3532
3533 * etags.c (canonicalize_filename) [DOS_NT]: Upcase the first
3534 letter only if it is a drive letter.
3535
e5acf0ca
GM
35362000-07-14 Gerd Moellmann <gerd@gnu.org>
3537
b166dcd8 3538 * ebrowse.c (xrealloc, xmalloc): Rename from yrealloc and ymalloc.
e5acf0ca
GM
3539
3540 * etags.c (xmalloc, xrealloc): Make externally visible, for use
3541 by alloca.o.
3542
02ce3e80 3543 * Makefile.in (alloca.o): Add -Demacs so that alloca will use xmalloc.
e5acf0ca 3544
4b92c49a
GM
35452000-07-10 Gerd Moellmann <gerd@gnu.org>
3546
3547 * ebrowse.c (yylex): Accept string literals with newlines in them.
3548 (process_pp_line): Handle case of string literal with newline
3549 in it in replacement text, which counts as continuing the
3550 replacement text in GNU C.
3551
831a6cb0
GM
35522000-07-02 Gerd Moellmann <gerd@gnu.org>
3553
3554 * ebrowse.c (token_string): Add missing tokens.
3555 (parm_list): Handle case of qualified pointers.
3556
53245ee2
DL
35572000-06-23 Dave Love <fx@gnu.org>
3558
3559 * ebrowse.c: Move config.h before other includes (which may use
3560 feature tests).
3561
dcbf2cd2
JM
35622000-06-14 Jim Meyering <meyering@lucent.com>
3563
3564 * grep-changelog: Fix typos in comments. Remove trailing blanks.
3565
f1c7754a
JR
35662000-06-11 Jason Rumney <jasonr@gnu.org>
3567
3568 * makefile.nt: Add targets for ebrowse.
3569
3570 * ebrowse.c [WINDOWS_NT]: Use stricmp instead of strcasecmp to
3571 compare filenames.
3572
5f1aea9a
GM
35732000-06-06 Gerd Moellmann <gerd@gnu.org>
3574
b166dcd8
KC
3575 * ebrowse.c (ymalloc): Rename from xmalloc.
3576 (yrealloc): Rename from xrealloc.
5f1aea9a 3577
5bf244f1
DL
35782000-05-21 Dave Love <fx@gnu.org>
3579
3580 * movemail.c: Include config.h, not ../src/config.h.
3581 (Errmsg): Bump length.
3582
3583 * pop.c (ERROR_MAX): Increase to 160.
3584
ec82fb2f
GM
35852000-05-04 Gerd Moellmann <gerd@gnu.org>
3586
3587 * ebrowse.c (DEFAULT_OUTFILE): Set to `BROWSE'.
3588
5c922ea7
EZ
35892000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
3590
02ce3e80
SM
3591 * ebrowse.c (PATH_LIST_SEPARATOR) [__MSDOS__ || WINDOWSNT]:
3592 Define to semi-colon.
5c922ea7 3593 (FILENAME_EQ): New macro, for comparing file names.
02ce3e80 3594 (add_member_decl, add_global_decl, add_member_defn): Use FILENAME_EQ.
5c922ea7
EZ
3595 (process_file): Don't assume that fread always reads as many bytes
3596 as it was told to (DOS-style CR-LF text files fail this logic).
3597 (open_file): Allocate enough space for path->path plus the file
3598 name and the slash.
3599
6142fdcb 36002000-04-19 Dave Love <fx@gnu.org>
97052c63
DL
3601
3602 * etags.c (Texinfo_functions): New function.
3603 (lang_names): Install it.
3604 (Texinfo_suffixes): New variable.
3605
cb9215e4
GM
36062000-04-19 Gerd Moellmann <gerd@gnu.org>
3607
3608 * ebrowse.c (xmalloc, xrealloc): Rewritten.
3609 (declaration): Remove parameter IS_EXTERN.
3610 (class_definition): Remove unused variable.
3611
be0dbdab
GM
36122000-04-09 Gerd Moellmann <gerd@gnu.org>
3613
3614 * Makefile.in (INSTALLABLES): Add ebrowse.
3615 (ebrowse): New target.
3616
3617 * ebrowse.c: New file.
3618
c5aa0fc2
AS
36192000-03-29 Andreas Schwab <schwab@suse.de>
3620
3621 * make-docfile.c (scan_lisp_file): Also look for `defsubst'.
3622
d054101f
GM
36232000-03-02 Gerd Moellmann <gerd@gnu.org>
3624
07e99590 3625 * etags.c (lisp_suffixes): Add `LSP'.
d054101f 3626
880820fe 36272000-02-10 Francesco Potortì <pot@gnu.org>
71cbb895 3628
eec54bd7 3629 * etags.c (iswhite): Redefine not to consider '\0' as white
71cbb895
FP
3630 space, and use it throughout in place of isspace, thus preventing a
3631 potential signed char to int conversion problem.
10d1d0af 3632 (MSDOS): #undefine before redefining.
71cbb895 3633
880820fe 36342000-02-04 Francesco Potortì <pot@gnu.org>
71cbb895
FP
3635
3636 * etags.c (many functions): Add prototypes.
3637
97fa0cc8
DL
36382000-02-10 Dave Love <fx@gnu.org>
3639
3640 * etags.c (pfnote, new_pfnote, C_entries, prolog_pred)
3641 (erlang_func): Add `static' to definitions to keep pcc happy.
3642
880820fe 36432000-01-31 Francesco Potortì <pot@gnu.org>
e4100b7f
FP
3644
3645 * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
3646 (get_compressor_from_suffix, process_file): Use MSDOS in if clause.
3647 (etags_strchr, etags_strrchr): Use const char * and int as arguments.
3648 (getenv, getcwd): Only declare them if necessary.
3649 (EMACS_NAME): New constant macro.
3650 (print_version): Use it.
3651 (P_) [__STDC__]: Macro for defining function prototypes.
e4100b7f 3652
19e262bd 36532000-01-18 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
e4100b7f
FP
3654
3655 * etags.c [WINDOWSNT]: #include <direct.h>
3656
19e262bd 36572000-01-18 Martin Buchholz <martin@xemacs.org>
e4100b7f 3658
19e262bd
FP
3659 * etags.c (all functions): Made them static.
3660 (all functions): Write prototypes.
e4100b7f 3661
55e30d2a
RS
36622000-01-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3663
3664 * movemail.c (main): Improve error message if can't create lock file.
3665
c60ee5e7 36662000-01-28 Eric Hanchrow <offby1@blarg.net>
875c1439
GM
3667
3668 * emacsclient.c (socket_status): New function.
02ce3e80 3669 (main): If $LOGNAME or $USER exist and differ from our euid, look
875c1439
GM
3670 for a socket based on the UID associated with the name.
3671
e4936aa9
GM
36722000-01-12 Han-Wen Nienhuys <hanwen@cs.uu.nl>
3673
3674 * emacsclient.c: Add option -a EDITOR and environment variable
3675 ALTERNATE_EDITOR. Exec this editor if we fail to contact Emacs.
3676
f0131492 36771999-12-10 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
791a9087
GM
3678
3679 * movemail.c (popmail): Allow mailbox specifications of the
3680 form `po:username:hostname'.
3681
880820fe 36821999-11-19 Francesco Potortì <pot@gnu.org>
e2081362
FP
3683
3684 * etags.c (_GNU_SOURCE): Define only if undefined.
3685 (get_scheme): Declaration deleted.
02ce3e80 3686 (main): Error was called with an integer as second arg, instead of
e2081362
FP
3687 a char pointer.
3688 (canonicalize_filename): Bug removed.
3689
36901999-11-18 Dave Love <d.love@dl.ac.uk>
3691
3692 * etags.c (C_entries): Rename label `intoken', avoiding K&R
3693 lossage from name clash with macro.
3694
b05d3bee
GM
36951999-11-13 Gerd Moellmann <gerd@gnu.org>
3696
3697 * Makefile.in (b2m): Add dependency on GETOPTDEPS.
3698
cb3a6c48
GM
36991999-11-03 Gerd Moellmann <gerd@gnu.org>
3700
3701 * etags.c (print_help): Change email address to send bugs to.
3702
6088b51f 37031999-11-01 Francesco Potortì <pot@gnu.org>
1c478461
FP
3704
3705 * etags.c: Add suffix psw for PSWrap.
3706 (L_getit): Generalize a "cp!=' '" into "!isspace(*cp)".
3707 (Postscript_functions): Add code for PSWrap.
3708 (Scheme_functions): Use local pointer and new get_tag function.
3709 (get_tag): New name for old get_scheme.
3710 (process_file): Do not free NULL when file does not exist.
3711 (typdef): ttypedefseen renamed to tkeyseen, new label ttypeseen.
3712 (C_entries): Modifications that make --members tag even inside
3713 typedefs and C nested structs (one level only).
eec54bd7 3714 (consider_token): Correct a bug which prevented tagging of enum
1c478461 3715 constants.
eec54bd7 3716 (C_stab_entry): Add if, for, while, switch, return as
1c478461
FP
3717 st_C_ignore. This makes it simpler to work when cblev!=0.
3718
02ce3e80 3719 * etags.c (C_entries): Tag member function declarations when
1c478461
FP
3720 --declarations is used.
3721
3722 * etags.c (C_entries, consider_token): C++ `operator' now is
3723 tagged in most cases.
3724 As before, :: is not recognised if surrounded by spaces.
3725
3726 * etags.c (relative_filename): Account for DOS file names such
3727 that is impossible to make one relative to another.
3728
3729 * etags.c (sym_type): New st_C_extern tag.
3730 (gperf input): Use it for spotting external declarations.
a7c29764 3731 (print_help): Document the new behavior of --declarations.
1c478461
FP
3732 (fvextern): New global variable.
3733 (consider_token, C_entries): Use it.
3734
3735 * etags.c (HAVE_GETCWD) [WINDOWSNT]: Define if undefined.
3736 (etags_getcwd): Remove test for WINDOWSNT.
3737
3738 * etags.c (process_file) [MSDOS]: If foo.c.gz is not found, try
3739 foo.cgz, foo.cz, etc.
3740
3741 * etags.c (declarations): New global switch.
3742 (longopts): Describe it.
3743 (print_help): Document it.
3744 (C_entries): Use it.
3745 (process_file): Don't process a file twice.
3746
3747 * etags.c (Fortran_functions): No tags for "procedure".
3748
37491999-11-01 Eli Zaretskii <eliz@is.elta.co.il>
3750
3751 * etags.c (get_compressor_from_suffix): Second argument EXTPTR, if
3752 non-zero, returns a pointer to where the extension begins; callers
3753 changed.
3754 [MSDOS]: Support DOS file names by handling e.g. foo.cgz as if it
3755 were foo.c.gz.
3756
880820fe 37571999-11-01 Francesco Potortì <pot@gnu.org>
1c478461
FP
3758
3759 * etags.c (sym_type, C_stab_entry): New constant st_C_operator.
3760 (fvdev): New constant foperator.
3761 (consider_token): Use it to get "operator" in C++.
3762 (C_entries): Extend length of operator@ function name.
3763 (C_entries): Use foperator when necessary.
3764
3765 * etags.c (main) [!ETAGS_REGEXPS]: Do not call free_patterns.
3766
3767 * etags.c (compressor): New struct for compressed files.
3768 (get_compressor_from_suffix): New function.
3769 (get_language_from_suffix): Use it. Also, semantics changed.
3770 (process_file): Consider compressed files, close file.
3771 (find_entries): Use different call arg for get_language_from_suffix,
3772 don't close file.
3773
3774 * etags.c (main): Call free_tree.
3775 (find_entries): Do not free curfile.
3776 (pfnote): Cosmetic change: NULL and '\0' where appropriate.
3777 (prolog_pred, erlang_func, substitute): Cast strlen to int when
3778 comparing.
3779 (canonicalize_filename): Shut up compiler warning.
3780 (Perl_functions): Make tag significant.
3781
37821999-11-01 Dave Love <d.love@dl.ac.uk>
3783
3784 * etags.c (longopts, optstring): New option --ignore-case-regex (-c).
3785 (argument_type): New member at_icregexp.
3786 (lc_trans): New global.
3787 (main): Fill lc_trans. Process -c args.
3788 (add_regex): New arg determining whether to use translation table.
3789 (analyse_regex): New arg. Use it for add_regex.
3790
880820fe 37911999-11-01 Francesco Potortì <pot@gnu.org>
1c478461
FP
3792
3793 * etags.c (init): Cosmetic change: NULL --> '\0'.
3794 (erlang_attribute): Bug corrected (uninitialized variable).
3795 (filename_is_absolute): New function replaces absolutefn macro and
02ce3e80 3796 corrects a bug. All callers changed.
1c478461
FP
3797 (canonicalize_filename): New function.
3798 (process_file, etags_getcwd, absolute_dirname): Use it.
b166dcd8 3799 (relative_filename, absolute_filename): Remove var shadowing.
1c478461 3800 (C_entries, Pascal_functions): Add fake initializations to keep
02ce3e80 3801 compilers quiet.
1c478461
FP
3802 (TeX_functions, Prolog_functions, Erlang_functions): Cleanup.
3803
3804 * etags.c (xrnew): New macro. All callers of xrealloc changed.
3805 (language): New typedef (was struct lang_entry).
3806 (curlang): New global variable.
02ce3e80 3807 (node): Typedef renamed from NODE.
1c478461
FP
3808 (linebuffer): New typedef (was struct linebuffer).
3809 (pattern): New typedef (was struct pattern). Some members added.
3810 Now used as element of a linked list.
3811 (patterns, num_patterns): Global variables deleted.
3812 (p_head): New global variable.
a64387ee 3813 (forced_lang): New global variable (replaces lang_func).
02ce3e80
SM
3814 (get_language_from_name, get_language_from_interpreter)
3815 (get_language_from_suffix): Semantics changed. All callers changed.
1c478461 3816 (last_node): New global variable.
02ce3e80
SM
3817 (free_tree, add_node, put_entries, total_size_of_entries):
3818 Change name of local vars to avoid clashes with typedef node.
1c478461
FP
3819 (number_len): Rewritten for elegance.
3820 (token): New typedef replaces TOKEN.
3821 (analyse_regex, add_regex): Rewritten for new functionality.
3822 (free_patterns): New function called from main and add_regex.
3823 (initbuffer, readline_internal, readline, grow_linebuffer):
02ce3e80 3824 Change name of local vars to avoid clashes with typedef linebuffer.
1c478461
FP
3825 (readline): Rewritten for new functionality.
3826
ecc54057 3827 * etags.c (Scheme_suffixes): New suffix ".ss".
1c478461
FP
3828 (print_help): --globals is now used for more than C-type languages.
3829 (Perl_functions): Tag global variables ("my" and "local").
3830
3831 * etags.c (print_help): Some messages clarified.
3832 (LOOP_ON_INPUT_LINES): New macro.
02ce3e80
SM
3833 (just_read_file, Fortran_functions, Asm_labels, Perl_functions)
3834 (Python_functions, Cobol_paragraphs, Pascal_functions)
3835 (Lisp_functions, Postscript_functions, Scheme_functions)
3836 (TeX_functions, Prolog_functions, Erlang_functions): Use it.
3837 (Cobol_paragraphs, Postscript_functions, TeX_functions)
3838 (Prolog_functions, Erlang_functions): Use a local variable instead
1c478461
FP
3839 of the global variable dbp.
3840 (Pascal_functions, L_isquote, Scheme_functions): Use GNU coding
3841 standard indentation.
3842
02ce3e80
SM
3843 * etags.c (Python_suffixes, lang_names, Python_functions):
3844 Python support.
1c478461 3845 (skip_spaces, skip_non_spaces): Utility functions.
02ce3e80
SM
3846 (find_entries, takeprec, getit, Fortran_functions, Perl_functions)
3847 (Python_functions, L_getit, Lisp_functions, Scheme_functions)
3848 (prolog_pred, erlanf_func, erlang_attribute): Use them.
1c478461
FP
3849 (eat_white): Deleted.
3850
3851 * etags.c (CHAR, init): Keep into account non US-ASCII
3852 characters and compilers with default signed chars.
3853 (L_getit): Tag "(defstruct (foo", "(defun (operator" and similar
3854 constructs.
ecc54057 3855 (C_stab_entry): "interface" in Java behaves like "class".
1c478461 3856
ecc54057 3857 * etags.c (HAVE_NTGUI) [WINDOWSNT]: #undef if HAVE_CONFIG_H.
1c478461
FP
3858 (main): Put interval syntax here.
3859 (add_regex): And remove it from here.
3860
3861 * etags.c (suggest_asking_for_help): Provide a
3862 meaningful help message with and without LONG_OPTIONS.
3863
d07529f3 3864 * etags.c (<io.h>) [MSDOS]: Include it, don't include string.h.
1c478461
FP
3865 <stdlib.h, string.h>: Don't test MSDOS when including them.
3866 (white, nonam, endtk): Like elsewhere, use \r instead of \013.
3867 (put_entries): Correctly use %ld instead of %d in printf.
3868
d07529f3 3869 * etags.c (<unistd.h>) [HAVE_UNISTD_H]: Include conditionally, else
1c478461
FP
3870 declare getcwd if HAVE_GETCWD.
3871 (consider_token): Dead break instruction removed.
3872
4ee9629e
PE
38731999-10-19 Paul Eggert <eggert@twinsun.com>
3874
3875 Add support for large files. Merge glibc 2.1.2.
1c478461 3876
4ee9629e 3877 * b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
d07529f3 3878 * movemail.c, pop.c:
4ee9629e
PE
3879 Do not include <stdlib.h>, as <config.h> does this now.
3880
3881 * b2m.c, emacsserver.c, etags.c, profile.c:
3882 Include <config.h> before any system include files.
1c478461 3883
4ee9629e 3884 * emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
d07529f3 3885 * test-distrib.c:
4ee9629e
PE
3886 (read, write, open, close): Do not undef.
3887
3888 * getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
3889 (const): Do not define if HAVE_CONFIG_H; that's config.h's job.
3890
3891 * getopt.h: Adopt glibc 2.1.2.
1c478461 3892
93c8d183
DL
38931999-10-15 Dave Love <fx@gnu.org>
3894
3895 * Makefile.in (pop.o): Depend on config.h.
3896
b358f91c
GM
38971999-10-11 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
3898
3899 * pop.c: Use "pop3" as the POP service name on all platforms,
3900 instead of using "pop" on Unix and "pop3" on Windows NT. "pop3"
3901 has been the standard service name since RFC 1340 was published in
3902 July 1992, so I think it's safe to start using it by default.
3903
362bc2da
DL
39041999-09-27 Dave Love <fx@gnu.org>
3905
3906 * make-docfile.c (scan_lisp_file): Fix typo causing infloop.
3907
74e4cb59
PR
39081999-09-19 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3909
3910 * make-docfile.c (scan_lisp_file): Fix previous changes;
3911 swallow CRLF like just CR or just LF.
3912
362bc2da
DL
39131999-09-03 Richard Stallman <rms@gnu.org>
3914
3915 * make-docfile.c: Include config.h not ../src/config.h.
3916 (main, fopen, chdir): Add #undef.
3917 (read_c_string, scan_c_file, skip_white, read_lisp_symbol)
3918 (scan_lisp_file): Handle \r like \n.
3919
39201999-08-30 Andreas Schwab <schwab@gnu.org>
3921
3922 * make-docfile.c, fakemail.c: Include <stdlib.h> if available.
3923
3924 * emacsserver.c: Include <stdlib.h> if available. Don't declare
3925 errno if it's a macro.
3926
3927 * test-distrib.c: Include <unistd.h> if available.
3928
39291999-08-29 Richard Stallman <rms@gnu.org>
3930
3931 * emacsclient.c (print_help_and_exit): Mention --version.
3932
39331999-08-25 Richard M. Stallman <rms@gnu.org>
3934
3935 * emacsclient.c (decode_options): Update version output.
3936 (print_help_and_exit): Update bug report address.
3937
39381999-08-13 Richard M. Stallman <rms@gnu.org>
3939
3940 * emacsclient.c (main): Move the dynamic allocation of
3941 system_name outside of the SERVER_HOME_DIR conditional.
3942 * emacsserver.c (main): Likewise.
3943
39441999-08-10 Gerd Moellmann <gerd@gnu.org>
3945
3946 * grep-changelog: New.
3947 * Makefile.in (INSTALLABLE_SCRIPTS): Add it.
3948
39491999-07-12 Richard Stallman <rms@gnu.org>
3950
3951 * Version 20.4 released.
3952
39531999-06-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
3954
1c478461 3955 * Makefile.in (clean): Remove fns*.el.
362bc2da
DL
3956
39571999-06-23 Dave Love <fx@gnu.org>
3958
3959 * etags.c (erlang_attribute): Fix undefined variable usage (after
3960 Potorti).
3961
86e888c2 39621999-05-02 Andrew Innes <andrewi@gnu.org>
362bc2da
DL
3963
3964 * movemail.c (main) [WINDOWSNT]: Call ftruncate, which is now
3965 mapped to _chsize.
3966
39671999-04-29 Richard M. Stallman <rms@gnu.org>
3968
3969 * emacsclient.c (main, both versions): Use quote_file_name on cwd.
3970
39711999-03-30 Dave Love <fx@gnu.org>
3972
3973 * sorted-doc.c (main): Split up tables. Modify the preamble
3974 somewhat.
3975
39761999-03-05 Geoff Voelker <voelker@cs.washington.edu>
3977
3978 * makefile.nt: Remove common multiple file compilation commands.
3979
39801999-02-26 Richard Stallman <rms@gnu.org>
3981
362bc2da
DL
3982 * Makefile.in (yow): Depend on epaths.h, not paths.h.
3983
3984 * yow.c: Refer to epaths.h.
3985
39861999-02-22 Simon Josefsson <jas@pdc.kth.se>
3987
3988 * emacsserver.c (perror_1, fatal_error): Don't compile unless needed.
3989
39901999-01-27 Andrew Innes <andrewi@gnu.org>
3991
3992 * makefile.nt: Do make version comparison as strings.
3993
39941999-01-25 Richard Stallman <rms@gnu.org>
3995
3996 * emacsclient.c (xmalloc): Fix previous change.
3997
39981999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
3999
4000 * emacsclient.c (xmalloc): Declare to return long.
4001
40021999-01-22 Geoff Voelker <voelker@cs.washington.edu>
4003
4004 * etags.c (etags_getcwd, absolute_filename) [DOS_NT]: Canonicalize
4005 the case of the drive letter.
4006
40071999-01-15 Richard Stallman <rms@psilocin.ai.mit.edu>
4008
4009 * emacsserver.c (main): Eliminate arbitrary limit on
4010 length of system_name.
4011
4012 * emacsclient.c (main): Eliminate arbitrary limit on
4013 length of system_name.
4014 (xmalloc): Define unconditionally.
4015
40161999-01-12 Darrin B. Jewell <jewell@mit.edu>
4017
4018 * etags.c (relative_filename): Stop backward search at beginning
4019 of string, since non-Unix systems can have absolute paths with no
4020 initial slash.
4021
40221998-12-08 Geoff Voelker <voelker@cs.washington.edu>
4023
4024 * makefile.nt: Do string comparision of _NMAKE_VER.
4025
c60ee5e7 40261998-11-03 Theodore Jump <tjump@cais.com>
362bc2da
DL
4027
4028 * makefile.nt: Compile multiple source files when possible.
4029
40301998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
4031
4032 * Makefile.in: Replace tabs with spaces
4033 when they might confuse some Make versions.
4034
40351998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
4036
4037 * emacsclient.c (main): Null-terminate system_name.
4038
4039 * emacsserver.c (main): Null-terminate system_name.
4040
40411998-09-21 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4042
4043 * movemail.c (popmail, pop_retr) [MAIL_USE_POP]: When displaying
4044 an error message from POP, mention that it's from POP, to
4045 distinguish it from local error messages.
4046
40471998-09-04 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4048
4049 * movemail.c [MAIL_USE_POP]: Add the "-r" flag to reverse the
4050 order of messages downloaded from a POP server (e.g., if the
4051 server stores messages in mailboxes in reverse order).
4052
40531998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
4054
4055 * Version 20.3 released.
4056
40571998-08-11 Paul Eggert <eggert@twinsun.com>
4058
4059 * rcs2log: Update copyright date and bug report address.
4060 (initialize_fullname): Prefer getent if available.
4061
40621998-07-30 Paul Eggert <eggert@twinsun.com>
4063
290afd83 4064 * Makefile.in (REGEXPDEPS, regex.o):
362bc2da 4065 Prepend $(srcdir)/ to rule dependencies outside this dir.
1c478461 4066
362bc2da
DL
40671998-06-09 Andrew Innes <andrewi@harlequin.co.uk>
4068
4069 * etags.c (etags_getcwd) [WINDOWSNT]: Use getcwd on Windows.
4070
40711998-06-06 Richard Stallman <rms@psilocin.ai.mit.edu>
4072
4073 * Makefile.in: Properly terminate a comment.
4074
40751998-06-01 Andrew Innes <andrewi@mescaline.gnu.org>
4076
4077 * movemail.c (sys_wait): Rename to wait.
4078
4079 * ntlib.h: Undefine _WINSOCKAPI_.
4080
4081 * makefile.nt (LOCAL_FLAGS): Define HAVE_CONFIG_H.
4082
40831998-05-30 Geoff Voelker <voelker@cs.washington.edu>
4084
4085 * ntlib.c (getppid): Look for EM_PARENT_PROCESS_ID.
4086
40871998-05-01 Andrew Innes <andrewi@harlequin.co.uk>
4088
b166dcd8
KC
4089 * movemail.c [WINDOWSNT]: Undefine DISABLE_DIRECT_ACCESS.
4090 Force all file i/o to be in binary mode. Include ntlib.h.
362bc2da
DL
4091
40921998-04-27 Andreas Schwab <schwab@delysid.gnu.org>
4093
4094 * make-docfile.c: Include <unistd.h> for chdir.
4095
40961998-04-25 Richard Stallman <rms@psilocin.gnu.org>
4097
4098 * etags.c (TEX_decode_env): Don't free the value getenv returns.
4099
41001998-04-17 Geoff Voelker <voelker@cs.washington.edu>
4101
4102 * makefile.nt (obj): Update with new files in src.
4103 (clean): Delete patch scratch files, optimized compilation dir.
4104
41051998-04-08 Dave Love <fx@gnu.org>
4106
4107 * emacsclient.c: Move inclusion of unistd.h to top, else fails on
4108 Irix6, at least.
4109
41101998-04-06 Andreas Schwab <schwab@gnu.org>
4111
4112 Silence -Wimplicit:
4113 * movemail.c: Move cancelations up. Include <stdlib.h> if
4114 available.
4115 * fakemail.c (_XOPEN_SOURCE): Define for declaration of cuserid.
4116 (parse_header): Explicitly declare return type.
4117 * emacsserver.c: Include <unistd.h> if available.
4118 (main, handle_signals, perror_1, fatal_error): Explicitly declare
4119 return types. Add forward declarations.
4120 * emacsclient.c: Include <stdlib.h> and <unistd.h> if available.
4121 Don't declare geteuid.
b166dcd8
KC
4122 (print_help_and_exit): Change return type to void.
4123 Forward declare it.
362bc2da
DL
4124 * b2m.c: Include <stdlib.h> if available.
4125 (main): Explicitly declare return type.
4126
362bc2da
DL
41271998-04-03 Richard Stallman <rms@psilocin.gnu.org>
4128
4129 * etags.c (put_entries): Use %ld.
4130
4131 * b2m.c (fatal): Declare the arg.
4132
41331998-03-26 Richard Stallman <rms@psilocin.gnu.org>
4134
b166dcd8 4135 * pop.c (pop_getline): Rename from getline.
362bc2da
DL
4136
41371998-03-05 Richard Stallman <rms@psilocin.gnu.org>
4138
4139 * Makefile.in (install): Use INSTALL_STRIP with INSTALL_PROGRAM
4140 for the utilities.
4141
41421998-01-23 Dave Love <d.love@dl.ac.uk>
4143
4144 * etags.c (getit, Cobol_paragraphs, Pascal_functions,
4145 Postscript_functions, prolog_pred, erlang_func, erlang_attribute):
4146 Always make named tags.
4147 (Fortran_functions): Grok BLOCK DATA.
4148
41491998-01-23 Andreas Schwab <schwab@gnu.org>
4150
4151 * movemail.c (main): Fix interwoven brace and cpp conditional
4152 nesting.
4153
362bc2da
DL
41541997-12-03 Paul Eggert <eggert@delysid.gnu.org>
4155
cb438d6e
JB
4156 * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which quotes
4157 with a '>' any lines starting with "From " read from the POP server,
4158 but leave the code in place, wrapped in #ifdef
362bc2da 4159 MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
b166dcd8
KC
4160 because it turns out that something is depending on it.
4161 Change suggested by Paul Eggert <eggert@twinsun.com>.
362bc2da
DL
4162 Convert the character \037 (^_) at the beginning of a line into
4163 the character '^' followed by the character '_', because otherwise
4164 Emacs can't parse the resulting file as a valid BABYL file.
4165 Change suggested by Paul Eggert <eggert@twinsun.com>.
4166
41671997-12-03 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4168
4169 * movemail.c, pop.c, pop.h: Allow messages retrieved from the POP
4170 server to contain embedded nulls.
4171
41721997-12-02 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1c478461 4173
362bc2da
DL
4174 * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which
4175 quotes with a '>' any lines starting with "From " read from the
4176 POP server, but leave the code in place, wrapped in #ifdef
4177 MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
b166dcd8
KC
4178 because it turns out that something is depending on it.
4179 Change suggested by Paul Eggert <eggert@twinsun.com>.
362bc2da
DL
4180
4181 Convert the character \037 (^_) at the beginning of a line into
4182 the character '^' followed by the character '_', because otherwise
4183 Emacs can't parse the resulting file as a valid BABYL file.
4184 Change suggested by Paul Eggert <eggert@twinsun.com>.
4185
41861997-11-22 Richard Stallman <rms@gnu.org>
4187
4188 * b2m.c: Include getopt.h.
4189 (main): Use getopt_long to handle --version and --help.
4190
4191 * Makefile.in (b2m): Define VERSION. Link with $(GETOPTOBJS).
4192
41931997-10-31 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4194
b166dcd8
KC
4195 * pop.c (fullwrite): Get rid of an extra call to write.
4196 Problem pointed out by Chiaki Ishikawa.
362bc2da
DL
4197
41981997-10-16 Dave Love <d.love@dl.ac.uk>
4199
ecc54057
JB
4200 * etags.c (L_getit): Always make named tags so that Emacs
4201 completion on symbols containing `:' etc. works.
4202 (get_scheme): Likewise.
362bc2da
DL
4203
42041997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4205
4206 * pop.c: Use system header files instead of declaring C-library
4207 functions explicitly.
4208
42091997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4210
4211 * Version 20.2 released.
4212
42131997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4214
4215 * Version 20.1 released.
4216
42171997-09-02 Andrew Innes <andrewi@harlequin.co.uk>
4218
4219 * makefile.nt (movemail.exe): Link wsock32.lib before LIBS.
4220
4221 * ntlib.c (getpid): Delete function.
4222
42231997-08-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
4224
4225 * make-docfile.c (scan_lisp_file): Handle custom-declare-variable.
4226
42271997-08-26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
4228
4229 * emacsclient.c [HAVE_SYSVIPC]: Include errno.h, as in the other case.
4230 (main) [!BSD_SYSTEM]: Fix error message for getcwd failure.
4231
42321997-08-14 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4233
4234 * emacsserver.c (main): Use SOCKLEN_TYPE for fromlen, if it is defined.
4235
42361997-08-13 Kazushi (Jam) Marukawa <jam@poboxes.com>
4237
4238 * profile.c (get_time): Cast arg to fprintf.
4239
4240 * hexl.c (main): Use %08lx instead of %08x in printf because the
4241 variable named addresses is long.
4242
42431997-08-08 Geoff Voelker <voelker@cs.washington.edu>
4244
4245 * makefile.nt (lisp): Update paths to lisp files that have moved.
4246
42471997-08-08 Andrew Innes <andrewi@harlequin.co.uk>
4248
4249 * makefile.nt (ctags.obj): New target.
4250 (etags.obj, getopt.obj, make-docfile.obj): Update dependencies.
4251
4252 * ntlib.h: Add includes.
4253 Undo definitions of crt routines from config.h.
4254
42551997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4256
4257 * etags.c (Yacc_suffixes, Asm_suffixes): Add some alternatives.
4258
42591997-07-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4260
4261 * pop.c: Support auto-configuration of both Kerberos V4 and
ecc54057
JB
4262 Kerberos V5 for movemail, including detection of V4 and V5 header
4263 files and libraries.
362bc2da 4264 Include <string.h> when STDC_HEADERS is defined, to get
ecc54057 4265 declarations of string functions.
362bc2da 4266 [KERBEROS5] (socket_connection): Support the current MIT Kerberos
ecc54057 4267 V5 API rather than the old one.
362bc2da 4268 [KERBEROS] (socket_connection): Change a constant name from
ecc54057
JB
4269 SOCKET_ERROR to POP_SOCKET_ERROR to avoid a namespace conflict
4270 with a constant in a header file.
362bc2da
DL
4271
4272 * Makefile.in: Support auto-configuration of both Kerberos V4 and
ecc54057
JB
4273 Kerberos V5 for movemail, including detection of V4 and V5 header
4274 files and libraries.
362bc2da
DL
4275
42761997-07-17 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4277
4278 * fakemail.c [HAVE_UNISTD_H]: Include unistd.h.
4279
4280 * etags.c [HAVE_UNISTD_H]: Include unistd.h.
1c478461 4281
362bc2da
DL
42821997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4283
4284 * emacsclient.c [C_ALLOCA] (xmalloc): New function.
4285
42861997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4287
4288 * movemail.c (rindex): Add declaration.
4289
d57727c9 42901997-07-01 Geoff Voelker <voelker@cs.washington.edu>
362bc2da
DL
4291
4292 * makefile.nt (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
4293 (movemail.exe): Depend upon and link with getopt files.
4294 (obj): Include new source files.
4295 (FACE_SUPPORT, MOUSE_SUPPORT, FLOAT_SUPPORT, WINNT_SUPPORT): Define.
4296 (lisp): Include new and reorganized elisp files.
4297
42981997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4299
4300 * Makefile.in (blessmail): Find blessmail.el in mail subdirectory.
4301
43021997-06-25 Paul Eggert <eggert@twinsun.com>
4303
4304 * rcs2log: Don't assign to $0 in awk; some awks don't allow this.
4305
43061997-06-14 Karl Heuer <kwzh@gnu.ai.mit.edu>
4307
4308 * b2m.c (readline): Terminate buffer properly when EOF seen.
4309 Test for valid pointer before dereferencing it.
4310
880820fe 43111997-05-30 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4312
4313 * Makefile.in (etags): Remove -DETAGS_REGEXPS, because now it is
4314 defined inside etags.c if HAVE_CONFIG_H is defined.
4315
880820fe 43161997-05-29 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da 4317
ecc54057 4318 * etags.c (logical): Type name changed to bool.
362bc2da
DL
4319 (ETAGS_REGEXPS, LONG_OPTIONS) [HAVE_CONFIG_H]: #define them.
4320 (<getopt.h>) [LONG_OPTIONS]: Include conditionally.
4321 (getopt_long) [!LONG_OPTIONS]: Redefine as macro.
4322 (main): Accepted options depend on ETAGS_REGEXPS and LONG_OPTIONS.
4323 (longopts): New long options without short counterpart are
4324 globals, members, no-globals, no-members. Regexp options are now
4325 defined conditionally to ETAGS_REGEXPS.
4326 (print_help): Updated.
4327
880820fe 43281997-05-22 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4329
4330 * etags.c (C_entries): Use "." instead of "::" for Java.
4331 (consider_token): is_func renamed to is_func_or_var.
4332 (C_entries): is_func renamed to funorvar.
4333 (C_entries): Initialise tok.named.
4334 (sym_type, C_stab_entry, consider_token): st_C_ignore is used to
4335 get rid of "import", "package" and "friend".
b166dcd8
KC
4336 (fvdef): Rename from funcdef. Also some constants renamed.
4337 All users changed.
362bc2da
DL
4338 (C_entries): Make separate tags for variables separated by comma.
4339 (globals, members): New flags.
4340 (main, C_entries): Use them.
4341 (make_C_tag, C_entries): Make tok a global variable.
1c478461 4342
880820fe 43431997-05-16 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4344
4345 * etags.c (funcdef): New vignore constant.
4346 (consider_token, C_entries): Use it to tag global variables.
4347 (print_help): Update for global variables.
4348 (consider_token, C_entries): Set the len member of token_name.
4349 (prolog_pred): Cleanup according to GNU coding standards.
4350 (Cobol_suffixes, lang_names, Cobol_paragraphs): Cobol support.
b166dcd8 4351 (prolog_white, erlang_white): Rename to eat_white, callers changed.
362bc2da 4352
880820fe 43531997-05-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4354
4355 * etags.c (CHARS, CHAR): New constant and macro.
4356 (iswhite, begtoken, intoken, endtoken): Use them.
4357 (notinname, _nin, nonam): New macro, array, string.
4358 (init): Cleanup and init _nin.
4359 (new_pfnote): New function.
4360 (make_C_tag) [traditional_tag_style]: Use it.
10d1d0af 4361 (traditional_tag_style): Constant set to TRUE for now.
362bc2da 4362
880820fe 43631997-05-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4364
4365 * etags.c (C_entries, Pascal_functions): Cleanup.
4366 (TeX_functions): NULL as a function arg needs a cast.
4367 (Erlang_functions, erlang_func, erlang_attribute): Cleanup.
4368
880820fe 43691997-05-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4370
4371 * etags.c (TeX_functions): Cleaned up.
4372 (tex_getit): Removed.
4373
43741997-05-13 Paul Eggert <eggert@twinsun.com>
4375
4376 * rcs2log (files): When computing arguments automatically, ignore
ecc54057 4377 non-files within the RCS subdirectory.
362bc2da 4378
880820fe 43791997-05-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4380
4381 * etags.c (C_JAVA): New #define.
4382 (Cjava_suffixes): .java is Java.
4383 (Cjava_entries): New function.
4384 (lang_names): Add Java.
4385 (sym_type): Add st_C_javastruct for Java.
4386 (C_stab_entry): Add `extends' and `implements' keywords.
4387 (consider_token, C_entries): Recognise Java structures.
4388
880820fe 43891997-05-12 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da 4390
ecc54057 4391 * etags.c (Cplusplus_suffixes): .pdb is Postscript with C syntax.
362bc2da
DL
4392 (Postscript_suffixes): .ps is Postscript.
4393 (lang_names): Add Postscript.
4394 (Postscript_functions): New function.
4395 (TEX_decode_env): Close minor memory leak.
4396 (just_read_file): Correct the char number of the tag.
4397
43981997-05-11 Paul Eggert <eggert@twinsun.com>
4399
4400 * rcs2log (loginFullnameMailaddrs, logins, rlog_options, files):
ecc54057
JB
4401 Don't prepend $nl since this causes some shells to generate the
4402 empty string when IFS is $nl.
362bc2da 4403 (printlogline): Use SOH (octal code 1), not CR, since some
ecc54057 4404 PC-based shells mishandle CR.
362bc2da
DL
4405 (initialize_fullname): Set NIS_PATH to the empty string before invoking
4406 nismatch, in case it's set to some nonstandard value.
1c478461 4407
362bc2da
DL
44081997-05-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4409
4410 * pop.c (getline): Don't miss CRLF pairs when the CR and LF are
4411 read in separate blocks.
4412
880820fe 44131997-04-30 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4414
4415 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
4416 (struct linebuffer): New member `len' is the length of the string.
4417 (find_entries, Pascal_functions, TeX_functions, TEX_getit):
4418 Use it instead of strlen.
4419 (TEX_getit): Declare and define unconditionally as static.
4420 (TeX_functions): Use if instead of #if TeX_named_tokens.
4421 (add_regex): Set RE_INTERVALS flag for regex compilation.
4422 (substitute): Code cleanup.
4423 (readline_internal): Code cleanup, set new member `len'.
4424 (readline): Bug corrected.
4425
44261997-04-23 Geoff Voelker <voelker@cs.washington.edu>
4427
4428 * makefile.nt: Change references of windowsnt.h to ms-w32.h.
4429 (obj): Change references of nt*.c files to w32*.c files.
4430
880820fe 44311997-04-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4432
4433 * etags.c (xnew): Add support for debugging with chkmalloc.
4434 (error): Use this instead of printf whenever possible.
4435 (main): Only call xnew after having initialised progname.
4436 (substitute): Bad memory corruption error corrected.
4437
880820fe 44381997-04-08 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4439
4440 * etags.c (add_regex): Undo previous change.
4441 (relative_filename): Small memory leak closed.
4442 (absolute_filename): Cleaned up the code, possibly closing a bug.
4443 (absolute_dirname): Always return a newly allocated string.
1c478461 4444
362bc2da
DL
44451997-03-21 Paul Eggert <eggert@twinsun.com>
4446
4447 * rcs2log (files): Ignore files in RCS directory whose names are
ecc54057
JB
4448 of the form ,*, or *_; they are probably RCS lock files.
4449 Also, ignore files named .rcsfreeze.log or .rcsfreeze.ver;
362bc2da
DL
4450 they are used by rcsfreeze.
4451
880820fe 44521997-03-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da 4453
2f2c687b 4454 * etags.c (add_regex): Reset *putbuf before using it.
362bc2da
DL
4455
44561997-02-23 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4457
4458 * movemail.c (popmail): Remove some unnecessary function
4459 declarations.
4460 (popmail, pop_retr): Since popmail always passes mbx_write and mbf
4461 into pop_retr, there's no reason to pass in mbx_write, and the
4462 file argument can be declared FILE * explicitly. This fixes a
4463 compilation problem on systems with 64-bit pointers.
4464
44651997-02-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4466
4467 * movemail.c: Delete duplicate inclusion of fcntl.h
4468 and duplicate #undefs of open, read, write, close.
4469
44701997-01-20 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4471
4472 * movemail.c (main): Do not display "[POP-password]" in the usage
4473 message when movemail is compiled without POP support.
4474 (main, popmail): Add the optional "-p" argument, which causes
4475 movemail to leave mail in the inbox after copying it into the
4476 output file.
1c478461 4477
362bc2da
DL
4478 * Makefile.in (movemail): Link with getopt.
4479
44801997-01-20 Paul Eggert <eggert@twinsun.com>
4481
ecc54057 4482 * rcs2log (--help, --version): New options, per GNU coding standards.
362bc2da
DL
4483 (Copyright, Help, Id): New variables, for above.
4484 (rlog): Use -q option with cvs log, to avoid useless chatter.
4485
4486 Treat logs of "Initial revision" (RCS) or "file F was initially added
4487 on branch B." (CVS) as if they said "New file.", for consistency with
4488 change log entries.
4489
44901997-01-01 Paul Eggert <eggert@twinsun.com>
4491
4492 * vcdiff (PATH): Add /usr/xpg4/bin,
4493 where XPG4 SCCS hangs out in Solaris 2.5.
4494 (sid1): Don't use bare -r, since XPG4 `get' does not allow it.
4495
44961996-12-19 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4497
4498 * etags.c (streq, strneq): Use == NULL rather than !.
4499
45001996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
4501
4502 * Makefile.in (LIBMAIL): New macro. Conditionally includes -lmail.
ecc54057 4503 (movemail): Use LIBMAIL, to link against -lmail.
362bc2da
DL
4504
4505 * movemail.c: Include maillock.h (conditionally).
4506 Remove a redundant inclusion of <stdio.h>.
4507 (MAIL_USE_MAILLOCK): New macro, conditionally defined.
4508 (main): Add variable spool_name.
4509 Support the usage of maillock and mailunlock to
ecc54057 4510 lock and unlock mailboxes.
362bc2da
DL
4511 (mail_spool_name): New function.
4512
4513 * movemail.c: Fix an uninitialized variable which could cause
ecc54057
JB
4514 movemail to exit with an error status incorrectly on systems which
4515 use lock files rather than a system locking function to lock
4516 mailboxes.
362bc2da
DL
4517
45181996-12-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4519
4520 * pop.c (socket_connection): Free realhost after using it.
4521
880820fe 45221996-12-04 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4523
4524 * etags.c (C_entries): Test tok.valid. This handles some
4525 particular cases involving function declarations that failed.
4526
45271996-11-22 Charles Hannum <mycroft@gnu.ai.mit.edu>
1c478461 4528
362bc2da
DL
4529 * pop.c (socket_connection):
4530 gethostbyname may return a pointer to static data.
4531 krb_realmofhost can clobber it. So copy it.
4532
880820fe 45331996-11-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4534
4535 * etags.c (pfnote, fatal, error): Callers using a NULL pointer
4536 must cast it to (char *) because we have no prototypes.
4537 (make_C_tag): Macro deleted, new function.
4538 (C_entries): Calls to make_C_tag macro changed to call function.
4539
880820fe 45401996-11-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4541
4542 * etags.c (grow_linebuffer): New function.
4543 (GROW_LINEBUFFER): Macro deleted. All callers changed.
4544 (make_tag): Macro renamed to make_C_tag. All callers changed.
4545 (<stdlib.h>, <string.h>) [STDC_HEADERS]: New #include's.
4546 (Prolog_functions): prolog_skip_comment was called with wrong
4547 number of arguments.
6088b51f 4548 (xrealloc): fatal was called with wrong number of arguments.
362bc2da 4549
880820fe 45501996-11-08 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4551
4552 * etags.c (relative_filename): Bug corrected.
4553 (etags_getcwd): Avoid warning of unused variable.
b166dcd8 4554 (C_entries, consider_token): Add support for enum labels.
362bc2da
DL
4555
45561996-11-03 Paul Eggert <eggert@twinsun.com>
4557
4558 * rcs2log: When processing cvs log output, remove `Attic/' from
ecc54057 4559 repository file names.
362bc2da
DL
4560
45611996-10-22 Karl Heuer <kwzh@gnu.ai.mit.edu>
4562
4563 * emacsserver.c: Fix 1996-09-02 change.
4564
45651996-10-12 Paul Eggert <eggert@twinsun.com>
4566
4567 * rcs2log (rlog_options): Look for ' option' rather than 'unknown
ecc54057 4568 option', since CVS says 'invalid option'.
362bc2da
DL
4569 (datearg): Use the empty string, not '-d>1970-01-01', to extract all
4570 revisions, since some hosts reject 1970-01-01 when east of UTC.
4571 (date): Remove.
4572
45731996-10-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4574
4575 * etags.c (etags_getcwd) [WINDOWSNT]: Convert backslashes to slashes.
4576
880820fe 45771996-10-02 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4578
4579 * etags.c (print_version): Print copyright info.
4580
4581 * etags.c (print_help): Print the bug reporting address.
4582 (main): Use return as the last instruction, instead of exit.
4583
4584 * etags.c (main): Don't open the tags file in cxref mode.
4585
45861996-09-29 Dave Love <d.love@dl.ac.uk>
4587
4588 * rcs2log (date): Make default format acceptable to CVS post v1.8
ecc54057 4589 as well as earlier CVSs and RCS.
362bc2da
DL
4590
45911996-09-29 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4592
4593 * movemail.c (main): If the lock call fails with EBUSY or
4594 EAGAIN, retry a few times.
4595
45961996-09-25 Paul Eggert <eggert@twinsun.com>
4597
4598 * rcs2log (rlog_options): Use $rlog, not rlog, when deciding
ecc54057 4599 whether to append -zLT.
362bc2da
DL
4600
46011996-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
4602
4603 * fakemail.c: Replaced symbol BSD with BSD_SYSTEM.
4604 * emacsclient.c, movemail.c: Likewise.
4605
46061996-09-09 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4607
4608 * emacsclient.c (longopts): Change nowait to no-wait.
4609 (print_help_and_exit): Fix option name; upcase metavars.
4610
46111996-09-06 Erik Naggum <erik@naggum.no>
4612
4613 * emacsserver.c (main): Declare `fromlen' as size_t.
4614
46151996-09-02 Eli Zaretskii <eliz@is.elta.co.il>
4616
4617 * etags.c (etags_getcwd): Use getcwd if available even if MSDOS.
4618
46191996-09-02 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4620
4621 * emacsclient.c (quote_file_name): Quote with &, not \.
4622 Quote `-' only at start of file name. Terminate the value string.
4623
4624 * emacsserver.c: Include signal.h properly;
4625 delete the duplicate includes for it.
4626
4627 * emacsserver.c: On fatal signal, delete socket-file:
4628 * emacsserver.c: Include signal.h.
ecc54057 4629 (xmalloc, fatal, error): New functions.
362bc2da
DL
4630 (delete_socket, handle_signals): New functions.
4631 (progname, socket_name): New variables.
194d44e7 4632 [HAVE_SOCKETS] (main): Call handle_signals; set the new variables.
362bc2da
DL
4633
46341996-09-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4635
4636 * emacsclient.c (quote_file_name): New function.
4637 (main, both versions): Use quote_file_name.
4638 (decode_options): Don't return a value.
4639 (main, both versions): Use optind.
4640 Don't check for -nowait here.
1c478461 4641
362bc2da
DL
4642 * emacsclient.c (decode_options): New function.
4643 (main, both versions): Call decode_options.
4644 (print_help_and_exit): New function.
4645 (VERSION): New macro.
4646
4647 * Makefile.in (emacsclient): Link with getopt.
4648 Add -DVERSION so emacsclient knows its version number.
4649
46501996-08-31 Geoff Voelker <voelker@cs.washington.edu>
4651
4652 * makefile.nt (lisp): Include dos-nt.elc.
4653
46541996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4655
4656 * Makefile.in (blessmail): Use $srcdir to find blessmail.el.
4657
46581996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4659
4660 * emacsclient.c (both versions): Handle -nowait and --nowait
4661 by sending data to the server.
4662
46631996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4664
4665 * Makefile.in (INSTALL_STRIP): New variable.
4666 (${archlibdir}): Use INSTALL_STRIP.
4667
4668 * Makefile.in (MOVE_LIBS): Use conditionals on KERBEROS,
4669 HAVE_LIBKRB, HAVE_LIBDES, HAVE_LIBCOM_ERR to set it up.
4670
4671 * pop.c: Reverse conditional in previous change.
4672
46731996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4674
4675 * pop.c: Include des.h krb.h with no dir name if SOLARIS2.
4676
46771996-08-24 Paul Eggert <eggert@twinsun.com>
4678
4679 * rcs2log: Use ISO 8601 date format, with time zone appended
4680 if change-log-time-zone-rule is non-nil, instead of
4681 traditional Unix date format.
4682
4683 (datearg): When computing default from ChangeLog, handle ISO format
4684 dates in addition to old-fashioned dates from Emacs 19.31 and earlier.
4685 Don't worry about hh:mm:ss since the resolution is now by day.
10d1d0af 4686 Use empty datearg, not empty rlog_options, to decide whether to pass
362bc2da
DL
4687 "$datearg" option to $rlog.
4688 (logTZ): New variable, set to TZ specified by change-log-time-zone-rule.
4689 (month_data): Remove `mo'; no longer needed.
10d1d0af 4690 (rlog_options): Use -zLT for localtime output, if `rlog' supports it.
362bc2da
DL
4691
4692 Match `revision' line of rlog output more accurately.
4693
4694 Add -c, -v options.
4695
46961996-08-23 Eli Zaretskii <eliz@is.elta.co.il>
4697
4698 * hexl.c: Include <config.h>, so DOS_NT is defined on MSDOS.
4699
47001996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4701
4702 * Version 19.33 released.
4703
47041996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4705
4706 * Version 19.32 released.
4707
47081996-07-23 Andrew Innes <andrewi@harlequin.co.uk>
4709
4710 * etags.c (readline_internal) [DOS_NT]: Don't include CRs when
4711 computing character positions in source files.
4712
47131996-07-16 Andrew Innes <andrewi@harlequin.co.uk>
4714
4715 * makefile.nt (clean): Use OBJDIR macro.
4716
47171996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
4718
4719 * cvtmail.c, sorted-doc.c, yow.c, emacsserver.c: Undo previous change.
4720
c60ee5e7 47211996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
362bc2da 4722
ecc54057 4723 * cvtmail.c, sorted-doc.c, yow.c [__GNU_LIBRARY__]: Use <string.h>.
362bc2da
DL
4724 * emacsserver.c (main) [__GNU_LIBRARY__]: Use size_t for fromlen.
4725 * etags.c, fakemail.c, profile.c: Declare main as int, not void.
4726
47271996-07-15 Andrew Innes <andrewi@harlequin.co.uk>
4728
4729 * ntlib.h: Correct return type of getwd.
4730 * ntlib.c (getwd): Correct return type.
4731
47321996-07-02 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4733
4734 * emacsserver.c (main) [HAVE_SOCKETS]: Call rewind before writing
4735 to infile.
4736
47371996-07-01 Andrew Innes <andrewi@harlequin.co.uk>
4738
4739 * makefile.nt: Remove all references to wakeup.
4740
880820fe 47411996-06-28 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4742
4743 * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
4744 explicit, mutable, typename.
4745
47461996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4747
4748 * emacsclient.c (main) [HAVE_SOCKETS]: Use two separate stdio
4749 streams, one for sending and one for reading the reply.
4750
47511996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4752
4753 * Makefile.in (timer, timer.o, getdate.o, $(srcdir)/getdate.c)
4754 (wakeup): Target deleted.
4755 (UTILITIES): Delete wakeup and timer.
4756
4757 * wakeup.c, timer.c, getdate.y, getdate.c: Files deleted.
4758
47591996-06-11 Geoff Voelker <voelker@cs.washington.edu>
4760
4761 * etags.c (etags_getcwd) [DOS_NT]: Change conditional to MSDOS only.
4762 * makefile.nt (ETAGS_CFLAGS): Define HAVE_GETCWD macro.
4763
47641996-06-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4765
4766 * etags.c (main): Copy cwd when appending slash.
4767
47681996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
4769
4770 * Version 19.31 released.
4771
880820fe 47721996-05-17 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4773
4774 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
4775 (Pascal_functions): Increase linecharno by the correct number of
4776 chars, inline the GET_NEW_LINE macro and delete its definition.
4777
c60ee5e7 47781996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
362bc2da
DL
4779
4780 * makefile.nt (OBJDIR, BLD): Remove macro definitions.
4781
c60ee5e7 47821996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
362bc2da
DL
4783
4784 * makefile.nt (LOCAL_FLAGS): Include path to NT shadow includes.
6088b51f 4785 (movemail.exe, fakemail.exe): Now built under Win32.o.
362bc2da
DL
4786
4787 * ntlib.c: Include ntlib.h.
4788 (nt_sleep): Rename to sleep.
4789 (getwd): Return directory.
4790 (getlogin, cuserid, getuid, setuid, getpwuid, getpass, fchown,
4791 sys_ctime, sys_fopen): New functions.
4792
4793 * ntlib.h: New file.
4794
47951996-04-29 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
4796
b166dcd8 4797 * pop.c (SEND, RECV): Rename from send, recv.
362bc2da
DL
4798 (pop_open, pop_trash): Make the trash_started code unconditional.
4799 (socket_connection): Delete casts to void.
4800
48011996-04-28 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
4802
b166dcd8
KC
4803 * movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP):
4804 Definitions copied from lisp.h.
362bc2da
DL
4805
48061996-04-22 Andrew Innes <andrewi@harlequin.co.uk>
4807
4808 * fakemail.c [WINDOWSNT]: Include ntlib.h.
4809
4810 * hexl.c [DOSNT]: Include fcntl.h.
4811 [WINDOWSNT]: Include io.h.
4812 (main) [MSDOS]: Change conditional to DOS_NT.
4813
4814 * movemail.c (access, unlink) [WINDOWSNT]: Macros undefined.
4815 (fork, syswait, DISABLE_DIRECT_ACCESS) [WINDOWSNT]: Macros defined.
4816 [WINDOWSNT]: Include locking.h.
4817 (main): Update usage message. Use IS_DIRECTORY_SEP.
4818 (main) [DISABLE_DIRECT_ACCESS]: Don't check access if defined.
4819 (main) [WINDOWSNT]: Invoke locking instead of flock.
4820 (main) [MAIL_USE_SYSTEM_LOCK && WINDOWSNT]: Emulate ftruncate.
4821 (main) [MAIL_USE_POP]: Pass password to popmail if used.
4822 Include winsock.h; don't include unix inet headers.
4823 (popmail): Add password argument and pass it to pop_open.
4824 Open output file in binary mode.
4825
4826 * pop.c [WINDOWSNT]: Include winsock.h and ntlib.h.
1c478461 4827 Macro SOCKET_ERROR undefined.
362bc2da
DL
4828 Don't declare h_errno.
4829 [!WINDOWSNT]: Define macros recv and send.
4830 [!WINDOWSNT] (POP_SERVICE): Change to pop3.
4831 (pop_open) [WINDOWSNT]: Initialize trash_started.
4832 (have_winsock) [WINDOWSNT]: New variable.
4833 (socket_connection) [WINDOWSNT]: Initialize winsock.
4834 (socket_connection): Use closesocket instead of close.
4835 (getline): Use recv instead of read.
4836 (fullwrite): Use send instead of write.
4837 (pop_trash): Use closesocket instead of close.
4838 (pop_trash) [WINDOWSNT]: Cleanup winsock.
4839 Check if being called recursively by sendline.
4840
4841 * pop.h (struct _popserver): New field trash_started.
4842
4843 * wakeup.c [HAVE_CONFIG_H]: Only include config.h when defined.
4844
48451996-04-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4846
4847 * hexl.c (main) [DJGPP v2]: Don't change to binary for a tty.
4848
48491996-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4850
4851 * etags.c [WINDOWSNT]: Include io.h.
4852
48531996-04-10 Geoff Voelker <voelker@cs.washington.edu>
4854
4855 * makefile.nt (CTAGSOBJ): Compile with regexp support.
4856
48571996-04-09 Eli Zaretskii <eliz@is.elta.co.il>
4858
4859 * hexl.c [DJGPP v2]: Include io.h.
4860 (main) [DJGPP v2]: Switch standard streams to binary with setmode.
4861
4862 * b2m.c (main) [MSDOS]: Switch standard streams to binary under
4863 DJGPP v2.
4864
48651996-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4866
4867 * etags.c (absolute_filename): Use absolutefn.
4868
48691996-03-31 Eli Zaretskii <eliz@is.elta.co.il>
4870
4871 * etags.c (absolutefn) [DOS_NT]: Support Novell drives whose drive
4872 letter isn't an alphabetic character.
4873 (main) [DOS_NT]: Use binary mode on redirected `stdout'.
4874 (process_file) [DOS_NT]: Convert all slashes to forward style.
4875 (absolute_filename) [DOS_NT]: Emit error message for relative
4876 paths with a drive letter.
4877 (absolute_filename) [DOS_NT]: Handle absolute pathnames with
4878 DOS/NT drive letters which try to reference the parent of the root.
4879 (absolute_dirname) [DOS_NT]: Convert all slashes to forward style.
4880
48811996-03-27 Geoff Voelker <voelker@cs.washington.edu>
4882
4883 * makefile.nt: Change uses of del to $(DEL).
4884
880820fe 48851996-03-22 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4886
4887 * etags.c (just_read_file): Reset lineno and charno on entry.
4888
48891996-03-15 Anders Lindgren <andersl@csd.uu.se>
4890
4891 * etags.c: Prolog language totaly rewritten.
ecc54057 4892 (Prolog_functions): Rewritten from scratch.
362bc2da 4893 (skip_comment, prolog_getit): Removed.
ecc54057
JB
4894 (prolog_skip_comment): New function, like old skip_comment.
4895 (prolog_pred, prolog_atom, prolog_white): New functions.
4896 (erlang_func, erlang_attributes): Forward declarations added.
4897 (erlang_atom): Check if backslash ends line inside quoted atom.
362bc2da 4898
880820fe 48991996-03-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4900
4901 * etags.c (absolutefn): DOS_NT version corrected.
4902 (main): Append "/" to the dir name only if not already there.
4903 (print_help): Explain the absolute/relative file name issue.
1c478461 4904
362bc2da
DL
49051996-03-08 Anders Lindgren <andersl@csd.uu.se>
4906
10d1d0af
JB
4907 * etags.c: New Language Erlang added.
4908 (Erlang_functions, erlang_func, erlang_attribute, erlang_atom)
4909 (erlang_white): New functions.
362bc2da
DL
4910 (Erlang_suffixes): New suffix list.
4911 (lang_names): Erlang entry added.
4912 (prolog_getit): Accepts headers spanning several lines.
4913 Always name tags.
b166dcd8 4914 (Prolog_functions): Remove incorrect compensation for
362bc2da
DL
4915 newline characters.
4916 (readline_internal): Zero-terminate last line.
4917
49181996-03-20 Mike Long <mike.long@analog.com>
4919
4920 * b2m.c (main): Initialize progname variable before using it.
4921 Quote `username' in From_ header.
4922
49231996-03-18 Geoff Voelker <voelker@cs.washington.edu>
4924
4925 * ntlib.c (getpid): New function.
4926
49271996-02-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4928
4929 * emacsclient.c (main, both definitions):
4930 Print a newline for normal termination.
4931
49321996-02-21 Noah Friedman <friedman@prep.ai.mit.edu>
4933
4934 * tcp.c (main): Convert port to network byte order.
4935
49361996-01-20 Karl Heuer <kwzh@gnu.ai.mit.edu>
4937
4938 * pop.c (pop_retrieve, getline): Avoid type clashes.
4939
49401996-01-19 Karl Heuer <kwzh@gnu.ai.mit.edu>
4941
4942 * etags.c (enum sym_type, anonymous enum): Delete final comma.
4943
49441996-01-15 Paul Eggert <eggert@twinsun.com>
4945
4946 * rcs2log (initialize_fullname): Add support for NIS+.
4947 (hostname): Fully qualify the default hostname with the domainname
4948 if the hostname lacks a `.'.
4949
362bc2da
DL
49501996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
4951
4952 * etags.c (consider_token): Fix typo in expression.
4953
49541996-01-04 Paul Eggert <eggert@twinsun.com>
4955
4956 * etags.c (substitute): Fix spelling in message.
4957
49581996-01-03 George V. Reilly <georger@microcrafts.com>
4959
4960 * makefile.nt (etags, ctags): Compile with regexp support.
4961 (make-docfile, wakeup, etags, ctags, hexl): Ensure build
4962 subdirectory exists before compiling.
1c478461 4963
362bc2da
DL
49641996-01-02 Karl Heuer <kwzh@gnu.ai.mit.edu>
4965
4966 * emacsserver.c (main): Do chmod based on existing permission.
4967
49681995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4969
4970 * Makefile.in (install): Turn on read/execute permission.
4971
49721995-12-03 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4973
4974 * Makefile.in (LIB_STANDARD_LIBSRC): Use this instead of LIB_STANDARD.
4975 (LOADLIBES): Use LIB_STANDARD_LIBSRC.
4976
49771995-12-01 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4978
b166dcd8 4979 * Makefile.in (THIS_IS_MAKEFILE): Rename from THIS_IS_YMAKEFILE.
362bc2da 4980
880820fe 49811995-12-07 Francesco Potortì <pot@cnuce.cnr.it>
362bc2da
DL
4982
4983 * etags.c (pfnote): Don't make a tag for ctags if there is no name.
4984 (getit, Asm_labels, Perl_functions, Pascal_functions, L_getit,
4985 get_scheme, prolog_getit): Name the tag in ctags mode.
4986 (pfnote): Truncate ctags lines to 50 chars, like it worked once.
4987 (Perl_interpreters): Accept "@PERL@" as an interpreter.
4988 (suggest_asking_for_help): New function.
4989 (main, get_language_from_name): Use suggest_asking_for_help.
4990 (main): Let get_language_from_name make language existence check.
4991 (streq, strneq): Check the arguments #if DEBUG.
4992
880820fe 49931995-12-06 Francesco Potortì <pot@cnuce.cnr.it>
362bc2da
DL
4994
4995 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
b166dcd8
KC
4996 (gperf): Add keywords for Objective C and GNU macros.
4997 (sym_type): Add values to account for Objective C and GNU macros.
362bc2da
DL
4998 (begtk): The '@' character can start a token.
4999 (objdef, methodlen, objtag): New variables for Objective C.
b166dcd8 5000 (consider_token, C_entries): Add code for Objective C.
362bc2da
DL
5001 (plain_C_suffixes): Add .m and .lm for Objective C.
5002 (Yacc_suffixes): Add .ym for Objective yacc.
5003 (GROW_LINEBUFFER): New macro.
5004 (consider_token, C_entries, Pascal_functions): Use the new macro.
5005 (consider_token): Take one more argument. Caller changed.
5006 (consider_token): Use the hashing function to spot GNU macros.
5007 (C_entries): Consider // as a comment start even in plain C for
5008 the sake of Objective C parsing.
5009
880820fe 50101995-12-04 Francesco Potortì <pot@cnuce.cnr.it>
362bc2da 5011
2f2c687b 5012 * Makefile.in (ctags): Depend on etags only for simplicity;
ecc54057 5013 compile with regexp support enabled.
362bc2da
DL
5014
50151995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5016
5017 * Version 19.30 released.
5018
50191995-11-22 Geoff Voelker <voelker@cs.washington.edu>
5020
5021 * makefile.nt (DOC, clean): Don't use switches to del not
5022 supported by Windows 95.
5023
50241995-11-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5025
5026 * Makefile.in (regex.o): Depend on ../src/config.h.
5027
50281995-11-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5029
5030 * Makefile.in (LIB_STANDARD): Extract this as in src/Makefile.in.
5031 (LOADLIBES): Use LIB_STANDARD.
5032
50331995-11-07 Kevin Gallo <kgallo@microsoft.com>
5034
5035 * makefile.nt (DOC): Include strings from w32term.c, w32xfns.c,
5036 w32fns.c, w32faces.c, w32select.c, w32menu.c, w32reg.c; remove
5037 Windows 95 conditional.
5038
880820fe 50391995-11-06 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5040
b166dcd8
KC
5041 * etags.c (get_lang_from_name, get_lang_from_interpreter)
5042 (get_lang_from_suffix): New functions.
362bc2da
DL
5043 (get_language): Function deleted.
5044 (lang_entry): Two members added to struct.
5045 (lang_names): Reflect the new layout of lang_entry.
5046 (print_language_names, main, find_entries): Use the new functions.
5047 (find_entries): Look at the first line for #! if no language.
5048 (C_entries): Invalidate the token when funcdef is reset.
5049 (Perl_functions): New function.
5050 (lang_suffixes): .pl and .pm are Perl suffixes.
5051
880820fe 50521995-11-02 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5053
5054 * etags.c (lowcase): Use the standard tolower function.
5055 (substitute): Remove some wrong and some useless code related with
a64387ee 5056 escape '\' character in regexp replacement string.
b166dcd8 5057 (TEX_defenv): Add part, appendix, entry, index. Remove typeout.
362bc2da
DL
5058 (lang_suffixes): New suffixes: .hpp for C++; .f90 for Fortran;
5059 .bib, .ltx, .TeX for TeX (.bbl, .dtx removed); .ml for Lisp;
5060 .prolog for prolog (.pl removed).
5061 (massage_name, etags_getcwd): Use lowcase instead of tolower.
b166dcd8 5062 (C_entries, find_entries): Add comments about memory leakage.
362bc2da
DL
5063 (add_node): Dead code removed.
5064
50651995-10-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5066
5067 * Makefile.in (getdate.o, movemail.o): Specify -Demacs.
5068 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Delete -Demacs.
5069
50701995-08-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5071
5072 * test-distrib.c: Add #undef for open, close, read, write.
5073
50741995-08-23 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
5075
5076 * test-distrib.c [HAVE_CONFIG_H]: Include config.h.
5077 [! O_RDONLY]: Define it to zero.
5078 (main): Use O_RDONLY instead of explicit zero.
5079
880820fe 50801995-08-17 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5081
5082 * etags.c (Pascal_functions): Close comment bug corrected.
5083 (add_node): Correctly compare node file names.
5084 (Pascal_functions): Correctly allocate and free memory for tline.
5085 (pfnote): Put the definition of fp in the innermost block.
5086 (NODE): `named' member removed.
5087 (pfnote, free_tree, put_entries, total_size_of_entries): Do not
1c478461 5088 use the `named' member, check whether `name' is NULL instead.
362bc2da
DL
5089 (pfnote): `named' argument removed, all callers changed.
5090 (getit, Asm_labels, Pascal_functions, L_getit, get_scheme,
5091 TeX_functions, TEX_getit, prolog_getit): Useless string allocation
1c478461 5092 removed from pfnote call, some code cleanup.
362bc2da
DL
5093 (relative_filename): Free temporary space allocated by concat.
5094
50951995-08-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5096
5097 * Makefile.in (getdate.c): New target.
5098 (getdate.o): Just compile getdate.c.
5099
51001995-08-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
5101
5102 * fakemail.c (xrealloc): Change cast to match return type.
5103
51041995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5105
5106 * fakemail.c (xmalloc, xrealloc): Use return-type long *.
5107
51081995-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5109
5110 * movemail.c (main): Fix previous change.
5111 Add error check for empty OUTNAME.
5112
51131995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5114
5115 * movemail.c (main): Mention lock file name in error message.
5116
51171995-07-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5118
5119 * profile.c (gettimeofday): New function, defined if necessary.
5120
51211995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5122
5123 * Makefile.in: Renamed from Makefile.in.in.
5124 (distclean): Delete Makefile.c, not Makefile.in.
5125
51261995-07-17 Michael Shields <shields@tembel.org>
5127
5128 * Makefile.in.in (tags): Synonym for `TAGS'.
5129
51301995-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
5131
5132 * Makefile.in.in (install, maybe-blessmail): Don't cd ..;
5133 configure has already set $(INSTALL) to the proper relative path.
5134
362bc2da
DL
51351995-07-08 Paul Eggert <eggert@twinsun.com>
5136
5137 * rcs2log (datearg): Separate date from time with comma, not space,
5138 to work around CVS 1.5 bug.
5139 (CVSROOT): Don't abort when unset if repository is absolute.
5140
51411995-07-07 Paul Eggert <eggert@twinsun.com>
5142
5143 * rcs-checkin, rcs2log, vcdiff:
5144 Replace `#!/bin/sh' with `#! /bin/sh', for benefit of systems
5145 that interpret `#! /' as a 4-byte magic number.
5146
51471995-06-29 Jonathan I. Kamens <jik@cam.ov.com>
5148
5149 * movemail.c (main) [MAIL_USE_POP]: When a user specifies a
5150 mailbox with "po:mailbox", the mailbox is everything after the
5151 "po:" prefix.
5152
51531995-06-28 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5154
5155 * emacsserver.c: Make all error messages start with `Error: '.
ecc54057 5156 (fatal_error, perror_1): New functions, use throughout.
362bc2da
DL
5157
51581995-06-28 Paul Eggert <eggert@twinsun.com>
5159
5160 * rcs2log (CVSROOT, repository):
5161 Allow remote repositories a la CVS 1.4.
5162
880820fe 51631995-06-27 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5164
2f2c687b
JB
5165 * etags.c (plain_C_entries): New function.
5166 (lowcase): New macro.
5167 (tail, Fortran_functions, Pascal_functions): Use new macro lowcase.
5168 (lang_suffixes): New suffix ".pc" for Pro*C files.
5169 (consider_token): Don't tag all tokens beginning with DEFUN & Co..
5170 (tail): Look for the end of the token when comparing.
5171 (takeprec): Since now tail behaves differently, use strneq.
362bc2da
DL
5172
51731995-06-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5174
5175 * movemail.c (main): Add newline in usage message.
5176
51771995-06-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5178
5179 * make-docfile.c (scan_file): Make sure it never looks at filename[-1].
5180
880820fe 51811995-06-21 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5182
5183 * etags.c (find_entries): Rewind before rereading the input file.
5184
51851995-06-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5186
5187 * Version 19.29 released.
5188
5189 * make-docfile.c (main) [MSDOS]: Do set _fmode.
5190 This undoes part of the previous change.
5191
51921995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5193
5194 * make-docfile.c (main): On MSDOS, don't change stdout
5195 to binary, and insist on an -o option.
5196
51971995-06-13 Geoff Voelker <voelker@cs.washington.edu>
5198
5199 * etags.c (process_file,absolute_filename): Handle filenames
5200 starting with a drive letter.
5201
5202 * makefile.nt (install): Copy wakeup.exe properly.
5203
52041995-06-08 Karl Heuer <kwzh@gnu.ai.mit.edu>
5205
5206 * make-docfile.c [MSDOS]: #undef chdir.
5207
52081995-06-04 Paul Eggert <eggert@twinsun.com>
5209
5210 * rcs2log (output_authors): Allow ':' in time zone,
5211 as per ISO 8601 and RCS 5.6.8 beta.
5212
880820fe 52131995-05-29 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5214
5215 * etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
5216 compatibility problems.
5217
52181995-05-26 Richard Stallman <rms@gnu.ai.mit.edu>
5219
5220 * etags.c (etags_getcwd): Don't use #elif.
5221 Have just one function body.
5222
52231995-05-25 Geoff Voelker <voelker@cs.washington.edu>
5224
5225 * makefile.nt (LIBS): Use BASE_LIBS.
5226 (make-docfile.exe,hexl.exe,wakeup.exe,etags.exe): Don't depend
5227 upon LIBS.
5228 (DOC): Use del instead of rm.
5229 (DOC) [WINDOWS95]: Use DOC.
5230 (clean): Handle MSVC aux files.
5231 (config.h,paths.h): Use $(CP) instead of cp.
5232 (config.h): Use $(CONFIG_H)
5233 (make-docfile.obj): Depend upon config.h.
5234 Clean up comments.
5235
880820fe 52361995-05-23 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5237
5238 * etags.c (etags_getcwd): Use /bin/pwd instead of pwd because the
5239 former gives the true path even in the presence of simlinks.
5240
52411995-05-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5242
5243 * movemail.c (main): Increase lock timeout to five minutes.
5244
52451995-05-06 Geoff Voelker <voelker@cs.washington.edu>
5246
5247 * makefile.nt (obj): Use .c files.
5248
52491995-05-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5250
5251 * make-docfile.c: Include config.h.
5252 (NO_SHORTNAMES): New definition.
5253 (xmalloc): Return long *.
5254
5255 * etags.c (C_entries): Cast result of xrealloc.
5256 (xmalloc, xrealloc): Declare them to return long *.
5257
5258 * b2m.c (xmalloc, xrealloc): Declare them long *.
5259
5260 * movemail.c (xmalloc): Declare it to return long *.
5261
52621995-04-30 Paul Eggert <eggert@twinsun.com>
5263
5264 * rcs2log (datearg): If rlog options are specified explicitly,
5265 omit the implicit '-d>DATE' option.
5266 (repository, rlog): Allow absolute paths to CVS repositories.
5267 Look only at the first line of CVS/Repository.
5268
52691995-04-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
5270
5271 * Makefile.in.in (extraclean): Depend on maintainer-clean, not
5272 realclean.
5273
52741995-04-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5275
5276 * Makefile.in.in [REGEXP_IN_LIBC] (REGEXPOBJ, REGEXPDEPS):
5277 Alternative (empty) definitions.
5278
52791995-04-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5280
5281 * emacsclient.c (main): Add argv[0] to an error message.
5282
52831995-04-13 Karl Heuer <kwzh@gnu.ai.mit.edu>
5284
5285 * emacsclient.c (main): Improve error handling.
5286 * cvtmail.c (main, skip_to_lf): Improve error handling.
5287 (sysfail): New function.
5288
5289 * b2m.c (main): Check for trailing ", " before trying to delete it.
5290
52911995-04-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
5292
5293 * Makefile.in.in (all): Build test-distrib and make-docfile.
5294
5295 * make-docfile.c (scan_c_file): At end, restore file name last char
5296 to its original value.
5297
52981995-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5299
5300 * emacsclient.c, emacsserver.c: Test NO_SOCKETS_IN_FILE_SYSTEM.
5301
53021995-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5303
b166dcd8 5304 * Makefile.in.in (BASE_CFLAGS): Rename from ALLOCA_CFLAGS.
362bc2da
DL
5305 (alloca.o, regex.o): Use BASE_CFLAGS.
5306
53071995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5308
5309 * emacsclient.c [Berkeley sockets version] (main): Declare getcwd.
5310
53111995-04-04 Karl Heuer <kwzh@gnu.ai.mit.edu>
5312
5313 * Makefile.in.in (aixcc, aixcc.c): Targets deleted.
b166dcd8 5314 (SOURCES, distclean): Remove obsolete references to aixcc.
362bc2da
DL
5315
53161995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5317
5318 * aixcc.lex: File deleted--surely obsolete now.
5319
53201995-03-23 Paul Eggert <eggert@twinsun.com>
5321
5322 * rcs2log (output_authors): Replace /[/]/ by /[\/]/, for
5323 portability to mawk and nawk.
5324
53251995-03-21 Paul Eggert <eggert@twinsun.com>
5326
5327 * rcs2log: Treat -u "login:fullname:mailaddr" as if it were
5328 -u "login<tab>fullname<tab>mailaddr".
5329
53301995-03-21 Paul Eggert <eggert@twinsun.com>
5331
5332 * rcs2log: Add -u "login<tab>fullname<tab>mailaddr" option, which
5333 replaces the (now obsolescent) -n login fullname mailaddr option.
5334 Add -R option for recursive rlog.
07655e62 5335 (AWK): New environment variable (default `awk') for awk program name.
362bc2da
DL
5336 (output_authors, tab, loginFullnameMailaddrs, recursive): New vars.
5337 Quote authors and fullnames correctly.
5338 Don't omit path from repository root when logging CVS files.
5339
53401995-03-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5341
5342 * emacsclient.c, emacsserver.c: Use BSD sockets whenever available,
5343 even if HAVE_SYSVIPC.
5344 * emacsclient.c (main): Use getcwd if not BSD.
5345
880820fe 53461995-03-13 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5347
2f2c687b 5348 * etags.c (process_file): Free (filename) after using it.
362bc2da
DL
5349 (readline_internal): Do not access the char before start of line.
5350
880820fe 53511995-02-22 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5352
5353 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
5354 savetok.valid. Mark token as valid when it is initialised.
5355 (make_tag): Make token only if token is valid and reset validity.
5356 (CNL_SAVE_DEFINEDEF): Test for savetok.valid instead of token_saved.
b166dcd8 5357 (TOKEN): Add a new member: valid.
362bc2da 5358
880820fe 53591995-02-15 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5360
5361 * etags.c (C_entries): Bug corrected in xrealloc of token_str.
5362 (main): Do not read twice the last filename in the stdin file list.
5363
880820fe 53641995-02-14 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5365
5366 * etags.c (C_entries): Initialise the new members of TOKEN.
5367 (C_entries): Do not allocate a new space for each token found by
5368 consider_token. Let make_tag do that instead.
5369 (make_tag): Since now TOKEN has memory of where it is taken from,
5370 this new macro substitutes both make_tag_from_new_lb and
5371 make_tag_from_oth_lb. All callers changed.
5372 (TOKEN): Add linepos and buffer members.
5373 (main): Initialise token_str.
5374 (lang_extensions): Recognise .c++ and .h++ as C++ file suffixes.
5375 (token_str): New global variable used by C_entries.
5376
53771995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
5378
b166dcd8 5379 * Makefile.in.in (maintainer-clean): Rename from realclean.
362bc2da 5380
880820fe 53811995-02-01 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5382
5383 * etags.c (pfnote): Initialise been_warned in the node.
b166dcd8 5384 (C_entries): Remove a speed hack for the sake of clarity.
362bc2da 5385
880820fe 53861995-01-18 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5387
5388 * etags.c (longopts, print_help, main): Use -I as abbreviation
5389 for the --ignore-indentation option.
5390 (main): Do not print an error message for unknown options.
5391
880820fe 53921995-01-12 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5393
5394 * etags.c (FILEPOS, GET_CHARNO, GET_FILEPOS, max, LINENO): Deleted.
194d44e7
JB
5395 (append_to_tagfile, typedefs, typedefs_and_cplusplus)
5396 (constantypedefs, update, vgrind_style, no_warnings)
5397 (cxref_style, cplusplus, noindentypedefs): Were int, now logical.
362bc2da
DL
5398 (permit_duplicates): Was a var, now a #define.
5399 (filename_lb): Was global, now local to main.
5400 (main): Open the tag file when in cxref mode.
5401 Use a BUFSIZ size buffer for making the shell commands.
5402 Look at the return value from the system routine.
5403 Exit when cannot open the tag file.
5404 (process_file): Open the file and pass the FILE* to find_entries.
5405 (find_entries): Now void, because does not open the file itself.
5406 (pfnote): Recovering from lack of memory does not work. Removed.
5407 Use savenstr and simplify the code.
5408 (free_tree): Only free the name space if node is named.
5409 (structtag): Now a pointer, not a fixed length array of chars.
5410 (consider_token): Don't take a token as argument. Use savenstr
5411 when saving a tag in structtag. Callers changed.
5412 (TOKEN): Structure changed. Now used only in C_entries.
5413 (TOKEN_SAVED_P, SAVE_TOKEN, RESTORE_TOKEN): Deleted.
5414 (C_entries): nameb and savenameb deleted. Use dinamic allocation.
5415 (pfcnt): Deleted. Users updated.
194d44e7
JB
5416 (getit, Asm_labels, Pascal_functions, L_getit, get_scheme)
5417 (TEX_getit, prolog_getit): Use dinamic allocation for storing
362bc2da
DL
5418 the tag instead of a fixed size buffer.
5419
54201995-01-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5421
5422 * movemail.c (main): Skip past the colon in inname.
5423
880820fe 54241995-01-10 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5425
5426 * etags.c (pfatal): New function.
5427 (main, etags_getcwd): Use pfatal.
5428 (etags_getcwd): Corrected another bug in the HAVE_GETCWD version.
5429
880820fe 54301995-01-10 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5431
5432 * etags.c (Lang_function): Use void instead to declare the
5433 language functions, because many compilers are buggy.
5434 (etags_getcwd): Fix the previous fix on the #else branch.
5435 (readline_internal): Discard possible \r before \n here.
5436 (C_entries): Do not deal with \r here: undo previous fix.
5437
880820fe 54381995-01-09 Francesco Potortì (pot@fly)
362bc2da
DL
5439
5440 * b2m.c (concat, xmalloc, xrealloc, readline, xnew): Four new
5441 functions and a macro that allow the program to work on input
5442 lines of whatever length. Copied from etags.c.
5443 (fatal): Print a fatal error message and exit.
5444 (main): Use the new functions. Fixed a bug that made a \037 char
5445 appear at the end of the output.
5446
54471995-01-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5448
5449 * etags.c (C_entries): Ignore carriage return at end of line.
5450
54511994-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5452
5453 * fakemail.c (xmalloc, xrealloc): Add casts.
5454 (add_field): Handle <...> and "..." syntax.
5455 (setup_files, get_keyword): Clean up parens and line breaks.
5456 (args_size): Likewise.
5457
54581994-12-21 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
5459
5460 * yow.c: Include program name in error messages.
5461
54621994-12-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5463
5464 * make-docfile.c (scan_lisp_file): Handle dynamic doc strings.
5465 (xmalloc, fatal, error): New functions.
5466 (progname): New variable.
5467 (main): Set progname.
5468
54691994-12-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5470
5471 * emacsclient.c, emacsserver.c [HAVE_SYSVIPC]: Include sys/utsname.h.
5472 (main): If socket/mqueue name is in home dir, add in the host name.
5473 Rename .emacs_server to .emacs-server....
5474
54751994-12-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5476
5477 * emacsclient.c [!HAVE_SYSVIPC] (main): Fix error message diction.
5478
880820fe 54791994-11-22 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5480
2f2c687b
JB
5481 * etags.c (print_help): Print --regex usage for ctags also.
5482 (main): Use -h in addition to -H as abbreviation for --help.
362bc2da 5483
880820fe 54841994-11-16 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5485
5486 * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
5487 is compiled if this is defined. The new functions and variables
5488 added #ifdef ETAGS_REGEXP are not listed in this ChangeLog.
5489 [VMS]: All VMS specific code previously contained in
5490 etags-vmslib.c is now included here, modified for dealing with
5491 language and regex options intermixed with filenames.
5492 (header_file): Global variable deleted.
5493 (Lang_Function): New typedef. All language parser functions
5494 changed to this new type.
5495 (string_numeric_p, substr, prestr): Functions deleted.
5496 (readline_internal): Does the job that readline did previously.
5497 (longopts): --language and --regex options added.
5498 (lang_names, lang_extensions, lang_func, print_language_names):
5499 New structures, variables and functions for choosing languages.
5500 (print_help): Help strings updated. Calls print_language_names.
5501 (argument_type, ARGUMENT): Typedefs for dealing with language and
5502 regex options intermixed with filenames.
b166dcd8 5503 (main): Change the way of dealing with arguments on the command
362bc2da
DL
5504 line to deal with language and regex options intermixed with
5505 filenames.
5506 (get_language, default_C_entries, Cplusplus_entries,
5507 Cstar_entries, Yacc_entries, just_read_file): New functions.
5508 (find_entries): Use the new method for choosing the language.
5509 (Pascal_functions): Allow intermixing of comment styles.
5510 (prolog_getit, skip_comment): Rewritten for speed.
5511 (readline): Rewritten to deal with regexps.
5512
880820fe 55131994-11-16 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5514
5515 * etags.c (<errno.h>): #include added.
5516 (etags_getcwd): Check return value from getcwd.
5517
55181994-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5519
5520 * profile.c (TV1, TV2): Use EMACS_TIME as type.
5521 (get_time): Use EMACS_SUB_TIME.
5522
d57727c9 55231994-10-30 Geoff Voelker <voelker@cs.washington.edu>
362bc2da
DL
5524
5525 * ntlib.c: New file.
5526 * makefile.nt: New file.
5527
5528 * make-docfile.c (main) [WINDOWSNT]: Set _fmode and stdout to O_BINARY.
5529 [WINDOWSNT]: Include the NT headers.
5530 (READ_TEXT, READ_BINARY): Test DOS_NT, not MSDOS.
5531
5532 * etags.c (main, etags_getcwd): Test DOS_NT instead of MSDOS.
5533 [WINDOWSNT]: Include some NT headers.
5534
55351994-10-24 Jonathan I. Kamens (jik@cam.ov.com)
5536
5537 * pop.c (getline): When a search of already-read input for CRLF
5538 fails, store the fact that we've searched it and don't search it
5539 again after reading more data.
5540
5541 * pop.c (getline): When determining whether or not it's necessary
5542 to grow the input buffer, take into account the null that's stored
5543 at the end of already-read input in the buffer.
5544
880820fe 55451994-10-21 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5546
2f2c687b 5547 * etags.c (prestr, substr): Return a logical type.
362bc2da 5548 (consider_token): Comment out "EXFUN". Use "DEFUN" instead of "DEF".
2f2c687b 5549 (consider_token): Set funcdef to fignore when a DEFUN is met.
362bc2da
DL
5550 (C_entries): Now we can use Tom Hageman patch for extern "C".
5551
55521994-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5553
5554 * movemail.c: PopServer renamed to popserver throughout.
5555
55561994-10-20 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
5557
5558 * etags.c: Don't declare malloc, since we include config.h.
5559 * fakemail.c: Likewise.
5560
55611994-10-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5562
5563 * movemail.c: Don't declare malloc.
5564
55651994-10-19 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
5566
5567 * rcs-checkin: Use test -r instead of < to check readability, to
ecc54057 5568 avoid syntax error.
362bc2da
DL
5569
55701994-10-19 Jonathan I. Kamens (jik@cam.ov.com)
5571
5572 * pop.c: Only include ../src/config.h if HAVE_CONFIG_H is
5573 defined, and if HAVE_CONFIG_H isn't defined, define
5574 MAIL_USE_POP always (so that this file can be included in
5575 other programs besides emacs).
5576
5577 * pop.c: Only declare h_errno if HAVE_H_ERRNO isn't defined or
5578 HAVE_CONFIG_H isn't defined.
5579
5580 * pop.c (find_crlf, getline): Instead of using strstr, use a
5581 custom function for finding CRLF.
5582 (my_strstr): Function deleted.
5583
55841994-10-17 Jonathan I. Kamens (jik@cam.ov.com)
5585
5586 * pop.c (getline): Fix a segfault because of passing a
5587 non-null-terminated string into strstr(). Fix from
5588 djm@va.pubnix.com (David J. MacKenzie).
5589
5590 * pop.c: Don't include <string.h> and <strings.h>.
5591
b166dcd8
KC
5592 * pop.c: Include <des.h> before <krb.h>, rather than after.
5593 They should be interchangeable, and indeed the inclusion is done in
362bc2da
DL
5594 both orders in various files in the Kerberos 4 library sources,
5595 but djm@va.pubnix.com (David J. MacKenzie) reports that BSDI
5596 requires that <des.h> be included first, and I don't see any harm
5597 in changing the order.
5598
5599 * pop.c: Include ../src/config.h, to get HAVE_STRING_H and
5600 STDC_HEADERS, if they're defined. Undef open, read, write and
5601 close after including it.
5602
56031994-10-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5604
5605 * pop.c: Fix mismatch in conditionals.
5606
5607 * make-docfile.c (main): Don't process one input file twice.
5608 Never use exit code > 1.
5609
5610 * pop.c (open, close, read, write): Add #undefs.
5611
5612 * pop.c: Don't declare malloc, realloc, free.
5613 Include ../src/config.h.
5614 Don't include string.h or strings.h.
5615 Include des.h before krb.h.
5616 Do declare my_strstr.
5617 (getline): Really use my_strstr.
5618 Leave one empty place in server->buffer,
5619 and put a null at the end of the data in it.
5620
56211994-10-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
5622
b166dcd8
KC
5623 * emacsserver.c [SYSV_IPC] (main): Catch SIGHUP as well.
5624 Don't call kill with pid 0. Handle EINTR when receiving messages.
362bc2da
DL
5625
56261994-10-17 Karl Heuer <kwzh@gnu.ai.mit.edu>
5627
5628 * Makefile.in.in (regex.o): Use full path to find regex.c.
5629
880820fe 56301994-10-17 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 5631
2f2c687b
JB
5632 * Makefile.in.in (etags): Add dependency on regex.o, link with it.
5633 (REGEXPOBJ, REGEXPDEPS, regex.o): Target and macros added.
362bc2da
DL
5634
56351994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
5636
5637 * Makefile.in.in (DONT_INSTALL): Remove make-path.
5638 (${archlibdir}): Use mkinstalldirs instead.
5639
5640 * movemail.c: Make functions that return nothing void, not
5641 implicitly int.
5642 (main): Improve usage message.
5643 (error): Write to stderr, not stdout.
5644
e43b1141
GM
5645 * b2m.c, cvtmail.c, digest-doc.c, emacsclient.c, emacsserver.c:
5646 * etags.c, fakemail.c, hexl.c, make-docfile.c, profile.c, sorted-doc.c:
5647 * test-distrib.c, timer.c, wakeup.c, yow.c: Eliminate some -Wall
5648 warnings from unused variables and implicitly declared functions.
362bc2da
DL
5649
56501994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5651
5652 * Makefile.in.in (clean): rm DOC* and *.tab.[ch].
5653 (distclean): Not here.
5654
b166dcd8 5655 * Makefile.in.in (libexecdir): Rename from libdir.
362bc2da 5656
880820fe 56571994-10-11 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5658
5659 * etags.c (C_entries): Name the #define's that are macros.
5660
56611994-10-10 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
5662
5663 * emacsserver.c [! SYSVIPC] (main): Fix uses of FD_* macros:
5664 fd_set arg is a pointer, descriptor arg comes first.
5665
880820fe 56661994-09-29 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5667
5668 * etags.c (C_entries): Recognise typedef of ANSI style functions.
5669 (C_entries): Recognise #define inside a struct.
5670 (C_entries): ANSI tells that preprocessor commands do not have to
5671 start on the first column.
5672 (print_help): Documentation corrected for -d and -D.
5673 (white, endtk): ANSI tells the vertical tab is a separator.
5674
56751994-09-24 Jonathan I. Kamens (jik@gza-client1.aktis.com)
5676
5677 * Makefile.in.in (MOVE_FLAGS, MOVE_LIBS): New variables.
5678 (pop.o, movemail.o): New targets.
5679 (movemail): Link in pop.o and movemail.o. Use MOVE_LIBS, MOVE_FLAGS.
5680
5681 * pop.c, pop.h: New files.
5682
5683 * movemail.c: Improve POP code, move most of it into a separate file.
5684 (mbx_delimit_end, mbx_delimit_begin): Check for errors.
5685 (mbx_write): Check for errors and for From line.
5686 (pop_retr, popmail): Use subroutines in pop.c to do the real work.
5687 (get_errmsg, multiline, getline, putline, pop_stat, pop_command)
5688 (pop_init): Functions deleted.
5689
56901994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
5691
5692 * make-path.c (touchy_mkdir): Make dir ugo+rx even if it isn't new.
5693 Rename path to dirname.
5694
56951994-09-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5696
5697 * Makefile.in.in (UTILITIES):
5698 Remove test-distrib, make-docfile, make-path.
5699 (DONT_INSTALL): New variable--list those files here.
5700 (clean): Delete the files in DONT_INSTALL.
5701
57021994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5703
5704 * b2m.c (from, labels, data): Use MAX_DATA_LEN as length.
5705 (main): Use fgets, not gets.
5706
57071994-09-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5708
5709 * timer.c: Don't declare malloc.
5710
57111994-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
5712
5713 * emacsserver.c (FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already
5714 defined, use simple 32-bit versions of these macros.
5715 (main) [HAVE_SOCKETS & !HAVE_SYSVIPC]: Use these macros.
5716
c60ee5e7 57171994-09-16 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
362bc2da
DL
5718
5719 * etags.c (etags_getcwd): Use getcwd if available.
5720
57211994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5722
5723 * Version 19.27 released.
5724
57251994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5726
5727 * Version 19.26 released.
5728
57291994-08-15 Paul Eggert <eggert@twinsun.com>
5730
5731 * rcs2log: Add support for CVS.
5732 Work with `rlog's that output ISO 8601 dates.
5733
57341994-08-09 Lawrence R. Dodd <dodd@roebling.poly.edu>
5735
5736 * rcs2log: Use <> to delimit email address.
5737
57381994-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5739
5740 * emacsserver.c [SYSV_IPC] (main): Make a separate process
5741 so we can listen for multiple requests.
5742
57431994-08-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5744
5745 * movemail.c: Include config.h first thing.
5746
57471994-08-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5748
5749 * emacsserver.c (main): Add casts to avoid warnings.
5750
57511994-07-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5752
5753 * Makefile.in.in (${archlibdir}): Compare the proper dir
5754 before installing the scripts.
5755
57561994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5757
5758 * emacsclient.c (main): New local var progname saves argv[0].
5759
57601994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5761
5762 * emacsclient.c (main): Don't actually modify argv[0].
5763 Modify a copy instead.
5764
57651994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5766
5767 * profile.c (reset_watch, get_time): Use EMACS_GET_TIME.
5768 (tzp): Var deleted.
5769
5770 * Makefile.in.in: Add #undef alloca.
5771
57721994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5773
5774 * timer.c (xmalloc): New function.
5775
57761994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5777
5778 * Makefile.in.in (ALLOCA_CFLAGS): New variable.
5779 (alloca.o): New target.
5780
57811994-07-08 Dave Love (d.love@dl.ac.uk)
5782
2f2c687b 5783 * etags.c (takeprec): Recognise `character*(*) function'.
362bc2da 5784
880820fe 57851994-07-08 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5786
ecc54057
JB
5787 * etags.c (main): Don't barf on obsolete -t and -T switches.
5788 (main): Print an explicative message when a switch is not known.
362bc2da
DL
5789
57901994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5791
5792 * hexl.c: Don't declare exit or perror.
5793
5794 * emacsserver.c (main): Don't declare geteuid.
5795 Don't declare getenv if convex.
5796
57971994-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5798
5799 * Makefile.in.in (test-distrib): Use ALL_CFLAGS.
5800
880820fe 58011994-06-03 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da
DL
5802
5803 * etags.c (absolute_filename): Remove infinite loop bug when
5804 accessing files in directories whose name begins with a dot.
5805
880820fe 58061994-06-03 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da
DL
5807
5808 * etags.c (etags_getcwd): Delete the trailing newline from cwd.
5809
58101994-06-01 Morten Welinder (terra@diku.dk)
5811
5812 * yow.c (rootrelativepath) [MSDOS]: Define, expanding to dynamic
5813 location of data directory.
5814
58151994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5816
5817 * Version 19.25 released.
5818
58191994-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5820
5821 * Makefile.in.in (distclean): Delete Makefile, Makefile.in, blessmail.
5822
58231994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5824
5825 * Makefile.in.in (blessmail): Don't depend on ../src/emacs.
5826
58271994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5828
5829 * Version 19.24 released.
5830
58311994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5832
5833 * make-docfile.c (write_c_args): Put `default' in upper case.
5834
58351994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5836
5837 * etags.c (etags_getcwd): Cast result of popen.
5838 (popen): Declaration deleted.
5839
58401994-05-17 Karl Heuer (kwzh@gnu.ai.mit.edu)
5841
5842 * etags.c [!MSDOS]: Declare popen.
5843
58441994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5845
5846 * b2m.c (main): Avoid crash if argc is 1.
5847
58481994-05-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5849
5850 * Version 19.23 released.
5851
5852 * Makefile.in.in (blessmail): Specify directory for blessmail.el.
5853
58541994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5855
5856 * Makefile.in.in (maybe-blessmail): Mention bless-mail is in lib-src.
5857
58581994-05-05 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
5859
5860 * Makefile.in.in: Fix out of date comment.
5861
58621994-05-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5863
5864 * Makefile.in.in: Put in a separator for where to start cpp procssing.
5865 Move all autoconf substitutions above that point.
5866 Above that point, use Make-style comments.
5867 This goes with changes in ../configure.in.
5868
58691994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5870
5871 * Makefile.in.in (maybe-blessmail): New target to print the blessmail
5872 warning message.
5873 (${archlibdir}): Don't do it here. Don't depend on blessmail.
5874
58751994-05-02 Karl Heuer (kwzh@gnu.ai.mit.edu)
5876
5877 * Makefile.in.in (${archlibdir}): Be lenient about wc output format.
5878
58791994-05-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5880
5881 * Makefile.in.in (${archlibdir}): Don't run blessmail; instead
5882 print advice to run it, if it has anything significant to do.
5883 And only if MOVEMAIL_NEEDS_BLESSING.
5884 (blessmail): Use emacs, not temacs.
b166dcd8 5885 (configuration): Rename from configname.
362bc2da
DL
5886
58871994-04-30 Morten Welinder (terra@diku.dk)
5888
5889 * etags.c (find_entries): Treat `*.cpp' as C++ files.
5890
58911994-04-30 Morten Welinder (terra@diku.dk)
5892
5893 * etags.c [MSDOS]: #include <sys/param.h> for the following.
5894 [MSDOS] (etags_getcwd): Define simple MSDOS version without spawning
5895 a shell.
5896
58971994-04-29 Morten Welinder (terra@diku.dk)
5898
5899 * hexl.c [MSDOS]: Don't define proto type for exit.
5900
59011994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5902
5903 * b2m.c: Don't include string.h or strings.h.
5904
59051994-04-27 Karl Heuer (kwzh@gnu.ai.mit.edu)
5906
5907 * Makefile.in.in: C_SWITCH_SYSTEM and C_SWITCH_MACHINE are now cpp
5908 symbols, not make variables.
5909
59101994-04-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5911
5912 * Makefile.in.in (etags, ctags): Make VERSION a string constant.
5913 * etags.c (print_version): Print VERSION as a string.
5914
59151994-04-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5916
5917 * fakemail.c (readline): Fix updating of p when buffer grows.
5918
59191994-04-20 Karl Heuer (kwzh@gnu.ai.mit.edu)
5920
5921 * Makefile.in.in (blessmail): New target.
5922 ${archlibdir}: Use blessmail when installing movemail.
5923
59241994-04-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5925
5926 * fakemail.c (readline): When extending the buffer,
5927 calculate end afresh using the new size.
5928
880820fe 59291994-04-18 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 5930
2f2c687b 5931 * etags.c (main, print_help): Eliminate the -F option.
362bc2da 5932
880820fe 59331994-04-18 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 5934
2f2c687b 5935 * etags.c (absolute_filename): Compare against '\0' instead of NULL.
362bc2da
DL
5936
59371994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5938
5939 * Makefile.in.in: Renamed from Makefile.in.
5940 Makefile.in is now generated from it, and then preprocessed.
5941 Change comments to C syntax.
5942 Include config.h.
5943 (LIBS_SYSTEM, LIBS_MACHINE): Define as empty if not defined.
5944 (LOADLIBES): Define from LIBS_SYSTEM and LIBS_MACHINE.
5945
59461994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5947
5948 * movemail.c [HAVE_UNISTD_H]: Include unistd.h.
5949
880820fe 59501994-04-12 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da
DL
5951
5952 * etags.c (etags_getcwd): Initialize bufsize.
5953
59541994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5955
5956 * profile.c (gettimeofday): If system doesn't have this, define it
5957 to give a fatal error.
5958
59591994-04-11 Karl Heuer (kwzh@gnu.ai.mit.edu)
5960
5961 * movemail.c (main): Use setuid, not seteuid.
5962
59631994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5964
5965 * etags.c: #undef static.
5966
880820fe 59671994-04-08 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 5968
b166dcd8 5969 * etags.c (outf, outfiledir): Rename to tagf, tagfiledir.
2f2c687b 5970 (PF_funcs, Asm_funcs, L_funcs, PAS_funcs, TEX_funcs)
b166dcd8 5971 (Scheme_funcs, prolog_funcs): Rename to Fortran_functions,
362bc2da
DL
5972 Asm_labels, Lisp_functions, Pascal_functions, Scheme_functions,
5973 TeX_functions, Prolog_functions.
2f2c687b
JB
5974 (inf): No more a global variable.
5975 (C_entries): Take 2nd parameter `inf' instead of using the global one.
b166dcd8
KC
5976 (find_entries): Add the cp1 var for optimisation.
5977 (find_entries): Add more suffixes for assembler files.
362bc2da
DL
5978 (Asm_funcs): Now finds labels even without an ending colon.
5979
880820fe 59801994-03-30 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 5981
2f2c687b
JB
5982 * etags.c (main): Use etags_getcwd for compatibility.
5983 (etags_getcwd): New function.
362bc2da
DL
5984
59851994-03-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5986
5987 * Makefile.in (etags, ctags): Pass -D for VERSION.
5988
880820fe 59891994-03-25 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5990
2f2c687b
JB
5991 * etags.c (emacs_tags_format, ETAGS): Removed. Use CTAGS instead.
5992 (main): Don't allow the use of -t and -T in etags mode.
5993 (print_help): Don't show options enabled by default.
5994 (print_version): Show the emacs version number if VERSION is #defined.
5995 (find_entries): Add "ss" as suffix for Chez Scheme.
362bc2da 5996
880820fe 59971994-03-23 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5998
2f2c687b 5999 * etags.c (cwd, outfiledir): Vars added.
362bc2da
DL
6000 (relative_filename, absolute_filename, absolute_dirname):
6001 functions added to compute filenames in tags files.
2f2c687b 6002 (process_file): Filenames in tags file are relative to the
362bc2da 6003 directory where the tags file is (useful with the -o option).
2f2c687b 6004 (main): Initialise the outfiledir var.
b166dcd8 6005 (TYPEDST): Add the `tignore' value.
2f2c687b 6006 (C_entries): Corrected various small bugs.
362bc2da
DL
6007
60081994-03-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6009
6010 * Makefile.in (UTILITIES): `env' deleted.
6011 (env): Target deleted.
6012 * env.c: File deleted.
1c478461 6013
362bc2da
DL
60141994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6015
6016 * Makefile.in (install, ${archlibdir}): Switch back to ..
6017 before running INSTALL_PROGRAM.
6018
880820fe 60191994-03-14 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6020
b166dcd8 6021 * etags.c (TYPEDST): Add the `tignore' value.
2f2c687b 6022 (C_entries): Corrected various bugs, now correctly parses the
362bc2da
DL
6023 `extern "C" {' construction (patch by Tom R.Hageman).
6024
60251994-03-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6026
6027 * b2m.c: Use <...> to include config.h.
6028 Don't include stdlib.h.
6029
177c0ea7 60301994-03-03 Heiko Muenkel (muenkel@tnt.uni-hannover.de)
362bc2da
DL
6031
6032 * b2m.c (main): Change delimiter from "^L" to "^_^L".
6033 Allow for text following "BABYL OPTIONS:".
6034 Add --help option. Use argv[0] in error messages.
6035
60361994-03-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6037
6038 * emacsclient.c (main) [HAVE_SYSVIPC]:
6039 Make msgp->mtext longer if necessary.
6040 On HPUX, error if it's more than 512 chars.
6041
60421994-02-26 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
6043
6044 * etags-vmslib.c: Use GPL.
6045 * emacstool.c: Use GPL.
6046 * fakemail.c: Update GPL.
6047
6048 * make-path.c (main): Return 1 on error, not -1.
6049 Update GPL.
6050
6051 * cvtmail.c: Declare malloc, realloc, xmalloc, xrealloc, getenv.
6052 (xmalloc, xrealloc): Return char *, not int.
6053 (error): Write to stderr, not stdout.
6054 Update GPL.
6055
60561994-02-23 Karl Heuer (kwzh@gnu.ai.mit.edu)
6057
6058 * profile.c (main, get_time): Don't crash on invalid input.
6059
60601994-02-22 Karl Heuer (kwzh@gnu.ai.mit.edu)
6061
6062 * profile.c (get_time): Simplify; avoid calling index.
2f2c687b 6063 (main): Exit on EOF.
362bc2da 6064
880820fe 60651994-02-17 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6066
a64387ee 6067 * etags.c (--absolute-pathnames): Option removed.
362bc2da
DL
6068
60691994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6070
6071 * fakemail.c (put_line): Don't break the line if it all fits.
6072
880820fe 60731994-02-14 Francesco Potortì (pot@fly)
362bc2da 6074
b166dcd8 6075 * etags.c (absolute_pathnames, cwd): Add global vars.
2f2c687b 6076 (longopts, print_help, main, process_file): Put absolute filenames
362bc2da 6077 in the tag file if the -A --absolute-pathnames option is used.
10d1d0af 6078 (print_help): Alphabetically order the options.
2f2c687b 6079 (malloc, realloc, strcpy, strncpy, strcmp): Remove extern declar.
362bc2da
DL
6080
60811994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6082
6083 * Makefile.in (C_SWITCH_MACHINE): Get this from autoconf.
6084 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use C_SWITCH_MACHINE.
6085
60861994-02-07 Christian Lynbech (lynbech@avignon)
6087
6088 * emacsserver.c (main) [HAVE_SYSVIPC]: Reverse test of fork value.
6089
60901994-02-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6091
6092 * Makefile.in (UTILITIES): Mention profile.
6093 (profile): New target.
6094
6095 * profile.c: New file.
6096
60971994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
c60ee5e7 6098
88c71720 6099 * make-docfile.c: Make the argument list output look more like the
c60ee5e7 6100 Lisp docstrings do.
88c71720 6101 (write_c_args): Take new arg FUNC. Make output
362bc2da
DL
6102 look like lisp call prototypes: (function ARG1 ARG2), upcasing args.
6103 (scan_c_file): Pass BUF to write_c_args for FUNC arg.
6104
880820fe 61051994-01-14 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6106
6107 * etags.c (stab_entry, stab_create, stab_find, stab_search,
2f2c687b 6108 stab_type, add_keyword, C_reate_stab, C_create_stabs): Deleted.
362bc2da 6109 Use gperf generated hash table instead of linked list.
2f2c687b 6110 (C_stab_entry, hash, in_word_set, get_C_stab, C_symtype): Added.
362bc2da 6111 Mostly code generated by gperf.
b166dcd8 6112 (consider_token): Remove unused parameter `lp'.
2f2c687b 6113 (PF_funcs, getit): Allow subroutine and similar declarations
362bc2da 6114 to span multiple lines.
2f2c687b
JB
6115 (C_entries): Check for newline if inchar to avoid bus errors.
6116 (process_file, find_entries): Distinguish among nonexistent
362bc2da
DL
6117 and not regular file.
6118
61191994-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6120
6121 * timer.c: Include errno.h; don't include fasync.h.
6122 (schedule): Don't return a value.
6123 (sigcatch): Reestablish the handler first.
6124 (getevent): Always call notify at the end.
6125 (notify): Defer alarms around the whole body of function.
6126
61271994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6128
6129 * timer.c (main): Don't request SIGIO, and don't handle it.
6130 Loop calling getevent.
6131 (sigcatch): Delete code to handle SIGIO.
6132 if defer_alarms is set, don't call notify, just set alarm_deferred.
1c478461 6133 (getevent): Use read, not getchar. Handle EINTR and EAGAIN.
362bc2da
DL
6134 Set defer_alarms around realloc and schedule.
6135 If alarm_deferred gets set, call notify.
6136 Likewise if this event is the only pending event.
6137 Make buf and buf_size global variables.
6138 Don't malloc buf if it is already non-zero.
6139 (schedule): Just exit if run out of memory.
6140 Return the number of events.
6141 (signal) [_CX_UX]: Add #undef.
6142
61431994-01-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6144
6145 * timer.c [USG] (SIGIO): Define as SIGPOLL.
6146 (main) [USG]: Do ioctl to enable SIGPOLL.
6147
61481994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6149
6150 * timer.c: Don't declare sys_errlist; declare strerror instead.
6151 (schedule, main): Call strerror instead of using sys_errlist.
6152 * movemail.c (get_errmsg, pfatal_with_name, pfatal_and_delete):
6153 Call strerror instead of using sys_errlist.
6154 * env.c (main): Call strerror instead of using sys_errlist.
6155 * emacsclient.c: Don't declare sys_errlist; declare strerror instead.
6156 (main): Call strerror instead of using sys_errlist.
6157 * emacsclient.c [! HAVE_STRERROR] (strerror): Define the function.
6158 * env.c [! HAVE_STRERROR] (strerror): Likewise.
6159 * timer.c [! HAVE_STRERROR] (strerror): Likewise.
6160 * movemail.c [! HAVE_STRERROR] (strerror): Likewise.
6161
61621994-01-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6163
6164 * hexl.c: Fix up whitespace. Get rid of spurious casts to void.
6165
6166 * movemail.c (malloc): Don't declare it.
6167 (xmalloc): Cast result of malloc.
6168 (strcpy): Don't declare it.
6169
61701993-11-14 Morten Welinder (terra@diku.dk)
6171
6172 * hexl.c [MSDOS]: Use binary file modes for non-text side of pipe.
6173 (main): Use fclose to close file opened by fopen.
6174
6175 * fakemail.c (main) [MSDOS]: Dummy stub just to make the file compile.
6176
6177 * movemail.c [MSDOS]: #undef `access'.
6178
6179 * b2m.c (main) [MSDOS]: Open all files as binary.
6180 * etags.c (main) [MSDOS]: Open all files as binary.
6181
6182 * make-docfile.c [MSDOS]: Use text/binary mode as appropriate.
6183 (scan_c_file, scan_lisp_file): Extra parameter for the mode to open
6184 with.
6185
61861994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6187
6188 * Makefile.in (ALL_CFLAGS): Include LDFLAGS.
6189 Use ALL_CFLAGS in all the rules that compile and link with one cmd.
6190 (LINK_CFLAGS): New variable.
6191 (timer): Use LINK_CFLAGS.
6192
61931993-12-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6194
6195 * movemail.c: Include syswait.h.
6196 Fork a subprocess and use it to copy the mail file.
6197
61981993-12-07 Richard Stallman (rms@srarc2)
6199
6200 * make-docfile.c (scan_lisp_file): Don't add newline at end of string.
6201
62021993-12-04 Richard Stallman (rms@srarc2)
6203
6204 * movemail.c (main): When making tempname, cast result of xmalloc.
6205 Include room for EXXXXXX in the size.
6206 Don't use result of strcpy.
6207
62081993-12-03 Paul Eggert (eggert@twinsun.com)
6209
6210 * vcdiff: Add --brief option.
6211
62121993-12-02 Richard Stallman (rms@srarc2)
6213
6214 * Makefile.in (${archlibdir}, install): Use $(INSTALL_PROGRAM)
6215 for all executables and scripts.
6216
62171993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6218
6219 * Version 19.22 released.
6220
62211993-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6222
6223 * Makefile.in (mostlyclean): Make it distinct from clean.
6224
62251993-11-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6226
6227 * Makefile.in (${archlibdir}): Don't do chown or chgrp.
6228
62291993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6230
6231 * Version 19.21 released.
6232
6233 * Makefile.in (install): Don't change mode or group when installing.
6234
6235 * etags.c (FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
6236
62371993-11-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6238
6239 * make-docfile.c (read_c_string): For "", concatenate the two strings.
6240
6241 * movemail.c (main): Fix error message text.
6242
62431993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6244
6245 * Version 19.20 released.
6246
177c0ea7 62471993-11-08 Tom Hageman (tom@basil.icce.rug.nl)
362bc2da 6248
ecc54057 6249 * etags.c (C_entries): Keep track of ()-parenthesis level so that
362bc2da
DL
6250 functions returning a pointer to a function, a la `signal', can be
6251 parsed. This also required new state `fstartlist' to `FUNCST'.
6252 (SAVE_TOKEN, RESTORE_TOKEN, TOKEN_SAVED_P): 1-deep token save stack.
2f2c687b 6253 (C_entries, CNL): Use it to isolate preprocessor directive processing
362bc2da 6254 from the other state engines.
2f2c687b 6255 (begtk): Add '~', for C++ class destructors.
362bc2da 6256
880820fe 62571993-11-02 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6258
b166dcd8 6259 * etags.c (consider_token): Remove unused variable firsttok.
2f2c687b 6260 (prolog_getit): Call pfnote with the right number of arguments.
362bc2da
DL
6261
62621993-10-19 Paul Eggert (eggert@twinsun.com)
6263
6264 * rcs2log (printlogline): Don't generate lines containing only
6265 white space.
6266
62671993-10-04 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6268
6269 * Makefile.in (${archlibdir}):
6270 Install ${SCRIPTS} from ${srcdir}, not cwd.
6271
62721993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6273
6274 * Makefile.in: Fixed typos or brainos of whoever thought `@' was
6275 the comment character.
6276
880820fe 62771993-10-01 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6278
2f2c687b 6279 * etags.c (process_file): Dead code removed.
362bc2da 6280 (S_ISREG): #define it using S_IFREG if not defined.
2f2c687b 6281 (process_file): Regular files have nothing to do with symlinks.
362bc2da 6282
f0131492 62831993-09-28 Brian J. Fox (bfox@ai.mit.edu)
362bc2da
DL
6284
6285 * Makefile.in (${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not
6286 from current directory. Only chmod and chgrp files that we
6287 installed, which excludes ${INSTALLABLE_SCRIPTS}. They go in
6288 ${bindir}.
b166dcd8 6289 (INSTALLFLAGS): Delete definition, since it is an unused variable
362bc2da
DL
6290 now.
6291
f0131492 62921993-09-27 Brian J. Fox (bfox@ai.mit.edu)
362bc2da 6293
b166dcd8
KC
6294 * Makefile.in (INSTALL, INSTALL_PROGRAM, INSTALL_DATA):
6295 Let configure figure out the correct values for these variables.
362bc2da 6296
f0131492 62971993-09-14 Brian J. Fox (bfox@ai.mit.edu)
362bc2da 6298
10d1d0af 6299 * Makefile.in (archlibdir): Only install executables internally
362bc2da
DL
6300 used by emacs; don't install bindir binaries here.
6301
63021993-09-24 Paul Eggert (eggert@twinsun.com)
6303
6304 * rcs2log: Add -h, -n, -r options.
6305 By default, look for *,v files as well as RCS/*,v files.
6306 Use $TMPDIR (default /tmp) instead of /tmp.
6307
880820fe 63081993-09-20 Francesco Potortì (pot@fly)
362bc2da
DL
6309
6310 * etags.c (C_entries): is_func is initialised here instead of in
6311 consider_token for the sake of the yacc rules section.
6312 (C_entries): Now class, struct, enum, union and typedef produce
6313 named tags.
6314
63151993-09-11 Roland McGrath (roland@baalperazim.gnu.ai.mit.edu)
6316
6317 * yow.c: Include <src/paths.h>, instead of "src/paths.h".
6318
63191993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6320
88c71720
KS
6321 * Makefile.in: Support configuring in a different directory when
6322 ${srcdir} has already been configured.
6323 (ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir}
6324 -I${srcdir}/../src.
362bc2da
DL
6325 (b2m, movemail, fakemail, env, emacsserver, emacsclient,
6326 getdate.o, timer.o, timer): Remove `-I${srcdir}/../src', since it
6327 is already in CPP_FLAGS.
6328 * etags.c, emacsclient.c, wakeup.c, timer.c, b2m.c, fakemail.c,
6329 movemail.c, emacsserver.c: Include <config.h> instead of "config.h".
6330
63311993-08-25 Paul Eggert (eggert@twinsun.com)
6332
6333 * rcs2log: Change /{/ to /\{/ for Posix ERE compatibility;
6334 otherwise, HP awk complains.
6335
6336 * vcdiff: Append /usr/ccs/bin and /usr/sccs to PATH, since these
6337 are common hangouts for SCCS commands.
6338
63391993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6340
6341 * Version 19.19 released.
6342
63431993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6344
6345 * Makefile.in (make-path): Dep on config.h.
6346
63471993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6348
6349 * b2m.c (TRUE, FALSE): Don't define if already defined.
6350
63511993-08-09 Paul Eggert (eggert@twinsun.com)
6352
6353 * rcs2log (awkscript):
6354 Some sites put comma-separated junk after the fullname.
6355 Remove it, but leave "Bill Gates, Jr" alone.
6356 Remove the junk from fullnames like "0000-Admin(0000)".
6357
63581993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6359
6360 * Version 19.18 released.
6361
880820fe 63621993-08-04 Francesco Potortì (pot@spiff.gnu.ai.mit.edu)
362bc2da 6363
2f2c687b
JB
6364 * etags.c (L_isdef, L_isquote, L_getit): Small optimisations.
6365 (L_funcs): The (foo::defmumble stuff now should work.
6366 (consider_token): Function returned random value--corrected.
6367 (C_entries): Corrected == versus = typo.
362bc2da
DL
6368
63691993-08-01 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6370
6371 * etags.c (put_entries): For NODE->rewritten, put pattern before
6372 \177 and name after, not vice versa.
6373
63741993-08-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6375
6376 * timer.c (main): Generate a SIGIO as soon as we've initialized.
6377
880820fe 63781993-07-30 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6379
b166dcd8 6380 * etags.c (FINCST): Add the fignore status. Means we are
362bc2da
DL
6381 after the parameter list and before the open curly brace.
6382 Allows correct parsing of C++ constructors.
2f2c687b
JB
6383 (C_entries, consider_token): Make use of fignore.
6384 (consider_token): Reset funcdef when next_token_is_func: when in
362bc2da 6385 ctags mode makes DEFVAR and others work better.
2f2c687b
JB
6386 (L_isquote): Function that recognises the "(quote" string.
6387 (L_getit): Ignore quoting via "'" or "(quote". Useful for defalias.
362bc2da
DL
6388
63891993-07-29 Paul Eggert (eggert@twinsun.com)
6390
6391 * rcs-checkin: Don't check whether a file is readable until we have
6392 decided not to ignore it.
6393
63941993-07-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6395
6396 * Makefile.in (etags): Depend on ../src/config.h.
6397
6398 * emacsserver.c: Include types.h before file.h.
6399
64001993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6401
6402 * Makefile.in (install): Use .n, not .new, for temporary filenames.
6403
64041993-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6405
ecc54057 6406 * Version 19.17 released.
362bc2da
DL
6407
64081993-07-15 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6409
6410 * etags.c (print_help): Break up the very long strings containing
6411 the help message into shorter strings, to placate chintzy C
6412 compilers which can't handle strings that long.
6413
6414 * wakeup.c: Use CPP tangle from autoconf manual to #include the
6415 correct combination of <time.h> and <sys/time.h>.
6416
880820fe 64171993-07-08 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6418
b166dcd8 6419 * etags.c (alloca): Remove all references to it.
2f2c687b
JB
6420 (main): Now calls xnew instead of alloca for portability.
6421 (../src/config.h): Included only if HAVE_CONFIG_H.
6422 (const): Void definition removed--config.h takes care of it.
362bc2da 6423
880820fe 64241993-07-08 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6425
2f2c687b 6426 * etags.c (consider_token): Was `==', now is `='.
362bc2da
DL
6427 (consider_token): DEFUNs now treated like funcs in ctags mode.
6428
2f2c687b
JB
6429 * etags.c (LEVEL_OK_FOR_FUNCDEF): Removed.
6430 (C_entries): Optimized the test that used LEVEL_OK_FOR_FUNCDEF.
b166dcd8 6431 (C_entries): Remove a piece of useless code.
2f2c687b 6432 (C_entries): Making typedef tags is delayed until a semicolon
362bc2da
DL
6433 is met. This handles "typedef int X, Y, Z;" correctly.
6434
64351993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6436
6437 * Version 19.16 released.
6438
6439 * b2m.c: #include <sys/types.h>.
6440 (ltoday): Declare this to be time_t.
6441
64421993-06-30 Paul Eggert (eggert@twinsun.com)
6443
6444 * vcdiff: Add -q option.
6445
64461993-06-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6447
6448 * etags.c: #include "config.h" and the alloca CPP tangle before
6449 #including the system headers and getopt.h. AIX requires the
6450 #pragma to come before any actual C code.
6451
64521993-06-21 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6453
6454 * Makefile.in (ctags): Depend on etags, so that parallel makes
6455 don't write etags.o files on top of each other.
6456
64571993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6458
6459 * version 19.15 released.
6460
64611993-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6462
6463 * etags.c (add_node): Move var last_node to file scope.
6464
64651993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6466
6467 * Version 19.14 released.
6468
64691993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6470
ecc54057 6471 Bring mumbleclean targets into conformance with GNU coding standards.
362bc2da
DL
6472 * Makefile.in (distclean): Call clean to do most of the work.
6473 Delete aixcc.c and TAGS.
6474 (realclean): Just call distclean.
1c478461 6475
362bc2da
DL
6476 * Makefile.in: Remember, spaces are not tabs.
6477
64781993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6479
6480 * Makefile.in (CPP_CFLAGS): New variable.
6481 Use it instead of ALL_CFLAGS when compiling a .c file.
6482 (getopt.o, getopt1.o): Add explicit compilation commands.
6483
64841993-06-10 Mark D. Baushke (mdb@cisco.com)
6485
6486 * etags.c: Reinstate old -f option as an alias for -o for
6487 installed base uses.
6488
64891993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6490
6491 * emacsserver.c (main): When we're passing a `struct sockaddr_un'
6492 to bind or accept, cast the pointer, to avoid warnings on systems
6493 which declare prototypes for this.
6494 * emacsclient.c (main): Same.
6495
6496 * Makefile.in (YACC): New variable, to be set by top-level Makefile.
6497
64981993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6499
6500 * Version 19.13 released.
6501
6502 * wakeup.c: Include sys/types.h, too; I think that's where time_t
6503 comes from, not sys/time.h.
6504
65051993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6506
6507 * wakeup.c: Include sys/time.h.
6508
6509 * etags.c: #undef static.
6510
6511 * Version 19.12 released.
6512
6513 * Makefile.in (all): Exclude INSTALLABLE_SCRIPTS and SCRIPTS from deps.
6514
65151993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6516
6517 * Version 19.11 released.
6518
6519 * timer.c [LINUX]: #undef signal.
6520 * emacsserver.c: #undef signal.
6521
65221993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6523
6524 * wakeup.c (main): Make when a time_t.
6525
65261993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6527
ecc54057 6528 * Makefile.in (${archlibdir}): Use `(cd foo && pwd)' instead of
a64387ee 6529 `(cd foo ; pwd)' to get the canonical name of a directory; cd
362bc2da
DL
6530 might fail, and have pwd print out the current directory.
6531
6532 * movemail.c [MAIL_USE_POP] (main): Don't use non-portable
6533 string-handling functions.
6534
65351993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6536
6537 * Version 19.10 released.
6538
65391993-05-29 Paul Eggert (eggert@twinsun.com)
6540
6541 * rcs2log: When given no file arguments, inspect RCS/.* as well
6542 as RCS/*. Don't report an error if RCS is empty or nonexistent.
6543
65441993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6545
6546 * Makefile.in (timer): Link with $(LOADLIBES).
6547
65481993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6549
6550 * fakemail.c (put_line): Don't output \n\t unless more text follows.
6551
65521993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6553
6554 * etags.c: Replace the CPP tangle for alloca with the one from the
6555 autoconf documentation, since that's working elsewhere.
6556
65571993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6558
6559 * Makefile.in (ALL_CFLAGS): Add "-I.", so the system and machine
6560 description files can find their ancestors.
6561
65621993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6563
6564 * Makefile.in (install): Get the scripts from ${srcdir},
6565 unlike the executables.
6088b51f 6566 (ALL_CFLAGS): Add -I../src.
362bc2da
DL
6567
65681993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6569
6570 * Version 19.9 released.
6571
65721993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6573
6574 * Makefile.in (install): Do install the programs listed in
6575 INSTALLABLE_SCRIPTS. Make the renaming loop use INSTALLABLES and
6576 INSTALLABLE_SCRIPTS, instead of writing the programs out.
6577
6578 * Makefile.in (ALL_CFLAGS): Include -I${srcdir}.
6579 (getopt.o, getopt1.c): Use ${srcdir} as appropriate.
6580
65811993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6582
6583 * etags.c: Include ../src/config.h.
6584
6585 * Makefile.in (install): Don't handle INSTALLABLE_SCRIPTS
6586 in first loop. Delete files from bindir before installing new ones.
6587 (ALL_CFLAGS): Use ${srcdir} to find .../src dir.
6588
65891993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6590
6591 * Version 19.8 released.
6592
6593 * make-docfile.c: Doc fix.
6594
65951993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6596
6597 * tcp.c: Fix comment syntax at top of file.
6598 (main): Don't call htons with the port number.
6599
66001993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6601
6602 * Makefile.in (timer.o, sorted-doc.c): Link with alloca.o, if it's
1c478461 6603 appropriate.
362bc2da
DL
6604
6605 * Makefile.in (install): Refer to the variables INSTALLABLES and
6606 INSTALLABLE_SCRIPTS, instead of writing them out.
6607
66081993-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6609
6610 * make-path.c (main): Return 0.
6611
66121993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6613
ecc54057 6614 * Version 19.7 released.
362bc2da
DL
6615
66161993-05-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6617
6618 * make-docfile.c (scan_lisp_file): Recognize defalias like fset.
6619
66201993-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6621
6622 * tcp.c: New file.
6623
66241993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6625
6626 * Makefile.in (.c.o): Make the rule start with a tab, not spaces.
6627
66281993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6629
6630 * timer.c (notify): Don't call sighold or sigrelse; they're USG
6631 only. We should really fix this later, but let's just make it
6632 compile for now.
6633
6634 Install patches from David J. Mackenzie to make the srcdir option
6635 work.
6636 * Makefile.in (srcdir, VPATH): Get this value from the top-level
6637 Makefile.
6638 (INSTALLABLES): Split this into two lists - INSTALLABLES and
6639 INSTALLABLE_SCRIPTS.
6640 (INSTALLABLE_SCRIPTS): New list.
6641 (EXECUTABLES): Include INSTALLABLE_SCRIPTS.
6642 (${archlibdir}): The scripts to be installed live in the source
6643 tree, not in the object tree.
6644 (test-distrib): Note that the data file lives in the source tree,
6645 not the object tree.
6646 (GETOPTDEPS): Note that getopt.h lives in the source tree.
6647 (all other targets): Change references to source files to use
6648 ${srcdir}, except for config.h, which lives in the object dir.
6649 (timer.o): Note that this depends on ../src/config.h.
6650 * make-docfile.c (main): Add a -d option, to tell it where to find
6651 the source files.
6652 * test-distrib.c (main): Take the name of the distribution file to
6653 test from the command line.
6654
10d1d0af 6655 * timer.c: Fix misspellings of get_date function's name.
362bc2da
DL
6656
66571993-05-12 Roland McGrath (roland@geech.gnu.ai.mit.edu)
6658
6659 * etags.c (main):
6660 Don't require that there be input files if -i switches were given.
6661
66621993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6663
6664 The GNU coding standards specify that CFLAGS should be left for
6665 users to set.
6666 * Makefile.in (CFLAGS): Put this in the "things configure might
6667 edit" section, and have it default to -g.
6668 (ALL_CFLAGS): New variable, set to all the flags which should be
6669 passed to compilations. Replace all other uses of CFLAGS with
6670 ALL_CFLAGS.
6671 (.c.o): New rule, to pass ALL_CFLAGS to compilations.
6672
6673 * Makefile.in (DEFS): Remove this; it's always just going to be
6674 "-DHAVE_CONFIG_H -Demacs".
6675
66761993-05-03 Paul Eggert (eggert@twinsun.com)
6677
6678 * rcs2log: mawk, SunOS 4.1.3 nawk, and Ultrix/MKS nawk all barf on
6679 /[/]/, so change it to /[\/]/. This should work on all
6680 Posix-compliant awks. It's slightly wrong with traditional awk,
6681 since it matches \ too, but that's a minor problem compared to awk
6682 syntax errors.
6683
66841993-05-01 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6685
6686 * Makefile.in (ALLOCA): New variable, whose value we should
6687 inherit from the top-level makefile.
6688 (etags, ctags): Include ALLOCA in the list of object files that
6689 these executables depend on and link.
6690
66911993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6692
b166dcd8 6693 * Makefile.in (DEFS): Rename from CONFIG_CFLAGS.
362bc2da
DL
6694
66951993-04-07 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
6696
6697 * make-docfile.c (write_c_args): Print an argument named "defalt"
6698 as "default".
6699
67001993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6701
6702 * Makefile.in (C_SWITCH_SYSTEM): New variable.
6703 (CFLAGS): Include C_SWITCH_SYSTEM in the flags to pass to the
6704 compiler.
6705
880820fe 67061993-03-22 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6707
2f2c687b
JB
6708 * etags.c (YACC): Flag added to c_ext.
6709 (c_ext): No more a synonim for c_ext&C_PLPL because of YACC.
6710 (find_entries): Consistently use streq when reasonable.
6711 (find_entries): A .y file is a yacc file.
362bc2da 6712 (get_C_stab): c_ext becomes c_ext&C_PLPL.
2f2c687b
JB
6713 (C_entries): Logical cplpl means c_ext&C_PLPL.
6714 (C_entries): Logical yacc_rules means we are after the first %%.
b166dcd8 6715 (C_entries): Add logic for yacc files.
362bc2da 6716
880820fe 67171993-03-16 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6718
6719 * etags.c (C_entries): ':' case moved to the second switch.
2f2c687b 6720 (C_entries): Do not examine token if structdef==scolonseen.
362bc2da
DL
6721 (consider_token): structtag set to null string for enum.
6722
880820fe 67231993-03-12 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6724
2f2c687b
JB
6725 * etags.c (GET_COOKIE): And related macros removed.
6726 (logical): Is now int, no more a char.
6727 (reg): Define deleted.
6728 (isgood, _gd, notgd): Deleted.
6729 (gotone): Deleted.
6730 (TOKEN): Member linestart removed.
6731 (linepos, prev_linepos, lb1): Deleted.
6732 (main): Call initbuffer on lbs array instead of lb1.
b166dcd8 6733 (init): Remove the initialisation of the logical _gd array.
2f2c687b 6734 (find_entries): A .sa suffix means assembler file.
362bc2da
DL
6735 (C_create_stab): "auto", "void", "extern", "static" are st_C_typespec.
6736 All C state machines rewritten.
2f2c687b
JB
6737 (C_entries): Complete rewrite.
6738 (condider_token): Complete rewrite.
6739 (getline): Deleted.
362bc2da 6740
880820fe 67411993-03-01 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
362bc2da 6742
b166dcd8 6743 * etags.c (C_entries): Add the quotednl logical variable.
362bc2da
DL
6744 Used for parsing of #define's spanning multiple lines.
6745
880820fe 67461993-02-23 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
362bc2da
DL
6747
6748 * etags.c (C_entries): Save the definedef status even when a
6749 newline is met inside a string.
6750
67511993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
6752
b166dcd8 6753 * Makefile.in (EXECUTABLES): Add rcs-checkin.
362bc2da
DL
6754
6755 * Makefile.in (unlock, relock): New productions.
6756
67571993-03-16 Paul Eggert (eggert@twinsun.com)
6758
6759 * rcs2log: Some awks don't understand "\r". Code around this.
6760 Unfortunately this requires putting a carriage return in the
6761 source code. Don't assume that rlog will tolerate times like
6762 `10:10:60'; RCS 5.7 won't allow this.
6763
67641993-03-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6765
6766 * timer.c (main): Set the ownership of the stdin file descriptor
6767 to the current process. Print error messages if either of the
6768 fcntl's fails.
6769
6770 * timer.c (sigcatch): Declare this to return SIGTYPE (defined in
6771 ../src/config.h), not void.
6772
67731993-03-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6774
6775 * b2m.c (main): Don't exit upon reading a blank line.
6776
880820fe 67771993-03-01 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
362bc2da
DL
6778
6779 * etags.c (C_entries): New local variable quotednl. Used for
6780 parsing of #define's spanning multiple lines.
6781
6782 * etags.c (C_entries): Save the definedef status
6783 even when a newline is met inside a string.
6784
67851993-02-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6786
6787 * timer.c (notify): Initialize waitfor properly.
6788
880820fe 67891993-02-22 Francesco Potortì (pot@CNUCE.CNR.IT)
362bc2da
DL
6790
6791 * etags.c (C_entries): Don't reset definedef when a newline inside a
6792 comment is met.
6793
67941993-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6795
6796 * etags.c (find_entries): If filename ends in .f or .for,
6797 don't try anything but Fortran.
6798
67991993-01-08 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
6800
6801 * timer.c (notify): Flush stdout after writing message to avoid lossage
6802 on terminals.
6803
6804 (notify): Also, write a newline after the token.
6805
68061992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6807
6808 * Makefile.in (exec_prefix): New variable.
6809 (bindir, libdir): Use it instead of `prefix'.
6810
6811 * Makefile.in (CFLAGS): #define HAVE_CONFIG_H, too.
6812
6813 * Makefile.in (libdir): Default to ${prefix}/lib.
b166dcd8 6814 (archlibdir): Adjust to match.
362bc2da
DL
6815
6816 * Makefile.in (distclean): Don't delete backup or autosave files.
6817 (extraclean): Like realclean, but does delete backup and autosave
6818 files.
6819
6820 * Makefile.in (realclean): Ignore errors from rm.
6821
6822 * Makefile.in (distclean): Don't bother to delete ../arch-lib;
6823 that doesn't exist anymore.
6824
68251992-12-11 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6826
6827 * Makefile.in (prefix, bindir, libdir, srcdir): New variables, as
6828 described in the top-level Makefile.
6829 (UTILITIES): Add make-path to the list of utility programs.
6830 (../arch-lib): Replaced by the ${archlibdir} target, which places
6831 the executables in their permanent home.
6832 (install, install.sysv, install.xenix): Consolidated into one
6833 target which should work under all circumstances, modulo a few
6834 ignored error messages.
6835
6836 * make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
6837 a different number of arguments than other DEFVARs, recognize it
6838 specially, and expect the right number of commas.
6839
68401992-12-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6841
6842 * make-path.c: New program, to help with the installation process.
6843 * Makefile.in (make-path): New target.
6844
6845 * make-path.c (touchy_mkdir): Remove debugging output.
6846
68471992-11-05 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6848
b166dcd8 6849 * Makefile.in (getdate.o): Add explicit target for this, so we
362bc2da
DL
6850 can indicate that it depends on ../src/config.h.
6851
68521992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6853
6854 * Makefile.in (CONFIG_CFLAGS): Let the configure script edit this
6855 instead of CFLAGS.
6856 (CFLAGS): Add -Demacs and -I../src to CONFIG_CFLAGS to produce this.
6857
68581992-09-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6859
6860 * getdate.y: Correctly recognize Mt. Xinu BSD running on an HP
6861 9000/300 as BSD; don't include both <sys/time.h> and <time.h> on
6862 that system.
6863
6864 * Makefile.in (arch-lib): Give rm the `-f' option.
6865
68661992-09-28 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6867
6868 * make-docfile.c (write_c_args): Rewritten to correctly print
6869 &optionals before the first identifier, but after the first paren.
6870 This code used to just wait for commas or spaces; now it notices
6871 identifier boundaries.
6872
68731992-09-26 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6874
6875 * rcs2log: When getting date, use %02d instead of %.2d in awk printf.
6876
68771992-09-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6878
6879 * make-docfile.c (write_c_args): Print the argument lists properly
6880 when the first argument is optional.
6881
68821992-09-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6883
6884 * sorted-doc.c (main): Redefine special chars to use fonts tensy, teni.
6885 Redefine @item. Set catcode of +.
6886
68871992-08-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6888
6889 * emacsclient.c (main): Set IPC_CREAT in msgget call.
6890
68911992-08-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6892
6893 * etags.c (TEX_funcs): Keep just 1 of two redundant nested loops.
6894 (TEX_decode_env): Make `tab' one element longer.
6895
68961992-08-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6897
6898 * etags.c (PF_funcs): Recognize the "entry" keyword.
6899
69001992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6901
6902 * Makefile.in: Add rcs2log and vcdiff to the list of utilities.
6903
69041992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6905
6906 * timer.c (events): Rather than having slots marked as in use or
6907 out of use by the `token' field, keep all pending events at the
6908 beginning of the array. When we delete an event in the middle of
6909 the array, we move the last event into its place.
6910 (num_events): New variable.
6911 (schedule): It is now cheaper to find a free event slot;
6912 events[num_events] is the first free slot.
6913 (notify): Scan events[0 .. num_events-1], instead of the whole
6914 array. When an event fires, move the last event in the array into
6915 its spot. Use num_events to determine whether or not there are
6916 any pending events, not wait_for.
b166dcd8 6917 (getevent): Delete unused variable `ep'.
362bc2da
DL
6918 (sigcatch): It's now easier to find all the active events.
6919 (main): Initialize num_events.
6920
6921 * etags.c: Rather than fret about which systems have index and
6922 which systems have strchr, and how to tell the difference between
6923 them, we just write out our own versions. Big deal.
6924 (index, rindex): Extern declarations removed.
6925 (NEED_INDEX, NEED_RINDEX): Special hacks for hpux removed.
6926 (etags_index, etags_rindex): New declarations.
6927 (process_file, find_entries, pfnote, TEX_funcs, TEX_decode_env,
6928 TEX_getit, substr): Use the etags_*index functions, rather than
6929 the native *index functions.
b166dcd8 6930 (rindex, index): Rename to etags_rindex and tags_rindex, and
362bc2da
DL
6931 made them unconditionally defined, rather than having them depend
6932 on NEED_*INDEX.
6933
6934 * etags.c (savenstr): Add declaration for this at top of file.
6935 (TEX_decode_env): Don't declare it local to this function.
6936
6937 * b2m.c: #include "../src/config.h", so we can test for the USG
6938 macro, and decide whether to include <string.h> or <strings.h>.
6939 * Makefile.in: Note that b2m.c depends on ../src/config.h.
6940
69411992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6942
6943 * timer.c: Reformatted according to the GNU coding standards.
6944 Removed arbitrary limits on the number of events queued and the
6945 length of the tokens used to identify them.
6946 Removed casts to (void).
6947 Removed debugging printfs; they clutter the code, and the need
6948 can be better filled using a real debugger.
6949
69501992-08-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6951
6952 * timer.c: Installed new version from Eric Raymond; this is more
6953 portable, since it doesn't try to use SIGIO.
6954
69551992-07-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6956
6957 * emacsclient.c (main): If we can't find the socket in this
6958 person's home directory, print a message which asks if they've
6959 started the server, instead of just printing the message from
6960 sys_errmsg; Cygnus finds that people are much less confused by
6961 this.
6962
69631992-07-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6964
6965 * etags.c: Rather than defining "notdef" when "hpux" is #defined,
6966 so that index and rindex get defined, why don't we actually
6967 control index and rindex using symbols called "NEED_INDEX" and
6968 "NEED_RINDEX", and define them if hpux is defined? Isn't that a
6969 little more readable than defining something whose name implies
6970 that it's not?
6971
69721992-07-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6973
6974 * movemail.c: Merged changes from Jamie Zawinski's byte compiler
6975 distribution:
6976 Miscellaneous doc fixes.
1c478461 6977 (skip_white, read_lisp_symbol): New functions.
362bc2da
DL
6978 (scan_lisp_file): Instead of using long hairy strings of ifs, call
6979 read_lisp_symbol and then see what we got. Call skip_white
6980 instead of writing out a loop to do its job. Correctly extract
6981 docstrings from "defmacro" declarations.
6982
69831992-06-25 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6984
6985 * movemail.c (strcpy): Declare this to return char *.
6986
69871992-06-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6988
6989 * etags.c (C_entries): When we find a C++ comment, do actually
6990 skip to the end of the line; do a 'break' instead of a 'continue'.
6991
69921992-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6993
6994 * etags.c (getit): Add missing parenthesis to expression which
6995 decides if this token is an identifier.
6996
69971992-06-04 Roland McGrath (roland@geech.gnu.ai.mit.edu)
6998
6999 * etags.c (consider_token): Recognize `ENTRY' macro used in libc.
7000
70011992-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7002
7003 * etags.c (put_entries): Always put space between name and line num.
7004
70051992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
7006
7007 * etags.c (getit): Parenthesize &&/|| expression to avoid gcc
7008 warning.
7009 (LEVEL_OK_FOR_FUNCDEF): Ditto.
7010
70111992-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7012
7013 * make-docfile.c (write_c_args): Pass both arguments to putc.
7014
70151992-05-10 Roland McGrath (roland@albert.gnu.ai.mit.edu)
7016
b166dcd8 7017 * etags.c (C_entries): Fix reading of "..." strings.
362bc2da
DL
7018 (consider_token): Recognize `SYSCALL' and `PSEUDO' macros, used in
7019 the C library source.
7020
7021 * etags.c (C_entries): When we see a backslash inside a quoted
7022 string, skip to the next character. This allows us to correctly
7023 deal with strings containing quotes.
7024
70251992-05-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7026
7027 * make-docfile.c (write_c_args): Print the C argument names as
7028 they would be written in Elisp; print '_' as '-'.
7029
70301992-05-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7031
7032 * movemail.c [POP]: Get user name via getpwuid.
7033
70341992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7035
2f2c687b 7036 * Makefile.in: Flags in CC invocations rearranged for no reason.
362bc2da
DL
7037
70381992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7039
10d1d0af 7040 * etags.c (print_help): Remember not to embed raw newlines in
362bc2da
DL
7041 strings - end the lines with `\n\'.
7042
70431992-04-17 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7044
b166dcd8 7045 * timer.c (getevent): Remove declaration of memcpy; since
362bc2da
DL
7046 different systems have different return types, and we're not even
7047 using the return type anyway, it wasn't doing us any good.
7048
70491992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7050
7051 * emacsserver.c (msgcatch): Use the SIGTYPE macro to declare the
7052 type of this function.
7053
70541992-04-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7055
7056 * ChangeLog: Since the old etc contents have been split into etc
7057 and lib-src, the old etc's ChangeLog has been duplicated in the
7058 new etc and lib-src. That means that each contains complete and
7059 coherent information, although each contains extraneous
1c478461 7060 information.
362bc2da
DL
7061
70621992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7063
290afd83 7064 * etags.c: "--no-warning" option renamed to "--no-warn",
362bc2da
DL
7065 to be consistent with other GNU programs, like makeinfo.
7066
290afd83 7067 * Makefile: Renamed to Makefile.in; the configure script
362bc2da
DL
7068 will edit this to produce Makefile.
7069
70701992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7071
7072 * etags.c (print_help, print_version): New functions.
7073 (main): Options added to support them.
7074
7075 * etags.c (longopts): New array of long names for the options.
7076 (main): Recognize them.
7077
70781992-04-06 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7079
b166dcd8 7080 * etags.c (C_entries): Remove comment saying that \" in a string
362bc2da
DL
7081 isn't recognized as magic, because it is correctly handled.
7082
7083 * getopt.c, getopt.h: New files, from GNU C library.
7084 * etags.c: Rewritten to use getopt.
7085 #include "getopt.h".
7086 (file_num): Variable deleted; its role is now played by getopt's
7087 optind.
7088 (main): Argument processing loop rewritten to call getopt to get
7089 next option. Options which take parameters (-o and -i) rewritten
b166dcd8
KC
7090 to get parameter from optarg instead of argv[1].
7091 Filename preprocessing loop and update command changed similarly.
362bc2da
DL
7092 * Makefile (etags, ctags): Depend on and link with getopt.h,
7093 getopt.o, and getopt1.o.
7094 (getopt.o, getopt1.o): New targets for the GNU getopt routines.
7095
7096 * etags.c (outfflag): Variable deleted; it is non-zero iff outfile
7097 is non-zero.
7098
7099 (main): In the argument processing loop, the 'goto next_arg'
7100 statements are breaking out of the switch statement in exactly the
7101 same way that a simple 'break' statement would; replace the gotos
7102 with breaks, and remove the label.
7103
71041992-04-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7105
7106 * etags.c (C_entries): Clear tydef and next_token_is_func at start.
7107 (consider_token): Move next_token_is_func to global.
7108
71091992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7110
7111 * Makefile: Conform with GNU coding standards:
7112 (mostlyclean): New target, synonymous with clean.
7113 (TAGS, check): New targets.
7114 (INSTALL, INSTALLFLAGS): New variables.
7115
71161992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7117
ecc54057 7118 * lib-src/Makefile, etc/MACHINES, etc/NEWS: Changed references to
362bc2da
DL
7119 `config.emacs' to `configure'.
7120
7121 * lib-src/Makefile: Adjusted for renaming of share-lib to etc.
7122 * etc/MACHINES: Same.
7123
71241992-03-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7125
7126 * movemail.c (main): Allow tempname to be as long as necessary,
7127 instead of limiting it to 39 characters.
7128
7129 * movemail.c (main): Move declaration of buf from top of function
7130 to local block surrounding the copy loop. This makes it less
7131 likely to be confused with the buf used by the code which checks the
7132 permissions on outname's directory.
7133
71341992-03-20 Jim Kingdon (kingdon@albert.gnu.ai.mit.edu)
7135
7136 * SERVICE: Remove my entry.
7137
71381992-03-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
7139
7140 * Makefile (emacstool, nemacstool, xvetool): Use ${CFLAGS}, not
7141 hardcoded -g.
7142
7143 * movemail.c (xmalloc): Return char *, not int.
7144 (main) [!MAIL_USE_FLOCK]: Add a new conditional, MAIL_UNLINK_SPOOL,
7145 that is off by default -- normally don't unlink the mail spool
7146 file, just empty it. Pass creat mode 0600, not 0666.
7147
dff28924 71481992-02-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
362bc2da
DL
7149
7150 * Makefile (../arch-lib): Depend on ${EXECUTABLES}.
7151 (all): Instead of here.
7152 (install): Don't use the -s option, since people need symbols to
7153 debug code.
7154
dff28924 71551992-01-19 Eric Youngdale (youngdale@v6550c.nrl.navy.mil)
362bc2da
DL
7156
7157 * etags-vmslib.c (fn_exp): Add type cast.
7158
71591992-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7160
7161 * movemail.c: Changes in comments.
7162
dff28924 71631992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
362bc2da
DL
7164
7165 * Makefile: Make the distclean target erase the DOC files from
7166 ../share-lib and the executables from ../arch-lib.
7167
dff28924 71681992-01-09 Jim Blandy (jimb@pogo.cs.oberlin.edu)
362bc2da
DL
7169
7170 * emacsclient.c: #include <sys/stat.h>
7171 (main): Do declare statbfr.
7172
dff28924 71731991-12-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7174
7175 * emacsserver.c, emacsclient.c [BSD]: Use either /tmp or ~
7176 for the socket, depending on SERVER_HOME_DIR.
7177 If using /tmp, put host name in the socket name.
7178
7179 * movemail.c (pfatal_and_delete): New function.
7180 (main, popmail): Use it.
7181 (popmail): Close output before deleting messages.
7182 Check for error on close and on fsync.
7183 Use `fatal' where appropriate.
7184 (main): Remove (void).
7185
7186 * aixcc.lex: New file. Not officially part of Emacs.
7187 * Makefile: Rules for that.
7188
dff28924 71891991-12-04 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
362bc2da
DL
7190
7191 * yow.c (main): Rename all references to PATH_EXEC to PATH_DATA.
7192
7193 * etags.c (main): Properly cast call to alloca that initializes
7194 included_files.
7195
71961991-08-17 Roland McGrath (roland@geech.gnu.ai.mit.edu)
7197
7198 * etags.c (files_are_tag_tables): Remove global var.
7199 (process_file): Don't test it. Also remove hack checking for a
7200 file named "TAGS".
7201 (main): -i now takes an arg which is the name of a file to include.
7202 Collect these names and emit include tags for them after processing
7203 all the argument files.
7204
dff28924 72051991-07-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7206
7207 * wakeup.c: Terminate if parent goes away.
7208
dff28924 72091991-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7210
7211 * etags.c (C_entries): Process token before handling end of line.
7212 When inner loops reach end of line, just back up.
7213 Let the real end of line processing happen in just one place.
a64387ee 7214 (consider_token): Likewise.
362bc2da 7215
dff28924 72161991-04-11 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
362bc2da
DL
7217
7218 * etags.c (TEX_mode): Skip comments while scanning the text to see
7219 which escape character this file uses.
7220
dff28924 72211991-03-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7222
7223 * emacsserver.c [USG]: Terminate if msgrcv fails.
7224
dff28924 72251991-03-03 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7226
7227 * emacsserver.c [BSD]: Check for errors on stdin after scanf.
7228
dff28924 72291991-01-25 Jim Blandy (jimb@churchy.ai.mit.edu)
362bc2da
DL
7230
7231 * make-docfile: Find the arguments to a C function correctly,
b166dcd8
KC
7232 by not ignoring the character that read_c_string returns.
7233 Don't even try to find argument names for functions that take MANY
362bc2da
DL
7234 or UNEVALLED arguments, since they're a figment of the docstring's
7235 imagination.
7236
dff28924 72371991-01-14 Jim Blandy (jimb@churchy.ai.mit.edu)
362bc2da
DL
7238
7239 * make-docfile: Read the .elc files generated by the new byte
7240 compiler.
7241
dff28924 72421990-12-31 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7243
7244 * refcard.tex: Use cm fonts, not am, in multi-column mode.
7245
dff28924 72461990-11-29 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7247
7248 * movemail.c (mbx_delimit_begin): Put space before `unseen'.
7249
dff28924 72501990-11-27 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7251
7252 * Makefile (install*): No need to install wakeup.
7253
dff28924 72541990-11-26 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7255
7256 * Makefile (install*): Install emacsclient like etags.
7257
dff28924 72581990-11-13 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7259
7260 * movemail.c (error): Handle 3 args.
7261 (main): Don't check input access if using pop.
7262
dff28924 72631990-10-16 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7264
7265 * etags.c (find_entries): Check for numbers after Scheme suffix.
7266
dff28924 72671990-10-14 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7268
7269 * termcap.dat (vt200-80): Fix ke and ks to frob flag 1.
7270
dff28924 72711990-10-09 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7272
7273 * Makefile (nemacstool, xvetool): New targets.
7274
dff28924 72751990-09-26 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7276
7277 * emacsclient.c: Include errno.h and define related variables.
7278
dff28924 72791990-09-23 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7280
7281 * emacsclient.c: Change usage message.
7282
dff28924 72831990-08-30 David Lawrence (tale@pogo.ai.mit.edu)
362bc2da 7284
ecc54057 7285 * emacs.1: Add break before -nw option.
362bc2da 7286
dff28924 72871990-08-19 David J. MacKenzie (djm@apple-gunkies)
362bc2da
DL
7288
7289 * qsort.c: Replace with GNU version.
7290
dff28924 72911990-08-14 David J. MacKenzie (djm@apple-gunkies)
362bc2da
DL
7292
7293 * wakeup.c: New program replacing loadst.c.
7294
dff28924 72951990-08-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7296
7297 * emacsclient.c [USG]: Pass msgsnd only 4 args.
7298
dff28924 72991990-08-09 David J. MacKenzie (djm@pogo.ai.mit.edu)
362bc2da
DL
7300
7301 * etags.c: Rename `flag' variables for what they do instead of
7302 which option character sets them.
7303
dff28924 73041990-05-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7305
7306 * loadst.c (main): Conditional to get load average on Apollo.
7307
dff28924 73081990-05-22 Joseph Arceneaux (jla@churchy.ai.mit.edu)
362bc2da
DL
7309
7310 * emacsserver.c: Set the permission on the socket to 0600.
7311
dff28924 73121990-03-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7313
7314 * emacsclient.c [BSD]: Print clean message for failing getwd.
7315
dff28924 73161990-03-20 David Lawrence (tale@pogo.ai.mit.edu)
362bc2da
DL
7317
7318 * getdate.y: Use the getdate.y from GNU tar for timer.
7319
dff28924 73201990-03-18 Jim Kingdon (kingdon@pogo.ai.mit.edu)
362bc2da
DL
7321
7322 * emacsclient.c (main): Don't put brackets around "filename" in
7323 usage message. It isn't optional.
7324
dff28924 73251990-03-14 Joseph Arceneaux (jla@churchy.ai.mit.edu)
362bc2da 7326
a64387ee 7327 * etags.c (getit): Recognize '$' as beginning identifiers.
362bc2da 7328
dff28924 73291990-02-22 David Lawrence (tale@pogo.ai.mit.edu)
362bc2da
DL
7330
7331 * emacsserver.c: Renamed from server.c.
7332 * Makefile: Reference emacsserver rather than server.
7333 * MACHINES: Doc fix for new emacsserver name.
7334
dff28924 73351990-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7336
7337 * emacsclient.c: Print program name in error messages.
7338
dff28924 73391990-01-19 David Lawrence (tale@cocoa-puffs)
362bc2da
DL
7340
7341 * timer.c, getdate.y (new files) and Makefile:
194d44e7
JB
7342 Sub-process support for run-at-time in timer.el.
7343 Doesn't yet work correctly for USG.
362bc2da 7344
dff28924 73451990-01-10 Jim Kingdon (kingdon@pogo)
362bc2da
DL
7346
7347 * MACHINES: Add HP 300 running BSD.
7348
dff28924 73491990-01-02 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7350
7351 * yow.c: Dynamically allocate buffer; skip header before random
7352 choice to avoid bias toward first item.
7353
dff28924 73541989-12-24 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7355
7356 * etags.c (readline): Separate out init of `pend'.
7357
dff28924 73581989-12-17 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7359
7360 * etags.c: Undo changes relating to isgoodhdr.
7361
dff28924 73621989-12-16 Mosur Mohan (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7363
7364 * etags.c (isgoodhdr): New macro.
7365 (_gdh, notgdh): New variable used by that.
7366 (init): Initialize _gdh.
7367 (find_entries): Set header_file.
7368 (consider_token): Use isgoodhdr if in header file.
7369
7370 * etags.c (total_size_of_entries):
7371 Was miscalculating by 1 in rewritten case.
7372
7373 * etags.c (PAS_funcs): One arg to pfnote was missing.
7374
dff28924 73751989-12-05 Joseph Arceneaux (jla@spiff)
362bc2da
DL
7376
7377 * MACHINES: Change for the ULTRIX entry.
7378
dff28924 73791989-11-21 Joseph Arceneaux (jla@spiff)
362bc2da
DL
7380
7381 * etags.c (process_file): If file is not regular, return.
7382
dff28924 73831989-11-06 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7384
7385 * loadst.c (main): Handle FIXUP_KERNEL_SYMBOL_ADDR.
7386
dff28924 73871989-10-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7388
7389 * loadst.c (load_average): If HAVE_GETLOADAVG, use getloadavg.
7390 (main): If HAVE_GETLOADAVG, don't call `nlist'.
7391
dff28924 73921989-10-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7393
7394 * etags.c (consider_token): Allow any number of typespec keywords
7395 after `typedef', before new type name.
7396 (enum sym_type): Add st_C_typespec.
7397 (C_create_stab): Put typespec kwds in table.
7398
dff28924 73991989-08-27 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
362bc2da
DL
7400
7401 * etags.c (main): Don't depend on name invoked by.
7402 If CTAGS is not defined, assume it is ETAGS.
7403
dff28924 74041989-07-31 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7405
7406 * etags.c (L_funcs): Allow package name in define construct,
7407 as in (foo::defmumble name-defined ...).
7408
dff28924 74091989-07-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7410
7411 * etags.c (find_entries): Stupid bug testing for C filename suffixes.
7412
7413 * Makefile (yow): Depends on ../src/paths.h.
7414
dff28924 74151989-07-04 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
362bc2da
DL
7416
7417 * etags.c: Fix compilation by moving Pascal after Fortran.
7418
dff28924 74191989-06-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7420
7421 * movemail.c [USG]: Define F_OK, etc., if not found in header.
7422
dff28924 74231989-05-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7424
7425 * hexl.c: New file, supports hexl-mode.
7426
dff28924 74271989-05-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7428
7429 * movemail.c: New compilation flag MAIL_USE_MMDF.
7430
dff28924 74311989-05-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7432
7433 * emacsclient.c: Use BSD code whenever HAVE_SOCKETS.
7434 * server.c: Likewise.
7435
7436 * make-docfile.c (scan_c_file): Output argument names at end of string.
7437 (write_c_args): New subroutine.
7438
dff28924 74391989-04-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7440
7441 * movemail.c: Report failure of flock.
7442
dff28924 74431989-04-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7444
7445 * etags.c (find_entries): Allow multi-letter extensions for fortran.
7446
dff28924 74471989-04-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da 7448
2f2c687b 7449 * loadst.c: On bsd4.3, use gettimeofday instead of CPUSTATES.
362bc2da 7450
dff28924 74511989-03-15 Jeff Peck (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7452
7453 * emacstool.c: setenv IN_EMACSTOOL=t, TERM=sun, TERMCAP=.
7454
30a7ee9f 7455 * emacstool.1: Update to document environment variables.
362bc2da 7456
dff28924 74571989-02-21 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7458
7459 * etags.c (PAS_funcs): New function by Mosur Mohan.
7460
7461 * movemail.c: On sysv, include unistd.h.
7462
dff28924 74631989-02-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7464
7465 * b2m.c: New file.
7466
dff28924 74671989-02-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da 7468
6088b51f 7469 * etags.c: Prolog support from Sunichirou Sugou.
362bc2da 7470
dff28924 74711989-02-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7472
7473 * Makefile (clean): New target.
7474
dff28924 74751989-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7476
7477 * fakemail.c (put_line): Break header lines at 79 cols.
7478
dff28924 74791989-01-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7480
7481 * etags.c: Greatly rewritten by Sam Kendall for C++ support and for
7482 multiple tags per line.
7483
dff28924 74841989-01-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7485
7486 * movemail.c: Check access before doing real work.
7487 Check that outfile is in a writable directory.
7488 On fatal error, delete the lock file.
7489
dff28924 74901988-12-31 Richard Mlynarik (mly@rice-chex.ai.mit.edu)
362bc2da 7491
ecc54057 7492 * env.c: Add decl for my-index
6088b51f 7493 * etags.c (file-entries): .oak => scheme.
362bc2da 7494
dff28924 74951988-12-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7496
7497 * movemail.c: Use `access' to check input and output files.
7498
dff28924 74991988-12-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7500
7501 * emacsclient.c (main): Ignore all of CWD before first slash.
7502
dff28924 75031988-12-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7504
7505 * etags.c (readline): Double linebuffer->size outside the xrealloc.
7506
dff28924 75071988-12-22 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7508
7509 * server.c, emacsclient.c: Don't try to use gid_t; it isn't defined.
7510 * server.c: chmod the socket to 0700.
7511
dff28924 75121988-12-09 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7513
7514 * fakemail.c (main): Let env var FAKEMAILER override pgm to run.
7515 (add_field): Delete comments and turn `<', `>' to spaces
7516 in header lines.
7517 (USE_FAKEMAIL): New customization macro says to make fakemail
7518 not be a no-op even on a BSD system.
7519
dff28924 75201988-12-01 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7521
7522 * etags.c (consider_token): Skip comments just like whitespace.
7523 Notice `struct', etc. and set strtag for those tokens.
7524 Return 1 for the token following `struct' if an open-brace follows it.
7525 (C_entries): Special handling of token following `struct'
7526 needed because we have probably advanced to the following line
7527 to find the `{'.
7528 (main): New option `T' sets tflag and strflag.
7529 Set both of them by default if eflags.
7530
dff28924 75311988-11-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7532
7533 * movemail.c: Do fsync before closing output.
7534
dff28924 75351988-11-29 Richard Mlynarik (mly@pickled-brain.ai.mit.edu)
362bc2da 7536
ecc54057
JB
7537 * movemail.c: Better error message when can't create tempname.
7538 This file needs a great deal of extra error-checking and lucid reporting...
362bc2da 7539
dff28924 75401988-11-16 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7541
7542 * etags.c: Support assembler code for .s and .a files.
7543 (getit): Allow underscore in a tag.
7544
dff28924 75451988-11-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7546
7547 * movemail.c: Close output and check errors before deleting input.
7548
dff28924 75491988-10-01 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
362bc2da
DL
7550
7551 * emacsclient.c [SYSVIPC]: Compute cwd only once; decide properly
7552 whether to prefix it. Handle line number args.
7553
dff28924 75541988-09-24 Richard Stallman (rms@gluteus.ai.mit.edu)
362bc2da 7555
2f2c687b 7556 * etags.c (main): Default setting of eflag was backwards.
362bc2da 7557
dff28924 75581988-09-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7559
7560 * etags.c: New option -i. -f renamed -o.
7561 `-' as input file means read input file names from stdin.
7562 -i spec'd or input file named TAGS means the input file is another
7563 tag table; output an "include" line for it.
7564
dff28924 75651988-09-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7566
7567 * Makefile: New vars DESTDIR, BINDIR, LIBDIR, MANDIR, MANEXT.
7568 New targets install, install.sysv, install.xenix.
7569 This makefile is now responsible for installing executables
7570 and documentation from this directory into system directories.
7571
dff28924 75721988-09-16 Richard Stallman (rms@corn-chex.ai.mit.edu)
362bc2da
DL
7573
7574 * server.c, emacsclient.c (main): Compute socket name from euid.
7575
dff28924 75761988-08-04 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7577
7578 * emacsclient.c: Args like +DIGITS are passed through unchanged.
7579
dff28924 75801988-07-12 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7581
7582 * server.c: If both BSD and HAVE_SYSVIPC, use the latter.
7583 * emacsclient.c: Likewise.
7584 In the HAVE_SYSVIPC alternative, if BSD, use getwd instead of getcwd.
7585
dff28924 75861988-06-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7587
7588 * etags.c: Handle `typedef struct foo {' (price@mcc.com).
07655e62 7589 (istoken): New string-comparison macro.
362bc2da
DL
7590 (consider_token): New arg `level'. New state `tag_ok' in `tydef'.
7591
dff28924 75921988-06-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7593
7594 * etags.c: Changes for VMS.
7595 Always define ETAGS on VMS.
7596 Define macros GOOD and BAD for success and failure exit codes.
c4cc8b9a 7597 (begtk, intk): Allow `$' in identifiers.
362bc2da
DL
7598 (main): Don't support -B, -F or -u on VMS.
7599 Alternate loop for scanning filename arguments.
7600 (system): Delete definition of this function.
7601
7602 * etags-vmslib.c (system): Undefine this; VMS now provides it.
7603
dff28924 76041988-06-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7605
7606 * loadst.c: Prevent multiple-def errors on BSD and BSD4_3
7607 around include of param.h. (Like fns.c.)
7608
dff28924 76091988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
7610
7611 * loadst.c (load_average): Move load-average code to this new fn.
7612 Add conditionals to compute load ave on UMAX.
7613
dff28924 76141988-05-14 Richard Stallman (rms@lucky-charms.ai.mit.edu)
362bc2da
DL
7615
7616 * loadst.c: Change DK_HEADER_FILE to DKSTAT_HEADER_FILE
7617 with opposite sense.
7618
dff28924 76191988-05-13 Chris Hanson (cph@kleph)
362bc2da 7620
b166dcd8
KC
7621 * emacsclient.c: Delete references to unused variable `out'.
7622 This caused a bus error when used under hp-ux.
362bc2da 7623
dff28924 76241988-05-06 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
7625
7626 * loadst.c: Control dk.h conditional with DK_HEADER_FILE.
7627
dff28924 76281988-05-04 Richard Stallman (rms@rice-krispies.ai.mit.edu)
362bc2da
DL
7629
7630 * etags.c (find_entries): `.t' or `.sch' means scheme code.
7631
dff28924 76321988-04-29 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
7633
7634 * loadst.c: Add BSD4_3 conditional for file dk.h instead of dkstat.h.
7635
dff28924 76361988-04-28 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
7637
7638 * movemail.c: #undef close, since config can #define it on V.3.
2f2c687b 7639 * emacsclient.c, fakemail.c, loadst.c, server.c: Likewise.
362bc2da 7640
dff28924 76411988-04-26 Richard Stallman (rms@lucky-charms.ai.mit.edu)
362bc2da
DL
7642
7643 * etags.c (TEX_mode, etc.): Remove superfluous backslashes from
7644 invalid escape sequences such as `\{'.
7645
7646 * loadst.c: Add `sequent' conditional for file dk.h.
7647
dff28924 76481988-03-20 Richard M. Stallman (rms@wilson)
362bc2da 7649
2f2c687b 7650 * server.c [not BSD and not HAVE_SYSVIPC]: Fix error message.
362bc2da 7651
2f2c687b 7652 * loadst.c (main) [XENIX]: Use /usr/spool/mail, not /usr/mail.
6922b018
KH
7653
7654;; Local Variables:
880820fe 7655;; coding: utf-8
6922b018 7656;; End:
2a34a036 7657
73b0cd50 7658 Copyright (C) 1988-1999, 2001-2011 Free Software Foundation, Inc.
5b87ad55
GM
7659
7660 This file is part of GNU Emacs.
7661
294981c7 7662 GNU Emacs is free software: you can redistribute it and/or modify
5b87ad55 7663 it under the terms of the GNU General Public License as published by
294981c7
GM
7664 the Free Software Foundation, either version 3 of the License, or
7665 (at your option) any later version.
5b87ad55
GM
7666
7667 GNU Emacs is distributed in the hope that it will be useful,
7668 but WITHOUT ANY WARRANTY; without even the implied warranty of
7669 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7670 GNU General Public License for more details.
7671
7672 You should have received a copy of the GNU General Public License
294981c7 7673 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.