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