* emacsclient.c: Redo local variables to avoid shadowing problems.
[bpt/emacs.git] / lib-src / ChangeLog
CommitLineData
564ff1f2
PE
12011-02-25 Paul Eggert <eggert@cs.ucla.edu>
2
b0bbc07d
PE
3 * emacsclient.c: Redo local variables to avoid shadowing problems.
4 (message, socket_status, start_daemon_and_retry_set_socket):
5 Rename locals.
6 (main): Move decl of "i".
7
3f5e6230
PE
8 * etags.c (ISUPPER): Move to inside the only #ifdef where it's used.
9 This avoids an unused-macro warning with some GCC settings.
10
564ff1f2
PE
11 * make-docfile.c (write_globals): Change char * to char const *
12 to avoid a GCC "assignment discards qualifiers" diagnostic
13 in some configurations.
8dfa32f6
PE
14 (scan_c_file): Refactor local variable decls to make their scope
15 more accurate and to avoid a GCC -Wuninitialized diagnostic.
564ff1f2 16
b97decf2
EZ
172011-02-22 Eli Zaretskii <eliz@gnu.org>
18
32e793fa
EZ
19 * etags.c (canonicalize_filename, ISUPPER): Fix last change.
20
b97decf2
EZ
21 * makefile.w32-in ($(BLD)/ebrowse.$(O), $(BLD)/pop.$(O)): Depend
22 on ../lib/min-max.h.
23
f68c809d
PE
242011-02-22 Paul Eggert <eggert@cs.ucla.edu>
25
e5075711
PE
26 etags: Downcase drive letters, for consistency with Emacs proper.
27 * etags.c (upcase): Remove; no longer used.
28 (canonicalize_filename): Downcase drive letters.
29
f68c809d
PE
30 Assume S_ISLNK etc. work, since gnulib supports this.
31 * etags.c (S_ISREG): Remove.
32
b97decf2
EZ
332011-02-22 Paul Eggert <eggert@cs.ucla.edu>
34
35 Assume S_ISLNK etc. work, since gnulib supports this.
36 * etags.c (S_ISREG): Remove.
37
602a5739
JB
382011-02-22 Juanma Barranquero <lekktu@gmail.com>
39
40 * makefile.w32-in (obj): Remove filemode.o.
41
b23b5a5b
PE
422011-02-21 Paul Eggert <eggert@cs.ucla.edu>
43
ba01e9d7
PE
44 New file "lib/min-max.h".
45 * ebrowse.c (min, max): Define them by including <min-max.h>
46 instead of defining it ourselves.
47 * pop.c (min): Likewise.
d47d6319 48 * Makefile.in (ebrowse${EXEEXT}, pop.o): Depend on min-max.h.
ba01e9d7 49
f0939c31
PE
50 * movemail.c (popmail): Report fchown failure instead of ignoring it.
51 But if the file already has the right ownership, don't worry about it.
52
4df52042 53 * make-docfile.c (input_buffer): Rename variables to avoid shadowing.
08c69097 54 * test-distrib.c (buf): Make this local, to avoid shadowing.
4df52042 55
27d41fb4 56 * movemail.c (main, pop_retr): Rename locals to avoid shadowing.
1afca8cc 57 (progname, sfi, sfo, ibuffer, obuffer): Remove unused vars.
5ecec6a7
PE
58 (DONE): Remove unused macro.
59 (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_FROM_LINE):
60 Define these macros only in the contexts that need them.
0d7fdc0e
PE
61 * pop.c (index): Remove unused macro.
62 (KPOP_PORT): Define only if KERBEROS is defined.
27d41fb4 63
b23b5a5b
PE
64 Declare file-scope functions and variables static if not exported.
65 This is more consistent, and is nicer with gcc -Wstrict-prototypes.
66 * ebrowse.c, emacsclient.c, fakemail.c, make-docfile.c, movemail.c:
67 * profile.c, test-distrib.c, update-game-score.c:
68 Declare non-'main' functions and variables to be static.
69 * ebrowse.c: Omit redundant function prototypes.
70
25c51af3
EZ
712011-02-21 Eli Zaretskii <eliz@gnu.org>
72
73 * makefile.w32-in ($(BLD)/ctags.$(O), $(BLD)/emacsclient.$(O))
74 ($(BLD)/etags.$(O), $(BLD)/movemail.$(O), $(BLD)/ntlib.$(O)):
75 Depend on $(EMACS_ROOT)/nt/inc/sys/stat.h.
76
6ca1c3b4
BK
772011-02-21 Ben Key <bkey76@gmail.com> (tiny change)
78
79 * make-docfile.c (scan_c_file): Adapt DEFVAR_PER_BUFFER case to
80 the new BVAR macro.
81
50a4e25a
JB
822011-02-20 Juanma Barranquero <lekktu@gmail.com>
83
84 * makefile.w32-in (obj): Remove md5.o.
85
b166dcd8
KC
862011-02-18 Karl Chen <Karl.Chen@quarl.org>
87
88 * emacsclient.c (main): Loop while `recv' return EINTR.
89
64df8c10
PE
902011-02-09 Paul Eggert <eggert@cs.ucla.edu>
91
92 * make-docfile.c (EMACS_INTEGER): Rename from EMACS_INT.
93 This avoids collision with config.h's EMACS_INT on some
94 configurations. All uses changed.
95
00b3c7ac
TT
962011-02-08 Tom Tromey <tromey@redhat.com>
97
98 * make-docfile.c: Unconditionally include stdlib.h.
99 (generate_globals): New global.
100 (xrealloc): New function.
101 (main): Handle '-g'. Call start_globals, write_globals.
102 (scan_file): Conditionally call put_filename.
103 (start_globals): New function.
104 (struct global): New.
105 (num_globals, globals): New globals.
106 (add_global, compare_globals, write_globals): New functions.
107 (scan_c_file): Update for "-g".
108 (scan_lisp_file): Fail if "-g".
109
03fc768b
PE
1102011-02-05 Paul Eggert <eggert@cs.ucla.edu>
111
602a5739 112 * emacsclient.c: Conform to C89 pointer rules.
03fc768b
PE
113 (file_name_absolute_p): Accept const char *, not const unsigned
114 char *, to satisfy C89 rules.
115
d9f1f55e
EZ
1162011-02-02 Eli Zaretskii <eliz@gnu.org>
117
b166dcd8
KC
118 * makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS):
119 Add ``-DEMACS_NAME="\"GNU Emacs\""''.
83cc5772 120 (obj): Remove strftime.o.
d9f1f55e 121
70b0d280
EZ
1222011-01-31 Eli Zaretskii <eliz@gnu.org>
123
124 * makefile.w32-in (VERSION): Don't define, defined on nt/config.nt.
125 (ECLIENT_CFLAGS): Remove -DVERSION.
126 ($(BLD)/emacsclient.$(O)): Don't depend on makefile.w32-in.
127
16fab143
PE
1282011-01-31 Paul Eggert <eggert@cs.ucla.edu>
129
130 src/emacs.c now gets version number from configure.in
131 * ebrowse.c: Adjust comment to say that.
132
8aec9916
JM
1332011-01-30 Jim Meyering <meyering@redhat.com>
134
135 make-docfile: don't corrupt heap for an invalid .elc file
136 "printf '#@1a' > in.elc; ./make-docfile in.elc" would store 0
137 one byte before just-malloc'd saved_string buffer.
138 * make-docfile.c (scan_lisp_file): Diagnose an invalid dynamic
139 doc string length. Also fix an always-false while-loop test.
140
f915f0f7
EZ
1412011-01-29 Eli Zaretskii <eliz@gnu.org>
142
143 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
144 (GETOPTOBJS, GETOPTDEPS): Remove targets.
145 (MOVEMAILOBJS): Replace $(GETOPTOBJS) with ../lib/$(BLD)/libgnu.$(A).
146 ($(BLD)/movemail.exe): Depend on ../lib/getopt.h.
147 (ECLIENTOBJS, ETAGSOBJ, CTAGSOBJ, EBROWSEOBJ): Replace getopt.o
148 and getopt1.o with ../lib/$(BLD)/libgnu.$(A).
149 (clean): Don't remove getopt.h.
150 (getopt.h, $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O)): Remove targets.
151 ($(BLD)/ctags.$(O), $(BLD)/etags.$(O)): Replace getopt.h with
152 $(EMACS_ROOT)/lib/getopt.h.
153
1542011-01-28 Chong Yidong <cyd@stupidchicken.com>
155
156 * ntlib.c (setregid): New stub, renamed from setegid.
157
158 * ntlib.h: Update prototype.
159
06d8ace5 1602011-01-25 Chong Yidong <cyd@stupidchicken.com>
fbf4af3a
CY
161
162 * movemail.c (main): Use setregid instead of setegid, which is
163 missing on older systems. Suggested by Peter O'Gorman (Bug#6811).
164
9055082e
PE
1652011-01-23 Paul Eggert <eggert@cs.ucla.edu>
166
167 Check return values of some library calls.
168 * hexl.c (main): Check fread result.
169 * make-docfile.c (main): Check chdir result.
170 (scan_c_file): Check fscanf result.
171 * movemail.c (main): Check ftruncate result.
172
33fe4243 1732011-01-17 Paul Eggert <eggert@cs.ucla.edu>
e275c824 174
4004364e
PE
175 Include <unistd.h> unilaterally.
176 * emacsclient.c, etags.c, fakemail.c, make-docfile.c, movemail.c:
177 * pop.c, test-distrib.c, update-game-score.c:
178 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
179 unistd.h is always present now, possibly supplied by gnulib.
180
613f7bda
PE
181 Include <getopt.h> not "getopt.h".
182 * ebrowse.c, emacsclient.c: Include <getopt.h>, not "getopt.h".
183 Since getopt.h is no longer in this directory, there's no point
184 using the form with double-quotes.
185
e275c824
PE
186 Remove unused files.
187 * getopt.c, getopt1.c, getopt_.h, getopt_int.h: Remove.
188 These files are now in ../lib, copied from gnulib.
189
190 Use gnulib's getopt-gnu module.
191 * Makefile.in (mostlyclean): Do not clean getopt.h or getopt.h-t,
192 as these are now done by gnulib.
193 (GETOPT_H, getopt.h, GETOPTOBJS, GETOPTDEPS, getopt.o, getopt1.o):
194 Remove; now done by gnulib. All uses removed.
195
9a514d4a
PE
196 Automate syncing from gnulib.
197 * Makefile.in (EXE_FILES): New macro.
198 (BASE_CFLAGS): Add -I../lib and -I${srcdir}/../lib,
199 for gnulib's .h files.
200 (LOADLIBES): Add ../lib/libgnu.a.
201 ($(EXE_FILES)): Depend on ../lib/libgnu.a.
202 (../lib/libgnu.a): New rule.
203
72427c46
PE
2042011-01-08 Paul Eggert <eggert@cs.ucla.edu>
205
206 * Makefile.in (EXECUTABLES): Remove; macro unused since 1993.
207
4967fa34
GM
2082011-01-08 Glenn Morris <rgm@gnu.org>
209
e7a42417
GM
210 * Makefile.in (EMACSOPT): Add --no-site-lisp.
211
4967fa34
GM
212 * Makefile.in (EMACSOPT): Remove --multibyte, it does nothing any more.
213
d7bfa7a1
GM
2142011-01-02 Glenn Morris <rgm@gnu.org>
215
216 * ebrowse.c (version) <emacs_copyright>:
217 * etags.c (print_version) <emacs_copyright>:
218 * rcs2log (Copyright): Set short copyright year to 2011.
219
da2b5401
JM
2202010-11-27 Joe Matarazzo <joe.matarazzo@gmail.com> (tiny change)
221
222 * ebrowse.c (yylex): If end of input buffer encountered while
223 searching for a newline after "//", return YYEOF. (Bug#7446)
224
4a47c275 2252010-11-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
76cc4cd6
YM
226
227 * emacsclient.c (set_local_socket) [DARWIN_OS]: Add fall-back
228 definition of _CS_DARWIN_USER_TEMP_DIR for Mac OS X 10.4 and older.
229
f16cafe3
DN
2302010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
231
232 * test-distrib.c: Remove include guards for config.h and fcntl.h.
233 (O_RDONLY): Do not define.
234 (cool_read): Fix type for variable "sofar".
235
6a5c2175
GM
2362010-10-25 Glenn Morris <rgm@gnu.org>
237
238 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove easymenu.elc.
239
17284e30
GM
2402010-10-23 Glenn Morris <rgm@gnu.org>
241
242 * digest-doc.c, sorted-doc.c: Remove files.
243 * Makefile.in (UTILITIES): Remove digest-doc and sorted-doc.
244 (digest-doc${EXEEXT}, sorted-doc${EXEEXT}): Remove rules.
245 * makefile.w32-in (ALL): Remove digest-doc and sorted-doc.
246 ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe, sorted-doc, digest-doc)
247 ($(BLD)/digest-doc.$(O), $(BLD)/sorted-doc.$(O)): Remove rules.
248 (install): Don't install digest-doc.exe or sorted-doc.exe.
249
a4daeecf
DN
2502010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
251
252 * Makefile.in (PROFILING_LDFLAGS): Remove, not needed.
253
3fb78d1f
GM
2542010-10-09 Glenn Morris <rgm@gnu.org>
255
256 * b2m.c, b2m.pl: Remove files.
257 * Makefile.in (INSTALLABLES): Remove b2m.
258 * makefile.w32-in ($(BLD)/b2m.$(O)): Remove.
259
4628bef1 2602010-10-08 Glenn Morris <rgm@gnu.org>
b336bfcd
GM
261
262 * emacsclient.c (set_local_socket) [DARWIN_OS]: Try as a fall-back
263 DARWIN_USER_TEMP_DIR. (Bug#3992)
264
f99d75f5
DN
2652010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
266
728a982d
DN
267 * test-distrib.c (cool_read):
268 * movemail.c (main, concat):
269 * make-docfile.c (scan_file, write_c_args):
602a5739 270 * emacsclient.c (get_server_config): Fix -Wconversion warning.
728a982d
DN
271 (egetenv): Move conditional definition earlier.
272 (progname): Use const.
273 * sorted-doc.c (xstrdup): Use const.
274
f99d75f5
DN
275 * Makefile.in: Remove ^L, old makes choke on it.
276
3ecb8d93
WS
2772010-10-02 Wolfgang Schnerring <wosc@wosc.de> (tiny change)
278
279 * emacsclient.c (main): Return EXIT_FAILURE if Emacs sends us an
280 error string (Bug#6963).
281
54b65f7b
JB
2822010-10-02 Juanma Barranquero <lekktu@gmail.com>
283
284 * makefile.w32-in (tags): Remove target.
285
73077a9a
EZ
2862010-10-01 Eli Zaretskii <eliz@gnu.org>
287
288 * makefile.w32-in (tags, TAGS): New targets.
289
968ef9b4
JB
2902010-09-30 Juanma Barranquero <lekktu@gmail.com>
291
292 * emacsclient.c (get_server_config): Don't read Emacs pid from
293 the authentication file.
294
6ab88e02
JB
2952010-09-29 Juanma Barranquero <lekktu@gmail.com>
296
a69edb8a
JB
297 * makefile.w32-in (../src/config.h): Remove target, it is stale.
298
6ab88e02
JB
299 * emacsclient.c (main): Remove unused variables.
300 (start_daemon_and_retry_set_socket): Use EXIT_FAILURE.
301
4c964351
UM
3022010-09-25 Ulrich Mueller <ulm@gentoo.org>
303
304 * etags.c (compressors, print_language_names): Support xz compression.
305
988e88ab
J
3062010-08-11 Jan Djärv <jan.h.d@swipnet.se>
307
70e31436 308 * fakemail.c: Include stdlib.h for getenv. Remove declaration of
5e3b9a89 309 popen, fclose and pclose.
70e31436 310 (my_name, fatal, error, put_line): Use const char*.
5e3b9a89
J
311 (main): Remove extern getenv, mail_program_name is const char*.
312
988e88ab
J
313 * update-game-score.c (get_prefix, write_scores, main): Use const char*.
314
315 * sorted-doc.c (error, fatal, states): Use const char *.
316
317 * pop.h (pop_multi_first): Use const char *.
318 (_ARGS): Remove.
319
70e31436 320 * pop.c (pop_multi_first, socket_connection, sendline): Use const char*.
988e88ab
J
321
322 * movemail.c (fatal, error, concat): Use const char *.
323
b166dcd8
KC
324 * make-docfile.c (error, fatal, scan_c_file, scan_lisp_file):
325 Use const char *.
988e88ab
J
326
327 * etags.c (compressor, language, Ada_suffix, Ada_help, Asm_suffixes)
328 (Asm_help, default_C_suffixes, default_C_help, Cplusplus_suffixes)
329 (Cplusplus_help, Cjava_suffixes, Cobol_suffixes, Cstar_suffixes)
330 (Erlang_suffixes, Erlang_help, Forth_suffixes, Forth_help)
331 (Fortran_suffixes, Fortran_help, HTML_suffixes, HTML_help)
332 (Lisp_suffixes, Lisp_help, Lua_suffixes, Lua_help)
333 (Makefile_filenames, Makefile_help, Objc_suffixes, Objc_help)
334 (Pascal_suffixes, Pascal_help, Perl_suffixes, Perl_interpreters)
335 (Perl_help, PHP_suffixes, PHP_help, plain_C_suffixses, PS_suffixes)
336 (PS_help, Prolog_suffixes, Prolog_help, Python_suffixes, Python_help)
337 (Scheme_suffixes, Scheme_help, TeX_suffixes, TeX_help, Texinfo_suffixes)
338 (Texinfo_help, Yacc_suffixes, Yacc_help, auto_help, none_help)
339 (no_lang_help, print_language_names)
340 (get_language_from_interpreter, get_language_from_filename)
341 (init, make_tag, struct C_stab_entry, write_classname, TEX_defenv)
342 (TEX_decode_env, nocase_tail, savestr, savenstr, fatal, pfatal)
343 (concat): Use const char*.
344
345 * emacsclient.c (message, sock_err_message, send_to_emacs)
346 (quote_argument, set_local_socket)
347 (start_daemon_and_retry_set_socket): Use const char*.
348
349 * ebrowse.c (struct member): filename, def_filename is const.
350 (struct sym): filename, sfilename is const.
351 (struct kw): name is const.
352 (add_sym, yyerror, token_string, insert_keyword, main): Use const char*.
353
354 * b2m.c (concat, fatal): Use const char*.
355 (main): Don't assign labels a string literal.
356
0e9c8657
JB
3572010-08-07 Juanma Barranquero <lekktu@gmail.com>
358
359 * ebrowse.c (usage, version, mark_virtual):
360 Remove duplicate declarations.
361
0613f5d5
DN
3622010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
363
364 * emacsclient.c: Move socket related #includes together with the
70e31436 365 rest of the #includes. Move WINDOWSNT includes closer together.
0613f5d5
DN
366 (HAVE_CONFIG_H): Remove.
367 (NO_RETURN): Remove, defined in config.h.
368 (main): Convert definition to standard C.
369
a94a477d
JB
3702010-07-29 Juanma Barranquero <lekktu@gmail.com>
371
372 * make-docfile.c (write_c_args): Warn for old-style empty arglist ().
373
35a7804d
JB
3742010-07-25 Juanma Barranquero <lekktu@gmail.com>
375
376 * emacsclient.c (getcwd): Fix previous change: make getcwd
377 conditional on HAVE_GETCWD and declare with the correct POSIX
378 profile (for some reason MinGW headers define its 2nd arg as int,
379 not size_t; but getcwd is not used on Windows nonetheless).
380
361358ea
JB
3812010-07-25 Juanma Barranquero <lekktu@gmail.com>
382
383 * emacsclient.c (getcwd, w32_getenv):
384 * ntlib.h (getlogin, getuid, getegid, getgid): Fix prototypes.
385
68441b90
DN
3862010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
387
087b38a0 388 * update-game-score.c (usage): Add NO_RETURN specifier.
68441b90
DN
389 * movemail.c (fatal, pfatal_with_name, pfatal_and_delete):
390 * make-docfile.c (fatal):
391 * hexl.c (usage):
392 * fakemail.c (fatal):
393 * etags.c (fatal, suggest_asking_for_help, pfatal):
394 * emacsclient.c (fatal):
395 * b2m.c (fatal): Likewise.
396
554d39be
JB
3972010-07-23 Juanma Barranquero <lekktu@gmail.com>
398
399 * make-docfile.c (write_c_args): Correctly handle prefixes of "defalt".
400
7c3320d8
JB
4012010-07-20 Juanma Barranquero <lekktu@gmail.com>
402
403 * emacsclient.c (get_current_dir_name, w32_get_resource)
404 (w32_getenv, w32_set_user_model_id, w32_window_app, w32_execvp)
405 (close_winsock, initialize_sockets, w32_find_emacs_process)
406 (w32_give_focus):
407 * ntlib.c (getlogin, getuid, getgid, getegid):
408 Convert definitions to standard C.
409
e6cfa7c3
AS
4102010-07-12 Andreas Schwab <schwab@linux-m68k.org>
411
412 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
413 (PROFILING_LDFLAGS): Set from substitution.
414 (BASE_CFLAGS): Add ${C_WARNINGS_SWITCH}.
415 (ALL_CFLAGS, CPP_CFLAGS): Add ${PROFILING_CFLAGS}.
416 (LINK_CFLAGS): Add ${PROFILING_LDFLAGS}.
417
f09e4c6b
EZ
4182010-07-12 Eli Zaretskii <eliz@gnu.org>
419
420 * makefile.w32-in (lisp2): Change hebrew.el to hebrew.elc (see
421 2010-07-12T05:25:46Z!handa@etlken).
422
8966b757
AS
4232010-07-11 Andreas Schwab <schwab@linux-m68k.org>
424
425 * emacsclient.c (set_local_socket): Use strchr, strrchr instead of
426 index, rindex.
427 * movemail.c (mail_spool_name, popmail): Likewise.
428 * pop.c (pop_list): Likewise.
429
994a7c3b
EZ
4302010-07-11 Eli Zaretskii <eliz@gnu.org>
431
a628ad9d 432 * makefile.w32-in (obj): Add menu.o, bidi.o, w32uniscribe.o,
994a7c3b
EZ
433 and unexw32.o. (Bug#6603)
434
c971758d
EZ
4352010-07-10 Eli Zaretskii <eliz@gnu.org>
436
437 * Makefile.in ($(DESTDIR)${archlibdir}): Convert spaces to TABs.
438
91a7f76d
AS
4392010-07-09 Andreas Schwab <schwab@linux-m68k.org>
440
441 * make-docfile.c (write_c_args): Restructure scanning loop.
442
0508c67f
DN
4432010-07-09 Dan Nicolaescu <dann@ics.uci.edu>
444
445 * make-docfile.c (write_c_args): Deal with type names in DEFUN
446 arguments.
447
0216627e
DN
4482010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
449
450 * update-game-score.c (P_): Remove macro.
451 * ebrowse.c: Remove include guards.
452 (P_): Remove macro.
453
72af86bd
AS
4542010-07-07 Andreas Schwab <schwab@linux-m68k.org>
455
456 * ebrowse.c (add_sym, make_namespace): Replace bcopy, bzero by
457 memcpy, memmove, memset.
458 * pop.c (pop_retrieve, socket_connection, pop_getline): Likewise.
459
e2ad23ef
AS
4602010-07-06 Andreas Schwab <schwab@linux-m68k.org>
461
462 * movemail.c: Add MAIL_USE_POP around prototypes.
1725ae55
AS
463 Include <string.h> if HAVE_STRING_H.
464 (strerror): Only declare if !HAVE_STRERROR.
465 (fatal): Make static.
466 (error): Likewise.
467 (pfatal_with_name): Likewise.
70e31436 468 (pfatal_and_delete): Likewise.
1725ae55
AS
469 (concat): Likewise.
470 (xmalloc): Likewise.
471 (popmail): Likewise.
472 (pop_retr): Likewise.
473 (mbx_write): Likewise.
474 (mbx_delimit_begin): Likewise.
475 (mbx_delimit_end): Likewise.
e2ad23ef 476
b8463cbf
DN
4772010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
478
479 * fakemail.c (action): Convert function definitions to standard C.
480 (add_a_stream):
481 * test-distrib.c (cool_read):
482 (main): Likewise.
483
a52a00a3
AS
4842010-07-03 Andreas Schwab <schwab@linux-m68k.org>
485
486 * sorted-doc.c (cmpdoc): Fix signature.
487 (qsort_compare): Delete.
488 (main): Remove cast.
489
35d99b72
JB
4902010-07-03 Juanma Barranquero <lekktu@gmail.com>
491
492 * ebrowse.c (match_qualified_namespace_alias): Check for null pointer.
493
3a35a84c
JB
4942010-07-03 Juanma Barranquero <lekktu@gmail.com>
495
496 Fix prototype warnings.
497
498 * ebrowse.c (match_qualified_namespace_alias):
499 Pass sym* to find_namespace, not link*.
500
501 * emacsclient.c (send_to_emacs, quote_argument): Arg s is HSOCKET.
502
503 * sorted-doc.c (qsort_compare): New typedef.
504 (main): Use it to cast cmpdoc.
505
873fbd0b
DN
5062010-07-03 Dan Nicolaescu <dann@ics.uci.edu>
507
508 * update-game-score.c: Convert function definitions to standard C.
509 * sorted-doc.c:
510 * profile.c:
511 * pop.c:
512 * movemail.c:
513 * make-docfile.c:
514 * hexl.c:
515 * fakemail.c:
516 * etags.c:
517 * ebrowse.c:
518 * digest-doc.c:
519 * b2m.c: Likewise.
520
c532d349
DN
5212010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
522
523 * make-docfile.c (xmalloc, xrealloc, concat, readline, fatal):
524 * b2m.c (scan_file, scan_lisp_file, scan_c_file): Convert to
525 standard C prototypes.
526
f57e2426
J
5272010-07-02 Jan Djärv <jan.h.d@swipnet.se>
528
529 * ebrowse.c: Remove P_ and __P.
530 * etags.c:
531 * movemail.c:
532 * pop.c:
533 * update-game-score.c: Likewise.
534
3b3807f8
JB
5352010-06-24 Juanma Barranquero <lekktu@gmail.com>
536
537 * movemail.c (error): Avoid warning when there are no args.
538
5fee75d4
JB
5392010-06-11 Juanma Barranquero <lekktu@gmail.com>
540
541 * makefile.w32-in (lisp2): Fix references to vc/vc-hooks.elc
542 and vc/ediff-hook.elc.
543
3085237c
DN
5442010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
545
546 * ntlib.h: Remove code dealing with BSTRING.
547
0191e222
CY
5482010-05-29 Chong Yidong <cyd@stupidchicken.com>
549
550 * emacsclient.c (longopts, decode_options, print_help_and_exit):
551 New arg `-parent-id'.
552 (main): Send parent-id to Emacs.
553
81ac4f35
GM
5542010-05-27 Glenn Morris <rgm@gnu.org>
555
556 * Makefile.in (distclean): No more Makefile.c.
557
4e3028f8
JD
5582010-05-22 Jan Djärv <jan.h.d@swipnet.se>
559
560 * Makefile.in (STAMP_INST_SCRIPTS, STAMP_SCRIPS): New (Bug #6246).
561 (all): Depend onSTAMP_INST_SCRIPTS, STAMP_SCRIPS (Bug #6246).
562 (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff):
563 New rules (Bug #6246).
564 (clean): Remove stamp-* (Bug #6246).
565
44b031a6
GM
5662010-05-12 Glenn Morris <rgm@gnu.org>
567
568 * Makefile.in (INSTALLABLES): Remove @LIB_SRC_EXTRA_INSTALLABLES@.
569
acddf8ae
GM
5702010-05-11 Glenn Morris <rgm@gnu.org>
571
c88b05a9
GM
572 * Makefile.in (.m.o): Remove, there are no .m files.
573 (BASE_CFLAGS): New variable.
574 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use $BASE_CFLAGS.
575 (check): Update the message.
576 (update-game-score${EXEEXT}): Do not use $MOVE_FLAGS.
577
d3b23034
GM
578 * Makefile.in: Convert comments to makefile format.
579
acddf8ae
GM
580 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
581 (config.h) [MSDOS]: Do not include.
582
7490175b
GM
5832010-05-10 Glenn Morris <rgm@gnu.org>
584
97efb629
GM
585 * Makefile.in (LIBS_SYSTEM): Set with configure, not cpp.
586 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
587 (NOT_C_CODE): Remove, no longer used.
588 (config.h) [!MSDOS]: No longer include.
589 (LOADLIBES): Use LIBS_SYSTEM as a variable.
590
7490175b
GM
591 * Makefile.in (BLESSMAIL_TARGET): Set with configure, not cpp.
592
7b42b29f
GM
5932010-05-08 Glenn Morris <rgm@gnu.org>
594
595 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
596
61a808e8
CY
5972010-05-07 Chong Yidong <cyd@stupidchicken.com>
598
599 * Version 23.2 released.
600
f6c0ee20
GM
6012010-05-06 Glenn Morris <rgm@gnu.org>
602
603 * Makefile.in: Minimize blessmail-related cpp usage.
604 (BLESSMAIL_TARGET): New variable.
605 (MOVEMAIL_NEEDS_BLESSING): Remove, replace by above variable.
606 (blessmail): Always define this rule.
607 (need-blessmail): New rule, split out from maybe-blessmail.
608 (maybe-blessmail): Use BLESSMAIL_TARGET.
609
49628785
GM
6102010-05-04 Glenn Morris <rgm@gnu.org>
611
612 * Makefile.in: Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
613 @c_switch_system@, @c_switch_machine@.
614
7e10844c
DN
6152010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
616
617 * Makefile.in (LIBS_MACHINE): Remove all uses, unused.
618
4794a582
DN
6192010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
620
621 * Makefile.in (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Move to the
622 non-cpp section.
623
76bd8202
DN
6242010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
625
626 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE): Define using
627 autoconf, not cpp.
628 (ALL_CFLAGS): Use them as make variables.
629
53cfe624 6302010-04-07 Christoph Scholtes <cschol2112@googlemail.com>
42d3cab7
C
631
632 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis
633 for macros for nmake compatibility.
634
b372fceb
JB
6352010-04-03 Juanma Barranquero <lekktu@gmail.com>
636
637 Add stubs for Windows, required after CVE-2010-0825 change.
638 * ntlib.c (getgid, getegid, setegid): New stubs.
639 * ntlib.h (getgid, getegid, setegid): Declare them.
640
51a91f9d
CY
6412010-04-02 Dan Rosenberg <dan.j.rosenberg@gmail.com> (tiny change)
642
b166dcd8
KC
643 * movemail.c (main): Check return values of setuid.
644 Avoid possibility of symlink attack when movemail is setgid mail
51a91f9d
CY
645 (CVE-2010-0825).
646
42a2c622
DN
6472010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
648
649 Remove extern errno declarations.
650 * movemail.c:
651 * etags.c:
652 * emacsclient.c: Remove extern errno declarations.
653
5e58e3a4
GM
6542010-03-20 Glenn Morris <rgm@gnu.org>
655
656 * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
657 (LIBHESIOD, LIBRESOLV): Make previous change a bit more friendly by
658 defining these as Makefile variables.
659 (LIBS_MOVE): Add LIBS_MAIL into this.
660 (movemail${EXEEXT}): Just use LIBS_MOVE, not LIBS_MAIL as well.
661
aded53ff
GM
6622010-03-18 Glenn Morris <rgm@gnu.org>
663
664 * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
665 (HESIODLIB, LIBS_MAIL): Set using autoconf rather than cpp.
666 (BASE_CFLAGS): Remove (identical to CPP_CFLAGS).
667
f8388570
TO
6682010-03-18 Tetsurou Okazaki <okazaki@be.to> (tiny change)
669
670 * Makefile.in (uninstall): Handle the case where archlibdir does not
671 exist. (Bug#5720)
672
288f9fc0
CY
6732010-03-10 Chong Yidong <cyd@stupidchicken.com>
674
675 * Branch for 23.2.
676
f9b84f9f
CY
6772010-02-20 Kevin Ryde <user42@zip.com.au>
678
679 * etags.c (Scheme_functions): Don't loop past a null character
680 (Bug#5601).
681
c14902e0 6822010-01-29 Kester Habermann <kester@linuxtag.org> (tiny change)
9d77a91f 683
a628ad9d 684 * etags.c (Fortran_functions): Handle recursive keyword (Bug#5484).
9d77a91f 685
6589a2f9
GM
6862010-01-11 Glenn Morris <rgm@gnu.org>
687
688 * ebrowse.c (version):
689 * etags.c (print_version):
690 * rcs2log (Copyright): Set copyright year to 2010.
691
03dcfe01
CY
6922009-12-09 David Robinow <drobinow@gmail.com> (tiny change)
693
694 * makefile.w32-in: Use parenthesis for macros for nmake
695 compatibility.
696
5ce6e4f4 6972009-11-23 Tobias Ringström <tobias@ringis.se> (tiny change)
46f3381a 698
f7e0618c 699 * etags.c (absolute_filename): Use memmove if we have it for
46f3381a
JD
700 overlapping copy.
701
f6195dfb
DN
7022009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
703
704 * make-docfile.c (scan_lisp_file): Also look for `defvaralias'.
705
b53f6df2
JB
7062009-10-15 Juanma Barranquero <lekktu@gmail.com>
707
708 * .gitignore: Add echolisp.tmp.
709
9fc3db2b
GM
7102009-10-15 Glenn Morris <rgm@gnu.org>
711
5f54cae6
GM
712 * emacsclient.c (print_help_and_exit): Fix bug report instructions.
713
9fc3db2b
GM
714 * makefile.w32-in (echolisp): New rule.
715 (clean): Delete echolisp.tmp.
716
614bd9cf
EZ
7172009-09-27 Eli Zaretskii <eliz@gnu.org>
718
719 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Add term/internal.elc,
720 term/pc-win.elc, emacs-lisp/easymenu.elc, and term/ns-win.elc, to
721 be consistent with src/Makefile.in.
722
24e9e996
SM
7232009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
724
725 * update-game-score.c (main): Sort scores before trimming them,
726 reported by Jason Feng <jfeng@ozbert.com> (bug#4397).
727
c5a139ca
GM
7282009-09-09 Glenn Morris <rgm@gnu.org>
729
730 * Makefile.in ($(DESTDIR)${archlibdir}): Set umask to world-readable
731 before creating directories and game score files.
732
a8a8ec61
GM
7332009-08-19 Glenn Morris <rgm@gnu.org>
734
0916a29e 735 * cvtmail.c: Remove file.
a8a8ec61
GM
736 * Makefile.in (UTILITIES): Remove cvtmail.
737 (cvtmail${EXEEXT}): Remove.
738
678bc1f5
CY
7392009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
740
741 * b2m.c (main): Ensure that each message ends in two newlines.
742
0a3472c7
JR
7432009-07-03 Jason Rumney <jasonr@gnu.org>
744
745 * emacsclient.c (w32_set_user_model_id): Use standard types.
746
f2d6b714
EZ
7472009-07-03 Eli Zaretskii <eliz@gnu.org>
748
749 * makefile.w32-in (WINNT_SUPPORT): Add common-win.elc, like
750 src/Makefile.in did.
751
ff90fbde
JR
7522009-06-30 Jason Rumney <jasonr@gnu.org>
753
754 * emacsclient.c (w32_give_focus): Use GetModuleHandle for library
755 that is already loaded.
756 (w32_set_user_model_id): New function.
757 (main): Use it to associate emacsclient with emacs (bug#1849).
758
e0f59195
JM
7592009-06-29 Jim Meyering <meyering@redhat.com>
760
761 Remove useless if-before-free test.
762 * make-docfile.c (scan_lisp_file): Remove useless test.
763
f5f20f6c
DN
7642009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
765
766 * Makefile.in (movemail.o): Don't pass -Demacs, unused.
767
70243478
CY
7682009-06-21 Chong Yidong <cyd@stupidchicken.com>
769
770 * Branch for 23.1.
771
fa44da6e
AR
7722006-06-09 Adrian Robert <Adrian.B.Robert@gmail.com>
773
774 * mac-fix-env.m:
775 * Makefile.in (mac-fix-env): Remove.
776
a7f2b0b1
AR
7772006-06-06 David Reitter <david.reitter@gmail.com>
778
779 * Makefile.in (mac-fix-env): Compile it using ALL_CFLAGS.
780
9dfda22f
JB
7812009-04-20 Juanma Barranquero <lekktu@gmail.com>
782
783 * emacsclient.c (print_help_and_exit): Fix typo and tabify (careful
784 spacing is required in the message output, as the comment suggests).
785
24d5010d
CY
7862009-04-20 Chong Yidong <cyd@stupidchicken.com>
787
788 * emacsclient.c (print_help_and_exit): Clarify argument placement
789 for short option names.
790
6133a1a9
DN
7912009-04-02 Dan Nicolaescu <dann@ics.uci.edu>
792
793 * emacsclient.c (print_help_and_exit): Fix typo.
794
22749e9a
EZ
7952009-03-21 Eli Zaretskii <eliz@gnu.org>
796
797 * ntlib.c (setuid): Argument is now unsigned.
798 (getuid): Return value is now unsigned.
799 (getpwuid): Argument is now unsigned.
800 (fchown): UID and GID arguments are now unsigned.
801
802 * ntlib.h (fchown): UID and GID arguments are now unsigned.
803 (getuid): Return value is now unsigned.
804 (setuid): Argument is now unsigned.
805 (getpwuid): Remove prototype (it's declared in nt/inc/pwd.h).
806
b57ac69d 8072009-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
6cde1b21
JB
808
809 * emacsclient.c (main): Revert part of last change, so
810 drive-relative file names again work on Windows.
811
ba528748
SM
8122009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
813
814 * emacsclient.c (main): Always pass cwd via "-dir". Pass the file
815 names without prepending cwd to them, so Emacs uses its customary
816 rules to determine how to interpret the file name.
817
f213f2c0
GM
8182009-03-04 Glenn Morris <rgm@gnu.org>
819
820 * movemail.c (main) [MAIL_USE_POP]: Add -r to usage message.
821
8ee7d7be
CY
8222009-02-13 Sven Joachim <svenjoac@gmx.de>
823
824 * movemail.c: Include time.h unconditionally.
825 (main): Use time_t for time variables.
826
d228a23c
GM
8272009-02-11 Glenn Morris <rgm@gnu.org>
828
829 * movemail.c (mbx_delimit_begin): Also write the current time.
830
3f32be22
GM
8312009-02-10 Glenn Morris <rgm@gnu.org>
832
833 * movemail.c (mbx_delimit_begin, mbx_delimit_end): Write mbox rather
834 than Babyl format. (Bug#2196)
835
e7534fc4
AR
8362009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
837
838 * emacsclient.c (decode_options): Use a dummy display name under
839 NS/Cocoa.
840
9eb67dd9
CY
8412009-01-14 Lars Rasmusson <lars.rasmusson@gmail.com> (tiny change)
842
843 * ebrowse.c (matching_regexp): Fix OB1 error.
844
b433a991
GM
8452009-01-05 Glenn Morris <rgm@gnu.org>
846
847 * ebrowse.c (version):
848 * etags.c (print_version):
849 * rcs2log (Copyright): Update copyright for 2009.
850
81f82586
CY
8512009-01-01 Chong Yidong <cyd@stupidchicken.com>
852
853 * movemail.c (main): Fatal if hard links cannot be created.
854
fd95644b
DN
8552008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
856
857 * emacsclient.c (start_daemon_and_retry_set_socket): Improve error
858 checking.
859
67c1df01
DN
8602008-12-14 Dan Nicolaescu <dann@ics.uci.edu>
861
862 * emacsclient.c: Include syswait.h instead of sys/types.h.
863
f0131492 8642008-12-11 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
5445ab06 865
d4835507
JB
866 * emacsclient.c (WCONTINUED): New compatibility define
867 for older systems.
5445ab06 868
d50299d5
DN
8692008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
870
871 * emacsclient.c (main): Fix previous change.
872
52016647
JB
8732008-12-10 Juanma Barranquero <lekktu@gmail.com>
874
875 * emacsclient.c (main): Fix mindless breakage where emacsclient
876 does not work *at all* on Windows, even if it *can* connect.
877
802bdb3c
DN
8782008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
879
880 * emacsclient.c (EMACS_DAEMON): Remove definition.
881 (decode_options): Do not allow an empty alternate_editor on
882 WINDOWSNT.
883 (print_help_and_exit): Replace EMACS_DAEMON with WINDOWSNT.
884 (start_daemon_and_retry_set_socket): Likewise.
45ce4570 885 (main): Fail in case of not being able to connect.
802bdb3c 886
c3f995a2
JB
8872008-12-10 Juanma Barranquero <lekktu@gmail.com>
888
889 * emacsclient.c [!WINDOWSNT] (EMACS_DAEMON): New define.
890 Changes when EMACS_DAEMON is not defined:
891 (print_help_and_exit): Don't add daemon information to help.
892 (start_daemon_and_retry_set_socket): Make a no-op.
893 (main): Don't set `start_daemon_if_needed' (which is initialized to 0).
894
636b507b
DN
8952008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
896
897 * emacsclient.c (print_help_and_exit): Describe what an empty
898 string argument does for --alternate-editor.
899 (set_socket): Make it possible to not exit in case of an error.
900 (start_daemon_and_retry_set_socket): New function.
901 (main): Use it. Restore the NULL value for socket_name and
902 server_file after the set_socket call.
903
448d4085
DN
9042008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
905
7b641241 906 * emacsclient.c: Include <arpa/inet.h>.
448d4085 907
938ebc4f
DN
9082008-12-01 Dan Nicolaescu <dann@ics.uci.edu>
909
910 * make-docfile.c (scan_lisp_file): Use xmalloc instead of malloc.
911
3d864325
GM
9122008-11-22 Derek Peschel <dpeschel@eskimo.com> (tiny change)
913
914 * etags.c (add_regex): Pass correct length to re_compile_pattern.
915
48c2dc68
CY
9162008-11-02 Chong Yidong <cyd@stupidchicken.com>
917
918 * emacsclient.c (window_system): Delete redundant variable.
919 (decode_options): Don't use it.
920 (find_tty): New function.
921 (main): Use find_tty, and don't use window_system.
922
d41784ee
EZ
9232008-11-01 Eli Zaretskii <eliz@gnu.org>
924
925 * emacsclient.c (main) [WINDOWSNT]: Don't ifdef away the call to
926 `ttyname'.
927 (w32_getenv): Treat $TERM specially: if not found in the
928 environment and in the Registry, return "w32console".
929 (ttyname) [WINDOWSNT]: New function.
930
322ca650
AS
9312008-10-31 Andreas Schwab <schwab@suse.de>
932
933 * emacsclient.c (main): Don't force sending tty when in eval mode.
934
8a8a7cd3
CY
9352008-10-30 Chong Yidong <cyd@stupidchicken.com>
936
937 * emacsclient.c (main): If using the current frame, send tty
938 information to Emacs in case daemon mode needs to occupy this tty.
939
f8baa639
JB
9402008-10-29 Juanma Barranquero <lekktu@gmail.com>
941
bc558f3e
JB
942 * emacsclient.c (EXTRA_SPACE): New macro.
943 (get_server_config, set_local_socket): Use it.
944
f8baa639
JB
945 * makefile.w32-in ($(BLD)/sorted-doc.$(O)): Remove spurious backslash.
946 Reported by Guillaume Conjat <gconjat.ext@orange-ftgroup.com>.
947
f77b11a0
JB
9482008-10-29 Ulrich Mueller <ulm@gentoo.org>
949
950 * emacsclient.c (set_local_socket): Use TMPDIR (default /tmp)
951 instead of hardcoded /tmp.
952
dc1cd5f7
DN
9532008-10-13 Dan Nicolaescu <dann@ics.uci.edu>
954
955 * emacsclient.c (longopts, print_help_and_exit): Add -nw.
956 (decode_options): Use getopt_long_only.
957
7a09249b
EZ
9582008-09-30 Eli Zaretskii <eliz@gnu.org>
959
960 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove ccl.elc and
961 codepage.elc.
962
997ec957
CY
9632008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
964
965 * emacsclient.c (main): Use stdout rather than stdin to obtain the
966 terminal (bug#427).
967
0d80bf29
FP
9682008-08-25 Francesco Potortì <pot@gnu.org>
969
970 * etags.c (main): Do not use static space for the tagfile string.
971
34a23e94
FP
9722008-08-17 Francesco Potortì <pot@gnu.org>
973
974 * etags.c (main): Use canonicalize_filename on tags file name.
975 (relative_filename): Revert 3.85: do not collapse slashes here.
976 (absolute_dirname): Remove useless call to canonicalize_filename.
977 (canonicalize_filename): Collapse multiple slashes here.
978
48fad8e8
DN
9792008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
980
10d1d0af
JB
981 * Makefile.in (INSTALLABLES): Add LIB_SRC_EXTRA_INSTALLABLES.
982 Do not special case for NS_IMPL_COCOA.
48fad8e8 983
6088b51f 9842008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
f4494e84
AR
985
986 * Makefile.in (CFLAGS): Drop -universal under NS_IMPL_COCOA.
987 (.m.o): Dispense with GNUstep-specific flags.
988
39b8bb9b
CY
9892008-08-05 Ulrich Mueller <ulm@gentoo.org>
990
991 * pop.c (socket_connection): Add conditionals for
992 HAVE_KRB5_ERROR_TEXT and HAVE_KRB5_ERROR_E_TEXT to support
993 compilation with MIT Kerberos and Heimdal, respectively.
994
7c2fb837
DN
9952008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
996
997 * etags.c:
998 * emacsclient.c: Remove VMS support.
999
9e2a2647
DN
10002008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
1001
1002 Remove support for Mac Carbon.
1003 * makefile.w32-in:
1004 * emacsclient.c: Remove code for Carbon.
1005
7f619bab
DN
10062008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
1007
1008 * Makefile.in (mac-fix-env): Remove #ifdef around rule.
1009
32cc3925
AS
10102008-07-17 Andreas Schwab <schwab@suse.de>
1011
1012 * Makefile.in (INSTALL_SCRIPT): Remove duplicate definition.
1013 (LIB_STANDARD_LIBSRC): Don't define.
1014 (LOADLIBES): Remove LIB_STANDARD_LIBSRC.
1015
ba60bd44 10162008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
122e9f8f
AR
1017
1018 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
1019 NS_IMPL_COCOA.
1020
50863f58
DN
10212008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
1022
ba60bd44
JB
1023 * ntlib.h (fcloseall, fgetchar, flushall, fputchar, putw):
1024 Remove, unused.
50863f58 1025
ba60bd44 10262008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
edfda783
AR
1027
1028 * .cvsignore: Add mac-fix-env.
1029 * mac-fix-env.m: New file, automatically update
1030 ~/.MacOSX/environment.plist on OS X systems to expose environment
1031 variables inside Emacs started from icon.
1032 * Makefile.in: Add -universal to CFLAGS on OS X, add mac-fix-env to
1033 programs to build.
1034 * make-docfile.c: Add .m to list of file extensions.
1035
bba104c1
DN
10362008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
1037
1038 * movemail.c (main): Use int instead of WAITTYPE.
1039
da007124
JB
10402008-07-05 Juanma Barranquero <lekktu@gmail.com>
1041
1042 * makefile.w32-in (OTHER_PLATFORM_SUPPORT):
1043 Remove vmsproc.el and vms-patch.el.
1044
c9fc02c7
JB
10452008-06-26 Juanma Barranquero <lekktu@gmail.com>
1046
1047 * makefile.w32-in (obj): Remove w32bdf.o.
1048
f2a77c3a
DN
10492008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
1050
1051 * fakemail.c: Remove references to obsolete variables.
1052
c2cd06e6
JM
10532008-06-02 Jim Meyering <meyering@redhat.com>
1054
e914c409 1055 * ebrowse.c (xfree): Remove definition; s/xfree/free/.
5c19cd0b 1056
e914c409 1057 Remove useless if-before-free tests.
70fdbb46
JM
1058 * ebrowse.c (xfree): Likewise.
1059 * etags.c (process_file_name, free_tree, free_fdesc): Likewise.
c2cd06e6 1060 (popclass_above, Prolog_functions, Erlang_functions): Likewise.
70fdbb46 1061 * pop.c (pop_quit): Likewise.
c2cd06e6 1062
01b996ad
JB
10632008-05-30 Juanma Barranquero <lekktu@gmail.com>
1064
1065 * makefile.w32-in (lisp2): Add minibuffer.elc.
1066
2926947a
SM
10672008-05-29 Tom Tromey <tromey@redhat.com>
1068
1069 * etags.c (relative_filename): Treat "///" like "/" in filenames.
1070
10fea9c4
EZ
10712008-05-09 Eli Zaretskii <eliz@gnu.org>
1072
1073 * ntlib.c: Include sys/types.h, sys/stat.h, and errno.h.
1074 (IS_DIRECTORY_SEP): New macro.
1075 (convert_time, is_exec, stat): New functions.
1076
86914123
EZ
10772008-05-08 Eli Zaretskii <eliz@gnu.org>
1078
1079 * makefile.w32-in (lisp2): Rename epa-file-hook.elc to epa-hook.elc.
1080
58bb7d50
EZ
10812008-05-03 Eli Zaretskii <eliz@gnu.org>
1082
1083 * makefile.w32-in (lisp2): Add epa-file-hook.elc, to track the
1084 corresponding change in src/Makefile.in.
1085
63b9b605
GM
10862008-04-24 Adam Gołębiowski <adamg@pld-linux.org> (tiny change)
1087
1088 * Makefile.in (etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo.
1089
4429f88c
JR
10902008-04-10 Jason Rumney <jasonr@gnu.org>
1091
1092 * makefile.w32-in (CLIENTRES): New variable and target.
1093 (TRES): Remove.
1094 ($(BLD)/emacsclientw.exe): Use $(CLIENTRES) instead of $(TRES).
1095
14b11401
SM
10962008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1097
1098 * vcdiff: Use "sccs get" rather than "get"; leave PATH alone.
1099
95de358c
RF
11002008-04-18 Steve Grubb <sgrubb@redhat.com> (tiny change)
1101
1102 * vcdiff: Use mktemp (CVE-2008-1694).
1103
6948400c
JR
11042008-04-09 Jason Rumney <jasonr@gnu.org>
1105
1106 * makefile.w32-in (distclean, maintainer-clean): New targets.
1107
afd27920
GM
11082008-03-13 Glenn Morris <rgm@gnu.org>
1109
1110 * makefile.w32-in (VERSION): Set to 23.0.60.
1111
3d193d0f
JB
11122008-03-04 Juanma Barranquero <lekktu@gmail.com>
1113
1114 * .cvsignore: Add oo.
1115
1797886f
SM
11162008-02-27 Yuri Shtil <yuris@juniper.net> (tiny change)
1117
1118 * etags.c (Perl_functions): Fix call to skip_spaces.
1119
9d2818d6
DN
11202008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
1121
1122 * Makefile.in (NO_SHORTNAMES):
1123 * emacsclient.c (NO_SHORTNAMES):
1124 * fakemail.c (NO_SHORTNAMES):
1125 * make-docfile.c (NO_SHORTNAMES):
1126 * movemail.c (NO_SHORTNAMES):
1127 * pop.c (NO_SHORTNAMES): Remove references to obsolete variable.
1128
79d48c1a
JR
11292008-02-23 Jason Rumney <jasonr@gnu.org>
1130
1131 * makefile.w32-in (MOUSE_SUPPORT): Remove duplicate tooltip.elc.
1132 (MSDOS_SUPPORT, VMS_SUPPORT): Remove.
290afd83 1133 (OTHER_PLATFORM_SUPPORT): Replace above. Add X specific files too.
79d48c1a
JR
1134 (lisp2): Add new languages.
1135 ($(DOC)): Use OTHER_PLATFORM_SUPPORT.
1136
9c61c734
JB
11372008-02-22 Juanma Barranquero <lekktu@gmail.com>
1138
1139 * makefile.w32-in (lisp2): Remove devanagari.el, kannada.el,
1140 malayalam.el, and tamil.el. Add sinhala.el.
1141
50f271cb
JB
11422008-02-20 Juanma Barranquero <lekktu@gmail.com>
1143
1144 * emacsclient.c (main) [WINDOWSNT]: Understand DRIVE:NAME,
1145 where NAME is relative to DRIVE'S current directory.
1146
d07529f3
JB
11472008-02-15 Juanma Barranquero <lekktu@gmail.com>
1148
1149 * emacsclient.c (print_help_and_exit): Show -d option on Windows.
1150
45c1955d
DN
11512008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
1152
1153 * fakemail.c: Undo previous change.
1154
deeaffe1
DN
11552008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
1156
4624371d
DN
1157 * fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional.
1158 (main): Replace MAIL_PROGRAM_NAME with its value.
1159
d07529f3 1160 * Makefile.in (REGEXP_IN_LIBC): Remove reference to obsolete variable.
deeaffe1 1161
9997dc15
SM
11622008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1163
1164 * emacsclient.c (decode_options): Pass --display implicitly if -c
1165 is specified. Only set tty if -t or -c is specified.
1166
0c55bf82
JR
11672008-02-04 Jason Rumney <jasonr@gnu.org>
1168
1169 * makefile.w32-in (lisp1): Use (), not {}.
1170
31cdf671
CY
11712008-02-04 Tom Tromey <tromey@redhat.com>
1172
d07529f3
JB
1173 * etags.c: Add "GTY" as synonym for __attribute__.
1174 Update gperf output.
31cdf671 1175
9303f985 11762008-02-01 Jason Rumney <jasonr@gnu.org>
aca7a3d2 1177
c4cc8b9a 1178 * makefile.w32-in (obj): Sync with src/Makefile.in.
aca7a3d2
MB
1179 (TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
1180 (WINNT_SUPPORT): Add term/w32-win.elc.
1181 (lisp1, lisp2): Sync with lisp in src/Makefile.in.
1182
9303f985 11832008-02-01 Jason Rumney <jasonr@gnu.org>
aca7a3d2 1184
d07529f3 1185 * makefile.w32-in (obj): Add font.o and w32font.o.
aca7a3d2 1186
d07529f3 11872008-02-01 Zhang Wei <id.brep@gmail.com> (tiny change)
aca7a3d2 1188
290afd83 1189 * makefile.w32-in (lisp1): Delete ucs-tables.elc,
aca7a3d2
MB
1190 utf-8.elc, and latin-*.el.
1191
0ea5797a
SM
11922008-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
1193
bcc891c2 1194 * emacsclient.c (decode_options): Default to NULL display, as Emacs-22.
0ea5797a
SM
1195 Allow the -d option under w32 again, for those rare cases where it
1196 actually does make sense.
1197
5ab73228
JB
11982008-01-25 Juanma Barranquero <lekktu@gmail.com>
1199
1200 * emacsclient.c (set_tcp_socket): Don't send "\n" after
1201 the authentication string; there's no need to haste.
1202
702123a8
CY
12032008-01-22 Chong Yidong <cyd@stupidchicken.com>
1204
1205 * pop.c (pop_stat, pop_last): Fix last fix.
1206
76ed5e01
DN
12072008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
1208
1209 * movemail.c: Remove references to XENIX.
1210
e39a993c
DN
12112008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
1212
1213 * movemail.c:
1214 * make-docfile.c: Remove reference to symbols defined by systems
1215 not supported anymore: MAC_OS8, XENIX and STRIDE.
1216
0ebec7d3
EZ
12172008-01-12 Eli Zaretskii <eliz@gnu.org>
1218
1219 * emacsclient.c (decode_options) [WINDOWSNT]: Don't use the value
1220 of DISPLAY in the environment. Don't support -d.
1221 (print_help_and_exit) [WINDOWSNT]: Don't show the --display option.
1222 (longopts) [WINDOWSNT]: Remove --display.
1223
6eae3ad4
CY
12242008-01-10 Chong Yidong <cyd@stupidchicken.com>
1225
1226 * pop.c (pop_stat, pop_last): Check validity of string-to-integer
1227 conversion. Mistakes spotted by Nico Golde.
1228
78da39c6
GM
12292008-01-09 Glenn Morris <rgm@gnu.org>
1230
1231 * emacsclient.c: Add missing final newlines to message calls.
1232
34a14ec9 12332008-01-09 Daniel Hackney <dan@haxney.org> (tiny change)
78da39c6
GM
1234
1235 * emacsclient.c (set_socket): Add final newline to socket error message.
1236
a408ea17
GM
12372008-01-04 Glenn Morris <rgm@gnu.org>
1238
07655e62
JB
1239 * ebrowse.c (version) <emacs_copyright>: New variable.
1240 Just use current year for copyright.
a408ea17
GM
1241
1242 * etags.c (print_version):
1243 * rcs2log (Copyright): Update to 2008.
1244
0dc7a8bc
JR
12452007-11-28 Jason Rumney <jasonr@gnu.org>
1246
1247 * makefile.w32-in (VMS_SUPPORT): No longer byte-compiled.
1248
880820fe 12492007-11-27 Jan Djärv <jan.h.d@swipnet.se>
7291159e
JD
1250
1251 * pop.c (socket_connection): Remove AI_ADDRCONFIG.
1252
880820fe 12532007-11-19 Jan Djärv <jan.h.d@swipnet.se>
ee15f312
JD
1254
1255 * pop.c (socket_connection): Move realhost out of #ifdefs.
1256 Set realhost both for HAVE_GETADDRINFO and !HAVE_GETADDRINFO.
1257
880820fe 12582007-11-18 Jan Djärv <jan.h.d@swipnet.se>
33a2a872
JD
1259
1260 * pop.c (socket_connection): Use getaddrinfo if available.
1261
880820fe 12622007-11-22 Francesco Potortì <pot@gnu.org>
63f018cd 1263
65841dd8 1264 * etags.c (default_C_help) [CTAGS]: Differentiate the help string,
63f018cd 1265 as the defaults in ctags are different from etags.
63f018cd 1266
880820fe 12672007-11-15 Francesco Potortì <pot@gnu.org>
21e14641
FP
1268
1269 * etags.c: Make prototypes for extern definitions, and add all
1270 that are needed to quench warnings on 64-bit.
1271 (main): Use the same defaults for ctags as for etags: find
1272 typedefs, structure tags, macro constants, enum constants, struct
1273 members and global variables.
1274 (make_C_tag) [DEBUG]: Add debugging printout.
1275 (C_entries): In case '}' decrement bracelev before testing it.
1276
7455effc
FP
12772007-11-15 Masatake YAMATO <jet@gyve.org>
1278
1279 * etags.c (C_entries): In case '}', set fvdef to fvnone
1280 unconditioned to (!ignoreindent && lp == newlb.buffer + 1).
1281
04a697fe
DN
12822007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
1283
1284 * makefile.w32-in (obj): Remove sunfns.o.
1285
a2666217
JB
12862007-10-28 Juanma Barranquero <lekktu@gmail.com>
1287
1288 * makefile.w32-in (obj): Remove abbrev.o.
1289
7ce8671d
JB
12902007-10-26 Juanma Barranquero <lekktu@gmail.com>
1291
1292 * emacsclient.c: Add a wrapper for getenv so it also checks the
1293 registry on Windows. Suggestion and algorithm by Eli Zaretskii.
1294 Code partially based on w32_get_resource and init_environment (w32.c).
1295 (egetenv): New wrapper for getenv.
1296 (get_current_dir_name, decode_options, get_server_config)
1297 (set_local_socket, set_socket, main): Use egetenv, not getenv.
1298 (w32_get_resource, w32_getenv) [WINDOWSNT]: New functions.
1299
d22b00e5
JR
13002007-10-25 Jason Rumney <jasonr@gnu.org>
1301
1302 * emacsclient.c (sock_err_message): New function.
1303 (set_tcp_socket): Use it.
1304
c4b858e3
JB
13052007-10-09 Juanma Barranquero <lekktu@gmail.com>
1306
1307 * emacsclient.c (print_help_and_exit): Fix space to improve
1308 alignment in output messages.
1309
dbf60b07
JR
13102007-09-27 Jason Rumney <jasonr@gnu.org>
1311
1312 * makefile.w32-in (emacsclient, emacsclientw): Link to COMCTL32.
1313
1314 * emacsclient.c (w32_window_app): Init common controls when windowed.
1315
165e85b2
GM
13162007-09-21 Glenn Morris <rgm@gnu.org>
1317
1318 * emacstool.c: Remove file.
1319 * Makefile.in (emacstool, nemacstool, xvetool, xveterm):
1320 Delete targets built from emacstool.
1321
c1b8e896
SM
13222007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
1323
1324 * emacsclient.c (decode_options): -t implies -c.
1325
cb06b8dc
SM
13262007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1327
1328 * emacsclient.c (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP)
1329 (IS_ANY_SEP): Only define if !defined(HAVE_GET_CURRENT_DIR_NAME).
1330 (main_argc): Remove.
1331 (strprefix): Use strncmp.
1332
c801ad51
JR
13332007-09-20 Jason Rumney <jasonr@gnu.org>
1334
1335 * emacsclient.c (main) [SIGSTOP]: Change conditional from WINDOWSNT.
1336
31fa6595
SM
13372007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1338
1339 * emacsclient.c (current_frame): Change the default.
1340 (longopts): Replace --current-frame by --create-frame.
1341 (decode_options): Reverse the meaning of -c.
1342 (print_help_and_exit): Update help text accordingly.
1343 (main): Remove the -version and -good-version messages.
1344
58573230
GM
13452007-09-12 Glenn Morris <rgm@gnu.org>
1346
1347 * Makefile.in (SOURCES, unlock, relock): Delete.
1348
bfd9ce71
GM
13492007-08-29 Glenn Morris <rgm@gnu.org>
1350
1351 * makefile.w32-in (VERSION): Increase to 23.0.50.
1352
8d9cc0b7
MB
13532007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
1354
1355 * emacsclient.c (w32_execvp): Move definition before use.
1356 (decode_options): Don't use a tty on mac carbon or windows.
1357
13582007-08-29 Jason Rumney <jasonr@gnu.org>
1359
31fa6595 1360 * emacsclient.c (SEND_STRING, SEND_QUOTED): Remove obfuscation macros.
8d9cc0b7
MB
1361 (quote_argument, set_tcp_socket, handle_sigcont, handle_sigtstp):
1362 (main): Expand removed macros inline.
1363 (main) [WINDOWSNT]: Don't call ttyname. Don't recognize -suspend
1364 option.
1365 (main) [NO_SOCKETS_IN_FILE_SYSTEM]: Don't call init_signals.
1366
880820fe 13672007-08-29 Károly Lőrentey <lorentey@elte.hu>
8d9cc0b7
MB
1368
1369 * emacsclient.c (signal.h): New include.
1370 (sys/stat.h, errno.h): Always include, even on WINDOWSNT.
31fa6595
SM
1371 (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
1372 Copy definitions here from src/lisp.h.
1373 (main_argc, main_argv, current_frame, window_system, tty): New vars.
8d9cc0b7
MB
1374 (longopts): Add tty, current-frame.
1375 (xmalloc, xstrdup): New functions.
1376 (get_current_dir_name): New function, copied from src/sysdep.c.
1377 (decode_options): Set display from environment. Add tty and
1378 current_frame options. Make --no-wait imply --current-frame,
1379 except when it is the only option given. Make sure no frame is
1380 opened when --current-frame is set.
1381 (print_help_and_exit): Document tty and current-frame options.
1382 (fail): Change arguments to void.
1383 (main): When sockets are not defined, set main_argc, main_argv,
1384 and call fail() with no arguments.
1385 (emacs_socket): New variable (moved out from main `s').
1386 (quote_file_name): Rename to quote_argument.
1387 (quote_argument): New name for old quote_file_name.
1388 (unquote_argument, strprefix, pass_signal_to_emacs)
1389 (handle_sigcont, handle_sigtstp, init_signals): New functions.
1390 (set_local_socket): Initialize saved_errno to 0. If socket-name
1391 is too long, call `fail' rather than `exit'.
1392 (main): Doc update. Set main_argc, main_argv. New var `str'.
1393 Don't need a filename or argument if tty or window_system set.
1394 Call fail with no arguments. Use get_current_dir_name to send
1395 over the current directory. Send version number to Emacs for
1396 verification. If tty is set, check TERM, and pass name and type
1397 to Emacs. Pass window_system to Emacs. Move sending of eval to
1398 optind loop. Send -position, -file to Emacs. Call fsync after
31fa6595
SM
1399 fflush. Check for a client/server version match.
1400 Handle -emacs-pid, -window-system-unsupported, -print, -error, and
1401 -suspend commands. Don't exit prematurely on --no-wait, let Emacs
1402 close the connection for us. When creating a new frame, send
8d9cc0b7
MB
1403 environment and pwd to Emacs. Send current-frame to Emacs.
1404
ca4ea90f
EZ
14052007-08-25 Eli Zaretskii <eliz@gnu.org>
1406
1407 * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
1408 Prepend "-" to the command, in case srcdir=. and file is copied
1409 into itself.
1410
cacc7b51
GM
14112007-07-25 Glenn Morris <rgm@gnu.org>
1412
1413 * Relicense all FSF files to GPLv3 or later.
1414
1415 * COPYING: Switch to GPLv3.
1416
880820fe 14172007-07-17 Francesco Potortì <pot@gnu.org>
180f5b99
FP
1418
1419 * etags.c (C_entries): Reset the fvdef machine when out of function.
21b2cdc7
FP
1420 (PRINT_UNDOCUMENTED_OPTIONS_HELP): #define as FALSE if undefined.
1421 (print_help): Use it in if() rather than #if.
1422 (print_help): Conditionally print help about --no-line-directive.
180f5b99 1423
9724908a
EZ
14242007-07-16 Eli Zaretskii <eliz@gnu.org>
1425
1426 * makefile.w32-in (clean): Don't delete *~.
1427
5cf9ca93
GM
14282007-06-07 Glenn Morris <rgm@gnu.org>
1429
1430 * etags.c (print_version): Add `emacs_copyright' string, for
1431 easier automatic updating.
1432
880820fe 14332007-05-18 Francesco Potortì <pot@gnu.org>
cabfc1bc
FP
1434
1435 * etags.c: Extern definitions of some more pointer functions for
1436 standalone compilation, especially important for 64bit platforms.
1437 (main, print_help): --members is now the default for etags.
1438 (C_entries): Parse start of C comment as a space == end of token.
1439 This is not necessary for C++ comment, already parsed as newline.
1440
07016031
GM
14412007-04-26 Glenn Morris <rgm@gnu.org>
1442
1443 * makefile.w32-in (VERSION): Increase to 22.1.50.
1444
7dfc4cda
CY
14452007-06-02 Chong Yidong <cyd@stupidchicken.com>
1446
1447 * Version 22.1 released.
1448
880820fe 14492007-02-26 Francesco Potortì <pot@gnu.org>
11d2d983 1450
d620ddb3 1451 * Makefile.in (etags, ctags): Define EMACS_NAME as "GNU Emacs".
11d2d983 1452
0971f887
GM
14532007-02-20 Ulrich Mueller <ulm@kph.uni-mainz.de> (tiny change)
1454
1455 * Makefile.in (EMACS, EMACSOPT): New variables.
1456 (blessmail): Use `--no-site-file' when compiling.
1457
880820fe 14582007-02-05 Francesco Potortì <pot@gnu.org>
933ccc8c
FP
1459
1460 * etags.c (default_C_help, Cplusplus_help, PHP_help, print_help)
1461 (main): Now --members is the default for etags, not for ctags yet.
1462
d881944f 14632007-02-04 Per Cederqvist <ceder@ingate.com> (tiny change)
953dea63 1464
47dad44f 1465 * etags.c (gperf, in_word_set): Change attribute for Java to
953dea63
FP
1466 (C_JAVA & ~C_PLPL). The previous change introduced 2004-09-13 was
1467 broken, as (C_JAVA & !C_PLPL) always evaluates to 0. This caused
1468 import, package, extends, implements and interface to be treated
1469 specially for all kinds of C-style files, not just Java files.
1470
880820fe 14712007-01-02 Francesco Potortì <pot@gnu.org>
ed8bbc0e 1472
47dad44f 1473 * etags.c (longopts): New undocumented option --no-duplicates.
ed8bbc0e
FP
1474 (no_duplicates): Static variables for the above option.
1475 (print_help): Do not print help for --no-warn, now undocumented.
1476 (add_node): Allow duplicate tags in ctags mode unless --no-duplicates.
56c0d866 1477 (main): Pass the -u option to sort in ctags mode.
ed8bbc0e 1478
880820fe 14792006-12-28 Francesco Potortì <pot@gnu.org>
18f9bf25
FP
1480
1481 * etags.c (readline): When creating a relative file name from a
1482 #line directive, leave the file name alone. The previous
a7c29764 1483 behavior was to make it relative to the tags file directory,
18f9bf25
FP
1484 under the hypothesis that the #line directive file name was
1485 relative to the directory of the tagged file. That hypothesis is
1486 wrong with Cpp and Lex.
17d5f8a6 1487 (Makefile_targets): Do not include spaces in tag names.
18f9bf25 1488
5e059fc1
EZ
14892006-12-22 Eli Zaretskii <eliz@gnu.org>
1490
1491 * makefile.w32-in (make-docfile, ctags, etags, ebrowse, hexl)
1492 (movemail, fakemail, sorted-doc, digest-doc, emacsclient)
47dad44f 1493 (test-distrib, $(DOC), all): Depend on stamp_BLD instead of $(BLD).
5e059fc1
EZ
1494 ($(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O))
1495 ($(BLD)/sorted-doc.$(O) $(BLD)/digest-doc.$(O))
1496 ($(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS))
1497 ($(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O))
1498 ($(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O)): Depend on stamp_BLD.
6808dce1 1499 (clean): Delete stamp_BLD.
5e059fc1 1500
880820fe 15012006-12-20 Francesco Potortì <pot@gnu.org>
bd3b41c6
FP
1502
1503 * etags.c (C_entries): DEFUN names were longer by one: corrected.
1504
0e0dced5
JB
15052006-12-18 Juanma Barranquero <lekktu@gmail.com>
1506
1507 * emacsclient.c [WINDOWSNT] (set_fg, get_wc): New variables.
1508 [WINDOWSNT] (w32_find_emacs_process, w32_give_focus): New functions.
1509 (main) [WINDOWSNT]: Remove code to release the focus; call
1510 w32_give_focus instead.
1511
4472aef4
JB
15122006-12-15 Juanma Barranquero <lekktu@gmail.com>
1513
1514 * emacsclient.c (w32_execvp): New function; wrapper for `execvp'.
1515 (execvp) [WINDOWSNT]: Redefine to `w32_execvp'.
1516 (fail): Remove Windows-specific fix (subsumed into w32_execvp).
1517 Suggestions and comment by Eli Zaretskii.
1518
12f7728e 15192006-12-06 Christoph Conrad <christoph.conrad@gmx.de>
c388769e
JB
1520
1521 * makefile.w32-in ($(BLD)/emacsclient.exe, $(BLD)/emacsclientw.exe):
1522 Use $(USER32) for compatibility with Visual Studio .NET 2003.
1523
310afa17
JB
15242006-11-30 Juanma Barranquero <lekktu@gmail.com>
1525
1526 * emacsclient.c (emacs_pid): New variable.
1527 (message): Remove leftover code.
1528 (get_server_config): Set emacs_pid. Don't allow Emacs to grab the
1529 focus yet; emacsclient can still display an informational message
1530 before sending requests to Emacs.
1531 (main): Allow Emacs to grab the focus. Simplify message() call.
1532
15332006-11-30 Michael Mauger <mmaug@yahoo.com>
1534
1535 * emacsclient.c (message): Make sure the message is properly
1536 written even if it contains printf escapes, and flush the result.
1537 (set_tcp_socket): Make the message for non-local connections
1538 informational rather than an error.
1539
8c57275b 15402006-11-28 Kevin Ryde <user42@zip.com.au>
9b492fad
FP
1541
1542 * etags.c (readline): Check for double quote after #line.
1543
880820fe 15442006-11-28 Jan Djärv <jan.h.d@swipnet.se>
9b492fad
FP
1545
1546 * etags.c (readline): sscanf could in principle return 2.
1547
880820fe 15482006-11-28 Francesco Potortì <pot@gnu.org>
9b492fad
FP
1549
1550 * etags.c (readline): lno is unsigned.
1551 (TeX_commands): Use p++ (rather than *p++) to increment p.
1552 (Lua_functions): Explicitly discard LOOKING_AT's return value.
1553
4d91c8f9
JB
15542006-11-27 Juanma Barranquero <lekktu@gmail.com>
1555
1556 * makefile.w32-in (TRES): New macro (copied from nt/makefile.w32-in).
1557 ($(TRES)): New rule (copied from nt/makefile.w32-in).
1558 ($(BLD)/emacsclientw.exe): Add dependency.
1559
340d34a5
EZ
15602006-11-27 Eli Zaretskii <eliz@gnu.org>
1561
d620ddb3 1562 * makefile.w32-in ($(BLD)/emacsclient.$(O)): Depend on makefile.w32-in.
340d34a5 1563
7dce1990
JB
15642006-11-25 Juanma Barranquero <lekktu@gmail.com>
1565
1566 * makefile.w32-in (VERSION): New macro.
1567 (ECLIENT_CFLAGS): Add -DVERSION.
1568
410797a5 15692006-11-25 Jason Rumney <jasonr@gnu.org>
402767e4
JR
1570
1571 * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Use isalpha().
1572
410797a5 15732006-11-24 Michael Mauger <mmaug@yahoo.com>
cb0297bb 1574
4472aef4
JB
1575 * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Support absolute
1576 file names with forward slashes.
cb0297bb 1577
30aa95ce
JB
15782006-11-23 Juanma Barranquero <lekktu@gmail.com>
1579
1580 * emacsclient.c (print_help_and_exit): Tweak message contents and
1581 tabs/spaces to improve alignment in message boxes.
1582
42073bfb
JB
15832006-11-22 Lennart Borgman <lennart.borgman.073@student.lu.se>
1584
1585 * emacsclient.c: Include <stdarg.h>.
1586 [WINDOWSNT]: Include <windows.h>.
1587 (w32_check_console_app): New function.
1588 (message): New function.
1589 (decode_options, print_help_and_exit, fail, main)
1590 (initialize_sockets, get_server_config, set_tcp_socket)
1591 (set_local_socket, set_socket): Use message().
1592
32dd9283 15932006-11-13 Jason Rumney <jasonr@gnu.org>
1ac3c910 1594
32dd9283
JR
1595 * emacsclient.c [WINDOWSNT]: Let config.h define HAVE_SOCKETS and
1596 HAVE_INET_SOCKETS.
1597
1bbea9fc
JB
15982006-11-13 Juanma Barranquero <lekktu@gmail.com>
1599
1600 * makefile.w32-in (emacsclient): Depend also on emacsclientw.exe.
1601 ($(BLD)/emacsclientw.exe): New target.
1602 (install): Install emacsclientw.exe.
1603 ($(BLD)/cvtmail.$(O), $(BLD)/emacstool.$(O)): Remove obsolete targets.
1604 (ECLIENT_CFLAGS): Remove redundant flags.
1605
1606 * emacsclient.c [WINDOWSNT]: Undef _WINSOCKAPI_ and _WINSOCK_H.
1607
a48db427
JR
16082006-11-13 Jason Rumney <jasonr@gnu.org>
1609
1610 * makefile.w32-in ($(BLD)/emacsclient.$(O)): Use CFLAGS.
1611
21f89bb7 16122006-11-10 David Reitter <david.reitter@gmail.com>
ed4a3730
JB
1613
1614 * emacsclient.c [!WINDOWSNT]: Include <sys/types.h>.
1615
d5abc12c
JB
16162006-11-08 Juanma Barranquero <lekktu@gmail.com>
1617
ed4a3730
JB
1618 * emacsclient.c (get_server_config) [WINDOWSNT]: Declare set_fg as
1619 FARPROC to avoid a compiler warning.
d5abc12c 1620
18b8c421
JB
16212006-11-07 Juanma Barranquero <lekktu@gmail.com>
1622
88b46d84
JB
1623 * emacsclient.c (get_server_config) [WINDOWSNT]: Look for the server
1624 file on APPDATA if it doesn't exist on HOME, even if HOME is defined.
1625
18b8c421
JB
1626 * emacsclient.c (get_server_config): Extract also the Emacs pid
1627 from the server file. On Windows, try to force the Emacs frame to
1628 the foreground.
1629
b03d27bd
JB
16302006-11-06 Juanma Barranquero <lekktu@gmail.com>
1631
21f89bb7 1632 * emacsclient.c (longopts) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't show
b03d27bd
JB
1633 option --socket-name.
1634 (decode_options): Don't get EMACS_SERVER_FILE here, it could override
1635 command line options.
21f89bb7 1636 (decode_options) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't parse "-s" option.
b03d27bd
JB
1637 (fail): Don't check for missing arguments, it is now done in set_socket.
1638 (file_name_absolute_p): New function (loosely based on the one in
1639 fileio.c).
1640 (initialize_sockets): Don't check for duplicate loading of Winsock.
1641 (get_server_config): Only try relative paths in the default
1642 directory locations.
1643 (set_tcp_socket): Don't call INITIALIZE(). Warn when connecting to
1644 a remote server.
1645 (set_socket): Call INITIALIZE(). Search explicit command-line
1646 arguments, then environment variable EMACS_SERVER_FILE, then implicit
1647 socket paths, before trying the alternate editor.
1648 (main): Use file_name_absolute_p.
1649
b20d6154
EZ
16502006-11-04 Eli Zaretskii <eliz@gnu.org>
1651
1652 * makefile.w32-in (../src/$(BLD)/temacs.exe): Create as temporary
1653 file if it doesn't already exist.
1654
9c92edca
JB
16552006-11-03 Juanma Barranquero <lekktu@gmail.com>
1656
1657 * emacsclient.c (initialize_sockets): Don't initialize Winsock
1658 more than once.
1659
b6ce9c46
JB
16602006-11-03 Mark Davies <mark@mcs.vuw.ac.nz>
1661
1662 * Makefile.in (INSTALL_SCRIPT): New macro.
1663 ($(DESTDIR)${archlibdir}, install): Use it, instead of INSTALL_PROGRAM.
1664
4418616b
JB
16652006-11-02 Juanma Barranquero <lekktu@gmail.com>
1666
1667 * grep-changelog: When called with no arguments (not even a
1668 filter), show help instead of blindingly dumping every single
1669 ChangeLog available. Doc fix. Update version.
1670
1e7823d0
JB
16712006-11-02 Tim Van Holder <tim.vanholder@gmail.com> (tiny change)
1672
1673 * emacsclient.c [WINDOWSNT]: Define HAVE_INET_SOCKETS.
1674 [!WINDOWSNT]: Include <netinet/in.h> if available.
1675 [HAVE_SOCKETS]: Also require HAVE_INET_SOCKETS.
1676 (IOCTL, IOCTL_BOOL_ARG): Remove.
1677 (set_tcp_socket): Don't set the socket in blocking mode.
1678 Remove c_arg.
1679
ebc20ca0
JB
16802006-11-01 Juanma Barranquero <lekktu@gmail.com>
1681
1682 * emacsclient.c (fail) [WINDOWSNT]: Force the first argv passed to
1683 execvp to point to alternate_editor (otherwise .BAT scripts can't run).
1684
880820fe 16852006-10-31 Óscar Fuentes <ofv@wanadoo.es> (tiny change)
411b80a5
JB
1686
1687 * emacsclient.c [WINDOWSNT]: Include <malloc.h> and <stdlib.h>.
1688 (close_winsock): Declare as __cdecl.
1689
880820fe 16902006-10-31 Jan Djärv <jan.h.d@swipnet.se>
95d0feaa
JB
1691
1692 * emacsclient.c [!WINDOWSNT]: Include <fcntl.h> if available.
1693 (set_tcp_socket): Prefer O_NONBLOCK, then O_NDELAY, then FIONBIO
1694 to set the socket in non-blocking mode.
1695
e35fc962
JB
16962006-10-31 Tim Van Holder <tim.vanholder@gmail.com> (tiny change)
1697
d4fa60c8 1698 * emacsclient.c [!WINDOWSNT]: Include <netinet/in.h> and <sys/ioctl.h>.
e35fc962
JB
1699 (INVALID_SOCKET): Define.
1700 (initialize_sockets): Put #endif at the right place.
1701 (set_local_socket): Use progname, not argv[0].
1702
ecc54057
JB
17032006-10-31 Juanma Barranquero <lekktu@gmail.com>
1704
1705 * makefile.w32-in (ALL): Add emacsclient.
1706 (ECLIENT_CFLAGS, ECLIENTOBJS): New macros.
1707 (emacsclient, $(BLD)/emacsclient.exe): New targets.
1708 (install): Install emacsclient.
1709
1710 * emacsclient.c: Add support for TCP sockets.
1711 (SEND_STRING, SEND_QUOTED, HSOCKET, CLOSE_SOCKET, IOCTL)
1712 (INITIALIZE): New macros.
1713 (IOCTL_BOOL_ARG): New typedef.
1714 (server_file): New global variable.
1715 (longopts): New option --server-file.
1716 (decode_options): Process new option --server-file and environment
1717 variable EMACS_SERVER_FILE.
1718 (print_help_and_exit): Document new option.
1719 (fail): If no connection available and no alternate editor,
1720 suggest using options to make them explicit.
1721 (AUTH_KEY_LENGTH, SEND_BUFFER_SIZE): New constants.
1722 (send_buffer, sblen): New variables.
31fa6595 1723 (send_to_emacs): New function to buffer output and send it with `send'.
ecc54057
JB
1724 (quote_file_name): Use SEND_STRING.
1725 (close_winsock, initialize_sockets): New functions to load and
1726 unload Winsock.
1727 (get_server_config, set_tcp_socket): New functions to create and
1728 set up TCP sockets.
1729 (set_local_socket): New function to create and set up Unix
1730 socket (code moved from previous implementation).
10d1d0af 1731 (set_socket): New function to choose between TCP and Unix sockets.
ecc54057
JB
1732 (main): Use SEND_STRING and SEND_QUOTED. Most code moved to
1733 set_local_socket. Use set_socket. Get answers from server.el with
1734 recv(), not file stream functions.
1735
70846e2a
EZ
17362006-10-09 Eli Zaretskii <eliz@gnu.org>
1737
1738 * makefile.w32-in (../src/config.h): Fix error message.
1739
e2247cd0
EZ
17402006-09-30 Eli Zaretskii <eliz@gnu.org>
1741
1742 * .cvsignore: Add blessmail.
1743
45a2056c
JB
17442006-09-15 Jay Belanger <belanger@truman.edu>
1745
1746 * COPYING: Replace "Library Public License" by "Lesser Public
1747 License" throughout.
1748
880820fe 17492006-08-09 Jan Djärv <jan.h.d@swipnet.se>
1f4edc37 1750
ecc54057 1751 * etags.c (readline): Expect sscanf returns >= 1.
ea90c5d3 1752 (readline): Change position on %n and \" in sscanf.
1f4edc37 1753
1520a816
JD
17542006-08-07 Masatake YAMATO <jet@gyve.org>
1755
ecc54057
JB
1756 * etags.c (readline): Expect sscanf returns 2, not 1.
1757
867cc23e
JD
17582006-08-07 Masatake YAMATO <jet@gyve.org>
1759
9984b9d5 1760 * etags.c (TEX_mode): Check getc returns EOF.
867cc23e
JD
1761 File ended without newline causes infinite loop.
1762
6088b51f 17632006-07-30 Adrian Aichner <adrian@xemacs.org> (tiny change)
fc185ae6 1764
ecc54057 1765 * etags.c: It's XEmacs, not Xemacs: change all the occurrences.
fc185ae6 1766
880820fe 17672006-07-30 Francesco Potortì <pot@gnu.org>
fc185ae6
FP
1768
1769 * etags.c [ETAGS_REGEXPS]: Now is unconditionally defined.
1770 [LONG_OPTIONS]: Changed to NO_LONG_OPTIONS, which is undefined.
1771 (Objc_suffixes): Suggest using --lang=c for full help.
1772 (C_entries): Initialise savetoken to 0 to shut up the compiler.
1773
116e754b
AS
17742006-07-20 Andreas Schwab <schwab@suse.de>
1775
1776 * fakemail.c (fatal): Drop second parameter and treat first
1777 parameter as a plain string. Callers changed.
1778
2381d38d
DN
17792006-07-18 Dan Nicolaescu <dann@ics.uci.edu>
1780
1781 * ebrowse.c (usage, version): Mark as NO_RETURN.
1782
1783 * emacsclient.c (print_help_and_exit): Likewise.
1784
880820fe 17852006-07-10 Francesco Potortì <pot@gnu.org>
327891eb
FP
1786
1787 * etags.c (absolute_filename): Free unused space (cosmetic change).
1788 (in_word_set): In C, also tag #undef symbols.
1789
7cb93181
EZ
17902006-06-09 Eli Zaretskii <eliz@gnu.org>
1791
1792 * yow.c: Remove file.
1793
1794 * makefile.w32-in ($(BLD)/yow.$(O)): Remove target.
1795
1796 * Makefile.in (UTILITIES): Remove yow${EXEEXT}.
1797 yow${EXEEXT}: Remove target.
1798
0f29c66d
MY
17992006-06-04 Masatake YAMATO <jet@gyve.org>
1800
63fbb644 1801 * ebrowse.c (main): Exit with EXIT_FAILURE if BROWSE file
0f29c66d
MY
1802 doesn't exist, is not seekable, not is failed in ftall.
1803
a941b26b
EZ
18042006-06-03 Eli Zaretskii <eliz@gnu.org>
1805
9781fb53
EZ
1806 * makefile.w32-in (ALL): Add sorted-doc and digest-doc.
1807 ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe)
1808 ($(BLD)/test-distrib.exe): New targets.
1809 (sorted-doc, digest-doc, test-distrib): New targets.
1810 (install): Install sorted-doc.exe and digest-doc.exe.
1811 ($(BLD)/sorted-doc.$(O)): Update dependencies.
1812
1b178b99
EZ
1813 * digest-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
1814 (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
1815 terminal device.
1816
ae85efdb
EZ
1817 * sorted-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
1818 [WINDOWSNT] <top level>: Don't redeclare malloc.
1819 (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
1820 terminal device.
6088b51f 1821 (main): Initialize bp, to avoid compiler warnings.
ae85efdb 1822
a941b26b
EZ
1823 * makefile.w32-in: Delete traces of leditcfns.c.
1824
1825 * leditcfns.c: Remove file.
1826
880820fe 18272006-05-23 Francesco Potortì <pot@gnu.org>
8a6d5da7 1828
31fa6595
SM
1829 * pop.c (pop_open, socket_connection, KPOP_SERVICE):
1830 Add comments explaining why the "kpop" service is never used.
8a6d5da7 1831
642c61f3
EZ
18322006-05-13 Eli Zaretskii <eliz@gnu.org>
1833
1834 * makefile.w32-in (lisp1): Add fringe.elc.
1835
880820fe 18362006-05-02 Francesco Potortì <pot@gnu.org>
7e237d24
FP
1837
1838 * etags.c (Perl_functions): Free space allocated for var package.
1839 (Erlang_functions): Possibly free space allocated for var last.
1840 (Prolog_functions): Possibly free space allocated for var last.
1841
7c47913b
DN
18422006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
1843
7fe8b491
DN
1844 * sorted-doc.c (main): Initialize docs to NULL.
1845
cdeda579
DN
1846 * yow.c (yow): Free buf.
1847
7c47913b
DN
1848 * etags.c: Delete c-indentation-style local variable.
1849
2ef88a94
RS
18502006-04-29 Richard Stallman <rms@gnu.org>
1851
5e5b35c7
RS
1852 * movemail.c (main): Check for negative value from `read'.
1853
2ef88a94
RS
1854 * fakemail.c (read_header): Give fatal error if input has no header.
1855
d65b4235
PE
18562006-04-02 Paul Eggert <eggert@cs.ucla.edu>
1857
1858 * b2m.c (main): Don't include <limits.h>.
1859 (TM_YEAR_BASE): New macro.
1860 (TM_YEAR_IN_ASCTIME_RANGE): Don't define if already defined, so
1861 that s/ files can override this. Use the more-conservative range
1862 1000-9999.
1863 (main): Check for asctime returning NULL.
1864 * fakemail.c: Likewise.
1865
f5565804
PE
18662006-03-27 Paul Eggert <eggert@cs.ucla.edu>
1867
1868 * b2m.c: Include <limits.h>.
1869 (TM_YEAR_IN_ASCTIME_RANGE): New macro.
1870 (main): Check for out-of-range time stamps.
1871 * fakemail.c: Likewise.
1872
90c9c343
AS
18732006-03-18 Andre Spiegel <spiegel@gnu.org>
1874
1875 * vcdiff: Use "echo" as a default for $echo, otherwise we'll
1876 execute $DIFF twice, and once with the wrong options.
1877
a6a2b5d4
EZ
18782006-02-23 Claudio Fontana <claudio@gnu.org>
1879
9e2bcc86
EZ
1880 * Makefile.in (install, uninstall): Add DESTDIR variable to
1881 support staged installations.
a6a2b5d4 1882
ef3f69f9
EZ
18832005-12-30 Eli Zaretskii <eliz@gnu.org>
1884
1885 * makefile.w32-in (MOUSE_SUPPORT): Add tooltip.elc.
fc8dc7cf
EZ
1886 (lisp1): Add rfn-eshadow.elc, international/utf-16.elc, image.elc,
1887 international/fontset.elc, dnd.elc, mwheel.elc, and tool-bar.elc.
1888 Rearrange the list to be similar to $(shortlisp) in
1889 src/Makefile.in.
ef3f69f9
EZ
1890 (lisp2): Add language/kannada.el, emacs-lisp/syntax.elc,
1891 emacs-lisp/timer.elc, jka-cmpr-hook.elc, font-lock.elc,
1892 jit-lock.elc. Rearrange the list to be similar to $(shortlisp) in
1893 src/Makefile.in.
1894
30cfcf7f
RS
18952005-12-22 Richard M. Stallman <rms@gnu.org>
1896
1897 * Makefile.in (update-game-score.o): Delete spurious final `\'.
1898
ecc54057 18992005-11-18 Hideki IWAMOTO <h-iwamoto@kit.hi-ho.ne.jp> (tiny change)
2e0bea68
FP
1900
1901 * etags.c (main): Cxref mode writes to stdout: do not close tagf,
1902 which was never opened.
1903
283879ef 19042005-10-20 Olli Savia <ops@iki.fi> (tiny change)
ce0ae3a9
EZ
1905
1906 * etags.c: Undef STDIN if defined. (LynxOS defines it in system
1907 header files.)
1908
880820fe 19092005-09-27 Francesco Potortì <pot@gnu.org>
55102b5d
FP
1910
1911 * etags.c: Preliminary Forth support.
1912 (prolog_pr): Cast strlen to int before comparison.
1913 (LOOKING_AT, LOOKING_AT_NOCASE): Let the preprocessor check that
1914 the second argument is indeed a literal string.
b9509712 1915 (main): In append mode, sort the tags file after writing it.
55102b5d
FP
1916
19172005-09-27 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
1918
1919 * etags.c (longopts, print_help, main): The -a (--append) option
1920 can be used in ctags also; for one, the Linux make file uses it.
1921
41ea4df8
CY
19222005-09-20 Chong Yidong <cyd@stupidchicken.com>
1923
1924 * ebrowse.c (add_sym): Compare namespace names instead of
1925 namespace objects. This prevents the parser from incorrectly
1926 treating classes whose superclass is in another namespace.
1927
5c4757d3
RS
19282005-09-15 Richard M. Stallman <rms@gnu.org>
1929
1930 * Makefile.in (update-game-score.o): New target.
10d1d0af 1931 Compile and link this program separately.
5c4757d3
RS
1932 (update-game-score${EXEEXT}): Use GETOPTDEPTS.
1933
df1b2142
JR
19342005-09-11 Jason Rumney <jasonr@gnu.org>
1935
ecc54057 1936 * makefile.w32-in (../src/config.h): Don't overwrite. Print a
df1b2142 1937 message instead.
31fa6595 1938 (../src/paths.h): Remove.
df1b2142 1939
c638055f
JB
19402005-07-27 Juanma Barranquero <lekktu@gmail.com>
1941
1942 * .cvsignore: Don't ignore fns-* and fns.el, which are no longer
1943 generated. Ignore also ctags.c and getopt.h.
1944
1945 * makefile.w32-in (clean): Delete getopt.h.
1946 (getopt.h): New rule.
1947
9eff9fe3
PE
19482005-07-26 Paul Eggert <eggert@cs.ucla.edu>
1949
1950 Merge gnulib getopt implementation into Emacs.
1951
1952 * Makefile.in (mostlyclean): Remove getopt.h, getopt.h-t.
1953 (GETOPT_H): New macro, from gnulib.
1954 (getopt.h): New rule, from gnulib.
1955 (GETOPTOBJS): Now autoconfigured.
1956 (GETOPTDEPS): getopt.h is now autoconfigured.
1957 (getopt.o, getopt1.o): Depend on $(GETOPT_H), not ${srcdir}/getopt.h.
1958 (getopt.o): Depend on ${srcdir}/gettext.h.
1959 (movemail.o): Depend on $(GETOPT_H).
1960 * getopt.c, getopt1.c: Sync from gnulib.
1961 * getopt_.h, getopt_int.h, gettext.h: New files, from gnulib.
1962 * getopt.h: Removed (now is getopt_.h).
1963
ec641d50
KR
19642005-07-13 Ken Raeburn <raeburn@gnu.org>
1965
0e0dced5
JB
1966 * pop.c: Don't include des.h (or variants thereof); krb.h will do it.
1967 (sendline): Add the \r\n to the line in a temporary buffer, and write
1968 it all at once.
ec641d50 1969
a0ec7a4a
LK
19702005-07-04 Lute Kamstra <lute@gnu.org>
1971
1972 Update FSF's address in GPL notices.
1973
0e0dddda
EZ
19742005-06-13 Eli Zaretskii <eliz@gnu.org>
1975
1976 * makefile.w32-in ($(DOC)): Fix last change.
1977
5a77c8e2
EZ
19782005-06-12 Eli Zaretskii <eliz@gnu.org>
1979
1980 * makefile.w32-in ($(DOC)): Depend on make-docfile.exe,
1981 temacs.exe, and the preloaded *.elc files. This avoids
1982 unnecessary dumping and DOC rebuilding.
1983
1a8fb426
EZ
19842005-06-04 Eli Zaretskii <eliz@gnu.org>
1985
1986 * ntlib.h (fileno): Don't define if already defined.
1987
7235a58f
TTN
19882005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
1989
1990 * yow.c (setup_yow): Use EXIT_FAILURE in case no separators found.
1991 (yow): Use EXIT_FAILURE in case of memory error.
1992
5063dbbf
YM
19932005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1994
1995 * make-docfile.c (DIRECTORY_SEP): New macro.
1996 (IS_DIRECTORY_SEP): Use it.
1997
880820fe 19982005-03-18 Jan Djärv <jan.h.d@swipnet.se>
5b9562c3
JD
1999
2000 * emacsclient.c: Avoid expansion of getcwd when defined as a macro.
2001
ba025f6d
YM
20022005-03-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2003
2004 * make-docfile.c: Undo previous change.
2005
a9eedf40
AS
20062005-02-04 Andreas Schwab <schwab@suse.de>
2007
0e0dced5
JB
2008 * movemail.c (fatal): Accept third parameter and pass down to error.
2009 (pfatal_with_name): Pass error string as format parameter instead of
2010 as part of format string.
a9eedf40
AS
2011 (pfatal_and_delete): Likewise.
2012 (main): Adjust call to fatal.
2013 (xmalloc): Likewise.
2014
5a92a9eb
RS
20152005-01-29 Richard M. Stallman <rms@gnu.org>
2016
2017 * movemail.c (popmail): Don't use Errmsg as format string.
2018
e6973a25
ST
20192004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2020
0e0dced5 2021 * make-docfile.c: Include stdlib.h even if WINDOWSNT is not defined.
e6973a25 2022
1bb3da38
AS
20232004-12-15 Andreas Schwab <schwab@suse.de>
2024
2025 * etags.c (main): Fix typo in conversion of LONG_OPTIONS from
2026 preprocessing to compile time constant.
2027
d4a38fdd
KS
20282004-11-17 Kim F. Storm <storm@cua.dk>
2029
2030 * etags.c: Undo last change.
2031
f2eb41c8
KS
20322004-11-09 Kim F. Storm <storm@cua.dk>
2033
2034 * make-docfile.c (scan_c_file): Set defvarperbufferflag to
2035 silence compiler.
2036
2037 * hexl.c (main): Init local var c to silence compiler.
2038
2039 * etags.c (main, consider_token, C_entries): Add misc switch
2040 default targets to silence compiler.
2041
880820fe 20422004-11-09 Jan Djärv <jan.h.d@swipnet.se>
3cf5c994
JD
2043
2044 * makefile.w32-in (obj): Add all files (X and Mac) to doc so the
2045 resulting DOC file can be used on Unix/Mac also.
2046
880820fe 20472004-09-13 Francesco Potortì <pot@gnu.org>
e057dc50
FP
2048
2049 * etags.c (main): When relative file names are given as argument,
2050 make them relative to the current working dir, rather than
2051 relative to the output tags file, if the latter is in /dev.
2052
880820fe 20532004-09-13 Francesco Potortì <pot@gnu.org>
05d9a399
FP
2054
2055 * etags.c [EXIT_SUCCESS, EXIT_FAILURE]: Define them when no
2056 <stdlib.h> is available.
2057 (enum sym_type): New st_C_attribute value for parsing
2058 gcc's __attribute__. Deleted st_C_typespec value.
2059 (gperf, in_word_set): Use gperf 3, options changed. Added the
2060 __attribute__ keyword, removed all the st_C_typespec keywords,
2061 changed attribute for Java to (C_JAVA & !C_PLPL).
2062 (inattribute): New global bool, part of the C state machine.
2063 (cblev): Identifier renamed to bracelev throughout.
2064 (consider_token, C_entries): Numerous changes for making the
2065 parser more robust and adding support for __attribute__.
2066
20672004-09-13 David A. Capello <dacap@users.sourceforge.net> (tiny change)
2068
ecc54057 2069 * etags.c (Lua_suffixes, Lua_help, lang_names, Lua_functions):
05d9a399
FP
2070 Support the Lua scripting language <http://www.lua.org>.
2071
880820fe 20722004-09-08 Francesco Potortì <pot@gnu.org>
fba74375 2073
d57727c9 2074 * etags.c [LONG_OPTIONS]: Make it TRUE (ifdef) or FALSE (ifndef)
fba74375
FP
2075 for ease of use.
2076
3751eb00
RS
20772004-07-17 Richard M. Stallman <rms@gnu.org>
2078
2079 * emacsclient.c (quote_file_name): Pass COPY thru %s to output it.
2080
86d373e6
JB
20812004-06-01 Juanma Barranquero <lektu@terra.es>
2082
2083 * makefile.w32-in (obj): Add image.c.
2084
80e26b66
TTN
20852004-05-10 Thien-Thi Nguyen <ttn@gnu.org>
2086
0e0dced5 2087 * test-distrib.c (main): For failing cases, exit with `EXIT_FAILURE'.
80e26b66 2088
e6662c8b
JR
20892004-05-08 Jason Rumney <jasonr@gnu.org>
2090
2091 * makefile.w32-in (lisp1, lisp2): Split lisp to avoid long
2092 command-lines.
2093
65396510
TTN
20942004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
2095
2096 * cvtmail.c: Throughout, replace 0 destined for `exit' arg
2097 with `EXIT_SUCCESS'. Likewise, replace 1 with `EXIT_FAILURE'.
2098 (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
2099
2100 * ebrowse.c, emacsclient.c, fakemail.c, hexl.c,
86d373e6
JB
2101 * make-docfile.c, movemail.c, profile.c, sorted-doc.c,
2102 * test-distrib.c, update-game-score.c, yow.c: Likewise.
65396510 2103
c2bcfb19
TTN
21042004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
2105
2106 * Makefile.in (emacsclient${EXEEXT}): Use makefile var `version'.
2107
3f0656ff
TTN
21082004-05-07 Thien-Thi Nguyen <ttn@gnu.org>
2109
2110 * b2m.c (GOOD, BAD): Delete macros. Throughout,
2111 replace w/ `EXIT_SUCCESS' and `EXIT_FAILURE', respectively.
2112 (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
2113
2114 * etags.c: Likewise.
2115
238add5e
JR
21162004-05-03 Jason Rumney <jasonr@gnu.org>
2117
2118 * makefile.nt: Remove.
2119
b09c5608
EZ
21202004-04-26 Eli Zaretskii <eliz@gnu.org>
2121
2122 * make-docfile.c (IS_DIRECTORY_SEP): New macro.
2123 (put_filename): Remove unused variable len. Use IS_DIRECTORY_SEP
2124 instead of a literal '/'.
2125
d814862a
JB
21262004-04-23 Juanma Barranquero <lektu@terra.es>
2127
2128 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
2129
442a2160
PE
21302004-04-17 Paul Eggert <eggert@gnu.org>
2131
2132 * rcs2log (Help): Clarify wording of the usage message.
2133 Problem reported by Alan Mackenzie in
2134 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-04/msg00188.html>.
2135
d5d66b7e
SM
21362004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2137
2138 * make-docfile.c (xmalloc): Fix return type.
2139 (put_filename): New fun.
2140 (scan_file): Use it.
2141
bdfd0369
JB
21422004-03-09 Juanma Barranquero <lektu@terra.es>
2143
2144 * grep-changelog: Changes to support ChangeLog.10+.
2145 (main): Tidy up usage string. Fix "Use of uninitialized value"
2146 warning. Set version to 0.2. Parse the directory listing to get
2147 any ChangeLog.n file, not just 1..9.
2148 (header_match_p, entry_match_p, print_log, parse_changelog):
2149 Remove Perl prototypes (their purpose is to help the parser, which
2150 isn't needed here, not declare arguments).
2151 (parse_changelog): Make --reverse faster on big batches by not
2152 modifying the entries list.
2153
a64387ee
JB
21542004-03-01 Juanma Barranquero <lektu@terra.es>
2155
2156 * makefile.w32-in (obj): Add fringe.c.
2157
9766d41b
PE
21582004-02-14 Paul Eggert <eggert@twinsun.com>
2159
2160 * rcs2log: Work correctly if CVSROOT specifies :fork: or
2161 :local: methods, or omits the colon between the hostname
2162 and the path. Allow :/ in repository path, since CVS does.
2163 Fix typo: "pository" should be set from $CVSROOT, not $repository.
2164 This fixes a bug reported by Wolfgang Scherer in
2165 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-02/msg00085.html>,
2166 along with some related bugs I discovered by inspecting how
2167 CVS itself parses $CVSROOT.
2168
880820fe 21692004-02-04 Jérôme Marant <jmarant@nerim.net> (tiny change)
98c6e531
SM
2170
2171 * emacsclient.c (decode_options): Fix handling of alternate editor.
2172
0734b0d0
SM
21732004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
2174
2175 * emacsclient.c (main): Don't use the hostname in the socket name.
2176 Look for relative socket names in the /tmp dir rather than in cwd.
2177
2a6fc2d9
RS
21782004-01-24 Richard M. Stallman <rms@gnu.org>
2179
2180 * emacsclient.c (main): Restore errno from saved_errno,
2181 so the error message comes from socket_status.
2182
0734b0d0
SM
21832004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
2184
2185 * emacsclient.c (main): Stop if socket name too long.
2186 Only try su-fallback if the socket name was not explicit.
2187 Check socket name length in su-fallback case as well.
2188
152b6e83
AS
21892004-01-08 Andreas Schwab <schwab@suse.de>
2190
2191 * emacsclient.c (main): Save errno from socket_status.
2192
e8228824
AS
21932004-01-04 Andreas Schwab <schwab@suse.de>
2194
2195 * emacsclient.c (main): Fix socket name when using another user.
2196
c9140662
PE
21972003-12-27 Paul Eggert <eggert@twinsun.com>
2198
2199 * rcs2log (rlog_options): Append -rbranchtag if CVS/Tag indicates
2200 a tag, and if the user has not specified an rlog option.
2201 Adapted from a suggestion by Martin Stjernholm in
2202 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2003-07/msg00066.html>.
2203 (Copyright): Update to 2003.
2204
8babaa59
TTN
22052003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
2206
2207 * make-docfile.c (main): For return code, no longer special-case VMS.
2208 Instead, use `EXIT_SUCCESS' and `EXIT_FAILURE' from stdlib.h.
2209
880820fe 22102003-09-28 Andreas Büsching <crunchy@tzi.de> (tiny change)
14ef7288
EZ
2211
2212 * emacsclient.c (quote_file_name): Print the result instead of
2213 returning it. Fix the return type accordingly.
1ae7cf5e
RS
2214 (main): With --eval, if no file name, read from stdin.
2215 Quote file names.
14ef7288 2216
f387bdea
RS
22172003-09-10 Richard M. Stallman <rms@gnu.org>
2218
07655e62 2219 * emacsclient.c (main): Use socket_name.
f387bdea 2220
880820fe 22212003-09-10 Andreas Büsching <crunchy@tzi.de> (tiny change)
f387bdea
RS
2222
2223 * emacsclient.c (socket_name): New variable.
2224 (longopts, decode_options, print_help_and_exit):
2225 Handle --socket-name argument.
2226
0b7e7337
FP
22272003-08-25 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2228
783bcffa 2229 * etags.c (consider_token): Check C++ `operator' only when the
0b7e7337
FP
2230 token len is long enough.
2231
ac06b30b
DL
22322003-08-20 Dave Love <fx@gnu.org>
2233
2234 * Makefile.in: Remove obsolete references to alloca.
2235
32b0a3c6
JB
22362003-07-29 Ken Brush <ken@wirex.com>
2237
2238 * emacsclient.c (main)
2239 * etags.c (suggest_asking_for_help)
2240 * movemail.c (main): Fix having macros in a printf statement.
2241
3867c42d
JB
22422003-05-31 Juanma Barranquero <lektu@terra.es>
2243
2244 * makefile.w32-in (lisp): Fix references to byte-run.el,
2245 float-sup.el and map-ynp.el, which are now in emacs-lisp.
2246
7933722a
DL
22472003-05-22 Dave Love <fx@gnu.org>
2248
2249 * update-game-score.c (difftime) [!HAVE_DIFFTIME]: Define.
2250 (strerror) [!HAVE_STRERROR && !WINDOWSNT]: New.
2251
463f55ee
DL
22522003-05-20 Dave Love <fx@gnu.org>
2253
2254 * movemail.c: Check HAVE_LIBLOCKFILE like HAVE_LIBMAIL.
2255
2256 * Makefile.in [HAVE_LIBLOCKFILE]: Define LIBS_MAIL=-llockfile.
2257
1b7a835b
JB
22582003-04-27 Oliver Scholz <alkibiades@gmx.de>
2259
0e0dced5 2260 * update-game-score.c (read_scores): Fix corruption of scores on read.
1b7a835b 2261
eec54bd7
SM
22622003-04-12 Stefan Monnier <monnier@cs.yale.edu>
2263
2264 * emacsclient.c (main): Use new safe location for socket.
2265
ff4bd681
JB
22662003-03-12 Tom Tromey <tromey@redhat.com>
2267
eec54bd7
SM
2268 * emacsclient.c (print_help_and_exit): Print to stdout.
2269 Exit successfully. Added some blank lines for readability.
ff4bd681
JB
2270 (decode_options): Don't call print_help_and_exit in default case.
2271 Print version information to stdout.
2272 (main): Don't call print_help_and_exit.
2273
dd132e44
RS
22742003-02-15 Richard M. Stallman <rms@gnu.org>
2275
2276 * cvtmail.c: Cast result of malloc and realloc.
10d1d0af 2277 Don't include stdlib.h, because config.h does.
dd132e44 2278 (malloc, realloc): Declarations deleted.
ff4bd681 2279
dd132e44
RS
2280 * yow.c (yow): Cast result of malloc and realloc.
2281 (malloc, realloc): Declarations deleted.
2282
71ffc53a
JB
22832003-02-11 Juanma Barranquero <lektu@terra.es>
2284
2285 * makefile.w32-in (lisp): Add malayalam.el and tamil.el.
2286
0dfd93c0
AS
22872003-02-08 Andreas Schwab <schwab@suse.de>
2288
2289 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
2290 instead of the substitution.
2291
37d1e680
RS
22922003-02-04 Richard M. Stallman <rms@gnu.org>
2293
2294 * update-game-score.c (push_score, read_scores): Cast values
2295 of malloc and realloc.
2296 (main, lock_file): Avoid assignment inside if.
2297
c60ee5e7
JB
22982003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
2299
2300 * Makefile.in: Use @EXEEXT@ for Cygwin.
2301
b24e2dc7
DL
23022003-01-21 Dave Love <fx@gnu.org>
2303
2304 * etags.c (Cplusplus_help, Cjava_help): Re-phrase and avoid
2305 column-0 `('.
2306
2307 * yow.c: Don't include string.h.
2308
675d000f
RS
23092003-01-20 Richard M. Stallman <rms@gnu.org>
2310
2311 * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
2312 New targets.
2313
207aa3ff
KS
23142003-01-06 Kim F. Storm <storm@cua.dk>
2315
31fa6595 2316 * pop.c (__P): Rename from _P to avoid problems on Cygwin.
207aa3ff
KS
2317 All uses changed.
2318
cf6d30d7
AI
23192002-12-18 Andrew Innes <andrewi@gnu.org>
2320
2321 * makefile.w32-in ($(DOC)): Use -o and -a options to make-docfile,
2322 because GNU make doesn't append when using >> redirection.
2323
f0131492 23242002-12-12 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
649fc2c5
PJ
2325
2326 * b2m.pl: Make sure every message ends with a blank line, because
2327 some mbox parsers require a blank line before "From " lines.
2328
85cce843
RS
23292002-12-08 Richard M. Stallman <rms@gnu.org>
2330
2331 * getopt.c: Do include libintl.h if HAVE_LIBINTL_H.
2332 (_): Test only HAVE_LIBINTL_H to decide what to do.
2333
2ccc4d34
RS
23342002-12-05 Richard M. Stallman <rms@gnu.org>
2335
2336 * getopt.c: Comment out include of libintl.h or gettext.h.
2337
c5992177
RS
23382002-12-04 Richard M. Stallman <rms@gnu.org>
2339
2340 * Update getopt from gnulib version; changes described below.
2341
2342 * getopt1.c: Conditionally find getopt.h.
2343 [_LIBC] (getopt_long, getopt_long_only): Do libc_hidden_def.
2344
2345 * getopt.c (const): Move outside !HAVE_CONFIG_H conditional.
2346 (libintl.h): Include this if _LIBC. Otherwise include gettext.h.
c60ee5e7 2347 (wchar.h): Include, maybe.
10d1d0af 2348 (attribute_hidden): Define if not defined.
c5992177 2349 (__getopt_initialized): Use attribute_hidden.
b166dcd8 2350 (__libc_argc, __libc_argv): Rename from original_argc, etc.
d7982012
JB
2351 (__getopt_nonoption_flags, nonoption_flags_max_len)
2352 (nonoption_flags_len): Conditional on USE_NONOPTION_FLAGS.
c5992177
RS
2353 (SWAP_FLAGS): New definitions.
2354 (exchange): Test USE_NONOPTION_FLAGS.
2355 (_getopt_initialize): Test USE_NONOPTION_FLAGS.
2356 (_getopt_internal): Error if argc < 1. New local var print_errors.
2357 Improve test for ambiguous long option.
2358 Add LIBIO support for error message output.
2359 (NONOPTION_P): Test USE_NONOPTION_FLAGS.
2360
2361 * getopt.h: Maybe include ctype.h.
2362 Treat __cplusplus like __STDC__.
2363 (decls): Use __ in arg names.
2364
4b5e69bd
SE
23652002-12-02 Stephen Eglen <stephen@gnu.org>
2366
2367 * emacsclient.c (main): Tell user how to start server within Emacs
2368 if socket could not be found.
2369
19fa03f3
RS
23702002-12-02 Richard M. Stallman <rms@gnu.org>
2371
2372 * emacsclient.c (main): Test HAVE_GETCWD rather than BSD_SYSTEM.
2373
7be215b4
JB
23742002-11-19 Ben Key <bkey1@tampabay.rr.com>
2375
29f538e6
BK
2376 * makefile.w32-in: Fixed a bug that caused the documentation for
2377 the built in function play-sound-internal not to be included in
2378 /etc/DOC.
7be215b4 2379
1998560a
DL
23802002-11-18 Dave Love <fx@gnu.org>
2381
2382 * update-game-score.c: Include unistd.h, string.h, stdlib.h,
2383 fcntl.h, stdarg.h conditionally.
2384 (_GNU_SOURCE, __attribute__): Don't define.
2385 (optarg, optind, opterr): Declare.
2386 (lose, lose_syserr): Use NO_RETURN.
2387 (get_user_id): Use P_.
2388
8b96caf3
RS
23892002-11-17 Richard M. Stallman <rms@gnu.org>
2390
2391 * Makefile.in (${archlibdir}): Ignore errors operating on $(gamedir).
2392
59daa29a
DL
23932002-11-14 Dave Love <fx@gnu.org>
2394
2395 * movemail.c (pop_retr): Declare comment.
2396
2397 * make-docfile.c (read_c_string_or_comment): Declare msgno.
9a007cb7
DL
2398
2399 * Makefile.in (YACC): Deleted.
2400
f1b443bf
AS
24012002-10-19 Andreas Schwab <schwab@suse.de>
2402
2403 * Makefile.in (${archlibdir}): Always create $(gamedir).
2404 (update-game-score): Pass $(gamedir) as HAVE_SHARED_GAME_DIR.
2405
52402e4f
JB
24062002-10-04 Juanma Barranquero <lektu@terra.es>
2407
2408 * makefile.w32-in (lisp): Load devanagari.el, not .elc.
2409
15dab115
MR
24102002-09-30 Markus Rost <rost@math.ohio-state.edu>
2411
2412 * emacsclient.c (main): Remove reference to SERVER_HOME_DIR
2413 completely.
2414
30be2360
SM
24152002-09-27 Stefan Monnier <monnier@cs.yale.edu>
2416
2417 * emacsclient.c: Remove SYSV support.
2418 (eval, display): New vars.
2419 (longopts): Add --eval and --display.
2420 (decode_options): Add -e and -d processing.
2421 (print_help_and_exit): Update the usage string.
2422 (main): Add support for --eval and --display.
3ecdcd59 2423 (main): Always use /tmp and non-qualified hostname.
30be2360 2424
4208da83
SM
24252002-09-25 Stefan Monnier <monnier@cs.yale.edu>
2426
2427 * emacsserver.c: Remove.
2428
3cf8c6aa
SM
24292002-09-17 Stefan Monnier <monnier@cs.yale.edu>
2430
2431 * emacsclient.c (quote_file_name): Quote \n.
2432 (main): Print a final \n when needed.
2433
880820fe 24342002-09-03 Francesco Potortì <pot@gnu.org>
4c6dce51
FP
2435
2436 * etags.c (regex_tag_multiline, readline): Never pass pfnote a
2437 string that cannot be freed.
2438
880820fe 24392002-08-30 Francesco Potortì <pot@gnu.org>
ba88f8eb
FP
2440
2441 * etags.c (consider_token, C_entries): Switch to C++ parsing when
2442 auto-detection is enabled and the `::' qualifier is met.
2443 (consider_token, C_entries): Several bugs corrected that tagged
2444 some declarations even though --declarations was not used.
2445 (plainc): New macro.
2446 (C_entries): Use it.
2447 (C_entries): Several cosmetic changes.
2448 (C_entries): Invalidate the token is some cases.
2449
880820fe 24502002-08-29 Francesco Potortì <pot@gnu.org>
09cd1a74 2451
eec54bd7 2452 * etags.c (C_entries): Correct a problem with const C++ funcs.
b166dcd8 2453 (ignoreindent): Rename from noindentypedefs.
09cd1a74
FP
2454 (cjava, cplpl): They are now macros instead of local vars.
2455
880820fe 24562002-08-28 Francesco Potortì <pot@gnu.org>
09cd1a74
FP
2457
2458 * etags.c (HTML_labels): Tag ID= also.
2459
880820fe 24602002-08-27 Francesco Potortì <pot@gnu.org>
87046df8
FP
2461
2462 * etags.c (Ada_funcs): Do not tag "use type Xxxx;".
2463
ecc54057 2464 * etags.c (HTML_labels): New language HTML.
8ee14629
FP
2465 (etags_strcasecmp): Like BSD's, for compatibility.
2466 (strcaseeq): Make it into a macro.
2467
2468 * etags.c (make_tag): Never generate null length tag names.
b166dcd8 2469 (linebuffer_init): Rename from initbuffer. All callers changed.
87046df8
FP
2470 (pattern): Structure renamed to `regexp', member regex renamed to
2471 pattern.
2472 (node_st): Member pat renamed to regex.
eec54bd7
SM
2473 (pattern); New member force_explicit_name, for future use.
2474 Now always set to true, cannot be reset.
87046df8
FP
2475 (add_regex, regex_tag_multiline, readline): Use it.
2476 (main): Free some global structures.
8ee14629 2477 (fdesc): New member `written'.
87046df8
FP
2478 (readline, process_file): Initialise it.
2479 (put_entries): Set it.
2480 (main): Use it to create entries for files without tags.
2481 (total_size_of_entries): Do not count invalid tags.
87046df8 2482
02ce3e80
SM
24832002-08-19 Stefan Monnier <monnier@cs.yale.edu>
2484
2485 * make-docfile.c (scan_keyword_or_put_char, write_c_args): Use `fn'
2486 for the function name in the usage info.
2487
5fba5c21
CW
24882002-07-31 Colin Walters <walters@gnu.org>
2489
2490 * update-game-score.c (P_): New macro. Use it for all prototypes.
2491 (lose): Don't use varargs.
2492 (lose_syserr): New function.
2493
2494 * update-game-score.c: Change all functions to K&R style.
2495
712eaee0
AS
24962002-07-30 Andreas Schwab <schwab@suse.de>
2497
2498 * Makefile.in (localstatedir): New variable.
2499
f0131492 25002002-07-29 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
c89ed6ef
PJ
2501
2502 * b2m.pl: Fix regexp for finding return address fields.
2503
1e042160
SM
25042002-07-15 Stefan Monnier <monnier@cs.yale.edu>
2505
2506 * make-docfile.c (scan_c_file): Warn about missing `usage' info.
2507
f0131492 25082002-07-05 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
e9b60209 2509
02ce3e80 2510 * b2m.pl: Obey the rmail file and use the unpruned header properly.
e9b60209 2511
880820fe 25122002-06-26 Pavel Janík <Pavel@Janik.cz>
9ee028d2
PJ
2513
2514 * b2m.pl: New file.
2515
880820fe 25162002-06-21 Francesco Potortì <pot@gnu.org>
e1af8d40 2517
ecc54057 2518 * etags.c (F_getit, Fortran_functions, Ada_getit, Asm_labels)
e1af8d40
FP
2519 (Python_functions, PHP_functions, PHP_functions, PHP_functions)
2520 (PHP_functions, PHP_functions, Cobol_paragraphs)
2521 (Makefile_targets, Postscript_functions, Texinfo_nodes)
2522 (prolog_pr, erlang_func, erlang_attribute)
2523 (Perl_functions, Perl_functions, Pascal_functions)
2524 (TeX_commands, get_tag): Use make_tag instead of pfnote.
2525 (get_tag): Prototype changed, all callers changed.
2526
880820fe 25272002-06-20 Francesco Potortì <pot@gnu.org>
ceaeb365 2528
d76132d0
FP
2529 * etags.c: Implement implicit tag names, that is, unnamed tags
2530 whose name is automatically deduced by etags.el. The advantage is
2531 that there is no explicit tag name in most tags, so the size of
2532 the tags file is reduced, yet find-tag is able to do a match as
eec54bd7 2533 accurate as with named tags. See the comment in make_tag for details.
ceaeb365
FP
2534 (make_tag): New function (was the disabled function new_pfnote).
2535 (make_C_tag): Use it.
2536
880820fe 25372002-06-19 Francesco Potortì <pot@gnu.org>
f175bfff
FP
2538
2539 * etags.c (add_regex): Invalid regexp modifiers are ignored.
2540 (Makefile_targets): Tag variables unless --no-globals.
2541 (LOOP_ON_INPUT_LINES): Serious bug corrected.
2542
880820fe 25432002-06-13 Francesco Potortì <pot@gnu.org>
82ef78b3
FP
2544
2545 * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
2546 (invalidate_nodes): Bug corrected.
2547 (print_help): Better help for regexps.
2548
7a8940da
JB
25492002-06-13 Juanma Barranquero <lektu@terra.es>
2550
2551 * makefile.w32-in (lisp): Add international/ucs-tables.elc and
2552 font-core.elc.
2553
880820fe 25542002-06-12 Francesco Potortì <pot@gnu.org>
6861f0e3
FP
2555
2556 * etags.c: New multi-line regexp and new regexp syntax.
2557 (arg_type): at_icregexp label removed (obsolete).
2558 (pattern): New member multi_line for multi-line regexps.
2559 (filebuf): A global buffer containing the whole file as a string
2560 for multi-line regexp matching.
2561 (need_filebuf): Global flag raised if multi-line regexps used.
2562 (print_help): Document new regexp modifiers, remove references to
2563 obsolete option --ignore-case-regexp.
2564 (main): Do not set regexp syntax and translation table here.
2565 (main): Treat -c option as a backward compatibility hack.
2566 (main, find_entries): Init and free filebuf.
2567 (find_entries): Call regex_tag_multiline after the regular parser.
10d1d0af 2568 (scan_separators): Check for unterminated regexp and return NULL.
6861f0e3
FP
2569 (analyse_regex, add_regex): Remove the ignore_case argument, which
2570 is now a modifier to the regexp. All callers changed.
2571 (add_regex): Manage the regexp modifiers.
2572 (regex_tag_multiline): New function. Reads from filebuf.
2573 (readline_internal): If necessary, copy the whole file into filebuf.
2574 (readline): Skip multi-line regexps, leave them to regex_tag_multiline.
2575
880820fe 25762002-06-11 Francesco Potortì <pot@gnu.org>
6861f0e3
FP
2577
2578 * etags.c (add_regex): Better check for null regexps.
2579 (readline): Check for regex matching null string.
6772c8e1 2580 (find_entries): Reorganization.
6861f0e3 2581
880820fe 25822002-06-07 Francesco Potortì <pot@gnu.org>
f0da41a6
FP
2583
2584 * etags.c (scan_separators): Support all character escape
2585 sequences supported by Gcc.
02ce3e80 2586 (find_entries): Rewind unconditionally.
f0da41a6
FP
2587 (find_entries): Do not call language functions directly, now calls
2588 itself.
2589 (find_entries): Do general initialisations here.
2590 (CNL_SAVE_DEFINEDEF, C_entries, LOOP_ON_INPUT_LINES, F_getit)
2591 (Ada_getit, Pascal_functions, Pascal_functions)
2592 (prolog_skip_comment): Do not do them here.
2593 (readline_internal): Increment lineno here.
2594 (readline): Conditionally undo readline_internal increment.
2595 (readline): Do not return a value.
2596
880820fe 25972002-06-06 Francesco Potortì <pot@gnu.org>
5526f1f6 2598
88c71720 2599 * etags.c: New option --parse-stdin=FILE.
97b90b0a
FP
2600 (enum arg_type): New label at_stdin.
2601 (STDIN): New constant.
2602 (parsing_stdin): New flag.
2603 (longopts): New option --parse-stdin=NAME.
2604 (print_help): Document it.
2605 (main): Handle it.
2606 (process_file): Split into process_file and process_file_name.
2607 (process_file_name): New function.
2608
88c71720 2609 * etags.c: Improvements and bug squashing in TeX handling.
97b90b0a 2610 (TeX_commands): Skip comments.
10d1d0af 2611 (TEX_defenv): Now contains more constructs.
5526f1f6
FP
2612 (TEX_cmt): Make it a static char and move it before TeX_commands.
2613 (TeX_commands): Shorten the tag to the brace after the name.
2614 (TeX_commands): Names now include the initial backslash.
2615 (TeX_commands): Names do not include numeric args #n.
2616 (TeX_commands): Correct line char number in tags.
2617 (TEX_tabent, TEX_token): Deleted.
2618 (TeX_commands, TEX_decode_env): Streamlined.
2619
880820fe 26202002-06-05 Francesco Potortì <pot@gnu.org>
50496bd9
FP
2621
2622 * etags.c (main): Avoid a buffer overrun with sprintf.
2623
a71867c5
RS
26242002-05-30 Richard M. Stallman <rms@gnu.org>
2625
b166dcd8
KC
2626 * Makefile.in (LIBS_MAIL): Rename from LIB_MAIL.
2627 (LIBS_MOVE): Rename from MOVE_LIBS.
a71867c5 2628
b7e67db6
PE
26292002-05-26 Paul Eggert <eggert@twinsun.com>
2630
2631 Reinstate the following change from 2002-03-22, which was
2632 inadvertently lost on 2002-04-13.
2633
2634 * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
2635 `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
2636 the latter usage.
2637
5f226e2c
EZ
26382002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
2639
2640 * pop.c (socket_connection): Move the code to resolve the POP
2641 host right before trying to connect with it.
2642
9021bb49
GM
26432002-05-05 Eli Zaretskii <eliz@is.elta.co.il>
2644
2645 * tcp.c: Delete file since the TCP emulation is no longer in use on any
2646 platform.
2647
5167cfda
CW
26482002-04-28 Colin Walters <walters@verbum.org>
2649
2650 * Makefile.in (${archlibdir}): Don't conditionalize on
2651 HAVE_SHARED_GAME_DIR. Instead, test at installation time whether
2652 or not we have access to the specified game user.
50496bd9 2653
5167cfda
CW
2654 * update-game-score.c (SCORE_FILE_PREFIX): Delete.
2655 (main): New argument -d, for specifying directory.
2656 (usage): Document.
02ce3e80 2657 (get_user_id): Compute.
5167cfda
CW
2658 (get_home_dir): Deleted.
2659 (get_prefix): New function, taken from main.
2660 (main): Check whether or not we are running setuid. Move prefix
2661 computation to get_prefix. Don't call getpwent; we don't need to
2662 any more. Instead, move it to get_user_id().
2663
880820fe 26642002-04-24 Pavel Janík <Pavel@Janik.cz>
beedfcf1
PJ
2665
2666 * ebrowse.c (skip_initializer): Return void.
2667
973c3c87
CW
26682002-04-23 Colin Walters <walters@verbum.org>
2669
2670 * update-game-score.c (read_score) [HAVE_GETDELIM]: Trim trailing
2671 space.
2672
880820fe 26732002-04-22 Francesco Potortì <pot@gnu.org>
8378bcd3 2674
ecc54057 2675 * etags.c (last_node): Make it a global variable.
8378bcd3
FP
2676 (process_file): Print the tags from the nodes as soon as
2677 possible, and delete the nodes. This brings down the memory
2678 occupancy as etags to almost the same level as when the #line
2679 directives were not parsed.
2680 (free_fdesc): New function.
2681 (find_entries): Use it.
2682 (invalidate_nodes): In etags mode, do not just mark the nodes as
2683 invalid, do delete them.
2684
c901ceff
GM
26852002-04-21 Gerd Moellmann <gerd@gnu.org>
2686
2687 * ebrowse.c (add_declarator): Test *CLS instead of CLS.
2688
c42d6dbd
EZ
26892002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
2690
2691 * update-game-score.c: Move config.h before the other headers, to
2692 avoid compiler warnings.
2693
880820fe 26942002-04-16 Francesco Potortì <pot@gnu.org>
090416ca
FP
2695
2696 * etags.c (find_entries): Bug fix in list management.
2697
880820fe 26982002-04-15 Francesco Potortì <pot@gnu.org>
5dab24c1
FP
2699
2700 * etags.c (get_language_from_filename): Add one argument.
2701 (strcaseeq): New function.
10d1d0af 2702 (get_language_from_filename): Use it to do a case insensitive
5dab24c1
FP
2703 comparison if called with appropriate args.
2704 (find_entries): Try with case insensitive match.
2705 (process_file): Bug fixed.
2706
880820fe 27072002-04-13 Francesco Potortì <pot@gnu.org>
c150db23
FP
2708
2709 * etags.c (find_entries): Delete tags previously obtained from
2710 file xxx.c's #line directives when parsing file xxx.y. This is
2711 generally done for automatically generated files containing
2712 #line directives. This handles the case when xxx.y is tagged
2713 before xxx.c, and the entries of xxx.c pointing to xxx.y should
2714 be discarded.
eec54bd7 2715 (language): Add the metasource member. Initializers changed.
c150db23
FP
2716 (invalidate_nodes): New function.
2717 (readline): Discard lines after having found a #line
02ce3e80 2718 directive pointing to an already tagged file. This handles the
c150db23
FP
2719 case when xxx.y is tagged before xxx.c, and the entries of
2720 xxx.c pointing to xxx.y should be discarded.
2721 (fdesc): New structure for keeping track of input files.
2722 (fdesc): Remove `file' member (a string) and use instead a pointer
2723 to a file description structure.
02ce3e80
SM
2724 (curfile, curfiledir, curtagfname, curlang, nocharno)
2725 (forced_lang): Global variables removed in favor of fdhead and
10d1d0af 2726 curfdp, pointers to file description structures.
c150db23
FP
2727 (longopts, main, print_help): Use the CTAGS conditional to include
2728 or exclude options that work on etags or ctags only.
02ce3e80
SM
2729 (process_file, find_entries, pfnote, add_node, put_entries)
2730 (readline): Use fdhead and curfdp.
c150db23
FP
2731 (process_file, find_entries): Do not take an arg string, all
2732 callers changed.
2733
2734 * etags.c (longopts, print_help, main): Test CTAGS to disallow
2735 options that are not right for either etags or ctags.
2736
2737 * etags.c (number_len, total_size_of_entries): Define them also
2738 in CTAGS mode, because gcc does not compile all refs away.
2739
e9d1f248
CW
27402002-04-14 Colin Walters <walters@debian.org>
2741
2742 * update-game-score.c (lock_file): If the lock file is older than
2743 an hour, delete it. Reset attempts to zero if we have to break
2744 the lock.
2745
7605f1bd
AS
27462002-04-14 Andreas Schwab <schwab@suse.de>
2747
2748 * update-game-score.c (read_score): Fix type of second parameter
2749 of getdelim to be of type size_t instead of int. Use 0 instead of
2750 ESUCCES.
2751
e82defd1
CW
27522002-04-10 Colin Walters <walters@verbum.org>
2753
ecc54057 2754 * update-game-score.c (toplevel): Include stdarg.h.
b9b966e0
CW
2755 (MAX_DATA_LEN, MAX_SCORES): New.
2756 (SCORE_FILE_PREFIX): If HAVE_SHARED_GAME_DIR is not defined,
2757 default to ~/.emacs.d/games.
2758 (get_user_id): Don't zero uid in the case where we can't get the
2759 username.
2760 (lose): New function.
2761 (main): Actually use `max', and default it to MAX_SCORES.
2762 Correctly handle new default for SCORE_FILE_PREFIX. Use `lose'
2763 function.
2764 (read_score): Handle the case of reading unamelen characters, then
2765 finishing. Use mktemp if mkstemp isn't available.
2766 (lock_file, unlock_file): Delete unused versions.
2767 (lock_file): Always sleep, even if we unlinked the lock file.
2768
e82defd1
CW
2769 * Makefile.in (gamedir, gameuser): New variables.
2770 (toplevel, UTILITIES): Add update-game-score.
2771 (${archlibdir}): Handle HAVE_SHARED_GAME_DIR.
2772
5795b420
CW
27732002-04-07 Colin Walters <walters@verbum.org>
2774
2775 * update-game-score.c (SCORE_FILE_PREFIX): Don't hardcode.
2776 (get_user_id): Take struct passwd as an argument.
2777 (get_home_dir): New function.
2778 (main): Read in user information here. Discover home directory if
2779 necessary.
2780 (read_score): Trim newline only in `getline' case.
2781
cd553ffb 27822002-04-05 Colin Walters <walters@debian.org>
c150db23 2783
cd553ffb
CW
2784 * update-game-score.c (toplevel): Include pwd.h.
2785 (struct score_entry): Add username field.
2786 (push_score): Use it.
2787 (get_user_id): New function.
2788 (main): Don't malloc excessively.
2789 (main): Use username field.
2790 (read_score): Read it.
2791 (push_score): Handle it.
07655e62 2792 (write_scores): Write it.
c150db23
FP
2793 (read_score): Handle arbitrary length data.
2794
b74bd4a3
EZ
27952002-03-30 Eli Zaretskii <eliz@is.elta.co.il>
2796
2797 * ebrowse.c (add_declarator): Fix the first call to add_member_defn.
2798
fa8bc89d
GM
27992002-03-29 Gerd Moellmann <gerd@gnu.org>
2800
2801 * ebrowse.c (add_declarator, skip_initializer): New functions.
2802 (declaration): Use them.
2803
dd87b4cc
JR
28042002-03-28 Jason Rumney <jasonr@gnu.org>
2805
2806 * makefile.w32-in (lisp): Move backquote.elc into emacs-lisp.
2807
cd553ffb
CW
28082002-03-27 Colin Walters <walters@debian.org>
2809
2810 * update-game-score.c: New file.
2811
dfef6d49
PE
28122002-03-22 Paul Eggert <eggert@twinsun.com>
2813
2814 * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
2815 `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
2816 the latter usage.
2817
880820fe 28182002-03-12 Francesco Potortì <pot@gnu.org>
a13d6523 2819
4fff90e4 2820 * etags.c (Python_functions): Skip spaces at beginning of lines.
a13d6523
FP
2821 (Python_functions, PHP_functions): Name tags, for ctags' sake.
2822 (TeX_commands): Name tags. Correction of old disabled code.
2823
2824 * etags.c (curfiledir, curtagfname): New global variables.
2825 (process_file): Initialise them.
2826 (readline): Canonicalize the name found in #line directive.
893a741e 2827
4fff90e4 28282002-03-06 Jason Rumney <jasonr@gnu.org>
ca55a1e3 2829
893a741e
JR
2830 * etags.c (put_entries): Use #if !CTAGS, to fix link error on
2831 compilers that don't optimize out dead code.
2832
880820fe 28332002-03-05 Francesco Potortì <pot@gnu.org>
51aeded3
FP
2834
2835 * etags.c: Honour #line directives.
a7c29764 2836 (no_line_directive): New global var; set it for old behavior.
51aeded3
FP
2837 (main): Remove some #ifdef in the getopt switch.
2838 (add_node, put_entries): Code added to merge different chunks of
2839 nodes referring to the same file. Currently the tags are just
2840 appended, without any check for duplicates.
2841 (Perl_functions): Do not special case ctags.
2842 (readline): Identify #line directives and do the right thing.
2843 (nocharno, invalidcharno): New global vars.
2844 (process_file): Reset nocharno.
2845 (readline): Set nocharno.
2846 (pfnote): Read nocharno and maybe put invalidcharno in node.
2847 (total_size_of_entries, put_entries): Use invalidcharno.
2848
2849 * etags.c: Keep the whole tag table in memory, even in etags mode.
2850 (main): Call put_entries here even in CTAGS mode.
2851 (main, process_file): Check the return values of fclose and pclose.
2852 (process_file): Do not call put_entries after parsing each file.
2853 (process_file): Canonicalise file names even for ctags.
2854 (process_file): Set curfile here...
2855 (find_entries): ... not here any more.
2856 (add_node): In etags mode, build a linked list of entries (on
2857 right pointer) for each file, and link the first entry of each
2858 file on left nodes.
2859 (put_entries): Print here the name of the file.
2860 (put_entries): Print the entries starting from the first file.
c150db23 2861 (number_len, total_size_of_entries): Define these only in etags
51aeded3
FP
2862 mode, make the second work only on the right nodes.
2863
2864 * etags.c: Make all global variables static.
2865
50ce1f62
JB
28662002-02-25 Juanma Barranquero <lektu@terra.es>
2867
2868 * makefile.w32-in (lisp): Add missing backslash.
2869
82a399d2
JR
28702002-02-24 Jason Rumney <jasonr@gnu.org>
2871
2872 * makefile.w32-in (WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to
2873 using .elc files.
c4cc8b9a 2874 (lisp): Sync with list in src/Makefile.in.
82a399d2
JR
2875 (VMS_SUPPORT, MSDOS_SUPPORT): Define, so DOC files can be shared.
2876
a279c920
PE
28772002-02-10 Paul Eggert <eggert@twinsun.com>
2878
2879 * rcs-checkin: Use `sort -k 2', not `sort +1', as POSIX 1003.1-2001
2880 disallows the old syntax.
2881
0caa685d
PE
28822002-02-03 Paul Eggert <eggert@twinsun.com>
2883
d7982012 2884 * rcs2log (Copyright): Update to 2002.
0caa685d
PE
2885 (AWK, TMPDIR): Work around portability problem in broken shells that
2886 don't understand `: ${VAR=val}'.
2887 (SORT_K_OPTIONS): New var, for hosts that conform to POSIX 1003.1-2001.
2888 Prefer the new -k option to the traditional +M -N option.
2889
880820fe 28902002-01-01 Pavel Janík <Pavel@Janik.cz>
03950b5b
PJ
2891
2892 * b2m.c (main): Parenthesize assignment when used as truth value
2893 to prevent gcc warnings.
2894
2895 * fakemail.c: Include <config.h>.
2896
880820fe 28972001-12-29 Pavel Janík <Pavel@Janik.cz>
2f8fe2f4
PJ
2898
2899 * cvtmail.c, emacsclient.c, emacsserver.c, pop.c, sorted-doc.c,
2900 * yow.c: Include <config.h>.
2901
880820fe 29022001-12-21 Francesco Potortì <pot@gnu.org>
a60e4de9
FP
2903
2904 * etags.c (Perl_functions): Tag packages and use them in sub tags.
2905 (get_tag): Return a pointer to the tag that is found.
2906
2907 * etags.c (LOOKING_AT): Use !intoken instead of iswhite.
b166dcd8
KC
2908 (F_takeprec): Rename from takeprec. All callers changed.
2909 (F_getit): Rename from getit. All callers changed.
2910 (nocase_tail): Rename from tail. All callers changed.
2911 (Ada_getit): Rename from adagetit. All callers changed.
eec54bd7 2912 (L_getit): Simplify by using get_tag.
a60e4de9
FP
2913 (Perl_functions, Postscript_functions, erlang_attribute): Use the
2914 modified LOOKING_AT.
b166dcd8 2915 (notinname): Remove '[' and added ')' to the recognised chars.
a60e4de9
FP
2916 (LOOKING_AT, get_tag, PHP_functions): Use notinname.
2917 (Ada_getit, Ada_funcs, Python_functions, Scheme_functions):
2918 Clarified, using strneq or notinname.
2919 (L_isdef, L_isquote): Removed.
2920 (Lisp_functions, L_getit): Clarified.
2921
b166dcd8 2922 * etags.c (P_): Rename to __P for consistency with config.h.
a60e4de9
FP
2923 [HAVE_CONFIG_H]: Let config.h deal with __P.
2924 [__STDC__] [!HAVE_CONFIG_H]: Define PTR as in config.h.
2925 [!__STDC__] [!HAVE_CONFIG_H]: Do not undefine static, because
2926 gperf code needs it.
ecc54057
JB
2927 [HAVE_CONFIG_H] [!PTR]: Define PTR (for use with XEmacs).
2928 [HAVE_CONFIG_H] [!__P]: Define __P (for use with XEmacs).
a60e4de9
FP
2929 (xmalloc, xrealloc): Use PTR instead of long *.
2930 (bool): Make it a define, not a typedef, for C++ compilers.
2931 (pattern): Members renamed to avoid name clash in some C++ compilers.
2932 (get_language_from_langname): Use const argument.
2933
880820fe 29342001-12-22 Pavel Janík <Pavel@Janik.cz>
c95eaa61
PJ
2935
2936 * makefile.nt, makefile.w32-in: Remove mocklisp files.
2937
880820fe 29382001-12-19 Pavel Janík <Pavel@Janik.cz>
69bfc389 2939
b8509940
PJ
2940 * emacsserver.c: Conditionally include config.h.
2941
594aa066
PJ
2942 * fakemail.c: Likewise.
2943
e69233c2
PJ
2944 * emacsclient.c: Include "config.h", not <../src/config.h>.
2945 (main): Parenthesize assignment when used as truth value to
2946 prevent gcc warnings.
2947
69bfc389
PJ
2948 * ebrowse.c: Include stdlib.h and string.h conditionally.
2949
e4e34e31
EZ
29502001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
2951
2952 * yow.c (main): Use time_t, not long, to avoid a compiler warning.
2953
880820fe 29542001-12-18 Pavel Janík <Pavel@Janik.cz>
ffb7c9c6
PJ
2955
2956 * test-distrib.c: Fix previous change.
2957
fb5aa7ac
DL
29582001-12-18 Dave Love <fx@gnu.org>
2959
2960 * test-distrib.c: Conditionally include fcntl.h.
2961
2962 * fakemail.c: Include "config.h", not <../src/config.h>.
2963 (_XOPEN_SOURCE): Define as 500.
2964
2965 * emacsserver.c: Include "config.h", not <../src/config.h>.
2966
2967 * cvtmail.c: Include config.h, stdlib.h.
2968 (xmalloc, xrealloc, skip_to_lf sysfail): Prototype.
2969
2970 * yow.c: Conditionally include various headers. Use "epaths.h",
2971 not <../src/epaths.h>.
2972 (malloc, realloc) [!HAVE_STDLIB_H]: Prototype.
2973
880820fe 29742001-12-12 Francesco Potortì <pot@gnu.org>
e94a3679 2975
13dc0576 2976 * etags.c (PHP_functions): New function for parsing PHP.
e94a3679
FP
2977 (LOOKING_AT): New macro.
2978 (Perl_functions, Python_functions, PHP_functions)
2979 (Scheme_functions, Texinfo_nodes): Use it.
2980 (Perl_functions): Use strneq.
b166dcd8 2981 (prolog_pred): Rename to prolog_pr.
13dc0576 2982 (prolog_pr): Recognise Prolog rules in addition to predicates.
e94a3679 2983 [ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent
13dc0576 2984 unmodified compile, as Cygwin's regex.h is incompatible with us.
e94a3679
FP
2985 [!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string.
2986
34e39c95
RS
29872001-12-11 Richard M. Stallman <rms@gnu.org>
2988
2989 * Makefile.in (clean): Don't delete ../etc/DOC*.
2990
880820fe 29912001-12-11 Pavel Janík <Pavel@Janik.cz>
296071e7
PJ
2992
2993 * COPYING: Moved back.
2994
76054cc8
AI
29952001-11-30 Andrew Innes <andrewi@gnu.org>
2996
e94a3679
FP
2997 * makefile.w32-in (FACE_SUPPORT):
2998 (MOUSE_SUPPORT):
2999 (FLOAT_SUPPORT):
3000 (WINNT_SUPPORT):
76054cc8
AI
3001 (lisp): Reference .el files instead of .elc files, to simplify
3002 bootstrapping.
3003 ($(DOC)): Change dependency to just `make-docfile'.
3004
880820fe 30052001-11-29 Pavel Janík <Pavel@Janik.cz>
0142178a
PJ
3006
3007 * COPYING: Removed.
3008
e8d6a09b
PE
30092001-11-28 Paul Eggert <eggert@twinsun.com>
3010
3011 * rcs2log (Copyright): Add '(C)' as per coding guidelines.
3012
3013 The following changes are derived from suggestions by Bob Chapman
3014 <rechapman@compuserve.com>.
3015
3016 * rcs2log (printlogline): Also allow tab and newline to separate
3017 '(function):' from the rest of a comment.
3018 (reformat the sorted log entries): Require date and author to
3019 match the clumpname.
3020
9a190096
GM
30212001-11-16 Gerd Moellmann <gerd@gnu.org>
3022
3023 * ebrowse.c (matching_regexp): Escape '\\'.
3024
880820fe 30252001-11-15 Pavel Janík <Pavel@Janik.cz>
8ec1b917
PJ
3026
3027 * Makefile.in: Add support for --program-prefix, --program-suffix
3028 and --program-transform-name options.
3029
6d8f7d5d
RS
30302001-11-03 Richard M. Stallman <rms@gnu.org>
3031
3032 * cvtmail.c (xrealloc): Always pass two args to `fatal'.
3033
3034 * movemail.c (popmail): Always pass two args to `error'.
3035
84e70f78
KR
30362001-10-24 Ken Raeburn <raeburn@gnu.org>
3037
3038 * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
3039 -lhesiod and maybe -lresolv.
3040 (CRYPTOLIB) [HAVE_LIBK5CRYPTO]: Use -lk5crypto for Kerberos
3041 support if it's available.
3042
386ca361
MB
30432001-10-21 Miles Bader <miles@gnu.org>
3044
a3b10252
MB
3045 * make-docfile.c (struct rcsoc_state): New type.
3046 (read_c_string_or_comment): Add SAW_USAGE
386ca361 3047 parameter, and implement scanning for a `usage:' keyword.
a3b10252
MB
3048 Use a variable of type `rcsoc_state' to hold most of our state.
3049 (put_char): Add STATE parameter, and remove all other parameters
3050 except CH. Use STATE to get access to all needed state.
3051 (scan_keyword_or_put_char): New function.
386ca361
MB
3052 (scan_c_file): Pass SAW_USAGE argument to read_c_string_or_comment.
3053 Don't output a usage-string if there was one in the doc-string.
3054
71431a0e
GM
30552001-10-20 Gerd Moellmann <gerd@gnu.org>
3056
6aa97356 3057 * (Version 21.1 released.)
71431a0e 3058
880820fe 30592001-10-19 Pavel Janík <Pavel@Janik.cz>
37a9305e
PJ
3060
3061 * b2m.c: Properly spell the name of Emacs.
3062
945220bd
MB
30632001-10-17 Miles Bader <miles@gnu.org>
3064
3065 * make-docfile.c (put_char): New function.
3066 (read_c_string_or_comment): Strip trailing spaces and newlines.
3067
14242528
MB
30682001-10-16 Miles Bader <miles@gnu.org>
3069
3070 * make-docfile.c (scan_c_file): Handle `new style' doc strings in
3071 comments [with `doc:' keyword prefix].
3072
9f5eb4a3
GM
30732001-10-15 Gerd Moellmann <gerd@gnu.org>
3074
3075 * make-docfile.c (read_c_string_or_comment): Don't drop a '*'
3076 in a C doc comment.
3077
e641b454
GM
30782001-10-13 Gerd Moellmann <gerd@gnu.org>
3079
b166dcd8 3080 * make-docfile.c (read_c_string_or_comment): Rename from
e641b454
GM
3081 read_c_string. Add parameter COMMENT. Read C-style comments.
3082 (scan_c_file): Handle doc strings in C comments.
3083
967d7793
AI
30842001-10-12 Andrew Innes <andrewi@gnu.org>
3085
3086 * makefile.nt (ALL): Do not include fakemail.
3087
3088 * makefile.w32-in (install): Do not copy fakemail.
3089
d682756a
JR
30902001-10-10 Jason Rumney <jasonr@gnu.org>
3091
07655e62 3092 * makefile.w32-in (ALL): Do not include fakemail.
d682756a 3093
07655e62 3094 * makefile.nt (install): Ditto.
d682756a 3095
14a3dff7
GM
30962001-10-09 Gerd Moellmann <gerd@gnu.org>
3097
3098 * emacsserver.c (main): Cast geteuid in sprintf to int.
14a3dff7 3099
95bc7904 3100 * emacsclient.c (main): Cast isdigit argument to unsigned char.
14a3dff7 3101
880820fe 31022001-10-07 Pavel Janík <Pavel@Janik.cz>
f98d41f5
PJ
3103
3104 * profile.c: Include config.h, not ../src/config.h.
3105 Include systime.h, not ../src/systime.h.
3106
ab952a4f
GM
31072001-10-05 Gerd Moellmann <gerd@gnu.org>
3108
3109 * Branch for 21.1.
dff28924 3110
12c64503
GM
31112001-10-01 Alexander Zhuckov <zuav@int.spb.ru>
3112
3113 * ebrowse.c (struct alias): Add two new struct members: NAMESP and
3114 ALIASEE to help work with namespace aliases.
3115 (struct sym): Remove struct member NAMESP_ALIASES.
3116 (namespace_alias_table): New variable.
3117 (make_namespace): Add parameter CONTEXT.
3118 (check_namespace): New function.
3119 (find_namespace): Add parameter CONTEXT.
3120 (check_namespace_alias): New function.
02ce3e80
SM
3121 (register_namespace_alias): Change type of parameter OLD_NAME.
3122 Search for already defined alias in NAMESPACE_ALIAS_TABLE.
12c64503
GM
3123 (check_namespace): New function.
3124 (enter_namespace): Call find_namespace with CONTEXT parameter.
3125 (match_qualified_namespace_alias): New function.
eec54bd7 3126 (parse_qualified_ident_or_type): Fix typo in comment.
02ce3e80 3127 While parsing qualified ident or type update namespace context and
12c64503 3128 restore it on exit.
eec54bd7
SM
3129 (parse_qualified_param_ident_or_type): Fix typo in comment.
3130 (globals): Change handling of namespace aliases.
3131 (version): Add year 2001.
12c64503 3132
990e1190
FP
31332001-09-15 Eli Zaretskii <eliz@is.elta.co.il>
3134
3135 * etags.c (analyse_regex): If regex_arg is NULL, return
3136 immediately after a call to free_patterns.
3137
f2e7e23e
AS
31382001-09-05 Paul Eggert <eggert@twinsun.com>
3139
3140 * rcs2log (Help, mainline code): Add new option -L FILE.
3141 (Copyright): Update year.
02ce3e80
SM
3142 (LANG, LANGUAGE, LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES)
3143 (LC_NUMERIC, LC_TIME): New shell vars, to make sure we live in the
f2e7e23e
AS
3144 C locale.
3145 (mainline code): Handle nonstandard -u option differently, by
3146 transforming it to standard form. Check for "Working file: ", not
3147 "Working file:". Allow file names with spaces.
3148 (SOH, rlogfile): New shell vars.
dff28924 3149 (rlogout): Remove. Its old functionality is mostly migrated to
f2e7e23e
AS
3150 rlogfile.
3151
3152 Append ';;' to the last arm of every case statement, for
3153 portability to ancient broken BSD shells.
3154
02ce3e80 3155 (logins): Fix bug; was not being computed at all, lowering performance.
f2e7e23e
AS
3156 (pository): New var. This fixes some bugs where repositories are
3157 remote, or have trailing slashes.
02ce3e80 3158 (authors): $llogout is never an empty shell var, so don't worry
f2e7e23e 3159 about that possibility.
dff28924 3160 (printlogline, mainline code): Fix bug with SOH's being put into
f2e7e23e 3161 the output.
dff28924 3162
75c911eb
EZ
31632001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
3164
3165 * ebrowse.c (SEEK_END): #define if not defined by system headers.
3166 Suggested by Dave Love <d.love@dl.ac.uk>.
3167
5ae10f4a
EZ
31682001-08-29 Eli Zaretskii <eliz@is.elta.co.il>
3169
3170 * makefile.nt (lisp): Synchronize with src/Makefile.in.
3171 * makefile.w32-in (lisp): Ditto.
3172
0e4011d8 31732001-07-25 Juanma Barranquero <lektu@terra.es>
e743f599
GM
3174
3175 * grep-changelog (parse_changelog): Remove unused local variable.
3176
3177 * grep-changelog (main): Add new option --reverse.
3178 (print_log): Use it.
3179 (parse_changelog): Use it.
3180
3c88ae74
GM
31812001-07-20 Gerd Moellmann <gerd@gnu.org>
3182
3183 * grep-changelog: Remove RCS Id keyword.
3184
41848daa
GM
31852001-07-20 Juanma Barranquero <lektu@terra.es>
3186
6e07c0a5
GM
3187 * grep-changelog (parse_changelog): Add tests for defined values
3188 to quiet warning from Perl 5.005 or above.
177ab8ce 3189 (entry_match_p, header_match_p): Fix handling of null or empty
0e4011d8
GM
3190 argument to prevent duplicate headers.
3191
3192 * grep-changelog (main, parse_changelog): Make "use strict"-clean.
41848daa 3193
467f1209
GM
31942001-07-17 Jan Nieuwenhuizen <janneke@gnu.org>
3195
3196 * emacsclient.c (print_help_and_exit): Fix help message for
3197 +LINE:COLUMN option.
3198
31992000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
990e1190 3200
467f1209
GM
3201 * emacsclient.c (main): Add support for +LINE:COLUMN command line
3202 argument.
3203
bb24c64f
GM
32042001-07-16 Gerd Moellmann <gerd@gnu.org>
3205
3206 * ebrowse.c (main): Check that the output file exists and
3207 is non-empty if invoked with `--append'.
3208
880820fe 32092001-05-14 Francesco Potortì <pot@gnu.org>
fa829470 3210
e335b66a
GM
3211 * etags.c (add_regex): Reset the whole newly allocated pattern
3212 buffer instead of the individual members. It's safer and works
ecc54057 3213 with XEmacs.
fa829470 3214
e335b66a 3215 * etags.1: Markups corrected.
fa829470 3216
6da5c7da
GM
32172001-05-08 Gerd Moellmann <gerd@gnu.org>
3218
02ce3e80 3219 * ebrowse.c (enter_namespace): Fix reallocation of namespace_stack.
6da5c7da 3220
efbecf9d
GM
32212001-05-03 Gerd Moellmann <gerd@gnu.org>
3222
3223 * ebrowse.c (globals): Fix handling of namespace aliases.
3224
f4976ebc
EZ
32252001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
3226
3227 * etags.c (print_help): Enclose the regexp in the help text
3228 example in quotes.
3229
23431241
DL
32302001-04-05 Dave Love <fx@gnu.org>
3231
3232 * emacsclient.c (fail): Don't return a value.
fa829470 3233 (main): Cast uid values for sprintf.
23431241 3234
476bf681
GM
32352001-04-03 Gerd Moellmann <gerd@gnu.org>
3236
b3f6107b
GM
3237 * emacsclient.c (fail, main): Don't use implicit int return type.
3238
476bf681
GM
3239 * b2m.c (main): Always return a value.
3240
ef53d75e
GM
32412001-03-02 Gerd Moellmann <gerd@gnu.org>
3242
3243 * ebrowse.c (parse_qualified_param_ident_or_type): Return a
3244 freshly allocated object in *LAST_ID.
3245 (read_line): Accept \r\n line endings.
3246
425de386
AI
32472001-02-24 Andrew Innes <andrewi@gnu.org>
3248
3249 * makefile.w32-in: Fix copyright notice.
3250
880820fe 32512001-02-23 Francesco Potortì <pot@gnu.org>
f55ae599
FP
3252
3253 * etags.c (enum sym_type): New label st_C_template.
3254 (gperf input): Use it for switching to C++ from C.
3255 (consider_token): Do it.
c2a642c0
FP
3256 (C_entries): Initialise typdefcblev to quiet compilers.
3257 [!HAVE_CONFIG_H] [!__STDC__]: #define static as nothing.
f55ae599 3258
f6839838
AI
32592001-02-22 Andrew Innes <andrewi@gnu.org>
3260
3261 * makefile.nt ($(BLD)\movemail.obj): Remove reference to
3262 VMS header files.
3263 ($(BLD)\profile.obj): Ditto.
3264
3265 * makefile.w32-in ($(BLD)/movemail.$(O)): Remove reference to
3266 VMS header files.
3267 ($(BLD)/profile.$(O)): Ditto.
3268
193fba87
AI
32692001-02-05 Andrew Innes <andrewi@gnu.org>
3270
3271 * makefile.w32-in ($(DOC)): Use $(THISDIR) instead of . in
3272 invocation of make-docfile, to work with Windows 2000.
3273
30526cc6
DL
32742001-01-31 Dave Love <fx@gnu.org>
3275
3276 * etags.c (in_word_set): Use `static' in definition (for pcc).
3277
880820fe 32782001-01-31 Francesco Potortì <pot@gnu.org>
8f79fe72 3279
ecc54057 3280 * etags.c [NDEBUG]: #undef assert and #define it as ((void)0), for
8f79fe72
FP
3281 the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
3282 (C_entries): Tag token renamed to still_in_token because sunos4
3283 pcc wants to expand it as the token() macro even though it has no
3284 arguments.
3285
914d7258
AI
32862001-01-30 Andrew Innes <andrewi@gnu.org>
3287
3288 * etags.c (assert) [__MINGW32__]: Redefine assert to work around a
3289 bug in the Mingw32 assert.h header file.
3290
880820fe 32912001-01-30 Francesco Potortì <pot@gnu.org>
b28e26be 3292
ecc54057
JB
3293 * etags.c [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
3294 #define it for the sake of XEmacs.
b28e26be
FP
3295 [WINDOWSNT]: #undef HAVE_NTGUI even if built without
3296 HAVE_CONFIG_H. This change only affects a standalone etags.
3297 [WINDOWSNT]: #undef DOS_NT and #define it even if built with
3298 HAVE_CONFIG_H. This change does nothing in Emacs, as DOS_NT is
3299 always defined when HAVE_CONFIG_H and WINDOWS are both defined.
2f2c687b 3300 [!HAVE_UNISTD_H]: Use defined(WINDOWSNT) instead of the bare
b28e26be
FP
3301 WINDOWSNT, as this is the correct way to use it.
3302
880820fe 33032001-01-28 Francesco Potortì <pot@gnu.org>
8c463abe
FP
3304
3305 * etags.c: Be capable to parse nested struct-like structures.
3306 (structdef, structtag): Struct state machine revisited.
3307 (struct tok): Revisited.
3308 (cstack, nestlev, instruct): New struct and macros.
3309 (pushclass_above, popclass_above, write_classname): New functions
13dc0576 3310 for dealing with nested class names.
8c463abe
FP
3311 (consider_token, make_C_tag, C_entries): Many changes for dealing
3312 with arbitrarily nested structures.
3313 (etags_getcwd): #if MSDOS, not #ifdef MSDOS!
3314 (C_entries): Consider templates in C++.
3315 (sym_type): New constant st_C_class for detecting "class" also in
3316 C mode.
3317 (C_AUTO): New macro for automatic detection of C++.
3318 (consider_token): Automatic set C++ mode.
3319 (C_entries): New security check for yacc.
3320 (print_language_names, print_help): Mention the autodetect
07655e62 3321 feature, do not show help for the -C option, now mostly useless.
8c463abe
FP
3322 (C_entries): Tag C++ forward declarations if --declarations.
3323 (C_entries): Don't be fooled by things like XDEFUN.
3324 (consider_token): Discard asm pseudo function.
3325
e26f9ced
EZ
33262001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
3327
3328 * etags.c: Add a coding: tag.
3329
a47b7816
GM
33302001-01-26 Gerd Moellmann <gerd@gnu.org>
3331
8c463abe 3332 * ebrowse.c (matching_regexp_buffer, matching_regexp_end_buf):
a47b7816
GM
3333 New variables.
3334 (matching_regexp): Use them instead of static variables in
3335 function scope.
3336
880820fe 33372001-01-25 Francesco Potortì <pot@gnu.org>
d22a24fa 3338
b166dcd8
KC
3339 * etags.c (struct tok): Rename from struct token.
3340 (token): Rename from tok.
d22a24fa
FP
3341 (structtype): Make it a local variable.
3342 [DEBUG]: Use assert.
3343 (xrnew): Change the synopsis.
b166dcd8 3344 (typedefs_or_cplusplus): Rename from typedefs_and_cplusplus.
d22a24fa 3345 (grow_linebuffer): Don't call xrnew when not needed.
02ce3e80 3346 (token): Buffer renamed to line.
d22a24fa 3347 (C_entries): Three calls to inibuffer moved here from main.
eec54bd7 3348 (C_entries): Remove all references to var methodlen, delete it.
d22a24fa
FP
3349 (linebuffer_setlen): Was grow_buffer, now also sets len.
3350 (consider_token, C_entries, Pascal_functions): Use it.
3351 (C_entries): Preventing problems relative to extern "C".
3352 (C_entries): Can tag more than one variable or func separated by
3353 comma when --declarations is used.
3354 (C_entries): More accurate tagging of members and declarations.
3355 (yacc_rules): Was global, made local to C_entries.
3356 (next_token_is_func): Removed.
3357 (fvdef): New constants fdefunkey, fdefunname.
3358 (consider_token, C_entries): Use them.
3359 (C_entries): Build proper lisp names for Emacs DEFUNs.
3360
21c2bbe0
GM
33612001-01-22 Gerd Moellmann <gerd@gnu.org>
3362
3363 * ebrowse.c (xfree): New function.
3364 (member, declaration, globals): Use xmalloc instead of alloca.
3365
880820fe 33662001-01-15 Francesco Potortì <pot@gnu.org>
83be933c
FP
3367
3368 * etags.c (print_language_names): Print filenames in addition to
3369 suffixes.
3370
880820fe 33712001-01-14 Francesco Potortì <pot@gnu.org>
47df1a5e 3372
b166dcd8 3373 * etags.c (get_language_from_langname): Rename from
47df1a5e 3374 get_language_from_name.
b166dcd8 3375 (get_language_from_filename): Rename from get_language_from_suffix.
eec54bd7 3376 Now first looks for the complete file name.
47df1a5e
EZ
3377 (language): New member char **filenames.
3378 (Makefile_filenames): List of possible filenames for makefiles.
eec54bd7 3379 (lang_names): Add a NULL member for every entry, added an entry
47df1a5e 3380 for makefiles.
13dc0576 3381 (Makefile_targets): New function.
b166dcd8 3382 (Texinfo_nodes): Rename from Texinfo_fuctions and made
47df1a5e
EZ
3383 it conformant to the style of the rest of the code.
3384
291c7e74
GM
33852001-01-13 Gerd Moellmann <gerd@gnu.org>
3386
3387 * make-docfile.c (write_c_args): Print newlines as spaces.
3388
0dac6924
AI
33892001-01-06 Andrew Innes <andrewi@gnu.org>
3390
3391 * makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
3392 of *.pdb.
3393
3e99d3b4
GM
33942001-01-03 Paul Eggert <eggert@twinsun.com>
3395
290afd83 3396 * rcs2log: Avoid security hole allowing attacker to
3e99d3b4
GM
3397 cause user of rcs2log to overwrite arbitrary files, fixing
3398 a bug reported by Morten Welinder.
3399
3400 Don't put "exit 1" at the end of the exit trap; it's
3401 ineffective in POSIX shells.
3402
d6bb0c0d
GM
34032001-01-02 Gerd Moellmann <gerd@gnu.org>
3404
eec54bd7
SM
3405 * ebrowse.c (yyerror): Change to take two arguments.
3406 Add prototype. Change callers.
d6bb0c0d 3407
d5c00476 34082001-01-02 Eli Zaretskii <eliz@is.elta.co.il>
315f5865
EZ
3409
3410 * ebrowse.c (enter_namespace, main): Cast variables to shut up
3411 compiler warnings.
3412 (yyerror): Change parameter declarations to be of type long, so
3413 that they can take pointers on 64-bit platforms.
3414
3415 * emacsclient.c (main): Remove unused local variable statbfr.
3416 (main) <homedir>: Make its declaration conditional on
3417 SERVER_HOME_DIR, to avoid compiler warnings.
3418
3419 * emacsserver.c (main) <homedir>: Make its declaration conditional
3420 on SERVER_HOME_DIR, to avoid compiler warnings.
3421
3422 * fakemail.c (readline): Cast buffer to "long *" to pacify
3423 over-zealous compilers.
3424
7c89ea61
EZ
34252000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
3426
3427 * etags.c (canonicalize_filename) [DOS_NT]: Fix last change.
3428
a6768cc5
GM
34292000-12-15 Gerd Moellmann <gerd@gnu.org>
3430
3431 * ebrowse.c (operator_name): Cast argument of isalpha to
3432 unsigned char.
3433
3434 * etags.c (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
3435 Use them throughout instead of ctype functions/macros.
3436 (lowcase): Cast to unsigned char.
3437 (UPCASE): New macro.
3438 (canonicalize_filename): Use UPCASE instead toupper.
3439
3440 * fakemail.c (get_keyword): Make sure that isspace and
3441 similar aren't called with a negative argument.
3442
70de49cc
DL
34432000-12-13 Dave Love <fx@gnu.org>
3444
3445 * ebrowse.c (ensure_scope_buffer_room): Fix xrealloc call.
3446
4e8b894c
AI
34472000-12-06 Andrew Innes <andrewi@gnu.org>
3448
3449 * makefile.w32-in (LOCAL_FLAGS): Remove -DVERSION flag, since we
3450 don't know the real version, and I can't seem to get the quoting
3451 right in all circumstances.
3452
3453 * ebrowse.c (VERSION): Provide default definition, like etags.c
3454 does, because Windows build can't snarf this from version.el.
3455
88257bc8
AI
34562000-11-30 Andrew Innes <andrewi@gnu.org>
3457
3458 * makefile.w32-in ($(BLD)/ebrowse.exe): Use tabs not spaces.
3459 (install): Ditto.
3460
d19249e7
JR
34612000-11-23 Jason Rumney <jasonr@gnu.org>
3462
3463 * makefile.w32-in: Add targets for ebrowse.exe.
3464 (LOCAL_FLAGS): Add -DVERSION flag.
3465
7df6adc3
DL
34662000-09-25 Dave Love <fx@gnu.org>
3467
3468 * sorted-doc.c: Include config.h.
3469 [!HAVE_STDLIB_H]: Declare malloc.
3470
fe83b953
AI
34712000-09-14 Andrew Innes <andrewi@gnu.org>
3472
3473 * makefile.w32-in: Revert to Unix line endings.
3474
517699ca
DL
34752000-09-04 Dave Love <fx@gnu.org>
3476
3477 * movemail.c (index, rindex): Prototype conditionally.
3478
f8803e97
AI
34792000-09-03 Andrew Innes <andrewi@gnu.org>
3480
3481 * makefile.w32-in: Change to DOS line endings.
3482
f72adc12
EZ
34832000-09-01 Eli Zaretskii <eliz@is.elta.co.il>
3484
4034f3a8 3485 * movemail.c (toplevel): Remove redundant fcntl.h.
f72adc12
EZ
3486 [!F_OK]: Provide default definitions only after including both
3487 fcntl.h and unistd.h.
3488
f678f592
DL
34892000-08-29 Dave Love <fx@gnu.org>
3490
3491 * movemail.c: Revert previous change.
3492
5b671d04
EZ
34932000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
3494
3495 * Makefile.in (profile, make-docfile, hexl): Depend on config.h.
3496
6fa86045
DL
34972000-08-28 Dave Love <fx@gnu.org>
3498
3499 * movemail.c (toplevel) [HAVE_STRING_H]: Include string.h.
3500 (toplevel) [HAVE_STRINGS_H]: Include strings.h.
3501
746d9caf
AI
35022000-08-22 Andrew Innes <andrewi@gnu.org>
3503
3504 * ntlib.h (WIN32): Remove unnecessary definition.
3505 (sleep): Make argument unsigned long.
3506 (_WINSOCK_H): Undefine so normal winsock definitions can be used.
3507
3508 * ntlib.c (sleep): Make argument unsigned long.
3509
3510 * movemail.c (main) [WINDOWSNT]: Force binary mode for fileio.
3511
3512 * makefile.w32-in: New file.
3513
3b541489
EZ
35142000-08-20 Eli Zaretskii <eliz@is.elta.co.il>
3515
3516 * etags.c (canonicalize_filename) [DOS_NT]: Upcase the first
3517 letter only if it is a drive letter.
3518
e5acf0ca
GM
35192000-07-14 Gerd Moellmann <gerd@gnu.org>
3520
b166dcd8 3521 * ebrowse.c (xrealloc, xmalloc): Rename from yrealloc and ymalloc.
e5acf0ca
GM
3522
3523 * etags.c (xmalloc, xrealloc): Make externally visible, for use
3524 by alloca.o.
3525
02ce3e80 3526 * Makefile.in (alloca.o): Add -Demacs so that alloca will use xmalloc.
e5acf0ca 3527
4b92c49a
GM
35282000-07-10 Gerd Moellmann <gerd@gnu.org>
3529
3530 * ebrowse.c (yylex): Accept string literals with newlines in them.
3531 (process_pp_line): Handle case of string literal with newline
3532 in it in replacement text, which counts as continuing the
3533 replacement text in GNU C.
3534
831a6cb0
GM
35352000-07-02 Gerd Moellmann <gerd@gnu.org>
3536
3537 * ebrowse.c (token_string): Add missing tokens.
3538 (parm_list): Handle case of qualified pointers.
3539
53245ee2
DL
35402000-06-23 Dave Love <fx@gnu.org>
3541
3542 * ebrowse.c: Move config.h before other includes (which may use
3543 feature tests).
3544
dcbf2cd2
JM
35452000-06-14 Jim Meyering <meyering@lucent.com>
3546
3547 * grep-changelog: Fix typos in comments. Remove trailing blanks.
3548
f1c7754a
JR
35492000-06-11 Jason Rumney <jasonr@gnu.org>
3550
3551 * makefile.nt: Add targets for ebrowse.
3552
3553 * ebrowse.c [WINDOWS_NT]: Use stricmp instead of strcasecmp to
3554 compare filenames.
3555
5f1aea9a
GM
35562000-06-06 Gerd Moellmann <gerd@gnu.org>
3557
b166dcd8
KC
3558 * ebrowse.c (ymalloc): Rename from xmalloc.
3559 (yrealloc): Rename from xrealloc.
5f1aea9a 3560
5bf244f1
DL
35612000-05-21 Dave Love <fx@gnu.org>
3562
3563 * movemail.c: Include config.h, not ../src/config.h.
3564 (Errmsg): Bump length.
3565
3566 * pop.c (ERROR_MAX): Increase to 160.
3567
ec82fb2f
GM
35682000-05-04 Gerd Moellmann <gerd@gnu.org>
3569
3570 * ebrowse.c (DEFAULT_OUTFILE): Set to `BROWSE'.
3571
5c922ea7
EZ
35722000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
3573
02ce3e80
SM
3574 * ebrowse.c (PATH_LIST_SEPARATOR) [__MSDOS__ || WINDOWSNT]:
3575 Define to semi-colon.
5c922ea7 3576 (FILENAME_EQ): New macro, for comparing file names.
02ce3e80 3577 (add_member_decl, add_global_decl, add_member_defn): Use FILENAME_EQ.
5c922ea7
EZ
3578 (process_file): Don't assume that fread always reads as many bytes
3579 as it was told to (DOS-style CR-LF text files fail this logic).
3580 (open_file): Allocate enough space for path->path plus the file
3581 name and the slash.
3582
6142fdcb 35832000-04-19 Dave Love <fx@gnu.org>
97052c63
DL
3584
3585 * etags.c (Texinfo_functions): New function.
3586 (lang_names): Install it.
3587 (Texinfo_suffixes): New variable.
3588
cb9215e4
GM
35892000-04-19 Gerd Moellmann <gerd@gnu.org>
3590
3591 * ebrowse.c (xmalloc, xrealloc): Rewritten.
3592 (declaration): Remove parameter IS_EXTERN.
3593 (class_definition): Remove unused variable.
3594
be0dbdab
GM
35952000-04-09 Gerd Moellmann <gerd@gnu.org>
3596
3597 * Makefile.in (INSTALLABLES): Add ebrowse.
3598 (ebrowse): New target.
3599
3600 * ebrowse.c: New file.
3601
c5aa0fc2
AS
36022000-03-29 Andreas Schwab <schwab@suse.de>
3603
3604 * make-docfile.c (scan_lisp_file): Also look for `defsubst'.
3605
d054101f
GM
36062000-03-02 Gerd Moellmann <gerd@gnu.org>
3607
07e99590 3608 * etags.c (lisp_suffixes): Add `LSP'.
d054101f 3609
880820fe 36102000-02-10 Francesco Potortì <pot@gnu.org>
71cbb895 3611
eec54bd7 3612 * etags.c (iswhite): Redefine not to consider '\0' as white
71cbb895
FP
3613 space, and use it throughout in place of isspace, thus preventing a
3614 potential signed char to int conversion problem.
10d1d0af 3615 (MSDOS): #undefine before redefining.
71cbb895 3616
880820fe 36172000-02-04 Francesco Potortì <pot@gnu.org>
71cbb895
FP
3618
3619 * etags.c (many functions): Add prototypes.
3620
97fa0cc8
DL
36212000-02-10 Dave Love <fx@gnu.org>
3622
3623 * etags.c (pfnote, new_pfnote, C_entries, prolog_pred)
3624 (erlang_func): Add `static' to definitions to keep pcc happy.
3625
880820fe 36262000-01-31 Francesco Potortì <pot@gnu.org>
e4100b7f
FP
3627
3628 * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
3629 (get_compressor_from_suffix, process_file): Use MSDOS in if clause.
3630 (etags_strchr, etags_strrchr): Use const char * and int as arguments.
3631 (getenv, getcwd): Only declare them if necessary.
3632 (EMACS_NAME): New constant macro.
3633 (print_version): Use it.
3634 (P_) [__STDC__]: Macro for defining function prototypes.
e4100b7f 3635
19e262bd 36362000-01-18 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
e4100b7f
FP
3637
3638 * etags.c [WINDOWSNT]: #include <direct.h>
3639
19e262bd 36402000-01-18 Martin Buchholz <martin@xemacs.org>
e4100b7f 3641
19e262bd
FP
3642 * etags.c (all functions): Made them static.
3643 (all functions): Write prototypes.
e4100b7f 3644
55e30d2a
RS
36452000-01-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3646
3647 * movemail.c (main): Improve error message if can't create lock file.
3648
c60ee5e7 36492000-01-28 Eric Hanchrow <offby1@blarg.net>
875c1439
GM
3650
3651 * emacsclient.c (socket_status): New function.
02ce3e80 3652 (main): If $LOGNAME or $USER exist and differ from our euid, look
875c1439
GM
3653 for a socket based on the UID associated with the name.
3654
e4936aa9
GM
36552000-01-12 Han-Wen Nienhuys <hanwen@cs.uu.nl>
3656
3657 * emacsclient.c: Add option -a EDITOR and environment variable
3658 ALTERNATE_EDITOR. Exec this editor if we fail to contact Emacs.
3659
f0131492 36601999-12-10 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
791a9087
GM
3661
3662 * movemail.c (popmail): Allow mailbox specifications of the
3663 form `po:username:hostname'.
3664
880820fe 36651999-11-19 Francesco Potortì <pot@gnu.org>
e2081362
FP
3666
3667 * etags.c (_GNU_SOURCE): Define only if undefined.
3668 (get_scheme): Declaration deleted.
02ce3e80 3669 (main): Error was called with an integer as second arg, instead of
e2081362
FP
3670 a char pointer.
3671 (canonicalize_filename): Bug removed.
3672
36731999-11-18 Dave Love <d.love@dl.ac.uk>
3674
3675 * etags.c (C_entries): Rename label `intoken', avoiding K&R
3676 lossage from name clash with macro.
3677
b05d3bee
GM
36781999-11-13 Gerd Moellmann <gerd@gnu.org>
3679
3680 * Makefile.in (b2m): Add dependency on GETOPTDEPS.
3681
cb3a6c48
GM
36821999-11-03 Gerd Moellmann <gerd@gnu.org>
3683
3684 * etags.c (print_help): Change email address to send bugs to.
3685
6088b51f 36861999-11-01 Francesco Potortì <pot@gnu.org>
1c478461
FP
3687
3688 * etags.c: Add suffix psw for PSWrap.
3689 (L_getit): Generalize a "cp!=' '" into "!isspace(*cp)".
3690 (Postscript_functions): Add code for PSWrap.
3691 (Scheme_functions): Use local pointer and new get_tag function.
3692 (get_tag): New name for old get_scheme.
3693 (process_file): Do not free NULL when file does not exist.
3694 (typdef): ttypedefseen renamed to tkeyseen, new label ttypeseen.
3695 (C_entries): Modifications that make --members tag even inside
3696 typedefs and C nested structs (one level only).
eec54bd7 3697 (consider_token): Correct a bug which prevented tagging of enum
1c478461 3698 constants.
eec54bd7 3699 (C_stab_entry): Add if, for, while, switch, return as
1c478461
FP
3700 st_C_ignore. This makes it simpler to work when cblev!=0.
3701
02ce3e80 3702 * etags.c (C_entries): Tag member function declarations when
1c478461
FP
3703 --declarations is used.
3704
3705 * etags.c (C_entries, consider_token): C++ `operator' now is
3706 tagged in most cases.
3707 As before, :: is not recognised if surrounded by spaces.
3708
3709 * etags.c (relative_filename): Account for DOS file names such
3710 that is impossible to make one relative to another.
3711
3712 * etags.c (sym_type): New st_C_extern tag.
3713 (gperf input): Use it for spotting external declarations.
a7c29764 3714 (print_help): Document the new behavior of --declarations.
1c478461
FP
3715 (fvextern): New global variable.
3716 (consider_token, C_entries): Use it.
3717
3718 * etags.c (HAVE_GETCWD) [WINDOWSNT]: Define if undefined.
3719 (etags_getcwd): Remove test for WINDOWSNT.
3720
3721 * etags.c (process_file) [MSDOS]: If foo.c.gz is not found, try
3722 foo.cgz, foo.cz, etc.
3723
3724 * etags.c (declarations): New global switch.
3725 (longopts): Describe it.
3726 (print_help): Document it.
3727 (C_entries): Use it.
3728 (process_file): Don't process a file twice.
3729
3730 * etags.c (Fortran_functions): No tags for "procedure".
3731
37321999-11-01 Eli Zaretskii <eliz@is.elta.co.il>
3733
3734 * etags.c (get_compressor_from_suffix): Second argument EXTPTR, if
3735 non-zero, returns a pointer to where the extension begins; callers
3736 changed.
3737 [MSDOS]: Support DOS file names by handling e.g. foo.cgz as if it
3738 were foo.c.gz.
3739
880820fe 37401999-11-01 Francesco Potortì <pot@gnu.org>
1c478461
FP
3741
3742 * etags.c (sym_type, C_stab_entry): New constant st_C_operator.
3743 (fvdev): New constant foperator.
3744 (consider_token): Use it to get "operator" in C++.
3745 (C_entries): Extend length of operator@ function name.
3746 (C_entries): Use foperator when necessary.
3747
3748 * etags.c (main) [!ETAGS_REGEXPS]: Do not call free_patterns.
3749
3750 * etags.c (compressor): New struct for compressed files.
3751 (get_compressor_from_suffix): New function.
3752 (get_language_from_suffix): Use it. Also, semantics changed.
3753 (process_file): Consider compressed files, close file.
3754 (find_entries): Use different call arg for get_language_from_suffix,
3755 don't close file.
3756
3757 * etags.c (main): Call free_tree.
3758 (find_entries): Do not free curfile.
3759 (pfnote): Cosmetic change: NULL and '\0' where appropriate.
3760 (prolog_pred, erlang_func, substitute): Cast strlen to int when
3761 comparing.
3762 (canonicalize_filename): Shut up compiler warning.
3763 (Perl_functions): Make tag significant.
3764
37651999-11-01 Dave Love <d.love@dl.ac.uk>
3766
3767 * etags.c (longopts, optstring): New option --ignore-case-regex (-c).
3768 (argument_type): New member at_icregexp.
3769 (lc_trans): New global.
3770 (main): Fill lc_trans. Process -c args.
3771 (add_regex): New arg determining whether to use translation table.
3772 (analyse_regex): New arg. Use it for add_regex.
3773
880820fe 37741999-11-01 Francesco Potortì <pot@gnu.org>
1c478461
FP
3775
3776 * etags.c (init): Cosmetic change: NULL --> '\0'.
3777 (erlang_attribute): Bug corrected (uninitialized variable).
3778 (filename_is_absolute): New function replaces absolutefn macro and
02ce3e80 3779 corrects a bug. All callers changed.
1c478461
FP
3780 (canonicalize_filename): New function.
3781 (process_file, etags_getcwd, absolute_dirname): Use it.
b166dcd8 3782 (relative_filename, absolute_filename): Remove var shadowing.
1c478461 3783 (C_entries, Pascal_functions): Add fake initializations to keep
02ce3e80 3784 compilers quiet.
1c478461
FP
3785 (TeX_functions, Prolog_functions, Erlang_functions): Cleanup.
3786
3787 * etags.c (xrnew): New macro. All callers of xrealloc changed.
3788 (language): New typedef (was struct lang_entry).
3789 (curlang): New global variable.
02ce3e80 3790 (node): Typedef renamed from NODE.
1c478461
FP
3791 (linebuffer): New typedef (was struct linebuffer).
3792 (pattern): New typedef (was struct pattern). Some members added.
3793 Now used as element of a linked list.
3794 (patterns, num_patterns): Global variables deleted.
3795 (p_head): New global variable.
a64387ee 3796 (forced_lang): New global variable (replaces lang_func).
02ce3e80
SM
3797 (get_language_from_name, get_language_from_interpreter)
3798 (get_language_from_suffix): Semantics changed. All callers changed.
1c478461 3799 (last_node): New global variable.
02ce3e80
SM
3800 (free_tree, add_node, put_entries, total_size_of_entries):
3801 Change name of local vars to avoid clashes with typedef node.
1c478461
FP
3802 (number_len): Rewritten for elegance.
3803 (token): New typedef replaces TOKEN.
3804 (analyse_regex, add_regex): Rewritten for new functionality.
3805 (free_patterns): New function called from main and add_regex.
3806 (initbuffer, readline_internal, readline, grow_linebuffer):
02ce3e80 3807 Change name of local vars to avoid clashes with typedef linebuffer.
1c478461
FP
3808 (readline): Rewritten for new functionality.
3809
ecc54057 3810 * etags.c (Scheme_suffixes): New suffix ".ss".
1c478461
FP
3811 (print_help): --globals is now used for more than C-type languages.
3812 (Perl_functions): Tag global variables ("my" and "local").
3813
3814 * etags.c (print_help): Some messages clarified.
3815 (LOOP_ON_INPUT_LINES): New macro.
02ce3e80
SM
3816 (just_read_file, Fortran_functions, Asm_labels, Perl_functions)
3817 (Python_functions, Cobol_paragraphs, Pascal_functions)
3818 (Lisp_functions, Postscript_functions, Scheme_functions)
3819 (TeX_functions, Prolog_functions, Erlang_functions): Use it.
3820 (Cobol_paragraphs, Postscript_functions, TeX_functions)
3821 (Prolog_functions, Erlang_functions): Use a local variable instead
1c478461
FP
3822 of the global variable dbp.
3823 (Pascal_functions, L_isquote, Scheme_functions): Use GNU coding
3824 standard indentation.
3825
02ce3e80
SM
3826 * etags.c (Python_suffixes, lang_names, Python_functions):
3827 Python support.
1c478461 3828 (skip_spaces, skip_non_spaces): Utility functions.
02ce3e80
SM
3829 (find_entries, takeprec, getit, Fortran_functions, Perl_functions)
3830 (Python_functions, L_getit, Lisp_functions, Scheme_functions)
3831 (prolog_pred, erlanf_func, erlang_attribute): Use them.
1c478461
FP
3832 (eat_white): Deleted.
3833
3834 * etags.c (CHAR, init): Keep into account non US-ASCII
3835 characters and compilers with default signed chars.
3836 (L_getit): Tag "(defstruct (foo", "(defun (operator" and similar
3837 constructs.
ecc54057 3838 (C_stab_entry): "interface" in Java behaves like "class".
1c478461 3839
ecc54057 3840 * etags.c (HAVE_NTGUI) [WINDOWSNT]: #undef if HAVE_CONFIG_H.
1c478461
FP
3841 (main): Put interval syntax here.
3842 (add_regex): And remove it from here.
3843
3844 * etags.c (suggest_asking_for_help): Provide a
3845 meaningful help message with and without LONG_OPTIONS.
3846
d07529f3 3847 * etags.c (<io.h>) [MSDOS]: Include it, don't include string.h.
1c478461
FP
3848 <stdlib.h, string.h>: Don't test MSDOS when including them.
3849 (white, nonam, endtk): Like elsewhere, use \r instead of \013.
3850 (put_entries): Correctly use %ld instead of %d in printf.
3851
d07529f3 3852 * etags.c (<unistd.h>) [HAVE_UNISTD_H]: Include conditionally, else
1c478461
FP
3853 declare getcwd if HAVE_GETCWD.
3854 (consider_token): Dead break instruction removed.
3855
4ee9629e
PE
38561999-10-19 Paul Eggert <eggert@twinsun.com>
3857
3858 Add support for large files. Merge glibc 2.1.2.
1c478461 3859
4ee9629e 3860 * b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
d07529f3 3861 * movemail.c, pop.c:
4ee9629e
PE
3862 Do not include <stdlib.h>, as <config.h> does this now.
3863
3864 * b2m.c, emacsserver.c, etags.c, profile.c:
3865 Include <config.h> before any system include files.
1c478461 3866
4ee9629e 3867 * emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
d07529f3 3868 * test-distrib.c:
4ee9629e
PE
3869 (read, write, open, close): Do not undef.
3870
3871 * getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
3872 (const): Do not define if HAVE_CONFIG_H; that's config.h's job.
3873
3874 * getopt.h: Adopt glibc 2.1.2.
1c478461 3875
93c8d183
DL
38761999-10-15 Dave Love <fx@gnu.org>
3877
3878 * Makefile.in (pop.o): Depend on config.h.
3879
b358f91c
GM
38801999-10-11 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
3881
3882 * pop.c: Use "pop3" as the POP service name on all platforms,
3883 instead of using "pop" on Unix and "pop3" on Windows NT. "pop3"
3884 has been the standard service name since RFC 1340 was published in
3885 July 1992, so I think it's safe to start using it by default.
3886
362bc2da
DL
38871999-09-27 Dave Love <fx@gnu.org>
3888
3889 * make-docfile.c (scan_lisp_file): Fix typo causing infloop.
3890
74e4cb59
PR
38911999-09-19 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3892
3893 * make-docfile.c (scan_lisp_file): Fix previous changes;
3894 swallow CRLF like just CR or just LF.
3895
362bc2da
DL
38961999-09-03 Richard Stallman <rms@gnu.org>
3897
3898 * make-docfile.c: Include config.h not ../src/config.h.
3899 (main, fopen, chdir): Add #undef.
3900 (read_c_string, scan_c_file, skip_white, read_lisp_symbol)
3901 (scan_lisp_file): Handle \r like \n.
3902
39031999-08-30 Andreas Schwab <schwab@gnu.org>
3904
3905 * make-docfile.c, fakemail.c: Include <stdlib.h> if available.
3906
3907 * emacsserver.c: Include <stdlib.h> if available. Don't declare
3908 errno if it's a macro.
3909
3910 * test-distrib.c: Include <unistd.h> if available.
3911
39121999-08-29 Richard Stallman <rms@gnu.org>
3913
3914 * emacsclient.c (print_help_and_exit): Mention --version.
3915
39161999-08-25 Richard M. Stallman <rms@gnu.org>
3917
3918 * emacsclient.c (decode_options): Update version output.
3919 (print_help_and_exit): Update bug report address.
3920
39211999-08-13 Richard M. Stallman <rms@gnu.org>
3922
3923 * emacsclient.c (main): Move the dynamic allocation of
3924 system_name outside of the SERVER_HOME_DIR conditional.
3925 * emacsserver.c (main): Likewise.
3926
39271999-08-10 Gerd Moellmann <gerd@gnu.org>
3928
3929 * grep-changelog: New.
3930 * Makefile.in (INSTALLABLE_SCRIPTS): Add it.
3931
39321999-07-12 Richard Stallman <rms@gnu.org>
3933
3934 * Version 20.4 released.
3935
39361999-06-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
3937
1c478461 3938 * Makefile.in (clean): Remove fns*.el.
362bc2da
DL
3939
39401999-06-23 Dave Love <fx@gnu.org>
3941
3942 * etags.c (erlang_attribute): Fix undefined variable usage (after
3943 Potorti).
3944
86e888c2 39451999-05-02 Andrew Innes <andrewi@gnu.org>
362bc2da
DL
3946
3947 * movemail.c (main) [WINDOWSNT]: Call ftruncate, which is now
3948 mapped to _chsize.
3949
39501999-04-29 Richard M. Stallman <rms@gnu.org>
3951
3952 * emacsclient.c (main, both versions): Use quote_file_name on cwd.
3953
39541999-03-30 Dave Love <fx@gnu.org>
3955
3956 * sorted-doc.c (main): Split up tables. Modify the preamble
3957 somewhat.
3958
39591999-03-05 Geoff Voelker <voelker@cs.washington.edu>
3960
3961 * makefile.nt: Remove common multiple file compilation commands.
3962
39631999-02-26 Richard Stallman <rms@gnu.org>
3964
362bc2da
DL
3965 * Makefile.in (yow): Depend on epaths.h, not paths.h.
3966
3967 * yow.c: Refer to epaths.h.
3968
39691999-02-22 Simon Josefsson <jas@pdc.kth.se>
3970
3971 * emacsserver.c (perror_1, fatal_error): Don't compile unless needed.
3972
39731999-01-27 Andrew Innes <andrewi@gnu.org>
3974
3975 * makefile.nt: Do make version comparison as strings.
3976
39771999-01-25 Richard Stallman <rms@gnu.org>
3978
3979 * emacsclient.c (xmalloc): Fix previous change.
3980
39811999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
3982
3983 * emacsclient.c (xmalloc): Declare to return long.
3984
39851999-01-22 Geoff Voelker <voelker@cs.washington.edu>
3986
3987 * etags.c (etags_getcwd, absolute_filename) [DOS_NT]: Canonicalize
3988 the case of the drive letter.
3989
39901999-01-15 Richard Stallman <rms@psilocin.ai.mit.edu>
3991
3992 * emacsserver.c (main): Eliminate arbitrary limit on
3993 length of system_name.
3994
3995 * emacsclient.c (main): Eliminate arbitrary limit on
3996 length of system_name.
3997 (xmalloc): Define unconditionally.
3998
39991999-01-12 Darrin B. Jewell <jewell@mit.edu>
4000
4001 * etags.c (relative_filename): Stop backward search at beginning
4002 of string, since non-Unix systems can have absolute paths with no
4003 initial slash.
4004
40051998-12-08 Geoff Voelker <voelker@cs.washington.edu>
4006
4007 * makefile.nt: Do string comparision of _NMAKE_VER.
4008
c60ee5e7 40091998-11-03 Theodore Jump <tjump@cais.com>
362bc2da
DL
4010
4011 * makefile.nt: Compile multiple source files when possible.
4012
40131998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
4014
4015 * Makefile.in: Replace tabs with spaces
4016 when they might confuse some Make versions.
4017
40181998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
4019
4020 * emacsclient.c (main): Null-terminate system_name.
4021
4022 * emacsserver.c (main): Null-terminate system_name.
4023
40241998-09-21 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4025
4026 * movemail.c (popmail, pop_retr) [MAIL_USE_POP]: When displaying
4027 an error message from POP, mention that it's from POP, to
4028 distinguish it from local error messages.
4029
40301998-09-04 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4031
4032 * movemail.c [MAIL_USE_POP]: Add the "-r" flag to reverse the
4033 order of messages downloaded from a POP server (e.g., if the
4034 server stores messages in mailboxes in reverse order).
4035
40361998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
4037
4038 * Version 20.3 released.
4039
40401998-08-11 Paul Eggert <eggert@twinsun.com>
4041
4042 * rcs2log: Update copyright date and bug report address.
4043 (initialize_fullname): Prefer getent if available.
4044
40451998-07-30 Paul Eggert <eggert@twinsun.com>
4046
290afd83 4047 * Makefile.in (REGEXPDEPS, regex.o):
362bc2da 4048 Prepend $(srcdir)/ to rule dependencies outside this dir.
1c478461 4049
362bc2da
DL
40501998-06-09 Andrew Innes <andrewi@harlequin.co.uk>
4051
4052 * etags.c (etags_getcwd) [WINDOWSNT]: Use getcwd on Windows.
4053
40541998-06-06 Richard Stallman <rms@psilocin.ai.mit.edu>
4055
4056 * Makefile.in: Properly terminate a comment.
4057
40581998-06-01 Andrew Innes <andrewi@mescaline.gnu.org>
4059
4060 * movemail.c (sys_wait): Rename to wait.
4061
4062 * ntlib.h: Undefine _WINSOCKAPI_.
4063
4064 * makefile.nt (LOCAL_FLAGS): Define HAVE_CONFIG_H.
4065
40661998-05-30 Geoff Voelker <voelker@cs.washington.edu>
4067
4068 * ntlib.c (getppid): Look for EM_PARENT_PROCESS_ID.
4069
40701998-05-01 Andrew Innes <andrewi@harlequin.co.uk>
4071
b166dcd8
KC
4072 * movemail.c [WINDOWSNT]: Undefine DISABLE_DIRECT_ACCESS.
4073 Force all file i/o to be in binary mode. Include ntlib.h.
362bc2da
DL
4074
40751998-04-27 Andreas Schwab <schwab@delysid.gnu.org>
4076
4077 * make-docfile.c: Include <unistd.h> for chdir.
4078
40791998-04-25 Richard Stallman <rms@psilocin.gnu.org>
4080
4081 * etags.c (TEX_decode_env): Don't free the value getenv returns.
4082
40831998-04-17 Geoff Voelker <voelker@cs.washington.edu>
4084
4085 * makefile.nt (obj): Update with new files in src.
4086 (clean): Delete patch scratch files, optimized compilation dir.
4087
40881998-04-08 Dave Love <fx@gnu.org>
4089
4090 * emacsclient.c: Move inclusion of unistd.h to top, else fails on
4091 Irix6, at least.
4092
40931998-04-06 Andreas Schwab <schwab@gnu.org>
4094
4095 Silence -Wimplicit:
4096 * movemail.c: Move cancelations up. Include <stdlib.h> if
4097 available.
4098 * fakemail.c (_XOPEN_SOURCE): Define for declaration of cuserid.
4099 (parse_header): Explicitly declare return type.
4100 * emacsserver.c: Include <unistd.h> if available.
4101 (main, handle_signals, perror_1, fatal_error): Explicitly declare
4102 return types. Add forward declarations.
4103 * emacsclient.c: Include <stdlib.h> and <unistd.h> if available.
4104 Don't declare geteuid.
b166dcd8
KC
4105 (print_help_and_exit): Change return type to void.
4106 Forward declare it.
362bc2da
DL
4107 * b2m.c: Include <stdlib.h> if available.
4108 (main): Explicitly declare return type.
4109
362bc2da
DL
41101998-04-03 Richard Stallman <rms@psilocin.gnu.org>
4111
4112 * etags.c (put_entries): Use %ld.
4113
4114 * b2m.c (fatal): Declare the arg.
4115
41161998-03-26 Richard Stallman <rms@psilocin.gnu.org>
4117
b166dcd8 4118 * pop.c (pop_getline): Rename from getline.
362bc2da
DL
4119
41201998-03-05 Richard Stallman <rms@psilocin.gnu.org>
4121
4122 * Makefile.in (install): Use INSTALL_STRIP with INSTALL_PROGRAM
4123 for the utilities.
4124
41251998-01-23 Dave Love <d.love@dl.ac.uk>
4126
4127 * etags.c (getit, Cobol_paragraphs, Pascal_functions,
4128 Postscript_functions, prolog_pred, erlang_func, erlang_attribute):
4129 Always make named tags.
4130 (Fortran_functions): Grok BLOCK DATA.
4131
41321998-01-23 Andreas Schwab <schwab@gnu.org>
4133
4134 * movemail.c (main): Fix interwoven brace and cpp conditional
4135 nesting.
4136
362bc2da
DL
41371997-12-03 Paul Eggert <eggert@delysid.gnu.org>
4138
cb438d6e
JB
4139 * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which quotes
4140 with a '>' any lines starting with "From " read from the POP server,
4141 but leave the code in place, wrapped in #ifdef
362bc2da 4142 MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
b166dcd8
KC
4143 because it turns out that something is depending on it.
4144 Change suggested by Paul Eggert <eggert@twinsun.com>.
362bc2da
DL
4145 Convert the character \037 (^_) at the beginning of a line into
4146 the character '^' followed by the character '_', because otherwise
4147 Emacs can't parse the resulting file as a valid BABYL file.
4148 Change suggested by Paul Eggert <eggert@twinsun.com>.
4149
41501997-12-03 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4151
4152 * movemail.c, pop.c, pop.h: Allow messages retrieved from the POP
4153 server to contain embedded nulls.
4154
41551997-12-02 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1c478461 4156
362bc2da
DL
4157 * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which
4158 quotes with a '>' any lines starting with "From " read from the
4159 POP server, but leave the code in place, wrapped in #ifdef
4160 MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
b166dcd8
KC
4161 because it turns out that something is depending on it.
4162 Change suggested by Paul Eggert <eggert@twinsun.com>.
362bc2da
DL
4163
4164 Convert the character \037 (^_) at the beginning of a line into
4165 the character '^' followed by the character '_', because otherwise
4166 Emacs can't parse the resulting file as a valid BABYL file.
4167 Change suggested by Paul Eggert <eggert@twinsun.com>.
4168
41691997-11-22 Richard Stallman <rms@gnu.org>
4170
4171 * b2m.c: Include getopt.h.
4172 (main): Use getopt_long to handle --version and --help.
4173
4174 * Makefile.in (b2m): Define VERSION. Link with $(GETOPTOBJS).
4175
41761997-10-31 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4177
b166dcd8
KC
4178 * pop.c (fullwrite): Get rid of an extra call to write.
4179 Problem pointed out by Chiaki Ishikawa.
362bc2da
DL
4180
41811997-10-16 Dave Love <d.love@dl.ac.uk>
4182
ecc54057
JB
4183 * etags.c (L_getit): Always make named tags so that Emacs
4184 completion on symbols containing `:' etc. works.
4185 (get_scheme): Likewise.
362bc2da
DL
4186
41871997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4188
4189 * pop.c: Use system header files instead of declaring C-library
4190 functions explicitly.
4191
41921997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4193
4194 * Version 20.2 released.
4195
41961997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4197
4198 * Version 20.1 released.
4199
42001997-09-02 Andrew Innes <andrewi@harlequin.co.uk>
4201
4202 * makefile.nt (movemail.exe): Link wsock32.lib before LIBS.
4203
4204 * ntlib.c (getpid): Delete function.
4205
42061997-08-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
4207
4208 * make-docfile.c (scan_lisp_file): Handle custom-declare-variable.
4209
42101997-08-26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
4211
4212 * emacsclient.c [HAVE_SYSVIPC]: Include errno.h, as in the other case.
4213 (main) [!BSD_SYSTEM]: Fix error message for getcwd failure.
4214
42151997-08-14 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4216
4217 * emacsserver.c (main): Use SOCKLEN_TYPE for fromlen, if it is defined.
4218
42191997-08-13 Kazushi (Jam) Marukawa <jam@poboxes.com>
4220
4221 * profile.c (get_time): Cast arg to fprintf.
4222
4223 * hexl.c (main): Use %08lx instead of %08x in printf because the
4224 variable named addresses is long.
4225
42261997-08-08 Geoff Voelker <voelker@cs.washington.edu>
4227
4228 * makefile.nt (lisp): Update paths to lisp files that have moved.
4229
42301997-08-08 Andrew Innes <andrewi@harlequin.co.uk>
4231
4232 * makefile.nt (ctags.obj): New target.
4233 (etags.obj, getopt.obj, make-docfile.obj): Update dependencies.
4234
4235 * ntlib.h: Add includes.
4236 Undo definitions of crt routines from config.h.
4237
42381997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4239
4240 * etags.c (Yacc_suffixes, Asm_suffixes): Add some alternatives.
4241
42421997-07-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4243
4244 * pop.c: Support auto-configuration of both Kerberos V4 and
ecc54057
JB
4245 Kerberos V5 for movemail, including detection of V4 and V5 header
4246 files and libraries.
362bc2da 4247 Include <string.h> when STDC_HEADERS is defined, to get
ecc54057 4248 declarations of string functions.
362bc2da 4249 [KERBEROS5] (socket_connection): Support the current MIT Kerberos
ecc54057 4250 V5 API rather than the old one.
362bc2da 4251 [KERBEROS] (socket_connection): Change a constant name from
ecc54057
JB
4252 SOCKET_ERROR to POP_SOCKET_ERROR to avoid a namespace conflict
4253 with a constant in a header file.
362bc2da
DL
4254
4255 * Makefile.in: Support auto-configuration of both Kerberos V4 and
ecc54057
JB
4256 Kerberos V5 for movemail, including detection of V4 and V5 header
4257 files and libraries.
362bc2da
DL
4258
42591997-07-17 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4260
4261 * fakemail.c [HAVE_UNISTD_H]: Include unistd.h.
4262
4263 * etags.c [HAVE_UNISTD_H]: Include unistd.h.
1c478461 4264
362bc2da
DL
42651997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4266
4267 * emacsclient.c [C_ALLOCA] (xmalloc): New function.
4268
42691997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4270
4271 * movemail.c (rindex): Add declaration.
4272
d57727c9 42731997-07-01 Geoff Voelker <voelker@cs.washington.edu>
362bc2da
DL
4274
4275 * makefile.nt (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
4276 (movemail.exe): Depend upon and link with getopt files.
4277 (obj): Include new source files.
4278 (FACE_SUPPORT, MOUSE_SUPPORT, FLOAT_SUPPORT, WINNT_SUPPORT): Define.
4279 (lisp): Include new and reorganized elisp files.
4280
42811997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4282
4283 * Makefile.in (blessmail): Find blessmail.el in mail subdirectory.
4284
42851997-06-25 Paul Eggert <eggert@twinsun.com>
4286
4287 * rcs2log: Don't assign to $0 in awk; some awks don't allow this.
4288
42891997-06-14 Karl Heuer <kwzh@gnu.ai.mit.edu>
4290
4291 * b2m.c (readline): Terminate buffer properly when EOF seen.
4292 Test for valid pointer before dereferencing it.
4293
880820fe 42941997-05-30 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4295
4296 * Makefile.in (etags): Remove -DETAGS_REGEXPS, because now it is
4297 defined inside etags.c if HAVE_CONFIG_H is defined.
4298
880820fe 42991997-05-29 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da 4300
ecc54057 4301 * etags.c (logical): Type name changed to bool.
362bc2da
DL
4302 (ETAGS_REGEXPS, LONG_OPTIONS) [HAVE_CONFIG_H]: #define them.
4303 (<getopt.h>) [LONG_OPTIONS]: Include conditionally.
4304 (getopt_long) [!LONG_OPTIONS]: Redefine as macro.
4305 (main): Accepted options depend on ETAGS_REGEXPS and LONG_OPTIONS.
4306 (longopts): New long options without short counterpart are
4307 globals, members, no-globals, no-members. Regexp options are now
4308 defined conditionally to ETAGS_REGEXPS.
4309 (print_help): Updated.
4310
880820fe 43111997-05-22 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4312
4313 * etags.c (C_entries): Use "." instead of "::" for Java.
4314 (consider_token): is_func renamed to is_func_or_var.
4315 (C_entries): is_func renamed to funorvar.
4316 (C_entries): Initialise tok.named.
4317 (sym_type, C_stab_entry, consider_token): st_C_ignore is used to
4318 get rid of "import", "package" and "friend".
b166dcd8
KC
4319 (fvdef): Rename from funcdef. Also some constants renamed.
4320 All users changed.
362bc2da
DL
4321 (C_entries): Make separate tags for variables separated by comma.
4322 (globals, members): New flags.
4323 (main, C_entries): Use them.
4324 (make_C_tag, C_entries): Make tok a global variable.
1c478461 4325
880820fe 43261997-05-16 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4327
4328 * etags.c (funcdef): New vignore constant.
4329 (consider_token, C_entries): Use it to tag global variables.
4330 (print_help): Update for global variables.
4331 (consider_token, C_entries): Set the len member of token_name.
4332 (prolog_pred): Cleanup according to GNU coding standards.
4333 (Cobol_suffixes, lang_names, Cobol_paragraphs): Cobol support.
b166dcd8 4334 (prolog_white, erlang_white): Rename to eat_white, callers changed.
362bc2da 4335
880820fe 43361997-05-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4337
4338 * etags.c (CHARS, CHAR): New constant and macro.
4339 (iswhite, begtoken, intoken, endtoken): Use them.
4340 (notinname, _nin, nonam): New macro, array, string.
4341 (init): Cleanup and init _nin.
4342 (new_pfnote): New function.
4343 (make_C_tag) [traditional_tag_style]: Use it.
10d1d0af 4344 (traditional_tag_style): Constant set to TRUE for now.
362bc2da 4345
880820fe 43461997-05-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4347
4348 * etags.c (C_entries, Pascal_functions): Cleanup.
4349 (TeX_functions): NULL as a function arg needs a cast.
4350 (Erlang_functions, erlang_func, erlang_attribute): Cleanup.
4351
880820fe 43521997-05-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4353
4354 * etags.c (TeX_functions): Cleaned up.
4355 (tex_getit): Removed.
4356
43571997-05-13 Paul Eggert <eggert@twinsun.com>
4358
4359 * rcs2log (files): When computing arguments automatically, ignore
ecc54057 4360 non-files within the RCS subdirectory.
362bc2da 4361
880820fe 43621997-05-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4363
4364 * etags.c (C_JAVA): New #define.
4365 (Cjava_suffixes): .java is Java.
4366 (Cjava_entries): New function.
4367 (lang_names): Add Java.
4368 (sym_type): Add st_C_javastruct for Java.
4369 (C_stab_entry): Add `extends' and `implements' keywords.
4370 (consider_token, C_entries): Recognise Java structures.
4371
880820fe 43721997-05-12 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da 4373
ecc54057 4374 * etags.c (Cplusplus_suffixes): .pdb is Postscript with C syntax.
362bc2da
DL
4375 (Postscript_suffixes): .ps is Postscript.
4376 (lang_names): Add Postscript.
4377 (Postscript_functions): New function.
4378 (TEX_decode_env): Close minor memory leak.
4379 (just_read_file): Correct the char number of the tag.
4380
43811997-05-11 Paul Eggert <eggert@twinsun.com>
4382
4383 * rcs2log (loginFullnameMailaddrs, logins, rlog_options, files):
ecc54057
JB
4384 Don't prepend $nl since this causes some shells to generate the
4385 empty string when IFS is $nl.
362bc2da 4386 (printlogline): Use SOH (octal code 1), not CR, since some
ecc54057 4387 PC-based shells mishandle CR.
362bc2da
DL
4388 (initialize_fullname): Set NIS_PATH to the empty string before invoking
4389 nismatch, in case it's set to some nonstandard value.
1c478461 4390
362bc2da
DL
43911997-05-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4392
4393 * pop.c (getline): Don't miss CRLF pairs when the CR and LF are
4394 read in separate blocks.
4395
880820fe 43961997-04-30 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4397
4398 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
4399 (struct linebuffer): New member `len' is the length of the string.
4400 (find_entries, Pascal_functions, TeX_functions, TEX_getit):
4401 Use it instead of strlen.
4402 (TEX_getit): Declare and define unconditionally as static.
4403 (TeX_functions): Use if instead of #if TeX_named_tokens.
4404 (add_regex): Set RE_INTERVALS flag for regex compilation.
4405 (substitute): Code cleanup.
4406 (readline_internal): Code cleanup, set new member `len'.
4407 (readline): Bug corrected.
4408
44091997-04-23 Geoff Voelker <voelker@cs.washington.edu>
4410
4411 * makefile.nt: Change references of windowsnt.h to ms-w32.h.
4412 (obj): Change references of nt*.c files to w32*.c files.
4413
880820fe 44141997-04-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4415
4416 * etags.c (xnew): Add support for debugging with chkmalloc.
4417 (error): Use this instead of printf whenever possible.
4418 (main): Only call xnew after having initialised progname.
4419 (substitute): Bad memory corruption error corrected.
4420
880820fe 44211997-04-08 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4422
4423 * etags.c (add_regex): Undo previous change.
4424 (relative_filename): Small memory leak closed.
4425 (absolute_filename): Cleaned up the code, possibly closing a bug.
4426 (absolute_dirname): Always return a newly allocated string.
1c478461 4427
362bc2da
DL
44281997-03-21 Paul Eggert <eggert@twinsun.com>
4429
4430 * rcs2log (files): Ignore files in RCS directory whose names are
ecc54057
JB
4431 of the form ,*, or *_; they are probably RCS lock files.
4432 Also, ignore files named .rcsfreeze.log or .rcsfreeze.ver;
362bc2da
DL
4433 they are used by rcsfreeze.
4434
880820fe 44351997-03-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da 4436
2f2c687b 4437 * etags.c (add_regex): Reset *putbuf before using it.
362bc2da
DL
4438
44391997-02-23 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4440
4441 * movemail.c (popmail): Remove some unnecessary function
4442 declarations.
4443 (popmail, pop_retr): Since popmail always passes mbx_write and mbf
4444 into pop_retr, there's no reason to pass in mbx_write, and the
4445 file argument can be declared FILE * explicitly. This fixes a
4446 compilation problem on systems with 64-bit pointers.
4447
44481997-02-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4449
4450 * movemail.c: Delete duplicate inclusion of fcntl.h
4451 and duplicate #undefs of open, read, write, close.
4452
44531997-01-20 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4454
4455 * movemail.c (main): Do not display "[POP-password]" in the usage
4456 message when movemail is compiled without POP support.
4457 (main, popmail): Add the optional "-p" argument, which causes
4458 movemail to leave mail in the inbox after copying it into the
4459 output file.
1c478461 4460
362bc2da
DL
4461 * Makefile.in (movemail): Link with getopt.
4462
44631997-01-20 Paul Eggert <eggert@twinsun.com>
4464
ecc54057 4465 * rcs2log (--help, --version): New options, per GNU coding standards.
362bc2da
DL
4466 (Copyright, Help, Id): New variables, for above.
4467 (rlog): Use -q option with cvs log, to avoid useless chatter.
4468
4469 Treat logs of "Initial revision" (RCS) or "file F was initially added
4470 on branch B." (CVS) as if they said "New file.", for consistency with
4471 change log entries.
4472
44731997-01-01 Paul Eggert <eggert@twinsun.com>
4474
4475 * vcdiff (PATH): Add /usr/xpg4/bin,
4476 where XPG4 SCCS hangs out in Solaris 2.5.
4477 (sid1): Don't use bare -r, since XPG4 `get' does not allow it.
4478
44791996-12-19 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4480
4481 * etags.c (streq, strneq): Use == NULL rather than !.
4482
44831996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
4484
4485 * Makefile.in (LIBMAIL): New macro. Conditionally includes -lmail.
ecc54057 4486 (movemail): Use LIBMAIL, to link against -lmail.
362bc2da
DL
4487
4488 * movemail.c: Include maillock.h (conditionally).
4489 Remove a redundant inclusion of <stdio.h>.
4490 (MAIL_USE_MAILLOCK): New macro, conditionally defined.
4491 (main): Add variable spool_name.
4492 Support the usage of maillock and mailunlock to
ecc54057 4493 lock and unlock mailboxes.
362bc2da
DL
4494 (mail_spool_name): New function.
4495
4496 * movemail.c: Fix an uninitialized variable which could cause
ecc54057
JB
4497 movemail to exit with an error status incorrectly on systems which
4498 use lock files rather than a system locking function to lock
4499 mailboxes.
362bc2da
DL
4500
45011996-12-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4502
4503 * pop.c (socket_connection): Free realhost after using it.
4504
880820fe 45051996-12-04 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4506
4507 * etags.c (C_entries): Test tok.valid. This handles some
4508 particular cases involving function declarations that failed.
4509
45101996-11-22 Charles Hannum <mycroft@gnu.ai.mit.edu>
1c478461 4511
362bc2da
DL
4512 * pop.c (socket_connection):
4513 gethostbyname may return a pointer to static data.
4514 krb_realmofhost can clobber it. So copy it.
4515
880820fe 45161996-11-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4517
4518 * etags.c (pfnote, fatal, error): Callers using a NULL pointer
4519 must cast it to (char *) because we have no prototypes.
4520 (make_C_tag): Macro deleted, new function.
4521 (C_entries): Calls to make_C_tag macro changed to call function.
4522
880820fe 45231996-11-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4524
4525 * etags.c (grow_linebuffer): New function.
4526 (GROW_LINEBUFFER): Macro deleted. All callers changed.
4527 (make_tag): Macro renamed to make_C_tag. All callers changed.
4528 (<stdlib.h>, <string.h>) [STDC_HEADERS]: New #include's.
4529 (Prolog_functions): prolog_skip_comment was called with wrong
4530 number of arguments.
6088b51f 4531 (xrealloc): fatal was called with wrong number of arguments.
362bc2da 4532
880820fe 45331996-11-08 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4534
4535 * etags.c (relative_filename): Bug corrected.
4536 (etags_getcwd): Avoid warning of unused variable.
b166dcd8 4537 (C_entries, consider_token): Add support for enum labels.
362bc2da
DL
4538
45391996-11-03 Paul Eggert <eggert@twinsun.com>
4540
4541 * rcs2log: When processing cvs log output, remove `Attic/' from
ecc54057 4542 repository file names.
362bc2da
DL
4543
45441996-10-22 Karl Heuer <kwzh@gnu.ai.mit.edu>
4545
4546 * emacsserver.c: Fix 1996-09-02 change.
4547
45481996-10-12 Paul Eggert <eggert@twinsun.com>
4549
4550 * rcs2log (rlog_options): Look for ' option' rather than 'unknown
ecc54057 4551 option', since CVS says 'invalid option'.
362bc2da
DL
4552 (datearg): Use the empty string, not '-d>1970-01-01', to extract all
4553 revisions, since some hosts reject 1970-01-01 when east of UTC.
4554 (date): Remove.
4555
45561996-10-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4557
4558 * etags.c (etags_getcwd) [WINDOWSNT]: Convert backslashes to slashes.
4559
880820fe 45601996-10-02 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4561
4562 * etags.c (print_version): Print copyright info.
4563
4564 * etags.c (print_help): Print the bug reporting address.
4565 (main): Use return as the last instruction, instead of exit.
4566
4567 * etags.c (main): Don't open the tags file in cxref mode.
4568
45691996-09-29 Dave Love <d.love@dl.ac.uk>
4570
4571 * rcs2log (date): Make default format acceptable to CVS post v1.8
ecc54057 4572 as well as earlier CVSs and RCS.
362bc2da
DL
4573
45741996-09-29 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4575
4576 * movemail.c (main): If the lock call fails with EBUSY or
4577 EAGAIN, retry a few times.
4578
45791996-09-25 Paul Eggert <eggert@twinsun.com>
4580
4581 * rcs2log (rlog_options): Use $rlog, not rlog, when deciding
ecc54057 4582 whether to append -zLT.
362bc2da
DL
4583
45841996-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
4585
4586 * fakemail.c: Replaced symbol BSD with BSD_SYSTEM.
4587 * emacsclient.c, movemail.c: Likewise.
4588
45891996-09-09 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4590
4591 * emacsclient.c (longopts): Change nowait to no-wait.
4592 (print_help_and_exit): Fix option name; upcase metavars.
4593
45941996-09-06 Erik Naggum <erik@naggum.no>
4595
4596 * emacsserver.c (main): Declare `fromlen' as size_t.
4597
45981996-09-02 Eli Zaretskii <eliz@is.elta.co.il>
4599
4600 * etags.c (etags_getcwd): Use getcwd if available even if MSDOS.
4601
46021996-09-02 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4603
4604 * emacsclient.c (quote_file_name): Quote with &, not \.
4605 Quote `-' only at start of file name. Terminate the value string.
4606
4607 * emacsserver.c: Include signal.h properly;
4608 delete the duplicate includes for it.
4609
4610 * emacsserver.c: On fatal signal, delete socket-file:
4611 * emacsserver.c: Include signal.h.
ecc54057 4612 (xmalloc, fatal, error): New functions.
362bc2da
DL
4613 (delete_socket, handle_signals): New functions.
4614 (progname, socket_name): New variables.
194d44e7 4615 [HAVE_SOCKETS] (main): Call handle_signals; set the new variables.
362bc2da
DL
4616
46171996-09-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4618
4619 * emacsclient.c (quote_file_name): New function.
4620 (main, both versions): Use quote_file_name.
4621 (decode_options): Don't return a value.
4622 (main, both versions): Use optind.
4623 Don't check for -nowait here.
1c478461 4624
362bc2da
DL
4625 * emacsclient.c (decode_options): New function.
4626 (main, both versions): Call decode_options.
4627 (print_help_and_exit): New function.
4628 (VERSION): New macro.
4629
4630 * Makefile.in (emacsclient): Link with getopt.
4631 Add -DVERSION so emacsclient knows its version number.
4632
46331996-08-31 Geoff Voelker <voelker@cs.washington.edu>
4634
4635 * makefile.nt (lisp): Include dos-nt.elc.
4636
46371996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4638
4639 * Makefile.in (blessmail): Use $srcdir to find blessmail.el.
4640
46411996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4642
4643 * emacsclient.c (both versions): Handle -nowait and --nowait
4644 by sending data to the server.
4645
46461996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4647
4648 * Makefile.in (INSTALL_STRIP): New variable.
4649 (${archlibdir}): Use INSTALL_STRIP.
4650
4651 * Makefile.in (MOVE_LIBS): Use conditionals on KERBEROS,
4652 HAVE_LIBKRB, HAVE_LIBDES, HAVE_LIBCOM_ERR to set it up.
4653
4654 * pop.c: Reverse conditional in previous change.
4655
46561996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
4657
4658 * pop.c: Include des.h krb.h with no dir name if SOLARIS2.
4659
46601996-08-24 Paul Eggert <eggert@twinsun.com>
4661
4662 * rcs2log: Use ISO 8601 date format, with time zone appended
4663 if change-log-time-zone-rule is non-nil, instead of
4664 traditional Unix date format.
4665
4666 (datearg): When computing default from ChangeLog, handle ISO format
4667 dates in addition to old-fashioned dates from Emacs 19.31 and earlier.
4668 Don't worry about hh:mm:ss since the resolution is now by day.
10d1d0af 4669 Use empty datearg, not empty rlog_options, to decide whether to pass
362bc2da
DL
4670 "$datearg" option to $rlog.
4671 (logTZ): New variable, set to TZ specified by change-log-time-zone-rule.
4672 (month_data): Remove `mo'; no longer needed.
10d1d0af 4673 (rlog_options): Use -zLT for localtime output, if `rlog' supports it.
362bc2da
DL
4674
4675 Match `revision' line of rlog output more accurately.
4676
4677 Add -c, -v options.
4678
46791996-08-23 Eli Zaretskii <eliz@is.elta.co.il>
4680
4681 * hexl.c: Include <config.h>, so DOS_NT is defined on MSDOS.
4682
46831996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4684
4685 * Version 19.33 released.
4686
46871996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4688
4689 * Version 19.32 released.
4690
46911996-07-23 Andrew Innes <andrewi@harlequin.co.uk>
4692
4693 * etags.c (readline_internal) [DOS_NT]: Don't include CRs when
4694 computing character positions in source files.
4695
46961996-07-16 Andrew Innes <andrewi@harlequin.co.uk>
4697
4698 * makefile.nt (clean): Use OBJDIR macro.
4699
47001996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
4701
4702 * cvtmail.c, sorted-doc.c, yow.c, emacsserver.c: Undo previous change.
4703
c60ee5e7 47041996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
362bc2da 4705
ecc54057 4706 * cvtmail.c, sorted-doc.c, yow.c [__GNU_LIBRARY__]: Use <string.h>.
362bc2da
DL
4707 * emacsserver.c (main) [__GNU_LIBRARY__]: Use size_t for fromlen.
4708 * etags.c, fakemail.c, profile.c: Declare main as int, not void.
4709
47101996-07-15 Andrew Innes <andrewi@harlequin.co.uk>
4711
4712 * ntlib.h: Correct return type of getwd.
4713 * ntlib.c (getwd): Correct return type.
4714
47151996-07-02 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4716
4717 * emacsserver.c (main) [HAVE_SOCKETS]: Call rewind before writing
4718 to infile.
4719
47201996-07-01 Andrew Innes <andrewi@harlequin.co.uk>
4721
4722 * makefile.nt: Remove all references to wakeup.
4723
880820fe 47241996-06-28 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4725
4726 * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
4727 explicit, mutable, typename.
4728
47291996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4730
4731 * emacsclient.c (main) [HAVE_SOCKETS]: Use two separate stdio
4732 streams, one for sending and one for reading the reply.
4733
47341996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4735
4736 * Makefile.in (timer, timer.o, getdate.o, $(srcdir)/getdate.c)
4737 (wakeup): Target deleted.
4738 (UTILITIES): Delete wakeup and timer.
4739
4740 * wakeup.c, timer.c, getdate.y, getdate.c: Files deleted.
4741
47421996-06-11 Geoff Voelker <voelker@cs.washington.edu>
4743
4744 * etags.c (etags_getcwd) [DOS_NT]: Change conditional to MSDOS only.
4745 * makefile.nt (ETAGS_CFLAGS): Define HAVE_GETCWD macro.
4746
47471996-06-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4748
4749 * etags.c (main): Copy cwd when appending slash.
4750
47511996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
4752
4753 * Version 19.31 released.
4754
880820fe 47551996-05-17 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4756
4757 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
4758 (Pascal_functions): Increase linecharno by the correct number of
4759 chars, inline the GET_NEW_LINE macro and delete its definition.
4760
c60ee5e7 47611996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
362bc2da
DL
4762
4763 * makefile.nt (OBJDIR, BLD): Remove macro definitions.
4764
c60ee5e7 47651996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
362bc2da
DL
4766
4767 * makefile.nt (LOCAL_FLAGS): Include path to NT shadow includes.
6088b51f 4768 (movemail.exe, fakemail.exe): Now built under Win32.o.
362bc2da
DL
4769
4770 * ntlib.c: Include ntlib.h.
4771 (nt_sleep): Rename to sleep.
4772 (getwd): Return directory.
4773 (getlogin, cuserid, getuid, setuid, getpwuid, getpass, fchown,
4774 sys_ctime, sys_fopen): New functions.
4775
4776 * ntlib.h: New file.
4777
47781996-04-29 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
4779
b166dcd8 4780 * pop.c (SEND, RECV): Rename from send, recv.
362bc2da
DL
4781 (pop_open, pop_trash): Make the trash_started code unconditional.
4782 (socket_connection): Delete casts to void.
4783
47841996-04-28 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
4785
b166dcd8
KC
4786 * movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP):
4787 Definitions copied from lisp.h.
362bc2da
DL
4788
47891996-04-22 Andrew Innes <andrewi@harlequin.co.uk>
4790
4791 * fakemail.c [WINDOWSNT]: Include ntlib.h.
4792
4793 * hexl.c [DOSNT]: Include fcntl.h.
4794 [WINDOWSNT]: Include io.h.
4795 (main) [MSDOS]: Change conditional to DOS_NT.
4796
4797 * movemail.c (access, unlink) [WINDOWSNT]: Macros undefined.
4798 (fork, syswait, DISABLE_DIRECT_ACCESS) [WINDOWSNT]: Macros defined.
4799 [WINDOWSNT]: Include locking.h.
4800 (main): Update usage message. Use IS_DIRECTORY_SEP.
4801 (main) [DISABLE_DIRECT_ACCESS]: Don't check access if defined.
4802 (main) [WINDOWSNT]: Invoke locking instead of flock.
4803 (main) [MAIL_USE_SYSTEM_LOCK && WINDOWSNT]: Emulate ftruncate.
4804 (main) [MAIL_USE_POP]: Pass password to popmail if used.
4805 Include winsock.h; don't include unix inet headers.
4806 (popmail): Add password argument and pass it to pop_open.
4807 Open output file in binary mode.
4808
4809 * pop.c [WINDOWSNT]: Include winsock.h and ntlib.h.
1c478461 4810 Macro SOCKET_ERROR undefined.
362bc2da
DL
4811 Don't declare h_errno.
4812 [!WINDOWSNT]: Define macros recv and send.
4813 [!WINDOWSNT] (POP_SERVICE): Change to pop3.
4814 (pop_open) [WINDOWSNT]: Initialize trash_started.
4815 (have_winsock) [WINDOWSNT]: New variable.
4816 (socket_connection) [WINDOWSNT]: Initialize winsock.
4817 (socket_connection): Use closesocket instead of close.
4818 (getline): Use recv instead of read.
4819 (fullwrite): Use send instead of write.
4820 (pop_trash): Use closesocket instead of close.
4821 (pop_trash) [WINDOWSNT]: Cleanup winsock.
4822 Check if being called recursively by sendline.
4823
4824 * pop.h (struct _popserver): New field trash_started.
4825
4826 * wakeup.c [HAVE_CONFIG_H]: Only include config.h when defined.
4827
48281996-04-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4829
4830 * hexl.c (main) [DJGPP v2]: Don't change to binary for a tty.
4831
48321996-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4833
4834 * etags.c [WINDOWSNT]: Include io.h.
4835
48361996-04-10 Geoff Voelker <voelker@cs.washington.edu>
4837
4838 * makefile.nt (CTAGSOBJ): Compile with regexp support.
4839
48401996-04-09 Eli Zaretskii <eliz@is.elta.co.il>
4841
4842 * hexl.c [DJGPP v2]: Include io.h.
4843 (main) [DJGPP v2]: Switch standard streams to binary with setmode.
4844
4845 * b2m.c (main) [MSDOS]: Switch standard streams to binary under
4846 DJGPP v2.
4847
48481996-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4849
4850 * etags.c (absolute_filename): Use absolutefn.
4851
48521996-03-31 Eli Zaretskii <eliz@is.elta.co.il>
4853
4854 * etags.c (absolutefn) [DOS_NT]: Support Novell drives whose drive
4855 letter isn't an alphabetic character.
4856 (main) [DOS_NT]: Use binary mode on redirected `stdout'.
4857 (process_file) [DOS_NT]: Convert all slashes to forward style.
4858 (absolute_filename) [DOS_NT]: Emit error message for relative
4859 paths with a drive letter.
4860 (absolute_filename) [DOS_NT]: Handle absolute pathnames with
4861 DOS/NT drive letters which try to reference the parent of the root.
4862 (absolute_dirname) [DOS_NT]: Convert all slashes to forward style.
4863
48641996-03-27 Geoff Voelker <voelker@cs.washington.edu>
4865
4866 * makefile.nt: Change uses of del to $(DEL).
4867
880820fe 48681996-03-22 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4869
4870 * etags.c (just_read_file): Reset lineno and charno on entry.
4871
48721996-03-15 Anders Lindgren <andersl@csd.uu.se>
4873
4874 * etags.c: Prolog language totaly rewritten.
ecc54057 4875 (Prolog_functions): Rewritten from scratch.
362bc2da 4876 (skip_comment, prolog_getit): Removed.
ecc54057
JB
4877 (prolog_skip_comment): New function, like old skip_comment.
4878 (prolog_pred, prolog_atom, prolog_white): New functions.
4879 (erlang_func, erlang_attributes): Forward declarations added.
4880 (erlang_atom): Check if backslash ends line inside quoted atom.
362bc2da 4881
880820fe 48821996-03-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4883
4884 * etags.c (absolutefn): DOS_NT version corrected.
4885 (main): Append "/" to the dir name only if not already there.
4886 (print_help): Explain the absolute/relative file name issue.
1c478461 4887
362bc2da
DL
48881996-03-08 Anders Lindgren <andersl@csd.uu.se>
4889
10d1d0af
JB
4890 * etags.c: New Language Erlang added.
4891 (Erlang_functions, erlang_func, erlang_attribute, erlang_atom)
4892 (erlang_white): New functions.
362bc2da
DL
4893 (Erlang_suffixes): New suffix list.
4894 (lang_names): Erlang entry added.
4895 (prolog_getit): Accepts headers spanning several lines.
4896 Always name tags.
b166dcd8 4897 (Prolog_functions): Remove incorrect compensation for
362bc2da
DL
4898 newline characters.
4899 (readline_internal): Zero-terminate last line.
4900
49011996-03-20 Mike Long <mike.long@analog.com>
4902
4903 * b2m.c (main): Initialize progname variable before using it.
4904 Quote `username' in From_ header.
4905
49061996-03-18 Geoff Voelker <voelker@cs.washington.edu>
4907
4908 * ntlib.c (getpid): New function.
4909
49101996-02-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4911
4912 * emacsclient.c (main, both definitions):
4913 Print a newline for normal termination.
4914
49151996-02-21 Noah Friedman <friedman@prep.ai.mit.edu>
4916
4917 * tcp.c (main): Convert port to network byte order.
4918
49191996-01-20 Karl Heuer <kwzh@gnu.ai.mit.edu>
4920
4921 * pop.c (pop_retrieve, getline): Avoid type clashes.
4922
49231996-01-19 Karl Heuer <kwzh@gnu.ai.mit.edu>
4924
4925 * etags.c (enum sym_type, anonymous enum): Delete final comma.
4926
49271996-01-15 Paul Eggert <eggert@twinsun.com>
4928
4929 * rcs2log (initialize_fullname): Add support for NIS+.
4930 (hostname): Fully qualify the default hostname with the domainname
4931 if the hostname lacks a `.'.
4932
362bc2da
DL
49331996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
4934
4935 * etags.c (consider_token): Fix typo in expression.
4936
49371996-01-04 Paul Eggert <eggert@twinsun.com>
4938
4939 * etags.c (substitute): Fix spelling in message.
4940
49411996-01-03 George V. Reilly <georger@microcrafts.com>
4942
4943 * makefile.nt (etags, ctags): Compile with regexp support.
4944 (make-docfile, wakeup, etags, ctags, hexl): Ensure build
4945 subdirectory exists before compiling.
1c478461 4946
362bc2da
DL
49471996-01-02 Karl Heuer <kwzh@gnu.ai.mit.edu>
4948
4949 * emacsserver.c (main): Do chmod based on existing permission.
4950
49511995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4952
4953 * Makefile.in (install): Turn on read/execute permission.
4954
49551995-12-03 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4956
4957 * Makefile.in (LIB_STANDARD_LIBSRC): Use this instead of LIB_STANDARD.
4958 (LOADLIBES): Use LIB_STANDARD_LIBSRC.
4959
49601995-12-01 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
4961
b166dcd8 4962 * Makefile.in (THIS_IS_MAKEFILE): Rename from THIS_IS_YMAKEFILE.
362bc2da 4963
880820fe 49641995-12-07 Francesco Potortì <pot@cnuce.cnr.it>
362bc2da
DL
4965
4966 * etags.c (pfnote): Don't make a tag for ctags if there is no name.
4967 (getit, Asm_labels, Perl_functions, Pascal_functions, L_getit,
4968 get_scheme, prolog_getit): Name the tag in ctags mode.
4969 (pfnote): Truncate ctags lines to 50 chars, like it worked once.
4970 (Perl_interpreters): Accept "@PERL@" as an interpreter.
4971 (suggest_asking_for_help): New function.
4972 (main, get_language_from_name): Use suggest_asking_for_help.
4973 (main): Let get_language_from_name make language existence check.
4974 (streq, strneq): Check the arguments #if DEBUG.
4975
880820fe 49761995-12-06 Francesco Potortì <pot@cnuce.cnr.it>
362bc2da
DL
4977
4978 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
b166dcd8
KC
4979 (gperf): Add keywords for Objective C and GNU macros.
4980 (sym_type): Add values to account for Objective C and GNU macros.
362bc2da
DL
4981 (begtk): The '@' character can start a token.
4982 (objdef, methodlen, objtag): New variables for Objective C.
b166dcd8 4983 (consider_token, C_entries): Add code for Objective C.
362bc2da
DL
4984 (plain_C_suffixes): Add .m and .lm for Objective C.
4985 (Yacc_suffixes): Add .ym for Objective yacc.
4986 (GROW_LINEBUFFER): New macro.
4987 (consider_token, C_entries, Pascal_functions): Use the new macro.
4988 (consider_token): Take one more argument. Caller changed.
4989 (consider_token): Use the hashing function to spot GNU macros.
4990 (C_entries): Consider // as a comment start even in plain C for
4991 the sake of Objective C parsing.
4992
880820fe 49931995-12-04 Francesco Potortì <pot@cnuce.cnr.it>
362bc2da 4994
2f2c687b 4995 * Makefile.in (ctags): Depend on etags only for simplicity;
ecc54057 4996 compile with regexp support enabled.
362bc2da
DL
4997
49981995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
4999
5000 * Version 19.30 released.
5001
50021995-11-22 Geoff Voelker <voelker@cs.washington.edu>
5003
5004 * makefile.nt (DOC, clean): Don't use switches to del not
5005 supported by Windows 95.
5006
50071995-11-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5008
5009 * Makefile.in (regex.o): Depend on ../src/config.h.
5010
50111995-11-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5012
5013 * Makefile.in (LIB_STANDARD): Extract this as in src/Makefile.in.
5014 (LOADLIBES): Use LIB_STANDARD.
5015
50161995-11-07 Kevin Gallo <kgallo@microsoft.com>
5017
5018 * makefile.nt (DOC): Include strings from w32term.c, w32xfns.c,
5019 w32fns.c, w32faces.c, w32select.c, w32menu.c, w32reg.c; remove
5020 Windows 95 conditional.
5021
880820fe 50221995-11-06 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5023
b166dcd8
KC
5024 * etags.c (get_lang_from_name, get_lang_from_interpreter)
5025 (get_lang_from_suffix): New functions.
362bc2da
DL
5026 (get_language): Function deleted.
5027 (lang_entry): Two members added to struct.
5028 (lang_names): Reflect the new layout of lang_entry.
5029 (print_language_names, main, find_entries): Use the new functions.
5030 (find_entries): Look at the first line for #! if no language.
5031 (C_entries): Invalidate the token when funcdef is reset.
5032 (Perl_functions): New function.
5033 (lang_suffixes): .pl and .pm are Perl suffixes.
5034
880820fe 50351995-11-02 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5036
5037 * etags.c (lowcase): Use the standard tolower function.
5038 (substitute): Remove some wrong and some useless code related with
a64387ee 5039 escape '\' character in regexp replacement string.
b166dcd8 5040 (TEX_defenv): Add part, appendix, entry, index. Remove typeout.
362bc2da
DL
5041 (lang_suffixes): New suffixes: .hpp for C++; .f90 for Fortran;
5042 .bib, .ltx, .TeX for TeX (.bbl, .dtx removed); .ml for Lisp;
5043 .prolog for prolog (.pl removed).
5044 (massage_name, etags_getcwd): Use lowcase instead of tolower.
b166dcd8 5045 (C_entries, find_entries): Add comments about memory leakage.
362bc2da
DL
5046 (add_node): Dead code removed.
5047
50481995-10-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5049
5050 * Makefile.in (getdate.o, movemail.o): Specify -Demacs.
5051 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Delete -Demacs.
5052
50531995-08-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5054
5055 * test-distrib.c: Add #undef for open, close, read, write.
5056
50571995-08-23 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
5058
5059 * test-distrib.c [HAVE_CONFIG_H]: Include config.h.
5060 [! O_RDONLY]: Define it to zero.
5061 (main): Use O_RDONLY instead of explicit zero.
5062
880820fe 50631995-08-17 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5064
5065 * etags.c (Pascal_functions): Close comment bug corrected.
5066 (add_node): Correctly compare node file names.
5067 (Pascal_functions): Correctly allocate and free memory for tline.
5068 (pfnote): Put the definition of fp in the innermost block.
5069 (NODE): `named' member removed.
5070 (pfnote, free_tree, put_entries, total_size_of_entries): Do not
1c478461 5071 use the `named' member, check whether `name' is NULL instead.
362bc2da
DL
5072 (pfnote): `named' argument removed, all callers changed.
5073 (getit, Asm_labels, Pascal_functions, L_getit, get_scheme,
5074 TeX_functions, TEX_getit, prolog_getit): Useless string allocation
1c478461 5075 removed from pfnote call, some code cleanup.
362bc2da
DL
5076 (relative_filename): Free temporary space allocated by concat.
5077
50781995-08-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5079
5080 * Makefile.in (getdate.c): New target.
5081 (getdate.o): Just compile getdate.c.
5082
50831995-08-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
5084
5085 * fakemail.c (xrealloc): Change cast to match return type.
5086
50871995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5088
5089 * fakemail.c (xmalloc, xrealloc): Use return-type long *.
5090
50911995-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5092
5093 * movemail.c (main): Fix previous change.
5094 Add error check for empty OUTNAME.
5095
50961995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5097
5098 * movemail.c (main): Mention lock file name in error message.
5099
51001995-07-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5101
5102 * profile.c (gettimeofday): New function, defined if necessary.
5103
51041995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5105
5106 * Makefile.in: Renamed from Makefile.in.in.
5107 (distclean): Delete Makefile.c, not Makefile.in.
5108
51091995-07-17 Michael Shields <shields@tembel.org>
5110
5111 * Makefile.in.in (tags): Synonym for `TAGS'.
5112
51131995-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
5114
5115 * Makefile.in.in (install, maybe-blessmail): Don't cd ..;
5116 configure has already set $(INSTALL) to the proper relative path.
5117
362bc2da
DL
51181995-07-08 Paul Eggert <eggert@twinsun.com>
5119
5120 * rcs2log (datearg): Separate date from time with comma, not space,
5121 to work around CVS 1.5 bug.
5122 (CVSROOT): Don't abort when unset if repository is absolute.
5123
51241995-07-07 Paul Eggert <eggert@twinsun.com>
5125
5126 * rcs-checkin, rcs2log, vcdiff:
5127 Replace `#!/bin/sh' with `#! /bin/sh', for benefit of systems
5128 that interpret `#! /' as a 4-byte magic number.
5129
51301995-06-29 Jonathan I. Kamens <jik@cam.ov.com>
5131
5132 * movemail.c (main) [MAIL_USE_POP]: When a user specifies a
5133 mailbox with "po:mailbox", the mailbox is everything after the
5134 "po:" prefix.
5135
51361995-06-28 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5137
5138 * emacsserver.c: Make all error messages start with `Error: '.
ecc54057 5139 (fatal_error, perror_1): New functions, use throughout.
362bc2da
DL
5140
51411995-06-28 Paul Eggert <eggert@twinsun.com>
5142
5143 * rcs2log (CVSROOT, repository):
5144 Allow remote repositories a la CVS 1.4.
5145
880820fe 51461995-06-27 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5147
2f2c687b
JB
5148 * etags.c (plain_C_entries): New function.
5149 (lowcase): New macro.
5150 (tail, Fortran_functions, Pascal_functions): Use new macro lowcase.
5151 (lang_suffixes): New suffix ".pc" for Pro*C files.
5152 (consider_token): Don't tag all tokens beginning with DEFUN & Co..
5153 (tail): Look for the end of the token when comparing.
5154 (takeprec): Since now tail behaves differently, use strneq.
362bc2da
DL
5155
51561995-06-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5157
5158 * movemail.c (main): Add newline in usage message.
5159
51601995-06-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5161
5162 * make-docfile.c (scan_file): Make sure it never looks at filename[-1].
5163
880820fe 51641995-06-21 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5165
5166 * etags.c (find_entries): Rewind before rereading the input file.
5167
51681995-06-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5169
5170 * Version 19.29 released.
5171
5172 * make-docfile.c (main) [MSDOS]: Do set _fmode.
5173 This undoes part of the previous change.
5174
51751995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5176
5177 * make-docfile.c (main): On MSDOS, don't change stdout
5178 to binary, and insist on an -o option.
5179
51801995-06-13 Geoff Voelker <voelker@cs.washington.edu>
5181
5182 * etags.c (process_file,absolute_filename): Handle filenames
5183 starting with a drive letter.
5184
5185 * makefile.nt (install): Copy wakeup.exe properly.
5186
51871995-06-08 Karl Heuer <kwzh@gnu.ai.mit.edu>
5188
5189 * make-docfile.c [MSDOS]: #undef chdir.
5190
51911995-06-04 Paul Eggert <eggert@twinsun.com>
5192
5193 * rcs2log (output_authors): Allow ':' in time zone,
5194 as per ISO 8601 and RCS 5.6.8 beta.
5195
880820fe 51961995-05-29 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5197
5198 * etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
5199 compatibility problems.
5200
52011995-05-26 Richard Stallman <rms@gnu.ai.mit.edu>
5202
5203 * etags.c (etags_getcwd): Don't use #elif.
5204 Have just one function body.
5205
52061995-05-25 Geoff Voelker <voelker@cs.washington.edu>
5207
5208 * makefile.nt (LIBS): Use BASE_LIBS.
5209 (make-docfile.exe,hexl.exe,wakeup.exe,etags.exe): Don't depend
5210 upon LIBS.
5211 (DOC): Use del instead of rm.
5212 (DOC) [WINDOWS95]: Use DOC.
5213 (clean): Handle MSVC aux files.
5214 (config.h,paths.h): Use $(CP) instead of cp.
5215 (config.h): Use $(CONFIG_H)
5216 (make-docfile.obj): Depend upon config.h.
5217 Clean up comments.
5218
880820fe 52191995-05-23 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5220
5221 * etags.c (etags_getcwd): Use /bin/pwd instead of pwd because the
5222 former gives the true path even in the presence of simlinks.
5223
52241995-05-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5225
5226 * movemail.c (main): Increase lock timeout to five minutes.
5227
52281995-05-06 Geoff Voelker <voelker@cs.washington.edu>
5229
5230 * makefile.nt (obj): Use .c files.
5231
52321995-05-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5233
5234 * make-docfile.c: Include config.h.
5235 (NO_SHORTNAMES): New definition.
5236 (xmalloc): Return long *.
5237
5238 * etags.c (C_entries): Cast result of xrealloc.
5239 (xmalloc, xrealloc): Declare them to return long *.
5240
5241 * b2m.c (xmalloc, xrealloc): Declare them long *.
5242
5243 * movemail.c (xmalloc): Declare it to return long *.
5244
52451995-04-30 Paul Eggert <eggert@twinsun.com>
5246
5247 * rcs2log (datearg): If rlog options are specified explicitly,
5248 omit the implicit '-d>DATE' option.
5249 (repository, rlog): Allow absolute paths to CVS repositories.
5250 Look only at the first line of CVS/Repository.
5251
52521995-04-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
5253
5254 * Makefile.in.in (extraclean): Depend on maintainer-clean, not
5255 realclean.
5256
52571995-04-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5258
5259 * Makefile.in.in [REGEXP_IN_LIBC] (REGEXPOBJ, REGEXPDEPS):
5260 Alternative (empty) definitions.
5261
52621995-04-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5263
5264 * emacsclient.c (main): Add argv[0] to an error message.
5265
52661995-04-13 Karl Heuer <kwzh@gnu.ai.mit.edu>
5267
5268 * emacsclient.c (main): Improve error handling.
5269 * cvtmail.c (main, skip_to_lf): Improve error handling.
5270 (sysfail): New function.
5271
5272 * b2m.c (main): Check for trailing ", " before trying to delete it.
5273
52741995-04-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
5275
5276 * Makefile.in.in (all): Build test-distrib and make-docfile.
5277
5278 * make-docfile.c (scan_c_file): At end, restore file name last char
5279 to its original value.
5280
52811995-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5282
5283 * emacsclient.c, emacsserver.c: Test NO_SOCKETS_IN_FILE_SYSTEM.
5284
52851995-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5286
b166dcd8 5287 * Makefile.in.in (BASE_CFLAGS): Rename from ALLOCA_CFLAGS.
362bc2da
DL
5288 (alloca.o, regex.o): Use BASE_CFLAGS.
5289
52901995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5291
5292 * emacsclient.c [Berkeley sockets version] (main): Declare getcwd.
5293
52941995-04-04 Karl Heuer <kwzh@gnu.ai.mit.edu>
5295
5296 * Makefile.in.in (aixcc, aixcc.c): Targets deleted.
b166dcd8 5297 (SOURCES, distclean): Remove obsolete references to aixcc.
362bc2da
DL
5298
52991995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5300
5301 * aixcc.lex: File deleted--surely obsolete now.
5302
53031995-03-23 Paul Eggert <eggert@twinsun.com>
5304
5305 * rcs2log (output_authors): Replace /[/]/ by /[\/]/, for
5306 portability to mawk and nawk.
5307
53081995-03-21 Paul Eggert <eggert@twinsun.com>
5309
5310 * rcs2log: Treat -u "login:fullname:mailaddr" as if it were
5311 -u "login<tab>fullname<tab>mailaddr".
5312
53131995-03-21 Paul Eggert <eggert@twinsun.com>
5314
5315 * rcs2log: Add -u "login<tab>fullname<tab>mailaddr" option, which
5316 replaces the (now obsolescent) -n login fullname mailaddr option.
5317 Add -R option for recursive rlog.
07655e62 5318 (AWK): New environment variable (default `awk') for awk program name.
362bc2da
DL
5319 (output_authors, tab, loginFullnameMailaddrs, recursive): New vars.
5320 Quote authors and fullnames correctly.
5321 Don't omit path from repository root when logging CVS files.
5322
53231995-03-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5324
5325 * emacsclient.c, emacsserver.c: Use BSD sockets whenever available,
5326 even if HAVE_SYSVIPC.
5327 * emacsclient.c (main): Use getcwd if not BSD.
5328
880820fe 53291995-03-13 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5330
2f2c687b 5331 * etags.c (process_file): Free (filename) after using it.
362bc2da
DL
5332 (readline_internal): Do not access the char before start of line.
5333
880820fe 53341995-02-22 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5335
5336 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
5337 savetok.valid. Mark token as valid when it is initialised.
5338 (make_tag): Make token only if token is valid and reset validity.
5339 (CNL_SAVE_DEFINEDEF): Test for savetok.valid instead of token_saved.
b166dcd8 5340 (TOKEN): Add a new member: valid.
362bc2da 5341
880820fe 53421995-02-15 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5343
5344 * etags.c (C_entries): Bug corrected in xrealloc of token_str.
5345 (main): Do not read twice the last filename in the stdin file list.
5346
880820fe 53471995-02-14 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5348
5349 * etags.c (C_entries): Initialise the new members of TOKEN.
5350 (C_entries): Do not allocate a new space for each token found by
5351 consider_token. Let make_tag do that instead.
5352 (make_tag): Since now TOKEN has memory of where it is taken from,
5353 this new macro substitutes both make_tag_from_new_lb and
5354 make_tag_from_oth_lb. All callers changed.
5355 (TOKEN): Add linepos and buffer members.
5356 (main): Initialise token_str.
5357 (lang_extensions): Recognise .c++ and .h++ as C++ file suffixes.
5358 (token_str): New global variable used by C_entries.
5359
53601995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
5361
b166dcd8 5362 * Makefile.in.in (maintainer-clean): Rename from realclean.
362bc2da 5363
880820fe 53641995-02-01 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5365
5366 * etags.c (pfnote): Initialise been_warned in the node.
b166dcd8 5367 (C_entries): Remove a speed hack for the sake of clarity.
362bc2da 5368
880820fe 53691995-01-18 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5370
5371 * etags.c (longopts, print_help, main): Use -I as abbreviation
5372 for the --ignore-indentation option.
5373 (main): Do not print an error message for unknown options.
5374
880820fe 53751995-01-12 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5376
5377 * etags.c (FILEPOS, GET_CHARNO, GET_FILEPOS, max, LINENO): Deleted.
194d44e7
JB
5378 (append_to_tagfile, typedefs, typedefs_and_cplusplus)
5379 (constantypedefs, update, vgrind_style, no_warnings)
5380 (cxref_style, cplusplus, noindentypedefs): Were int, now logical.
362bc2da
DL
5381 (permit_duplicates): Was a var, now a #define.
5382 (filename_lb): Was global, now local to main.
5383 (main): Open the tag file when in cxref mode.
5384 Use a BUFSIZ size buffer for making the shell commands.
5385 Look at the return value from the system routine.
5386 Exit when cannot open the tag file.
5387 (process_file): Open the file and pass the FILE* to find_entries.
5388 (find_entries): Now void, because does not open the file itself.
5389 (pfnote): Recovering from lack of memory does not work. Removed.
5390 Use savenstr and simplify the code.
5391 (free_tree): Only free the name space if node is named.
5392 (structtag): Now a pointer, not a fixed length array of chars.
5393 (consider_token): Don't take a token as argument. Use savenstr
5394 when saving a tag in structtag. Callers changed.
5395 (TOKEN): Structure changed. Now used only in C_entries.
5396 (TOKEN_SAVED_P, SAVE_TOKEN, RESTORE_TOKEN): Deleted.
5397 (C_entries): nameb and savenameb deleted. Use dinamic allocation.
5398 (pfcnt): Deleted. Users updated.
194d44e7
JB
5399 (getit, Asm_labels, Pascal_functions, L_getit, get_scheme)
5400 (TEX_getit, prolog_getit): Use dinamic allocation for storing
362bc2da
DL
5401 the tag instead of a fixed size buffer.
5402
54031995-01-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5404
5405 * movemail.c (main): Skip past the colon in inname.
5406
880820fe 54071995-01-10 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5408
5409 * etags.c (pfatal): New function.
5410 (main, etags_getcwd): Use pfatal.
5411 (etags_getcwd): Corrected another bug in the HAVE_GETCWD version.
5412
880820fe 54131995-01-10 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5414
5415 * etags.c (Lang_function): Use void instead to declare the
5416 language functions, because many compilers are buggy.
5417 (etags_getcwd): Fix the previous fix on the #else branch.
5418 (readline_internal): Discard possible \r before \n here.
5419 (C_entries): Do not deal with \r here: undo previous fix.
5420
880820fe 54211995-01-09 Francesco Potortì (pot@fly)
362bc2da
DL
5422
5423 * b2m.c (concat, xmalloc, xrealloc, readline, xnew): Four new
5424 functions and a macro that allow the program to work on input
5425 lines of whatever length. Copied from etags.c.
5426 (fatal): Print a fatal error message and exit.
5427 (main): Use the new functions. Fixed a bug that made a \037 char
5428 appear at the end of the output.
5429
54301995-01-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5431
5432 * etags.c (C_entries): Ignore carriage return at end of line.
5433
54341994-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5435
5436 * fakemail.c (xmalloc, xrealloc): Add casts.
5437 (add_field): Handle <...> and "..." syntax.
5438 (setup_files, get_keyword): Clean up parens and line breaks.
5439 (args_size): Likewise.
5440
54411994-12-21 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
5442
5443 * yow.c: Include program name in error messages.
5444
54451994-12-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5446
5447 * make-docfile.c (scan_lisp_file): Handle dynamic doc strings.
5448 (xmalloc, fatal, error): New functions.
5449 (progname): New variable.
5450 (main): Set progname.
5451
54521994-12-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5453
5454 * emacsclient.c, emacsserver.c [HAVE_SYSVIPC]: Include sys/utsname.h.
5455 (main): If socket/mqueue name is in home dir, add in the host name.
5456 Rename .emacs_server to .emacs-server....
5457
54581994-12-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5459
5460 * emacsclient.c [!HAVE_SYSVIPC] (main): Fix error message diction.
5461
880820fe 54621994-11-22 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5463
2f2c687b
JB
5464 * etags.c (print_help): Print --regex usage for ctags also.
5465 (main): Use -h in addition to -H as abbreviation for --help.
362bc2da 5466
880820fe 54671994-11-16 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5468
5469 * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
5470 is compiled if this is defined. The new functions and variables
5471 added #ifdef ETAGS_REGEXP are not listed in this ChangeLog.
5472 [VMS]: All VMS specific code previously contained in
5473 etags-vmslib.c is now included here, modified for dealing with
5474 language and regex options intermixed with filenames.
5475 (header_file): Global variable deleted.
5476 (Lang_Function): New typedef. All language parser functions
5477 changed to this new type.
5478 (string_numeric_p, substr, prestr): Functions deleted.
5479 (readline_internal): Does the job that readline did previously.
5480 (longopts): --language and --regex options added.
5481 (lang_names, lang_extensions, lang_func, print_language_names):
5482 New structures, variables and functions for choosing languages.
5483 (print_help): Help strings updated. Calls print_language_names.
5484 (argument_type, ARGUMENT): Typedefs for dealing with language and
5485 regex options intermixed with filenames.
b166dcd8 5486 (main): Change the way of dealing with arguments on the command
362bc2da
DL
5487 line to deal with language and regex options intermixed with
5488 filenames.
5489 (get_language, default_C_entries, Cplusplus_entries,
5490 Cstar_entries, Yacc_entries, just_read_file): New functions.
5491 (find_entries): Use the new method for choosing the language.
5492 (Pascal_functions): Allow intermixing of comment styles.
5493 (prolog_getit, skip_comment): Rewritten for speed.
5494 (readline): Rewritten to deal with regexps.
5495
880820fe 54961994-11-16 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5497
5498 * etags.c (<errno.h>): #include added.
5499 (etags_getcwd): Check return value from getcwd.
5500
55011994-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5502
5503 * profile.c (TV1, TV2): Use EMACS_TIME as type.
5504 (get_time): Use EMACS_SUB_TIME.
5505
d57727c9 55061994-10-30 Geoff Voelker <voelker@cs.washington.edu>
362bc2da
DL
5507
5508 * ntlib.c: New file.
5509 * makefile.nt: New file.
5510
5511 * make-docfile.c (main) [WINDOWSNT]: Set _fmode and stdout to O_BINARY.
5512 [WINDOWSNT]: Include the NT headers.
5513 (READ_TEXT, READ_BINARY): Test DOS_NT, not MSDOS.
5514
5515 * etags.c (main, etags_getcwd): Test DOS_NT instead of MSDOS.
5516 [WINDOWSNT]: Include some NT headers.
5517
55181994-10-24 Jonathan I. Kamens (jik@cam.ov.com)
5519
5520 * pop.c (getline): When a search of already-read input for CRLF
5521 fails, store the fact that we've searched it and don't search it
5522 again after reading more data.
5523
5524 * pop.c (getline): When determining whether or not it's necessary
5525 to grow the input buffer, take into account the null that's stored
5526 at the end of already-read input in the buffer.
5527
880820fe 55281994-10-21 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5529
2f2c687b 5530 * etags.c (prestr, substr): Return a logical type.
362bc2da 5531 (consider_token): Comment out "EXFUN". Use "DEFUN" instead of "DEF".
2f2c687b 5532 (consider_token): Set funcdef to fignore when a DEFUN is met.
362bc2da
DL
5533 (C_entries): Now we can use Tom Hageman patch for extern "C".
5534
55351994-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5536
5537 * movemail.c: PopServer renamed to popserver throughout.
5538
55391994-10-20 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
5540
5541 * etags.c: Don't declare malloc, since we include config.h.
5542 * fakemail.c: Likewise.
5543
55441994-10-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5545
5546 * movemail.c: Don't declare malloc.
5547
55481994-10-19 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
5549
5550 * rcs-checkin: Use test -r instead of < to check readability, to
ecc54057 5551 avoid syntax error.
362bc2da
DL
5552
55531994-10-19 Jonathan I. Kamens (jik@cam.ov.com)
5554
5555 * pop.c: Only include ../src/config.h if HAVE_CONFIG_H is
5556 defined, and if HAVE_CONFIG_H isn't defined, define
5557 MAIL_USE_POP always (so that this file can be included in
5558 other programs besides emacs).
5559
5560 * pop.c: Only declare h_errno if HAVE_H_ERRNO isn't defined or
5561 HAVE_CONFIG_H isn't defined.
5562
5563 * pop.c (find_crlf, getline): Instead of using strstr, use a
5564 custom function for finding CRLF.
5565 (my_strstr): Function deleted.
5566
55671994-10-17 Jonathan I. Kamens (jik@cam.ov.com)
5568
5569 * pop.c (getline): Fix a segfault because of passing a
5570 non-null-terminated string into strstr(). Fix from
5571 djm@va.pubnix.com (David J. MacKenzie).
5572
5573 * pop.c: Don't include <string.h> and <strings.h>.
5574
b166dcd8
KC
5575 * pop.c: Include <des.h> before <krb.h>, rather than after.
5576 They should be interchangeable, and indeed the inclusion is done in
362bc2da
DL
5577 both orders in various files in the Kerberos 4 library sources,
5578 but djm@va.pubnix.com (David J. MacKenzie) reports that BSDI
5579 requires that <des.h> be included first, and I don't see any harm
5580 in changing the order.
5581
5582 * pop.c: Include ../src/config.h, to get HAVE_STRING_H and
5583 STDC_HEADERS, if they're defined. Undef open, read, write and
5584 close after including it.
5585
55861994-10-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5587
5588 * pop.c: Fix mismatch in conditionals.
5589
5590 * make-docfile.c (main): Don't process one input file twice.
5591 Never use exit code > 1.
5592
5593 * pop.c (open, close, read, write): Add #undefs.
5594
5595 * pop.c: Don't declare malloc, realloc, free.
5596 Include ../src/config.h.
5597 Don't include string.h or strings.h.
5598 Include des.h before krb.h.
5599 Do declare my_strstr.
5600 (getline): Really use my_strstr.
5601 Leave one empty place in server->buffer,
5602 and put a null at the end of the data in it.
5603
56041994-10-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
5605
b166dcd8
KC
5606 * emacsserver.c [SYSV_IPC] (main): Catch SIGHUP as well.
5607 Don't call kill with pid 0. Handle EINTR when receiving messages.
362bc2da
DL
5608
56091994-10-17 Karl Heuer <kwzh@gnu.ai.mit.edu>
5610
5611 * Makefile.in.in (regex.o): Use full path to find regex.c.
5612
880820fe 56131994-10-17 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 5614
2f2c687b
JB
5615 * Makefile.in.in (etags): Add dependency on regex.o, link with it.
5616 (REGEXPOBJ, REGEXPDEPS, regex.o): Target and macros added.
362bc2da
DL
5617
56181994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
5619
5620 * Makefile.in.in (DONT_INSTALL): Remove make-path.
5621 (${archlibdir}): Use mkinstalldirs instead.
5622
5623 * movemail.c: Make functions that return nothing void, not
5624 implicitly int.
5625 (main): Improve usage message.
5626 (error): Write to stderr, not stdout.
5627
e43b1141
GM
5628 * b2m.c, cvtmail.c, digest-doc.c, emacsclient.c, emacsserver.c:
5629 * etags.c, fakemail.c, hexl.c, make-docfile.c, profile.c, sorted-doc.c:
5630 * test-distrib.c, timer.c, wakeup.c, yow.c: Eliminate some -Wall
5631 warnings from unused variables and implicitly declared functions.
362bc2da
DL
5632
56331994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5634
5635 * Makefile.in.in (clean): rm DOC* and *.tab.[ch].
5636 (distclean): Not here.
5637
b166dcd8 5638 * Makefile.in.in (libexecdir): Rename from libdir.
362bc2da 5639
880820fe 56401994-10-11 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5641
5642 * etags.c (C_entries): Name the #define's that are macros.
5643
56441994-10-10 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
5645
5646 * emacsserver.c [! SYSVIPC] (main): Fix uses of FD_* macros:
5647 fd_set arg is a pointer, descriptor arg comes first.
5648
880820fe 56491994-09-29 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5650
5651 * etags.c (C_entries): Recognise typedef of ANSI style functions.
5652 (C_entries): Recognise #define inside a struct.
5653 (C_entries): ANSI tells that preprocessor commands do not have to
5654 start on the first column.
5655 (print_help): Documentation corrected for -d and -D.
5656 (white, endtk): ANSI tells the vertical tab is a separator.
5657
56581994-09-24 Jonathan I. Kamens (jik@gza-client1.aktis.com)
5659
5660 * Makefile.in.in (MOVE_FLAGS, MOVE_LIBS): New variables.
5661 (pop.o, movemail.o): New targets.
5662 (movemail): Link in pop.o and movemail.o. Use MOVE_LIBS, MOVE_FLAGS.
5663
5664 * pop.c, pop.h: New files.
5665
5666 * movemail.c: Improve POP code, move most of it into a separate file.
5667 (mbx_delimit_end, mbx_delimit_begin): Check for errors.
5668 (mbx_write): Check for errors and for From line.
5669 (pop_retr, popmail): Use subroutines in pop.c to do the real work.
5670 (get_errmsg, multiline, getline, putline, pop_stat, pop_command)
5671 (pop_init): Functions deleted.
5672
56731994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
5674
5675 * make-path.c (touchy_mkdir): Make dir ugo+rx even if it isn't new.
5676 Rename path to dirname.
5677
56781994-09-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5679
5680 * Makefile.in.in (UTILITIES):
5681 Remove test-distrib, make-docfile, make-path.
5682 (DONT_INSTALL): New variable--list those files here.
5683 (clean): Delete the files in DONT_INSTALL.
5684
56851994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5686
5687 * b2m.c (from, labels, data): Use MAX_DATA_LEN as length.
5688 (main): Use fgets, not gets.
5689
56901994-09-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5691
5692 * timer.c: Don't declare malloc.
5693
56941994-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
5695
5696 * emacsserver.c (FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already
5697 defined, use simple 32-bit versions of these macros.
5698 (main) [HAVE_SOCKETS & !HAVE_SYSVIPC]: Use these macros.
5699
c60ee5e7 57001994-09-16 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
362bc2da
DL
5701
5702 * etags.c (etags_getcwd): Use getcwd if available.
5703
57041994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5705
5706 * Version 19.27 released.
5707
57081994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5709
5710 * Version 19.26 released.
5711
57121994-08-15 Paul Eggert <eggert@twinsun.com>
5713
5714 * rcs2log: Add support for CVS.
5715 Work with `rlog's that output ISO 8601 dates.
5716
57171994-08-09 Lawrence R. Dodd <dodd@roebling.poly.edu>
5718
5719 * rcs2log: Use <> to delimit email address.
5720
57211994-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5722
5723 * emacsserver.c [SYSV_IPC] (main): Make a separate process
5724 so we can listen for multiple requests.
5725
57261994-08-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5727
5728 * movemail.c: Include config.h first thing.
5729
57301994-08-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5731
5732 * emacsserver.c (main): Add casts to avoid warnings.
5733
57341994-07-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5735
5736 * Makefile.in.in (${archlibdir}): Compare the proper dir
5737 before installing the scripts.
5738
57391994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5740
5741 * emacsclient.c (main): New local var progname saves argv[0].
5742
57431994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5744
5745 * emacsclient.c (main): Don't actually modify argv[0].
5746 Modify a copy instead.
5747
57481994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5749
5750 * profile.c (reset_watch, get_time): Use EMACS_GET_TIME.
5751 (tzp): Var deleted.
5752
5753 * Makefile.in.in: Add #undef alloca.
5754
57551994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5756
5757 * timer.c (xmalloc): New function.
5758
57591994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5760
5761 * Makefile.in.in (ALLOCA_CFLAGS): New variable.
5762 (alloca.o): New target.
5763
57641994-07-08 Dave Love (d.love@dl.ac.uk)
5765
2f2c687b 5766 * etags.c (takeprec): Recognise `character*(*) function'.
362bc2da 5767
880820fe 57681994-07-08 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5769
ecc54057
JB
5770 * etags.c (main): Don't barf on obsolete -t and -T switches.
5771 (main): Print an explicative message when a switch is not known.
362bc2da
DL
5772
57731994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5774
5775 * hexl.c: Don't declare exit or perror.
5776
5777 * emacsserver.c (main): Don't declare geteuid.
5778 Don't declare getenv if convex.
5779
57801994-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5781
5782 * Makefile.in.in (test-distrib): Use ALL_CFLAGS.
5783
880820fe 57841994-06-03 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da
DL
5785
5786 * etags.c (absolute_filename): Remove infinite loop bug when
5787 accessing files in directories whose name begins with a dot.
5788
880820fe 57891994-06-03 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da
DL
5790
5791 * etags.c (etags_getcwd): Delete the trailing newline from cwd.
5792
57931994-06-01 Morten Welinder (terra@diku.dk)
5794
5795 * yow.c (rootrelativepath) [MSDOS]: Define, expanding to dynamic
5796 location of data directory.
5797
57981994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5799
5800 * Version 19.25 released.
5801
58021994-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5803
5804 * Makefile.in.in (distclean): Delete Makefile, Makefile.in, blessmail.
5805
58061994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5807
5808 * Makefile.in.in (blessmail): Don't depend on ../src/emacs.
5809
58101994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5811
5812 * Version 19.24 released.
5813
58141994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5815
5816 * make-docfile.c (write_c_args): Put `default' in upper case.
5817
58181994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5819
5820 * etags.c (etags_getcwd): Cast result of popen.
5821 (popen): Declaration deleted.
5822
58231994-05-17 Karl Heuer (kwzh@gnu.ai.mit.edu)
5824
5825 * etags.c [!MSDOS]: Declare popen.
5826
58271994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5828
5829 * b2m.c (main): Avoid crash if argc is 1.
5830
58311994-05-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5832
5833 * Version 19.23 released.
5834
5835 * Makefile.in.in (blessmail): Specify directory for blessmail.el.
5836
58371994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5838
5839 * Makefile.in.in (maybe-blessmail): Mention bless-mail is in lib-src.
5840
58411994-05-05 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
5842
5843 * Makefile.in.in: Fix out of date comment.
5844
58451994-05-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5846
5847 * Makefile.in.in: Put in a separator for where to start cpp procssing.
5848 Move all autoconf substitutions above that point.
5849 Above that point, use Make-style comments.
5850 This goes with changes in ../configure.in.
5851
58521994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5853
5854 * Makefile.in.in (maybe-blessmail): New target to print the blessmail
5855 warning message.
5856 (${archlibdir}): Don't do it here. Don't depend on blessmail.
5857
58581994-05-02 Karl Heuer (kwzh@gnu.ai.mit.edu)
5859
5860 * Makefile.in.in (${archlibdir}): Be lenient about wc output format.
5861
58621994-05-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5863
5864 * Makefile.in.in (${archlibdir}): Don't run blessmail; instead
5865 print advice to run it, if it has anything significant to do.
5866 And only if MOVEMAIL_NEEDS_BLESSING.
5867 (blessmail): Use emacs, not temacs.
b166dcd8 5868 (configuration): Rename from configname.
362bc2da
DL
5869
58701994-04-30 Morten Welinder (terra@diku.dk)
5871
5872 * etags.c (find_entries): Treat `*.cpp' as C++ files.
5873
58741994-04-30 Morten Welinder (terra@diku.dk)
5875
5876 * etags.c [MSDOS]: #include <sys/param.h> for the following.
5877 [MSDOS] (etags_getcwd): Define simple MSDOS version without spawning
5878 a shell.
5879
58801994-04-29 Morten Welinder (terra@diku.dk)
5881
5882 * hexl.c [MSDOS]: Don't define proto type for exit.
5883
58841994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5885
5886 * b2m.c: Don't include string.h or strings.h.
5887
58881994-04-27 Karl Heuer (kwzh@gnu.ai.mit.edu)
5889
5890 * Makefile.in.in: C_SWITCH_SYSTEM and C_SWITCH_MACHINE are now cpp
5891 symbols, not make variables.
5892
58931994-04-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5894
5895 * Makefile.in.in (etags, ctags): Make VERSION a string constant.
5896 * etags.c (print_version): Print VERSION as a string.
5897
58981994-04-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5899
5900 * fakemail.c (readline): Fix updating of p when buffer grows.
5901
59021994-04-20 Karl Heuer (kwzh@gnu.ai.mit.edu)
5903
5904 * Makefile.in.in (blessmail): New target.
5905 ${archlibdir}: Use blessmail when installing movemail.
5906
59071994-04-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5908
5909 * fakemail.c (readline): When extending the buffer,
5910 calculate end afresh using the new size.
5911
880820fe 59121994-04-18 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 5913
2f2c687b 5914 * etags.c (main, print_help): Eliminate the -F option.
362bc2da 5915
880820fe 59161994-04-18 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 5917
2f2c687b 5918 * etags.c (absolute_filename): Compare against '\0' instead of NULL.
362bc2da
DL
5919
59201994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5921
5922 * Makefile.in.in: Renamed from Makefile.in.
5923 Makefile.in is now generated from it, and then preprocessed.
5924 Change comments to C syntax.
5925 Include config.h.
5926 (LIBS_SYSTEM, LIBS_MACHINE): Define as empty if not defined.
5927 (LOADLIBES): Define from LIBS_SYSTEM and LIBS_MACHINE.
5928
59291994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5930
5931 * movemail.c [HAVE_UNISTD_H]: Include unistd.h.
5932
880820fe 59331994-04-12 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da
DL
5934
5935 * etags.c (etags_getcwd): Initialize bufsize.
5936
59371994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5938
5939 * profile.c (gettimeofday): If system doesn't have this, define it
5940 to give a fatal error.
5941
59421994-04-11 Karl Heuer (kwzh@gnu.ai.mit.edu)
5943
5944 * movemail.c (main): Use setuid, not seteuid.
5945
59461994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5947
5948 * etags.c: #undef static.
5949
880820fe 59501994-04-08 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 5951
b166dcd8 5952 * etags.c (outf, outfiledir): Rename to tagf, tagfiledir.
2f2c687b 5953 (PF_funcs, Asm_funcs, L_funcs, PAS_funcs, TEX_funcs)
b166dcd8 5954 (Scheme_funcs, prolog_funcs): Rename to Fortran_functions,
362bc2da
DL
5955 Asm_labels, Lisp_functions, Pascal_functions, Scheme_functions,
5956 TeX_functions, Prolog_functions.
2f2c687b
JB
5957 (inf): No more a global variable.
5958 (C_entries): Take 2nd parameter `inf' instead of using the global one.
b166dcd8
KC
5959 (find_entries): Add the cp1 var for optimisation.
5960 (find_entries): Add more suffixes for assembler files.
362bc2da
DL
5961 (Asm_funcs): Now finds labels even without an ending colon.
5962
880820fe 59631994-03-30 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 5964
2f2c687b
JB
5965 * etags.c (main): Use etags_getcwd for compatibility.
5966 (etags_getcwd): New function.
362bc2da
DL
5967
59681994-03-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5969
5970 * Makefile.in (etags, ctags): Pass -D for VERSION.
5971
880820fe 59721994-03-25 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5973
2f2c687b
JB
5974 * etags.c (emacs_tags_format, ETAGS): Removed. Use CTAGS instead.
5975 (main): Don't allow the use of -t and -T in etags mode.
5976 (print_help): Don't show options enabled by default.
5977 (print_version): Show the emacs version number if VERSION is #defined.
5978 (find_entries): Add "ss" as suffix for Chez Scheme.
362bc2da 5979
880820fe 59801994-03-23 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5981
2f2c687b 5982 * etags.c (cwd, outfiledir): Vars added.
362bc2da
DL
5983 (relative_filename, absolute_filename, absolute_dirname):
5984 functions added to compute filenames in tags files.
2f2c687b 5985 (process_file): Filenames in tags file are relative to the
362bc2da 5986 directory where the tags file is (useful with the -o option).
2f2c687b 5987 (main): Initialise the outfiledir var.
b166dcd8 5988 (TYPEDST): Add the `tignore' value.
2f2c687b 5989 (C_entries): Corrected various small bugs.
362bc2da
DL
5990
59911994-03-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5992
5993 * Makefile.in (UTILITIES): `env' deleted.
5994 (env): Target deleted.
5995 * env.c: File deleted.
1c478461 5996
362bc2da
DL
59971994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
5998
5999 * Makefile.in (install, ${archlibdir}): Switch back to ..
6000 before running INSTALL_PROGRAM.
6001
880820fe 60021994-03-14 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6003
b166dcd8 6004 * etags.c (TYPEDST): Add the `tignore' value.
2f2c687b 6005 (C_entries): Corrected various bugs, now correctly parses the
362bc2da
DL
6006 `extern "C" {' construction (patch by Tom R.Hageman).
6007
60081994-03-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6009
6010 * b2m.c: Use <...> to include config.h.
6011 Don't include stdlib.h.
6012
177c0ea7 60131994-03-03 Heiko Muenkel (muenkel@tnt.uni-hannover.de)
362bc2da
DL
6014
6015 * b2m.c (main): Change delimiter from "^L" to "^_^L".
6016 Allow for text following "BABYL OPTIONS:".
6017 Add --help option. Use argv[0] in error messages.
6018
60191994-03-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6020
6021 * emacsclient.c (main) [HAVE_SYSVIPC]:
6022 Make msgp->mtext longer if necessary.
6023 On HPUX, error if it's more than 512 chars.
6024
60251994-02-26 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
6026
6027 * etags-vmslib.c: Use GPL.
6028 * emacstool.c: Use GPL.
6029 * fakemail.c: Update GPL.
6030
6031 * make-path.c (main): Return 1 on error, not -1.
6032 Update GPL.
6033
6034 * cvtmail.c: Declare malloc, realloc, xmalloc, xrealloc, getenv.
6035 (xmalloc, xrealloc): Return char *, not int.
6036 (error): Write to stderr, not stdout.
6037 Update GPL.
6038
60391994-02-23 Karl Heuer (kwzh@gnu.ai.mit.edu)
6040
6041 * profile.c (main, get_time): Don't crash on invalid input.
6042
60431994-02-22 Karl Heuer (kwzh@gnu.ai.mit.edu)
6044
6045 * profile.c (get_time): Simplify; avoid calling index.
2f2c687b 6046 (main): Exit on EOF.
362bc2da 6047
880820fe 60481994-02-17 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6049
a64387ee 6050 * etags.c (--absolute-pathnames): Option removed.
362bc2da
DL
6051
60521994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6053
6054 * fakemail.c (put_line): Don't break the line if it all fits.
6055
880820fe 60561994-02-14 Francesco Potortì (pot@fly)
362bc2da 6057
b166dcd8 6058 * etags.c (absolute_pathnames, cwd): Add global vars.
2f2c687b 6059 (longopts, print_help, main, process_file): Put absolute filenames
362bc2da 6060 in the tag file if the -A --absolute-pathnames option is used.
10d1d0af 6061 (print_help): Alphabetically order the options.
2f2c687b 6062 (malloc, realloc, strcpy, strncpy, strcmp): Remove extern declar.
362bc2da
DL
6063
60641994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6065
6066 * Makefile.in (C_SWITCH_MACHINE): Get this from autoconf.
6067 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use C_SWITCH_MACHINE.
6068
60691994-02-07 Christian Lynbech (lynbech@avignon)
6070
6071 * emacsserver.c (main) [HAVE_SYSVIPC]: Reverse test of fork value.
6072
60731994-02-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6074
6075 * Makefile.in (UTILITIES): Mention profile.
6076 (profile): New target.
6077
6078 * profile.c: New file.
6079
60801994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
c60ee5e7 6081
88c71720 6082 * make-docfile.c: Make the argument list output look more like the
c60ee5e7 6083 Lisp docstrings do.
88c71720 6084 (write_c_args): Take new arg FUNC. Make output
362bc2da
DL
6085 look like lisp call prototypes: (function ARG1 ARG2), upcasing args.
6086 (scan_c_file): Pass BUF to write_c_args for FUNC arg.
6087
880820fe 60881994-01-14 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6089
6090 * etags.c (stab_entry, stab_create, stab_find, stab_search,
2f2c687b 6091 stab_type, add_keyword, C_reate_stab, C_create_stabs): Deleted.
362bc2da 6092 Use gperf generated hash table instead of linked list.
2f2c687b 6093 (C_stab_entry, hash, in_word_set, get_C_stab, C_symtype): Added.
362bc2da 6094 Mostly code generated by gperf.
b166dcd8 6095 (consider_token): Remove unused parameter `lp'.
2f2c687b 6096 (PF_funcs, getit): Allow subroutine and similar declarations
362bc2da 6097 to span multiple lines.
2f2c687b
JB
6098 (C_entries): Check for newline if inchar to avoid bus errors.
6099 (process_file, find_entries): Distinguish among nonexistent
362bc2da
DL
6100 and not regular file.
6101
61021994-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6103
6104 * timer.c: Include errno.h; don't include fasync.h.
6105 (schedule): Don't return a value.
6106 (sigcatch): Reestablish the handler first.
6107 (getevent): Always call notify at the end.
6108 (notify): Defer alarms around the whole body of function.
6109
61101994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6111
6112 * timer.c (main): Don't request SIGIO, and don't handle it.
6113 Loop calling getevent.
6114 (sigcatch): Delete code to handle SIGIO.
6115 if defer_alarms is set, don't call notify, just set alarm_deferred.
1c478461 6116 (getevent): Use read, not getchar. Handle EINTR and EAGAIN.
362bc2da
DL
6117 Set defer_alarms around realloc and schedule.
6118 If alarm_deferred gets set, call notify.
6119 Likewise if this event is the only pending event.
6120 Make buf and buf_size global variables.
6121 Don't malloc buf if it is already non-zero.
6122 (schedule): Just exit if run out of memory.
6123 Return the number of events.
6124 (signal) [_CX_UX]: Add #undef.
6125
61261994-01-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6127
6128 * timer.c [USG] (SIGIO): Define as SIGPOLL.
6129 (main) [USG]: Do ioctl to enable SIGPOLL.
6130
61311994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6132
6133 * timer.c: Don't declare sys_errlist; declare strerror instead.
6134 (schedule, main): Call strerror instead of using sys_errlist.
6135 * movemail.c (get_errmsg, pfatal_with_name, pfatal_and_delete):
6136 Call strerror instead of using sys_errlist.
6137 * env.c (main): Call strerror instead of using sys_errlist.
6138 * emacsclient.c: Don't declare sys_errlist; declare strerror instead.
6139 (main): Call strerror instead of using sys_errlist.
6140 * emacsclient.c [! HAVE_STRERROR] (strerror): Define the function.
6141 * env.c [! HAVE_STRERROR] (strerror): Likewise.
6142 * timer.c [! HAVE_STRERROR] (strerror): Likewise.
6143 * movemail.c [! HAVE_STRERROR] (strerror): Likewise.
6144
61451994-01-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6146
6147 * hexl.c: Fix up whitespace. Get rid of spurious casts to void.
6148
6149 * movemail.c (malloc): Don't declare it.
6150 (xmalloc): Cast result of malloc.
6151 (strcpy): Don't declare it.
6152
61531993-11-14 Morten Welinder (terra@diku.dk)
6154
6155 * hexl.c [MSDOS]: Use binary file modes for non-text side of pipe.
6156 (main): Use fclose to close file opened by fopen.
6157
6158 * fakemail.c (main) [MSDOS]: Dummy stub just to make the file compile.
6159
6160 * movemail.c [MSDOS]: #undef `access'.
6161
6162 * b2m.c (main) [MSDOS]: Open all files as binary.
6163 * etags.c (main) [MSDOS]: Open all files as binary.
6164
6165 * make-docfile.c [MSDOS]: Use text/binary mode as appropriate.
6166 (scan_c_file, scan_lisp_file): Extra parameter for the mode to open
6167 with.
6168
61691994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6170
6171 * Makefile.in (ALL_CFLAGS): Include LDFLAGS.
6172 Use ALL_CFLAGS in all the rules that compile and link with one cmd.
6173 (LINK_CFLAGS): New variable.
6174 (timer): Use LINK_CFLAGS.
6175
61761993-12-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6177
6178 * movemail.c: Include syswait.h.
6179 Fork a subprocess and use it to copy the mail file.
6180
61811993-12-07 Richard Stallman (rms@srarc2)
6182
6183 * make-docfile.c (scan_lisp_file): Don't add newline at end of string.
6184
61851993-12-04 Richard Stallman (rms@srarc2)
6186
6187 * movemail.c (main): When making tempname, cast result of xmalloc.
6188 Include room for EXXXXXX in the size.
6189 Don't use result of strcpy.
6190
61911993-12-03 Paul Eggert (eggert@twinsun.com)
6192
6193 * vcdiff: Add --brief option.
6194
61951993-12-02 Richard Stallman (rms@srarc2)
6196
6197 * Makefile.in (${archlibdir}, install): Use $(INSTALL_PROGRAM)
6198 for all executables and scripts.
6199
62001993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6201
6202 * Version 19.22 released.
6203
62041993-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6205
6206 * Makefile.in (mostlyclean): Make it distinct from clean.
6207
62081993-11-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6209
6210 * Makefile.in (${archlibdir}): Don't do chown or chgrp.
6211
62121993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6213
6214 * Version 19.21 released.
6215
6216 * Makefile.in (install): Don't change mode or group when installing.
6217
6218 * etags.c (FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
6219
62201993-11-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6221
6222 * make-docfile.c (read_c_string): For "", concatenate the two strings.
6223
6224 * movemail.c (main): Fix error message text.
6225
62261993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6227
6228 * Version 19.20 released.
6229
177c0ea7 62301993-11-08 Tom Hageman (tom@basil.icce.rug.nl)
362bc2da 6231
ecc54057 6232 * etags.c (C_entries): Keep track of ()-parenthesis level so that
362bc2da
DL
6233 functions returning a pointer to a function, a la `signal', can be
6234 parsed. This also required new state `fstartlist' to `FUNCST'.
6235 (SAVE_TOKEN, RESTORE_TOKEN, TOKEN_SAVED_P): 1-deep token save stack.
2f2c687b 6236 (C_entries, CNL): Use it to isolate preprocessor directive processing
362bc2da 6237 from the other state engines.
2f2c687b 6238 (begtk): Add '~', for C++ class destructors.
362bc2da 6239
880820fe 62401993-11-02 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6241
b166dcd8 6242 * etags.c (consider_token): Remove unused variable firsttok.
2f2c687b 6243 (prolog_getit): Call pfnote with the right number of arguments.
362bc2da
DL
6244
62451993-10-19 Paul Eggert (eggert@twinsun.com)
6246
6247 * rcs2log (printlogline): Don't generate lines containing only
6248 white space.
6249
62501993-10-04 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6251
6252 * Makefile.in (${archlibdir}):
6253 Install ${SCRIPTS} from ${srcdir}, not cwd.
6254
62551993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6256
6257 * Makefile.in: Fixed typos or brainos of whoever thought `@' was
6258 the comment character.
6259
880820fe 62601993-10-01 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6261
2f2c687b 6262 * etags.c (process_file): Dead code removed.
362bc2da 6263 (S_ISREG): #define it using S_IFREG if not defined.
2f2c687b 6264 (process_file): Regular files have nothing to do with symlinks.
362bc2da 6265
f0131492 62661993-09-28 Brian J. Fox (bfox@ai.mit.edu)
362bc2da
DL
6267
6268 * Makefile.in (${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not
6269 from current directory. Only chmod and chgrp files that we
6270 installed, which excludes ${INSTALLABLE_SCRIPTS}. They go in
6271 ${bindir}.
b166dcd8 6272 (INSTALLFLAGS): Delete definition, since it is an unused variable
362bc2da
DL
6273 now.
6274
f0131492 62751993-09-27 Brian J. Fox (bfox@ai.mit.edu)
362bc2da 6276
b166dcd8
KC
6277 * Makefile.in (INSTALL, INSTALL_PROGRAM, INSTALL_DATA):
6278 Let configure figure out the correct values for these variables.
362bc2da 6279
f0131492 62801993-09-14 Brian J. Fox (bfox@ai.mit.edu)
362bc2da 6281
10d1d0af 6282 * Makefile.in (archlibdir): Only install executables internally
362bc2da
DL
6283 used by emacs; don't install bindir binaries here.
6284
62851993-09-24 Paul Eggert (eggert@twinsun.com)
6286
6287 * rcs2log: Add -h, -n, -r options.
6288 By default, look for *,v files as well as RCS/*,v files.
6289 Use $TMPDIR (default /tmp) instead of /tmp.
6290
880820fe 62911993-09-20 Francesco Potortì (pot@fly)
362bc2da
DL
6292
6293 * etags.c (C_entries): is_func is initialised here instead of in
6294 consider_token for the sake of the yacc rules section.
6295 (C_entries): Now class, struct, enum, union and typedef produce
6296 named tags.
6297
62981993-09-11 Roland McGrath (roland@baalperazim.gnu.ai.mit.edu)
6299
6300 * yow.c: Include <src/paths.h>, instead of "src/paths.h".
6301
63021993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6303
88c71720
KS
6304 * Makefile.in: Support configuring in a different directory when
6305 ${srcdir} has already been configured.
6306 (ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir}
6307 -I${srcdir}/../src.
362bc2da
DL
6308 (b2m, movemail, fakemail, env, emacsserver, emacsclient,
6309 getdate.o, timer.o, timer): Remove `-I${srcdir}/../src', since it
6310 is already in CPP_FLAGS.
6311 * etags.c, emacsclient.c, wakeup.c, timer.c, b2m.c, fakemail.c,
6312 movemail.c, emacsserver.c: Include <config.h> instead of "config.h".
6313
63141993-08-25 Paul Eggert (eggert@twinsun.com)
6315
6316 * rcs2log: Change /{/ to /\{/ for Posix ERE compatibility;
6317 otherwise, HP awk complains.
6318
6319 * vcdiff: Append /usr/ccs/bin and /usr/sccs to PATH, since these
6320 are common hangouts for SCCS commands.
6321
63221993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6323
6324 * Version 19.19 released.
6325
63261993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6327
6328 * Makefile.in (make-path): Dep on config.h.
6329
63301993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6331
6332 * b2m.c (TRUE, FALSE): Don't define if already defined.
6333
63341993-08-09 Paul Eggert (eggert@twinsun.com)
6335
6336 * rcs2log (awkscript):
6337 Some sites put comma-separated junk after the fullname.
6338 Remove it, but leave "Bill Gates, Jr" alone.
6339 Remove the junk from fullnames like "0000-Admin(0000)".
6340
63411993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6342
6343 * Version 19.18 released.
6344
880820fe 63451993-08-04 Francesco Potortì (pot@spiff.gnu.ai.mit.edu)
362bc2da 6346
2f2c687b
JB
6347 * etags.c (L_isdef, L_isquote, L_getit): Small optimisations.
6348 (L_funcs): The (foo::defmumble stuff now should work.
6349 (consider_token): Function returned random value--corrected.
6350 (C_entries): Corrected == versus = typo.
362bc2da
DL
6351
63521993-08-01 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6353
6354 * etags.c (put_entries): For NODE->rewritten, put pattern before
6355 \177 and name after, not vice versa.
6356
63571993-08-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6358
6359 * timer.c (main): Generate a SIGIO as soon as we've initialized.
6360
880820fe 63611993-07-30 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6362
b166dcd8 6363 * etags.c (FINCST): Add the fignore status. Means we are
362bc2da
DL
6364 after the parameter list and before the open curly brace.
6365 Allows correct parsing of C++ constructors.
2f2c687b
JB
6366 (C_entries, consider_token): Make use of fignore.
6367 (consider_token): Reset funcdef when next_token_is_func: when in
362bc2da 6368 ctags mode makes DEFVAR and others work better.
2f2c687b
JB
6369 (L_isquote): Function that recognises the "(quote" string.
6370 (L_getit): Ignore quoting via "'" or "(quote". Useful for defalias.
362bc2da
DL
6371
63721993-07-29 Paul Eggert (eggert@twinsun.com)
6373
6374 * rcs-checkin: Don't check whether a file is readable until we have
6375 decided not to ignore it.
6376
63771993-07-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6378
6379 * Makefile.in (etags): Depend on ../src/config.h.
6380
6381 * emacsserver.c: Include types.h before file.h.
6382
63831993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6384
6385 * Makefile.in (install): Use .n, not .new, for temporary filenames.
6386
63871993-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6388
ecc54057 6389 * Version 19.17 released.
362bc2da
DL
6390
63911993-07-15 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6392
6393 * etags.c (print_help): Break up the very long strings containing
6394 the help message into shorter strings, to placate chintzy C
6395 compilers which can't handle strings that long.
6396
6397 * wakeup.c: Use CPP tangle from autoconf manual to #include the
6398 correct combination of <time.h> and <sys/time.h>.
6399
880820fe 64001993-07-08 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6401
b166dcd8 6402 * etags.c (alloca): Remove all references to it.
2f2c687b
JB
6403 (main): Now calls xnew instead of alloca for portability.
6404 (../src/config.h): Included only if HAVE_CONFIG_H.
6405 (const): Void definition removed--config.h takes care of it.
362bc2da 6406
880820fe 64071993-07-08 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6408
2f2c687b 6409 * etags.c (consider_token): Was `==', now is `='.
362bc2da
DL
6410 (consider_token): DEFUNs now treated like funcs in ctags mode.
6411
2f2c687b
JB
6412 * etags.c (LEVEL_OK_FOR_FUNCDEF): Removed.
6413 (C_entries): Optimized the test that used LEVEL_OK_FOR_FUNCDEF.
b166dcd8 6414 (C_entries): Remove a piece of useless code.
2f2c687b 6415 (C_entries): Making typedef tags is delayed until a semicolon
362bc2da
DL
6416 is met. This handles "typedef int X, Y, Z;" correctly.
6417
64181993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6419
6420 * Version 19.16 released.
6421
6422 * b2m.c: #include <sys/types.h>.
6423 (ltoday): Declare this to be time_t.
6424
64251993-06-30 Paul Eggert (eggert@twinsun.com)
6426
6427 * vcdiff: Add -q option.
6428
64291993-06-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6430
6431 * etags.c: #include "config.h" and the alloca CPP tangle before
6432 #including the system headers and getopt.h. AIX requires the
6433 #pragma to come before any actual C code.
6434
64351993-06-21 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6436
6437 * Makefile.in (ctags): Depend on etags, so that parallel makes
6438 don't write etags.o files on top of each other.
6439
64401993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6441
6442 * version 19.15 released.
6443
64441993-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6445
6446 * etags.c (add_node): Move var last_node to file scope.
6447
64481993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6449
6450 * Version 19.14 released.
6451
64521993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6453
ecc54057 6454 Bring mumbleclean targets into conformance with GNU coding standards.
362bc2da
DL
6455 * Makefile.in (distclean): Call clean to do most of the work.
6456 Delete aixcc.c and TAGS.
6457 (realclean): Just call distclean.
1c478461 6458
362bc2da
DL
6459 * Makefile.in: Remember, spaces are not tabs.
6460
64611993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6462
6463 * Makefile.in (CPP_CFLAGS): New variable.
6464 Use it instead of ALL_CFLAGS when compiling a .c file.
6465 (getopt.o, getopt1.o): Add explicit compilation commands.
6466
64671993-06-10 Mark D. Baushke (mdb@cisco.com)
6468
6469 * etags.c: Reinstate old -f option as an alias for -o for
6470 installed base uses.
6471
64721993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6473
6474 * emacsserver.c (main): When we're passing a `struct sockaddr_un'
6475 to bind or accept, cast the pointer, to avoid warnings on systems
6476 which declare prototypes for this.
6477 * emacsclient.c (main): Same.
6478
6479 * Makefile.in (YACC): New variable, to be set by top-level Makefile.
6480
64811993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6482
6483 * Version 19.13 released.
6484
6485 * wakeup.c: Include sys/types.h, too; I think that's where time_t
6486 comes from, not sys/time.h.
6487
64881993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6489
6490 * wakeup.c: Include sys/time.h.
6491
6492 * etags.c: #undef static.
6493
6494 * Version 19.12 released.
6495
6496 * Makefile.in (all): Exclude INSTALLABLE_SCRIPTS and SCRIPTS from deps.
6497
64981993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6499
6500 * Version 19.11 released.
6501
6502 * timer.c [LINUX]: #undef signal.
6503 * emacsserver.c: #undef signal.
6504
65051993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6506
6507 * wakeup.c (main): Make when a time_t.
6508
65091993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6510
ecc54057 6511 * Makefile.in (${archlibdir}): Use `(cd foo && pwd)' instead of
a64387ee 6512 `(cd foo ; pwd)' to get the canonical name of a directory; cd
362bc2da
DL
6513 might fail, and have pwd print out the current directory.
6514
6515 * movemail.c [MAIL_USE_POP] (main): Don't use non-portable
6516 string-handling functions.
6517
65181993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6519
6520 * Version 19.10 released.
6521
65221993-05-29 Paul Eggert (eggert@twinsun.com)
6523
6524 * rcs2log: When given no file arguments, inspect RCS/.* as well
6525 as RCS/*. Don't report an error if RCS is empty or nonexistent.
6526
65271993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6528
6529 * Makefile.in (timer): Link with $(LOADLIBES).
6530
65311993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6532
6533 * fakemail.c (put_line): Don't output \n\t unless more text follows.
6534
65351993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6536
6537 * etags.c: Replace the CPP tangle for alloca with the one from the
6538 autoconf documentation, since that's working elsewhere.
6539
65401993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6541
6542 * Makefile.in (ALL_CFLAGS): Add "-I.", so the system and machine
6543 description files can find their ancestors.
6544
65451993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6546
6547 * Makefile.in (install): Get the scripts from ${srcdir},
6548 unlike the executables.
6088b51f 6549 (ALL_CFLAGS): Add -I../src.
362bc2da
DL
6550
65511993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6552
6553 * Version 19.9 released.
6554
65551993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6556
6557 * Makefile.in (install): Do install the programs listed in
6558 INSTALLABLE_SCRIPTS. Make the renaming loop use INSTALLABLES and
6559 INSTALLABLE_SCRIPTS, instead of writing the programs out.
6560
6561 * Makefile.in (ALL_CFLAGS): Include -I${srcdir}.
6562 (getopt.o, getopt1.c): Use ${srcdir} as appropriate.
6563
65641993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6565
6566 * etags.c: Include ../src/config.h.
6567
6568 * Makefile.in (install): Don't handle INSTALLABLE_SCRIPTS
6569 in first loop. Delete files from bindir before installing new ones.
6570 (ALL_CFLAGS): Use ${srcdir} to find .../src dir.
6571
65721993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6573
6574 * Version 19.8 released.
6575
6576 * make-docfile.c: Doc fix.
6577
65781993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6579
6580 * tcp.c: Fix comment syntax at top of file.
6581 (main): Don't call htons with the port number.
6582
65831993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6584
6585 * Makefile.in (timer.o, sorted-doc.c): Link with alloca.o, if it's
1c478461 6586 appropriate.
362bc2da
DL
6587
6588 * Makefile.in (install): Refer to the variables INSTALLABLES and
6589 INSTALLABLE_SCRIPTS, instead of writing them out.
6590
65911993-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6592
6593 * make-path.c (main): Return 0.
6594
65951993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6596
ecc54057 6597 * Version 19.7 released.
362bc2da
DL
6598
65991993-05-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6600
6601 * make-docfile.c (scan_lisp_file): Recognize defalias like fset.
6602
66031993-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6604
6605 * tcp.c: New file.
6606
66071993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6608
6609 * Makefile.in (.c.o): Make the rule start with a tab, not spaces.
6610
66111993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6612
6613 * timer.c (notify): Don't call sighold or sigrelse; they're USG
6614 only. We should really fix this later, but let's just make it
6615 compile for now.
6616
6617 Install patches from David J. Mackenzie to make the srcdir option
6618 work.
6619 * Makefile.in (srcdir, VPATH): Get this value from the top-level
6620 Makefile.
6621 (INSTALLABLES): Split this into two lists - INSTALLABLES and
6622 INSTALLABLE_SCRIPTS.
6623 (INSTALLABLE_SCRIPTS): New list.
6624 (EXECUTABLES): Include INSTALLABLE_SCRIPTS.
6625 (${archlibdir}): The scripts to be installed live in the source
6626 tree, not in the object tree.
6627 (test-distrib): Note that the data file lives in the source tree,
6628 not the object tree.
6629 (GETOPTDEPS): Note that getopt.h lives in the source tree.
6630 (all other targets): Change references to source files to use
6631 ${srcdir}, except for config.h, which lives in the object dir.
6632 (timer.o): Note that this depends on ../src/config.h.
6633 * make-docfile.c (main): Add a -d option, to tell it where to find
6634 the source files.
6635 * test-distrib.c (main): Take the name of the distribution file to
6636 test from the command line.
6637
10d1d0af 6638 * timer.c: Fix misspellings of get_date function's name.
362bc2da
DL
6639
66401993-05-12 Roland McGrath (roland@geech.gnu.ai.mit.edu)
6641
6642 * etags.c (main):
6643 Don't require that there be input files if -i switches were given.
6644
66451993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6646
6647 The GNU coding standards specify that CFLAGS should be left for
6648 users to set.
6649 * Makefile.in (CFLAGS): Put this in the "things configure might
6650 edit" section, and have it default to -g.
6651 (ALL_CFLAGS): New variable, set to all the flags which should be
6652 passed to compilations. Replace all other uses of CFLAGS with
6653 ALL_CFLAGS.
6654 (.c.o): New rule, to pass ALL_CFLAGS to compilations.
6655
6656 * Makefile.in (DEFS): Remove this; it's always just going to be
6657 "-DHAVE_CONFIG_H -Demacs".
6658
66591993-05-03 Paul Eggert (eggert@twinsun.com)
6660
6661 * rcs2log: mawk, SunOS 4.1.3 nawk, and Ultrix/MKS nawk all barf on
6662 /[/]/, so change it to /[\/]/. This should work on all
6663 Posix-compliant awks. It's slightly wrong with traditional awk,
6664 since it matches \ too, but that's a minor problem compared to awk
6665 syntax errors.
6666
66671993-05-01 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6668
6669 * Makefile.in (ALLOCA): New variable, whose value we should
6670 inherit from the top-level makefile.
6671 (etags, ctags): Include ALLOCA in the list of object files that
6672 these executables depend on and link.
6673
66741993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6675
b166dcd8 6676 * Makefile.in (DEFS): Rename from CONFIG_CFLAGS.
362bc2da
DL
6677
66781993-04-07 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
6679
6680 * make-docfile.c (write_c_args): Print an argument named "defalt"
6681 as "default".
6682
66831993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
6684
6685 * Makefile.in (C_SWITCH_SYSTEM): New variable.
6686 (CFLAGS): Include C_SWITCH_SYSTEM in the flags to pass to the
6687 compiler.
6688
880820fe 66891993-03-22 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6690
2f2c687b
JB
6691 * etags.c (YACC): Flag added to c_ext.
6692 (c_ext): No more a synonim for c_ext&C_PLPL because of YACC.
6693 (find_entries): Consistently use streq when reasonable.
6694 (find_entries): A .y file is a yacc file.
362bc2da 6695 (get_C_stab): c_ext becomes c_ext&C_PLPL.
2f2c687b
JB
6696 (C_entries): Logical cplpl means c_ext&C_PLPL.
6697 (C_entries): Logical yacc_rules means we are after the first %%.
b166dcd8 6698 (C_entries): Add logic for yacc files.
362bc2da 6699
880820fe 67001993-03-16 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6701
6702 * etags.c (C_entries): ':' case moved to the second switch.
2f2c687b 6703 (C_entries): Do not examine token if structdef==scolonseen.
362bc2da
DL
6704 (consider_token): structtag set to null string for enum.
6705
880820fe 67061993-03-12 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6707
2f2c687b
JB
6708 * etags.c (GET_COOKIE): And related macros removed.
6709 (logical): Is now int, no more a char.
6710 (reg): Define deleted.
6711 (isgood, _gd, notgd): Deleted.
6712 (gotone): Deleted.
6713 (TOKEN): Member linestart removed.
6714 (linepos, prev_linepos, lb1): Deleted.
6715 (main): Call initbuffer on lbs array instead of lb1.
b166dcd8 6716 (init): Remove the initialisation of the logical _gd array.
2f2c687b 6717 (find_entries): A .sa suffix means assembler file.
362bc2da
DL
6718 (C_create_stab): "auto", "void", "extern", "static" are st_C_typespec.
6719 All C state machines rewritten.
2f2c687b
JB
6720 (C_entries): Complete rewrite.
6721 (condider_token): Complete rewrite.
6722 (getline): Deleted.
362bc2da 6723
880820fe 67241993-03-01 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
362bc2da 6725
b166dcd8 6726 * etags.c (C_entries): Add the quotednl logical variable.
362bc2da
DL
6727 Used for parsing of #define's spanning multiple lines.
6728
880820fe 67291993-02-23 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
362bc2da
DL
6730
6731 * etags.c (C_entries): Save the definedef status even when a
6732 newline is met inside a string.
6733
67341993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
6735
b166dcd8 6736 * Makefile.in (EXECUTABLES): Add rcs-checkin.
362bc2da
DL
6737
6738 * Makefile.in (unlock, relock): New productions.
6739
67401993-03-16 Paul Eggert (eggert@twinsun.com)
6741
6742 * rcs2log: Some awks don't understand "\r". Code around this.
6743 Unfortunately this requires putting a carriage return in the
6744 source code. Don't assume that rlog will tolerate times like
6745 `10:10:60'; RCS 5.7 won't allow this.
6746
67471993-03-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6748
6749 * timer.c (main): Set the ownership of the stdin file descriptor
6750 to the current process. Print error messages if either of the
6751 fcntl's fails.
6752
6753 * timer.c (sigcatch): Declare this to return SIGTYPE (defined in
6754 ../src/config.h), not void.
6755
67561993-03-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6757
6758 * b2m.c (main): Don't exit upon reading a blank line.
6759
880820fe 67601993-03-01 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
362bc2da
DL
6761
6762 * etags.c (C_entries): New local variable quotednl. Used for
6763 parsing of #define's spanning multiple lines.
6764
6765 * etags.c (C_entries): Save the definedef status
6766 even when a newline is met inside a string.
6767
67681993-02-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6769
6770 * timer.c (notify): Initialize waitfor properly.
6771
880820fe 67721993-02-22 Francesco Potortì (pot@CNUCE.CNR.IT)
362bc2da
DL
6773
6774 * etags.c (C_entries): Don't reset definedef when a newline inside a
6775 comment is met.
6776
67771993-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6778
6779 * etags.c (find_entries): If filename ends in .f or .for,
6780 don't try anything but Fortran.
6781
67821993-01-08 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
6783
6784 * timer.c (notify): Flush stdout after writing message to avoid lossage
6785 on terminals.
6786
6787 (notify): Also, write a newline after the token.
6788
67891992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6790
6791 * Makefile.in (exec_prefix): New variable.
6792 (bindir, libdir): Use it instead of `prefix'.
6793
6794 * Makefile.in (CFLAGS): #define HAVE_CONFIG_H, too.
6795
6796 * Makefile.in (libdir): Default to ${prefix}/lib.
b166dcd8 6797 (archlibdir): Adjust to match.
362bc2da
DL
6798
6799 * Makefile.in (distclean): Don't delete backup or autosave files.
6800 (extraclean): Like realclean, but does delete backup and autosave
6801 files.
6802
6803 * Makefile.in (realclean): Ignore errors from rm.
6804
6805 * Makefile.in (distclean): Don't bother to delete ../arch-lib;
6806 that doesn't exist anymore.
6807
68081992-12-11 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6809
6810 * Makefile.in (prefix, bindir, libdir, srcdir): New variables, as
6811 described in the top-level Makefile.
6812 (UTILITIES): Add make-path to the list of utility programs.
6813 (../arch-lib): Replaced by the ${archlibdir} target, which places
6814 the executables in their permanent home.
6815 (install, install.sysv, install.xenix): Consolidated into one
6816 target which should work under all circumstances, modulo a few
6817 ignored error messages.
6818
6819 * make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
6820 a different number of arguments than other DEFVARs, recognize it
6821 specially, and expect the right number of commas.
6822
68231992-12-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6824
6825 * make-path.c: New program, to help with the installation process.
6826 * Makefile.in (make-path): New target.
6827
6828 * make-path.c (touchy_mkdir): Remove debugging output.
6829
68301992-11-05 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6831
b166dcd8 6832 * Makefile.in (getdate.o): Add explicit target for this, so we
362bc2da
DL
6833 can indicate that it depends on ../src/config.h.
6834
68351992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
6836
6837 * Makefile.in (CONFIG_CFLAGS): Let the configure script edit this
6838 instead of CFLAGS.
6839 (CFLAGS): Add -Demacs and -I../src to CONFIG_CFLAGS to produce this.
6840
68411992-09-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6842
6843 * getdate.y: Correctly recognize Mt. Xinu BSD running on an HP
6844 9000/300 as BSD; don't include both <sys/time.h> and <time.h> on
6845 that system.
6846
6847 * Makefile.in (arch-lib): Give rm the `-f' option.
6848
68491992-09-28 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6850
6851 * make-docfile.c (write_c_args): Rewritten to correctly print
6852 &optionals before the first identifier, but after the first paren.
6853 This code used to just wait for commas or spaces; now it notices
6854 identifier boundaries.
6855
68561992-09-26 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6857
6858 * rcs2log: When getting date, use %02d instead of %.2d in awk printf.
6859
68601992-09-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6861
6862 * make-docfile.c (write_c_args): Print the argument lists properly
6863 when the first argument is optional.
6864
68651992-09-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6866
6867 * sorted-doc.c (main): Redefine special chars to use fonts tensy, teni.
6868 Redefine @item. Set catcode of +.
6869
68701992-08-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6871
6872 * emacsclient.c (main): Set IPC_CREAT in msgget call.
6873
68741992-08-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6875
6876 * etags.c (TEX_funcs): Keep just 1 of two redundant nested loops.
6877 (TEX_decode_env): Make `tab' one element longer.
6878
68791992-08-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6880
6881 * etags.c (PF_funcs): Recognize the "entry" keyword.
6882
68831992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6884
6885 * Makefile.in: Add rcs2log and vcdiff to the list of utilities.
6886
68871992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6888
6889 * timer.c (events): Rather than having slots marked as in use or
6890 out of use by the `token' field, keep all pending events at the
6891 beginning of the array. When we delete an event in the middle of
6892 the array, we move the last event into its place.
6893 (num_events): New variable.
6894 (schedule): It is now cheaper to find a free event slot;
6895 events[num_events] is the first free slot.
6896 (notify): Scan events[0 .. num_events-1], instead of the whole
6897 array. When an event fires, move the last event in the array into
6898 its spot. Use num_events to determine whether or not there are
6899 any pending events, not wait_for.
b166dcd8 6900 (getevent): Delete unused variable `ep'.
362bc2da
DL
6901 (sigcatch): It's now easier to find all the active events.
6902 (main): Initialize num_events.
6903
6904 * etags.c: Rather than fret about which systems have index and
6905 which systems have strchr, and how to tell the difference between
6906 them, we just write out our own versions. Big deal.
6907 (index, rindex): Extern declarations removed.
6908 (NEED_INDEX, NEED_RINDEX): Special hacks for hpux removed.
6909 (etags_index, etags_rindex): New declarations.
6910 (process_file, find_entries, pfnote, TEX_funcs, TEX_decode_env,
6911 TEX_getit, substr): Use the etags_*index functions, rather than
6912 the native *index functions.
b166dcd8 6913 (rindex, index): Rename to etags_rindex and tags_rindex, and
362bc2da
DL
6914 made them unconditionally defined, rather than having them depend
6915 on NEED_*INDEX.
6916
6917 * etags.c (savenstr): Add declaration for this at top of file.
6918 (TEX_decode_env): Don't declare it local to this function.
6919
6920 * b2m.c: #include "../src/config.h", so we can test for the USG
6921 macro, and decide whether to include <string.h> or <strings.h>.
6922 * Makefile.in: Note that b2m.c depends on ../src/config.h.
6923
69241992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6925
6926 * timer.c: Reformatted according to the GNU coding standards.
6927 Removed arbitrary limits on the number of events queued and the
6928 length of the tokens used to identify them.
6929 Removed casts to (void).
6930 Removed debugging printfs; they clutter the code, and the need
6931 can be better filled using a real debugger.
6932
69331992-08-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6934
6935 * timer.c: Installed new version from Eric Raymond; this is more
6936 portable, since it doesn't try to use SIGIO.
6937
69381992-07-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6939
6940 * emacsclient.c (main): If we can't find the socket in this
6941 person's home directory, print a message which asks if they've
6942 started the server, instead of just printing the message from
6943 sys_errmsg; Cygnus finds that people are much less confused by
6944 this.
6945
69461992-07-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6947
6948 * etags.c: Rather than defining "notdef" when "hpux" is #defined,
6949 so that index and rindex get defined, why don't we actually
6950 control index and rindex using symbols called "NEED_INDEX" and
6951 "NEED_RINDEX", and define them if hpux is defined? Isn't that a
6952 little more readable than defining something whose name implies
6953 that it's not?
6954
69551992-07-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6956
6957 * movemail.c: Merged changes from Jamie Zawinski's byte compiler
6958 distribution:
6959 Miscellaneous doc fixes.
1c478461 6960 (skip_white, read_lisp_symbol): New functions.
362bc2da
DL
6961 (scan_lisp_file): Instead of using long hairy strings of ifs, call
6962 read_lisp_symbol and then see what we got. Call skip_white
6963 instead of writing out a loop to do its job. Correctly extract
6964 docstrings from "defmacro" declarations.
6965
69661992-06-25 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6967
6968 * movemail.c (strcpy): Declare this to return char *.
6969
69701992-06-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
6971
6972 * etags.c (C_entries): When we find a C++ comment, do actually
6973 skip to the end of the line; do a 'break' instead of a 'continue'.
6974
69751992-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6976
6977 * etags.c (getit): Add missing parenthesis to expression which
6978 decides if this token is an identifier.
6979
69801992-06-04 Roland McGrath (roland@geech.gnu.ai.mit.edu)
6981
6982 * etags.c (consider_token): Recognize `ENTRY' macro used in libc.
6983
69841992-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6985
6986 * etags.c (put_entries): Always put space between name and line num.
6987
69881992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
6989
6990 * etags.c (getit): Parenthesize &&/|| expression to avoid gcc
6991 warning.
6992 (LEVEL_OK_FOR_FUNCDEF): Ditto.
6993
69941992-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
6995
6996 * make-docfile.c (write_c_args): Pass both arguments to putc.
6997
69981992-05-10 Roland McGrath (roland@albert.gnu.ai.mit.edu)
6999
b166dcd8 7000 * etags.c (C_entries): Fix reading of "..." strings.
362bc2da
DL
7001 (consider_token): Recognize `SYSCALL' and `PSEUDO' macros, used in
7002 the C library source.
7003
7004 * etags.c (C_entries): When we see a backslash inside a quoted
7005 string, skip to the next character. This allows us to correctly
7006 deal with strings containing quotes.
7007
70081992-05-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7009
7010 * make-docfile.c (write_c_args): Print the C argument names as
7011 they would be written in Elisp; print '_' as '-'.
7012
70131992-05-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7014
7015 * movemail.c [POP]: Get user name via getpwuid.
7016
70171992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7018
2f2c687b 7019 * Makefile.in: Flags in CC invocations rearranged for no reason.
362bc2da
DL
7020
70211992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7022
10d1d0af 7023 * etags.c (print_help): Remember not to embed raw newlines in
362bc2da
DL
7024 strings - end the lines with `\n\'.
7025
70261992-04-17 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7027
b166dcd8 7028 * timer.c (getevent): Remove declaration of memcpy; since
362bc2da
DL
7029 different systems have different return types, and we're not even
7030 using the return type anyway, it wasn't doing us any good.
7031
70321992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7033
7034 * emacsserver.c (msgcatch): Use the SIGTYPE macro to declare the
7035 type of this function.
7036
70371992-04-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7038
7039 * ChangeLog: Since the old etc contents have been split into etc
7040 and lib-src, the old etc's ChangeLog has been duplicated in the
7041 new etc and lib-src. That means that each contains complete and
7042 coherent information, although each contains extraneous
1c478461 7043 information.
362bc2da
DL
7044
70451992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7046
290afd83 7047 * etags.c: "--no-warning" option renamed to "--no-warn",
362bc2da
DL
7048 to be consistent with other GNU programs, like makeinfo.
7049
290afd83 7050 * Makefile: Renamed to Makefile.in; the configure script
362bc2da
DL
7051 will edit this to produce Makefile.
7052
70531992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7054
7055 * etags.c (print_help, print_version): New functions.
7056 (main): Options added to support them.
7057
7058 * etags.c (longopts): New array of long names for the options.
7059 (main): Recognize them.
7060
70611992-04-06 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7062
b166dcd8 7063 * etags.c (C_entries): Remove comment saying that \" in a string
362bc2da
DL
7064 isn't recognized as magic, because it is correctly handled.
7065
7066 * getopt.c, getopt.h: New files, from GNU C library.
7067 * etags.c: Rewritten to use getopt.
7068 #include "getopt.h".
7069 (file_num): Variable deleted; its role is now played by getopt's
7070 optind.
7071 (main): Argument processing loop rewritten to call getopt to get
7072 next option. Options which take parameters (-o and -i) rewritten
b166dcd8
KC
7073 to get parameter from optarg instead of argv[1].
7074 Filename preprocessing loop and update command changed similarly.
362bc2da
DL
7075 * Makefile (etags, ctags): Depend on and link with getopt.h,
7076 getopt.o, and getopt1.o.
7077 (getopt.o, getopt1.o): New targets for the GNU getopt routines.
7078
7079 * etags.c (outfflag): Variable deleted; it is non-zero iff outfile
7080 is non-zero.
7081
7082 (main): In the argument processing loop, the 'goto next_arg'
7083 statements are breaking out of the switch statement in exactly the
7084 same way that a simple 'break' statement would; replace the gotos
7085 with breaks, and remove the label.
7086
70871992-04-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7088
7089 * etags.c (C_entries): Clear tydef and next_token_is_func at start.
7090 (consider_token): Move next_token_is_func to global.
7091
70921992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7093
7094 * Makefile: Conform with GNU coding standards:
7095 (mostlyclean): New target, synonymous with clean.
7096 (TAGS, check): New targets.
7097 (INSTALL, INSTALLFLAGS): New variables.
7098
70991992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7100
ecc54057 7101 * lib-src/Makefile, etc/MACHINES, etc/NEWS: Changed references to
362bc2da
DL
7102 `config.emacs' to `configure'.
7103
7104 * lib-src/Makefile: Adjusted for renaming of share-lib to etc.
7105 * etc/MACHINES: Same.
7106
71071992-03-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7108
7109 * movemail.c (main): Allow tempname to be as long as necessary,
7110 instead of limiting it to 39 characters.
7111
7112 * movemail.c (main): Move declaration of buf from top of function
7113 to local block surrounding the copy loop. This makes it less
7114 likely to be confused with the buf used by the code which checks the
7115 permissions on outname's directory.
7116
71171992-03-20 Jim Kingdon (kingdon@albert.gnu.ai.mit.edu)
7118
7119 * SERVICE: Remove my entry.
7120
71211992-03-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
7122
7123 * Makefile (emacstool, nemacstool, xvetool): Use ${CFLAGS}, not
7124 hardcoded -g.
7125
7126 * movemail.c (xmalloc): Return char *, not int.
7127 (main) [!MAIL_USE_FLOCK]: Add a new conditional, MAIL_UNLINK_SPOOL,
7128 that is off by default -- normally don't unlink the mail spool
7129 file, just empty it. Pass creat mode 0600, not 0666.
7130
dff28924 71311992-02-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
362bc2da
DL
7132
7133 * Makefile (../arch-lib): Depend on ${EXECUTABLES}.
7134 (all): Instead of here.
7135 (install): Don't use the -s option, since people need symbols to
7136 debug code.
7137
dff28924 71381992-01-19 Eric Youngdale (youngdale@v6550c.nrl.navy.mil)
362bc2da
DL
7139
7140 * etags-vmslib.c (fn_exp): Add type cast.
7141
71421992-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7143
7144 * movemail.c: Changes in comments.
7145
dff28924 71461992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
362bc2da
DL
7147
7148 * Makefile: Make the distclean target erase the DOC files from
7149 ../share-lib and the executables from ../arch-lib.
7150
dff28924 71511992-01-09 Jim Blandy (jimb@pogo.cs.oberlin.edu)
362bc2da
DL
7152
7153 * emacsclient.c: #include <sys/stat.h>
7154 (main): Do declare statbfr.
7155
dff28924 71561991-12-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7157
7158 * emacsserver.c, emacsclient.c [BSD]: Use either /tmp or ~
7159 for the socket, depending on SERVER_HOME_DIR.
7160 If using /tmp, put host name in the socket name.
7161
7162 * movemail.c (pfatal_and_delete): New function.
7163 (main, popmail): Use it.
7164 (popmail): Close output before deleting messages.
7165 Check for error on close and on fsync.
7166 Use `fatal' where appropriate.
7167 (main): Remove (void).
7168
7169 * aixcc.lex: New file. Not officially part of Emacs.
7170 * Makefile: Rules for that.
7171
dff28924 71721991-12-04 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
362bc2da
DL
7173
7174 * yow.c (main): Rename all references to PATH_EXEC to PATH_DATA.
7175
7176 * etags.c (main): Properly cast call to alloca that initializes
7177 included_files.
7178
71791991-08-17 Roland McGrath (roland@geech.gnu.ai.mit.edu)
7180
7181 * etags.c (files_are_tag_tables): Remove global var.
7182 (process_file): Don't test it. Also remove hack checking for a
7183 file named "TAGS".
7184 (main): -i now takes an arg which is the name of a file to include.
7185 Collect these names and emit include tags for them after processing
7186 all the argument files.
7187
dff28924 71881991-07-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7189
7190 * wakeup.c: Terminate if parent goes away.
7191
dff28924 71921991-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7193
7194 * etags.c (C_entries): Process token before handling end of line.
7195 When inner loops reach end of line, just back up.
7196 Let the real end of line processing happen in just one place.
a64387ee 7197 (consider_token): Likewise.
362bc2da 7198
dff28924 71991991-04-11 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
362bc2da
DL
7200
7201 * etags.c (TEX_mode): Skip comments while scanning the text to see
7202 which escape character this file uses.
7203
dff28924 72041991-03-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7205
7206 * emacsserver.c [USG]: Terminate if msgrcv fails.
7207
dff28924 72081991-03-03 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7209
7210 * emacsserver.c [BSD]: Check for errors on stdin after scanf.
7211
dff28924 72121991-01-25 Jim Blandy (jimb@churchy.ai.mit.edu)
362bc2da
DL
7213
7214 * make-docfile: Find the arguments to a C function correctly,
b166dcd8
KC
7215 by not ignoring the character that read_c_string returns.
7216 Don't even try to find argument names for functions that take MANY
362bc2da
DL
7217 or UNEVALLED arguments, since they're a figment of the docstring's
7218 imagination.
7219
dff28924 72201991-01-14 Jim Blandy (jimb@churchy.ai.mit.edu)
362bc2da
DL
7221
7222 * make-docfile: Read the .elc files generated by the new byte
7223 compiler.
7224
dff28924 72251990-12-31 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7226
7227 * refcard.tex: Use cm fonts, not am, in multi-column mode.
7228
dff28924 72291990-11-29 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7230
7231 * movemail.c (mbx_delimit_begin): Put space before `unseen'.
7232
dff28924 72331990-11-27 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7234
7235 * Makefile (install*): No need to install wakeup.
7236
dff28924 72371990-11-26 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7238
7239 * Makefile (install*): Install emacsclient like etags.
7240
dff28924 72411990-11-13 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7242
7243 * movemail.c (error): Handle 3 args.
7244 (main): Don't check input access if using pop.
7245
dff28924 72461990-10-16 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7247
7248 * etags.c (find_entries): Check for numbers after Scheme suffix.
7249
dff28924 72501990-10-14 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7251
7252 * termcap.dat (vt200-80): Fix ke and ks to frob flag 1.
7253
dff28924 72541990-10-09 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7255
7256 * Makefile (nemacstool, xvetool): New targets.
7257
dff28924 72581990-09-26 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7259
7260 * emacsclient.c: Include errno.h and define related variables.
7261
dff28924 72621990-09-23 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7263
7264 * emacsclient.c: Change usage message.
7265
dff28924 72661990-08-30 David Lawrence (tale@pogo.ai.mit.edu)
362bc2da 7267
ecc54057 7268 * emacs.1: Add break before -nw option.
362bc2da 7269
dff28924 72701990-08-19 David J. MacKenzie (djm@apple-gunkies)
362bc2da
DL
7271
7272 * qsort.c: Replace with GNU version.
7273
dff28924 72741990-08-14 David J. MacKenzie (djm@apple-gunkies)
362bc2da
DL
7275
7276 * wakeup.c: New program replacing loadst.c.
7277
dff28924 72781990-08-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7279
7280 * emacsclient.c [USG]: Pass msgsnd only 4 args.
7281
dff28924 72821990-08-09 David J. MacKenzie (djm@pogo.ai.mit.edu)
362bc2da
DL
7283
7284 * etags.c: Rename `flag' variables for what they do instead of
7285 which option character sets them.
7286
dff28924 72871990-05-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7288
7289 * loadst.c (main): Conditional to get load average on Apollo.
7290
dff28924 72911990-05-22 Joseph Arceneaux (jla@churchy.ai.mit.edu)
362bc2da
DL
7292
7293 * emacsserver.c: Set the permission on the socket to 0600.
7294
dff28924 72951990-03-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7296
7297 * emacsclient.c [BSD]: Print clean message for failing getwd.
7298
dff28924 72991990-03-20 David Lawrence (tale@pogo.ai.mit.edu)
362bc2da
DL
7300
7301 * getdate.y: Use the getdate.y from GNU tar for timer.
7302
dff28924 73031990-03-18 Jim Kingdon (kingdon@pogo.ai.mit.edu)
362bc2da
DL
7304
7305 * emacsclient.c (main): Don't put brackets around "filename" in
7306 usage message. It isn't optional.
7307
dff28924 73081990-03-14 Joseph Arceneaux (jla@churchy.ai.mit.edu)
362bc2da 7309
a64387ee 7310 * etags.c (getit): Recognize '$' as beginning identifiers.
362bc2da 7311
dff28924 73121990-02-22 David Lawrence (tale@pogo.ai.mit.edu)
362bc2da
DL
7313
7314 * emacsserver.c: Renamed from server.c.
7315 * Makefile: Reference emacsserver rather than server.
7316 * MACHINES: Doc fix for new emacsserver name.
7317
dff28924 73181990-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7319
7320 * emacsclient.c: Print program name in error messages.
7321
dff28924 73221990-01-19 David Lawrence (tale@cocoa-puffs)
362bc2da
DL
7323
7324 * timer.c, getdate.y (new files) and Makefile:
194d44e7
JB
7325 Sub-process support for run-at-time in timer.el.
7326 Doesn't yet work correctly for USG.
362bc2da 7327
dff28924 73281990-01-10 Jim Kingdon (kingdon@pogo)
362bc2da
DL
7329
7330 * MACHINES: Add HP 300 running BSD.
7331
dff28924 73321990-01-02 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7333
7334 * yow.c: Dynamically allocate buffer; skip header before random
7335 choice to avoid bias toward first item.
7336
dff28924 73371989-12-24 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7338
7339 * etags.c (readline): Separate out init of `pend'.
7340
dff28924 73411989-12-17 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7342
7343 * etags.c: Undo changes relating to isgoodhdr.
7344
dff28924 73451989-12-16 Mosur Mohan (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7346
7347 * etags.c (isgoodhdr): New macro.
7348 (_gdh, notgdh): New variable used by that.
7349 (init): Initialize _gdh.
7350 (find_entries): Set header_file.
7351 (consider_token): Use isgoodhdr if in header file.
7352
7353 * etags.c (total_size_of_entries):
7354 Was miscalculating by 1 in rewritten case.
7355
7356 * etags.c (PAS_funcs): One arg to pfnote was missing.
7357
dff28924 73581989-12-05 Joseph Arceneaux (jla@spiff)
362bc2da
DL
7359
7360 * MACHINES: Change for the ULTRIX entry.
7361
dff28924 73621989-11-21 Joseph Arceneaux (jla@spiff)
362bc2da
DL
7363
7364 * etags.c (process_file): If file is not regular, return.
7365
dff28924 73661989-11-06 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7367
7368 * loadst.c (main): Handle FIXUP_KERNEL_SYMBOL_ADDR.
7369
dff28924 73701989-10-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7371
7372 * loadst.c (load_average): If HAVE_GETLOADAVG, use getloadavg.
7373 (main): If HAVE_GETLOADAVG, don't call `nlist'.
7374
dff28924 73751989-10-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7376
7377 * etags.c (consider_token): Allow any number of typespec keywords
7378 after `typedef', before new type name.
7379 (enum sym_type): Add st_C_typespec.
7380 (C_create_stab): Put typespec kwds in table.
7381
dff28924 73821989-08-27 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
362bc2da
DL
7383
7384 * etags.c (main): Don't depend on name invoked by.
7385 If CTAGS is not defined, assume it is ETAGS.
7386
dff28924 73871989-07-31 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7388
7389 * etags.c (L_funcs): Allow package name in define construct,
7390 as in (foo::defmumble name-defined ...).
7391
dff28924 73921989-07-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7393
7394 * etags.c (find_entries): Stupid bug testing for C filename suffixes.
7395
7396 * Makefile (yow): Depends on ../src/paths.h.
7397
dff28924 73981989-07-04 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
362bc2da
DL
7399
7400 * etags.c: Fix compilation by moving Pascal after Fortran.
7401
dff28924 74021989-06-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7403
7404 * movemail.c [USG]: Define F_OK, etc., if not found in header.
7405
dff28924 74061989-05-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7407
7408 * hexl.c: New file, supports hexl-mode.
7409
dff28924 74101989-05-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7411
7412 * movemail.c: New compilation flag MAIL_USE_MMDF.
7413
dff28924 74141989-05-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7415
7416 * emacsclient.c: Use BSD code whenever HAVE_SOCKETS.
7417 * server.c: Likewise.
7418
7419 * make-docfile.c (scan_c_file): Output argument names at end of string.
7420 (write_c_args): New subroutine.
7421
dff28924 74221989-04-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7423
7424 * movemail.c: Report failure of flock.
7425
dff28924 74261989-04-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7427
7428 * etags.c (find_entries): Allow multi-letter extensions for fortran.
7429
dff28924 74301989-04-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da 7431
2f2c687b 7432 * loadst.c: On bsd4.3, use gettimeofday instead of CPUSTATES.
362bc2da 7433
dff28924 74341989-03-15 Jeff Peck (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7435
7436 * emacstool.c: setenv IN_EMACSTOOL=t, TERM=sun, TERMCAP=.
7437
30a7ee9f 7438 * emacstool.1: Update to document environment variables.
362bc2da 7439
dff28924 74401989-02-21 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7441
7442 * etags.c (PAS_funcs): New function by Mosur Mohan.
7443
7444 * movemail.c: On sysv, include unistd.h.
7445
dff28924 74461989-02-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7447
7448 * b2m.c: New file.
7449
dff28924 74501989-02-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da 7451
6088b51f 7452 * etags.c: Prolog support from Sunichirou Sugou.
362bc2da 7453
dff28924 74541989-02-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7455
7456 * Makefile (clean): New target.
7457
dff28924 74581989-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7459
7460 * fakemail.c (put_line): Break header lines at 79 cols.
7461
dff28924 74621989-01-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7463
7464 * etags.c: Greatly rewritten by Sam Kendall for C++ support and for
7465 multiple tags per line.
7466
dff28924 74671989-01-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7468
7469 * movemail.c: Check access before doing real work.
7470 Check that outfile is in a writable directory.
7471 On fatal error, delete the lock file.
7472
dff28924 74731988-12-31 Richard Mlynarik (mly@rice-chex.ai.mit.edu)
362bc2da 7474
ecc54057 7475 * env.c: Add decl for my-index
6088b51f 7476 * etags.c (file-entries): .oak => scheme.
362bc2da 7477
dff28924 74781988-12-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7479
7480 * movemail.c: Use `access' to check input and output files.
7481
dff28924 74821988-12-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7483
7484 * emacsclient.c (main): Ignore all of CWD before first slash.
7485
dff28924 74861988-12-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7487
7488 * etags.c (readline): Double linebuffer->size outside the xrealloc.
7489
dff28924 74901988-12-22 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7491
7492 * server.c, emacsclient.c: Don't try to use gid_t; it isn't defined.
7493 * server.c: chmod the socket to 0700.
7494
dff28924 74951988-12-09 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7496
7497 * fakemail.c (main): Let env var FAKEMAILER override pgm to run.
7498 (add_field): Delete comments and turn `<', `>' to spaces
7499 in header lines.
7500 (USE_FAKEMAIL): New customization macro says to make fakemail
7501 not be a no-op even on a BSD system.
7502
dff28924 75031988-12-01 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7504
7505 * etags.c (consider_token): Skip comments just like whitespace.
7506 Notice `struct', etc. and set strtag for those tokens.
7507 Return 1 for the token following `struct' if an open-brace follows it.
7508 (C_entries): Special handling of token following `struct'
7509 needed because we have probably advanced to the following line
7510 to find the `{'.
7511 (main): New option `T' sets tflag and strflag.
7512 Set both of them by default if eflags.
7513
dff28924 75141988-11-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7515
7516 * movemail.c: Do fsync before closing output.
7517
dff28924 75181988-11-29 Richard Mlynarik (mly@pickled-brain.ai.mit.edu)
362bc2da 7519
ecc54057
JB
7520 * movemail.c: Better error message when can't create tempname.
7521 This file needs a great deal of extra error-checking and lucid reporting...
362bc2da 7522
dff28924 75231988-11-16 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7524
7525 * etags.c: Support assembler code for .s and .a files.
7526 (getit): Allow underscore in a tag.
7527
dff28924 75281988-11-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7529
7530 * movemail.c: Close output and check errors before deleting input.
7531
dff28924 75321988-10-01 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
362bc2da
DL
7533
7534 * emacsclient.c [SYSVIPC]: Compute cwd only once; decide properly
7535 whether to prefix it. Handle line number args.
7536
dff28924 75371988-09-24 Richard Stallman (rms@gluteus.ai.mit.edu)
362bc2da 7538
2f2c687b 7539 * etags.c (main): Default setting of eflag was backwards.
362bc2da 7540
dff28924 75411988-09-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7542
7543 * etags.c: New option -i. -f renamed -o.
7544 `-' as input file means read input file names from stdin.
7545 -i spec'd or input file named TAGS means the input file is another
7546 tag table; output an "include" line for it.
7547
dff28924 75481988-09-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7549
7550 * Makefile: New vars DESTDIR, BINDIR, LIBDIR, MANDIR, MANEXT.
7551 New targets install, install.sysv, install.xenix.
7552 This makefile is now responsible for installing executables
7553 and documentation from this directory into system directories.
7554
dff28924 75551988-09-16 Richard Stallman (rms@corn-chex.ai.mit.edu)
362bc2da
DL
7556
7557 * server.c, emacsclient.c (main): Compute socket name from euid.
7558
dff28924 75591988-08-04 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7560
7561 * emacsclient.c: Args like +DIGITS are passed through unchanged.
7562
dff28924 75631988-07-12 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7564
7565 * server.c: If both BSD and HAVE_SYSVIPC, use the latter.
7566 * emacsclient.c: Likewise.
7567 In the HAVE_SYSVIPC alternative, if BSD, use getwd instead of getcwd.
7568
dff28924 75691988-06-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7570
7571 * etags.c: Handle `typedef struct foo {' (price@mcc.com).
07655e62 7572 (istoken): New string-comparison macro.
362bc2da
DL
7573 (consider_token): New arg `level'. New state `tag_ok' in `tydef'.
7574
dff28924 75751988-06-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7576
7577 * etags.c: Changes for VMS.
7578 Always define ETAGS on VMS.
7579 Define macros GOOD and BAD for success and failure exit codes.
c4cc8b9a 7580 (begtk, intk): Allow `$' in identifiers.
362bc2da
DL
7581 (main): Don't support -B, -F or -u on VMS.
7582 Alternate loop for scanning filename arguments.
7583 (system): Delete definition of this function.
7584
7585 * etags-vmslib.c (system): Undefine this; VMS now provides it.
7586
dff28924 75871988-06-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7588
7589 * loadst.c: Prevent multiple-def errors on BSD and BSD4_3
7590 around include of param.h. (Like fns.c.)
7591
dff28924 75921988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
7593
7594 * loadst.c (load_average): Move load-average code to this new fn.
7595 Add conditionals to compute load ave on UMAX.
7596
dff28924 75971988-05-14 Richard Stallman (rms@lucky-charms.ai.mit.edu)
362bc2da
DL
7598
7599 * loadst.c: Change DK_HEADER_FILE to DKSTAT_HEADER_FILE
7600 with opposite sense.
7601
dff28924 76021988-05-13 Chris Hanson (cph@kleph)
362bc2da 7603
b166dcd8
KC
7604 * emacsclient.c: Delete references to unused variable `out'.
7605 This caused a bus error when used under hp-ux.
362bc2da 7606
dff28924 76071988-05-06 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
7608
7609 * loadst.c: Control dk.h conditional with DK_HEADER_FILE.
7610
dff28924 76111988-05-04 Richard Stallman (rms@rice-krispies.ai.mit.edu)
362bc2da
DL
7612
7613 * etags.c (find_entries): `.t' or `.sch' means scheme code.
7614
dff28924 76151988-04-29 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
7616
7617 * loadst.c: Add BSD4_3 conditional for file dk.h instead of dkstat.h.
7618
dff28924 76191988-04-28 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
7620
7621 * movemail.c: #undef close, since config can #define it on V.3.
2f2c687b 7622 * emacsclient.c, fakemail.c, loadst.c, server.c: Likewise.
362bc2da 7623
dff28924 76241988-04-26 Richard Stallman (rms@lucky-charms.ai.mit.edu)
362bc2da
DL
7625
7626 * etags.c (TEX_mode, etc.): Remove superfluous backslashes from
7627 invalid escape sequences such as `\{'.
7628
7629 * loadst.c: Add `sequent' conditional for file dk.h.
7630
dff28924 76311988-03-20 Richard M. Stallman (rms@wilson)
362bc2da 7632
2f2c687b 7633 * server.c [not BSD and not HAVE_SYSVIPC]: Fix error message.
362bc2da 7634
2f2c687b 7635 * loadst.c (main) [XENIX]: Use /usr/spool/mail, not /usr/mail.
6922b018
KH
7636
7637;; Local Variables:
880820fe 7638;; coding: utf-8
6922b018 7639;; End:
2a34a036 7640
73b0cd50 7641 Copyright (C) 1988-1999, 2001-2011 Free Software Foundation, Inc.
5b87ad55
GM
7642
7643 This file is part of GNU Emacs.
7644
294981c7 7645 GNU Emacs is free software: you can redistribute it and/or modify
5b87ad55 7646 it under the terms of the GNU General Public License as published by
294981c7
GM
7647 the Free Software Foundation, either version 3 of the License, or
7648 (at your option) any later version.
5b87ad55
GM
7649
7650 GNU Emacs is distributed in the hope that it will be useful,
7651 but WITHOUT ANY WARRANTY; without even the implied warranty of
7652 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7653 GNU General Public License for more details.
7654
7655 You should have received a copy of the GNU General Public License
294981c7 7656 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.