(skip_initializer): Return void.
[bpt/emacs.git] / lib-src / ChangeLog
1 2002-04-24 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2
3 * ebrowse.c (skip_initializer): Return void.
4
5 2002-04-23 Colin Walters <walters@verbum.org>
6
7 * update-game-score.c (read_score) [HAVE_GETDELIM]: Trim trailing
8 space.
9
10 2002-04-22 Francesco Potorti` <pot@gnu.org>
11
12 * etags.c: (last_node): Make it a global variable.
13 (process_file): Print the tags from the nodes as soon as
14 possible, and delete the nodes. This brings down the memory
15 occupancy as etags to almost the same level as when the #line
16 directives were not parsed.
17 (free_fdesc): New function.
18 (find_entries): Use it.
19 (invalidate_nodes): In etags mode, do not just mark the nodes as
20 invalid, do delete them.
21
22 2002-04-21 Gerd Moellmann <gerd@gnu.org>
23
24 * ebrowse.c (add_declarator): Test *CLS instead of CLS.
25
26 2002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
27
28 * update-game-score.c: Move config.h before the other headers, to
29 avoid compiler warnings.
30
31 2002-04-16 Francesco Potorti` <pot@gnu.org>
32
33 * etags.c (find_entries): Bug fix in list management.
34
35 2002-04-15 Francesco Potorti` <pot@gnu.org>
36
37 * etags.c (get_language_from_filename): Add one argument.
38 (strcaseeq): New function.
39 (get_language_from_filename): Use it to do a case insenstitive
40 comparison if called with appropriate args.
41 (find_entries): Try with case insensitive match.
42 (process_file): Bug fixed.
43
44 2002-04-13 Francesco Potorti` <pot@gnu.org>
45
46 * etags.c (find_entries): Delete tags previously obtained from
47 file xxx.c's #line directives when parsing file xxx.y. This is
48 generally done for automatically generated files containing
49 #line directives. This handles the case when xxx.y is tagged
50 before xxx.c, and the entries of xxx.c pointing to xxx.y should
51 be discarded.
52 (language): Added the metasource member. Initializers changed.
53 (invalidate_nodes): New function.
54 (readline): Discard lines after having found a #line
55 directive pointing to an already tagged file. This handles the
56 case when xxx.y is tagged before xxx.c, and the entries of
57 xxx.c pointing to xxx.y should be discarded.
58 (fdesc): New structure for keeping track of input files.
59 (fdesc): Remove `file' member (a string) and use instead a pointer
60 to a file description structure.
61 (curfile, curfiledir, curtagfname, curlang, nocharno,
62 forced_lang): Global variables removed in favor of fdhead and
63 curfdp, pointers to file description strucures.
64 (longopts, main, print_help): Use the CTAGS conditional to include
65 or exclude options that work on etags or ctags only.
66 (process_file, find_entries, pfnote, add_node, put_entries,
67 readline): Use fdhead and curfdp.
68 (process_file, find_entries): Do not take an arg string, all
69 callers changed.
70
71 * etags.c (longopts, print_help, main): Test CTAGS to disallow
72 options that are not right for either etags or ctags.
73
74 * etags.c (number_len, total_size_of_entries): Define them also
75 in CTAGS mode, because gcc does not compile all refs away.
76
77 2002-04-14 Colin Walters <walters@debian.org>
78
79 * update-game-score.c (lock_file): If the lock file is older than
80 an hour, delete it. Reset attempts to zero if we have to break
81 the lock.
82
83 2002-04-14 Andreas Schwab <schwab@suse.de>
84
85 * update-game-score.c (read_score): Fix type of second parameter
86 of getdelim to be of type size_t instead of int. Use 0 instead of
87 ESUCCES.
88
89 2002-04-10 Colin Walters <walters@verbum.org>
90
91 * update-game-score.c: (toplevel): Include stdarg.h.
92 (MAX_DATA_LEN, MAX_SCORES): New.
93 (SCORE_FILE_PREFIX): If HAVE_SHARED_GAME_DIR is not defined,
94 default to ~/.emacs.d/games.
95 (get_user_id): Don't zero uid in the case where we can't get the
96 username.
97 (lose): New function.
98 (main): Actually use `max', and default it to MAX_SCORES.
99 Correctly handle new default for SCORE_FILE_PREFIX. Use `lose'
100 function.
101 (read_score): Handle the case of reading unamelen characters, then
102 finishing. Use mktemp if mkstemp isn't available.
103 (lock_file, unlock_file): Delete unused versions.
104 (lock_file): Always sleep, even if we unlinked the lock file.
105
106 * Makefile.in (gamedir, gameuser): New variables.
107 (toplevel, UTILITIES): Add update-game-score.
108 (${archlibdir}): Handle HAVE_SHARED_GAME_DIR.
109
110 2002-04-07 Colin Walters <walters@verbum.org>
111
112 * update-game-score.c (SCORE_FILE_PREFIX): Don't hardcode.
113 (get_user_id): Take struct passwd as an argument.
114 (get_home_dir): New function.
115 (main): Read in user information here. Discover home directory if
116 necessary.
117 (read_score): Trim newline only in `getline' case.
118
119 2002-04-05 Colin Walters <walters@debian.org>
120
121 * update-game-score.c (toplevel): Include pwd.h.
122 (struct score_entry): Add username field.
123 (push_score): Use it.
124 (get_user_id): New function.
125 (main): Don't malloc excessively.
126 (main): Use username field.
127 (read_score): Read it.
128 (push_score): Handle it.
129 (write_scores) Write it.
130 (read_score): Handle arbitrary length data.
131
132 2002-03-30 Eli Zaretskii <eliz@is.elta.co.il>
133
134 * ebrowse.c (add_declarator): Fix the first call to add_member_defn.
135
136 2002-03-29 Gerd Moellmann <gerd@gnu.org>
137
138 * ebrowse.c (add_declarator, skip_initializer): New functions.
139 (declaration): Use them.
140
141 2002-03-28 Jason Rumney <jasonr@gnu.org>
142
143 * makefile.w32-in (lisp): Move backquote.elc into emacs-lisp.
144
145 2002-03-27 Colin Walters <walters@debian.org>
146
147 * update-game-score.c: New file.
148
149 2002-03-22 Paul Eggert <eggert@twinsun.com>
150
151 * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
152 `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
153 the latter usage.
154
155 2002-03-12 Francesco Potorti` <pot@gnu.org>
156
157 * etags.c (Python_functions): Skip spaces at beginning of lines.
158 (Python_functions, PHP_functions): Name tags, for ctags' sake.
159 (TeX_commands): Name tags. Correction of old disabled code.
160
161 * etags.c (curfiledir, curtagfname): New global variables.
162 (process_file): Initialise them.
163 (readline): Canonicalize the name found in #line directive.
164
165 2002-03-06 Jason Rumney <jasonr@gnu.org>
166
167 * etags.c (put_entries): Use #if !CTAGS, to fix link error on
168 compilers that don't optimize out dead code.
169
170 2002-03-05 Francesco Potorti` <pot@gnu.org>
171
172 * etags.c: Honour #line directives.
173 (no_line_directive): New global var; set it for old behaviour.
174 (main): Remove some #ifdef in the getopt switch.
175 (add_node, put_entries): Code added to merge different chunks of
176 nodes referring to the same file. Currently the tags are just
177 appended, without any check for duplicates.
178 (Perl_functions): Do not special case ctags.
179 (readline): Identify #line directives and do the right thing.
180 (nocharno, invalidcharno): New global vars.
181 (process_file): Reset nocharno.
182 (readline): Set nocharno.
183 (pfnote): Read nocharno and maybe put invalidcharno in node.
184 (total_size_of_entries, put_entries): Use invalidcharno.
185
186 * etags.c: Keep the whole tag table in memory, even in etags mode.
187 (main): Call put_entries here even in CTAGS mode.
188 (main, process_file): Check the return values of fclose and pclose.
189 (process_file): Do not call put_entries after parsing each file.
190 (process_file): Canonicalise file names even for ctags.
191 (process_file): Set curfile here...
192 (find_entries): ... not here any more.
193 (add_node): In etags mode, build a linked list of entries (on
194 right pointer) for each file, and link the first entry of each
195 file on left nodes.
196 (put_entries): Print here the name of the file.
197 (put_entries): Print the entries starting from the first file.
198 (number_len, total_size_of_entries): Define these only in etags
199 mode, make the second work only on the right nodes.
200
201 * etags.c: Make all global variables static.
202
203 2002-02-25 Juanma Barranquero <lektu@terra.es>
204
205 * makefile.w32-in (lisp): Add missing backslash.
206
207 2002-02-24 Jason Rumney <jasonr@gnu.org>
208
209 * makefile.w32-in (WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to
210 using .elc files.
211 (lisp): Sync with list in src/Makefile.in
212 (VMS_SUPPORT, MSDOS_SUPPORT): Define, so DOC files can be shared.
213
214 2002-02-10 Paul Eggert <eggert@twinsun.com>
215
216 * rcs-checkin: Use `sort -k 2', not `sort +1', as POSIX 1003.1-2001
217 disallows the old syntax.
218
219 2002-02-03 Paul Eggert <eggert@twinsun.com>
220
221 * rcs2log(Copyright): Update to 2002.
222 (AWK, TMPDIR): Work around portability problem in broken shells that
223 don't understand `: ${VAR=val}'.
224 (SORT_K_OPTIONS): New var, for hosts that conform to POSIX 1003.1-2001.
225 Prefer the new -k option to the traditional +M -N option.
226
227 2002-01-01 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
228
229 * b2m.c (main): Parenthesize assignment when used as truth value
230 to prevent gcc warnings.
231
232 * fakemail.c: Include <config.h>.
233
234 2001-12-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
235
236 * cvtmail.c, emacsclient.c, emacsserver.c, pop.c, sorted-doc.c,
237 * yow.c: Include <config.h>.
238
239 2001-12-21 Francesco Potorti` <pot@gnu.org>
240
241 * etags.c (Perl_functions): Tag packages and use them in sub tags.
242 (get_tag): Return a pointer to the tag that is found.
243
244 * etags.c (LOOKING_AT): Use !intoken instead of iswhite.
245 (F_takeprec): Renamed from takeprec. All callers changed.
246 (F_getit): Renamed from getit. All callers changed.
247 (nocase_tail): Renamed from tail. All callers changed.
248 (Ada_getit): Renamed from adagetit. All callers changed.
249 (L_getit): Simplified by using get_tag.
250 (Perl_functions, Postscript_functions, erlang_attribute): Use the
251 modified LOOKING_AT.
252 (notinname): Removed '[' and added ')' to the recognised chars.
253 (LOOKING_AT, get_tag, PHP_functions): Use notinname.
254 (Ada_getit, Ada_funcs, Python_functions, Scheme_functions):
255 Clarified, using strneq or notinname.
256 (L_isdef, L_isquote): Removed.
257 (Lisp_functions, L_getit): Clarified.
258
259 * etags.c: (P_): Renamed to __P for consistency with config.h.
260 [HAVE_CONFIG_H]: Let config.h deal with __P.
261 [__STDC__] [!HAVE_CONFIG_H]: Define PTR as in config.h.
262 [!__STDC__] [!HAVE_CONFIG_H]: Do not undefine static, because
263 gperf code needs it.
264 [HAVE_CONFIG_H] [!PTR]: Define PTR (for use with Xemacs).
265 [HAVE_CONFIG_H] [!__P]: Define __P (for use with Xemacs).
266 (xmalloc, xrealloc): Use PTR instead of long *.
267 (bool): Make it a define, not a typedef, for C++ compilers.
268 (pattern): Members renamed to avoid name clash in some C++ compilers.
269 (get_language_from_langname): Use const argument.
270
271 2001-12-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
272
273 * makefile.nt, makefile.w32-in: Remove mocklisp files.
274
275 2001-12-19 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
276
277 * emacsserver.c: Conditionally include config.h.
278
279 * fakemail.c: Likewise.
280
281 * emacsclient.c: Include "config.h", not <../src/config.h>.
282 (main): Parenthesize assignment when used as truth value to
283 prevent gcc warnings.
284
285 * ebrowse.c: Include stdlib.h and string.h conditionally.
286
287 2001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
288
289 * yow.c (main): Use time_t, not long, to avoid a compiler warning.
290
291 2001-12-18 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
292
293 * test-distrib.c: Fix previous change.
294
295 2001-12-18 Dave Love <fx@gnu.org>
296
297 * test-distrib.c: Conditionally include fcntl.h.
298
299 * fakemail.c: Include "config.h", not <../src/config.h>.
300 (_XOPEN_SOURCE): Define as 500.
301
302 * emacsserver.c: Include "config.h", not <../src/config.h>.
303
304 * cvtmail.c: Include config.h, stdlib.h.
305 (xmalloc, xrealloc, skip_to_lf sysfail): Prototype.
306
307 * yow.c: Conditionally include various headers. Use "epaths.h",
308 not <../src/epaths.h>.
309 (malloc, realloc) [!HAVE_STDLIB_H]: Prototype.
310
311 2001-12-12 Francesco Potorti` <pot@gnu.org>
312
313 * etags.c (PHP_functions): New function for parsing PHP.
314 (LOOKING_AT): New macro.
315 (Perl_functions, Python_functions, PHP_functions)
316 (Scheme_functions, Texinfo_nodes): Use it.
317 (Perl_functions): Use strneq.
318 (prolog_pred): Renamed to prolog_pr.
319 (prolog_pr): Recognise Prolog rules in addition to predicates.
320 [ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent
321 unmodified compile, as Cygwin's regex.h is incompatible with us.
322 [!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string.
323
324 2001-12-11 Richard M. Stallman <rms@gnu.org>
325
326 * Makefile.in (clean): Don't delete ../etc/DOC*.
327
328 2001-12-11 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
329
330 * COPYING: Moved back.
331
332 2001-11-30 Andrew Innes <andrewi@gnu.org>
333
334 * makefile.w32-in (FACE_SUPPORT):
335 (MOUSE_SUPPORT):
336 (FLOAT_SUPPORT):
337 (WINNT_SUPPORT):
338 (lisp): Reference .el files instead of .elc files, to simplify
339 bootstrapping.
340 ($(DOC)): Change dependency to just `make-docfile'.
341
342 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
343
344 * COPYING: Removed.
345
346 2001-11-28 Paul Eggert <eggert@twinsun.com>
347
348 * rcs2log (Copyright): Add '(C)' as per coding guidelines.
349
350 The following changes are derived from suggestions by Bob Chapman
351 <rechapman@compuserve.com>.
352
353 * rcs2log (printlogline): Also allow tab and newline to separate
354 '(function):' from the rest of a comment.
355 (reformat the sorted log entries): Require date and author to
356 match the clumpname.
357
358 2001-11-16 Gerd Moellmann <gerd@gnu.org>
359
360 * ebrowse.c (matching_regexp): Escape '\\'.
361
362 2001-11-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
363
364 * Makefile.in: Add support for --program-prefix, --program-suffix
365 and --program-transform-name options.
366
367 2001-11-03 Richard M. Stallman <rms@gnu.org>
368
369 * cvtmail.c (xrealloc): Always pass two args to `fatal'.
370
371 * movemail.c (popmail): Always pass two args to `error'.
372
373 2001-10-24 Ken Raeburn <raeburn@gnu.org>
374
375 * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
376 -lhesiod and maybe -lresolv.
377 (CRYPTOLIB) [HAVE_LIBK5CRYPTO]: Use -lk5crypto for Kerberos
378 support if it's available.
379
380 2001-10-21 Miles Bader <miles@gnu.org>
381
382 * make-docfile.c (struct rcsoc_state): New type.
383 (read_c_string_or_comment): Add SAW_USAGE
384 parameter, and implement scanning for a `usage:' keyword.
385 Use a variable of type `rcsoc_state' to hold most of our state.
386 (put_char): Add STATE parameter, and remove all other parameters
387 except CH. Use STATE to get access to all needed state.
388 (scan_keyword_or_put_char): New function.
389 (scan_c_file): Pass SAW_USAGE argument to read_c_string_or_comment.
390 Don't output a usage-string if there was one in the doc-string.
391
392 2001-10-20 Gerd Moellmann <gerd@gnu.org>
393
394 * (Version 21.1 released.)
395
396 2001-10-19 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
397
398 * b2m.c: Properly spell the name of Emacs.
399
400 2001-10-17 Miles Bader <miles@gnu.org>
401
402 * make-docfile.c (put_char): New function.
403 (read_c_string_or_comment): Strip trailing spaces and newlines.
404
405 2001-10-16 Miles Bader <miles@gnu.org>
406
407 * make-docfile.c (scan_c_file): Handle `new style' doc strings in
408 comments [with `doc:' keyword prefix].
409
410 2001-10-15 Gerd Moellmann <gerd@gnu.org>
411
412 * make-docfile.c (read_c_string_or_comment): Don't drop a '*'
413 in a C doc comment.
414
415 2001-10-13 Gerd Moellmann <gerd@gnu.org>
416
417 * make-docfile.c (read_c_string_or_comment): Renamed from
418 read_c_string. Add parameter COMMENT. Read C-style comments.
419 (scan_c_file): Handle doc strings in C comments.
420
421 2001-10-12 Andrew Innes <andrewi@gnu.org>
422
423 * makefile.nt (ALL): Do not include fakemail.
424
425 * makefile.w32-in (install): Do not copy fakemail.
426
427 2001-10-10 Jason Rumney <jasonr@gnu.org>
428
429 * makefile.w32-in (ALL) Do not include fakemail.
430
431 * makefile.nt (install) Ditto.
432
433 2001-10-09 Gerd Moellmann <gerd@gnu.org>
434
435 * emacsserver.c (main): Cast geteuid in sprintf to int.
436
437 * emacsclient.c (main): Cast isdigit argument to unsigned char.
438
439 2001-10-07 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
440
441 * profile.c: Include config.h, not ../src/config.h.
442 Include systime.h, not ../src/systime.h.
443
444 2001-10-05 Gerd Moellmann <gerd@gnu.org>
445
446 * Branch for 21.1.
447
448 2001-10-01 Alexander Zhuckov <zuav@int.spb.ru>
449
450 * ebrowse.c (struct alias): Add two new struct members: NAMESP and
451 ALIASEE to help work with namespace aliases.
452 (struct sym): Remove struct member NAMESP_ALIASES.
453 (namespace_alias_table): New variable.
454 (make_namespace): Add parameter CONTEXT.
455 (check_namespace): New function.
456 (find_namespace): Add parameter CONTEXT.
457 (check_namespace_alias): New function.
458 (register_namespace_alias): Change type of parameter
459 OLD_NAME. Search for already defined alias in
460 NAMESPACE_ALIAS_TABLE.
461 (check_namespace): New function.
462 (enter_namespace): Call find_namespace with CONTEXT parameter.
463 (match_qualified_namespace_alias): New function.
464 (parse_qualified_ident_or_type): Fixed typo in comment. While
465 parsing qualified ident or type update namespace context and
466 restore it on exit.
467 (parse_qualified_param_ident_or_type): Fixed typo in comment.
468 (globals): Changed handling of namespace aliases.
469 (version): Added year 2001.
470
471 2001-09-15 Eli Zaretskii <eliz@is.elta.co.il>
472
473 * etags.c (analyse_regex): If regex_arg is NULL, return
474 immediately after a call to free_patterns.
475
476 2001-09-05 Paul Eggert <eggert@twinsun.com>
477
478 * rcs2log (Help, mainline code): Add new option -L FILE.
479 (Copyright): Update year.
480 (LANG, LANGUAGE, LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES,
481 LC_NUMERIC, LC_TIME): New shell vars, to make sure we live in the
482 C locale.
483 (mainline code): Handle nonstandard -u option differently, by
484 transforming it to standard form. Check for "Working file: ", not
485 "Working file:". Allow file names with spaces.
486 (SOH, rlogfile): New shell vars.
487 (rlogout): Remove. Its old functionality is mostly migrated to
488 rlogfile.
489
490 Append ';;' to the last arm of every case statement, for
491 portability to ancient broken BSD shells.
492
493 (logins): Fix bug; was not being computed at all, lowering
494 performance.
495 (pository): New var. This fixes some bugs where repositories are
496 remote, or have trailing slashes.
497 (authors): $llogout is never an empty shell var, so don't worry
498 about that possibility.
499 (printlogline, mainline code): Fix bug with SOH's being put into
500 the output.
501
502 2001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
503
504 * ebrowse.c (SEEK_END): #define if not defined by system headers.
505 Suggested by Dave Love <d.love@dl.ac.uk>.
506
507 2001-08-29 Eli Zaretskii <eliz@is.elta.co.il>
508
509 * makefile.nt (lisp): Synchronize with src/Makefile.in.
510 * makefile.w32-in (lisp): Ditto.
511
512 2001-07-25 Juanma Barranquero <lektu@terra.es>
513
514 * grep-changelog (parse_changelog): Remove unused local variable.
515
516 * grep-changelog (main): Add new option --reverse.
517 (print_log): Use it.
518 (parse_changelog): Use it.
519
520 2001-07-20 Gerd Moellmann <gerd@gnu.org>
521
522 * grep-changelog: Remove RCS Id keyword.
523
524 2001-07-20 Juanma Barranquero <lektu@terra.es>
525
526 * grep-changelog (parse_changelog): Add tests for defined values
527 to quiet warning from Perl 5.005 or above.
528 (entry_match_p, header_match_p): Fix handling of null or empty
529 argument to prevent duplicate headers.
530
531 * grep-changelog (main, parse_changelog): Make "use strict"-clean.
532
533 2001-07-17 Jan Nieuwenhuizen <janneke@gnu.org>
534
535 * emacsclient.c (print_help_and_exit): Fix help message for
536 +LINE:COLUMN option.
537
538 2000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
539
540 * emacsclient.c (main): Add support for +LINE:COLUMN command line
541 argument.
542
543 2001-07-16 Gerd Moellmann <gerd@gnu.org>
544
545 * ebrowse.c (main): Check that the output file exists and
546 is non-empty if invoked with `--append'.
547
548 2001-05-14 Francesco Potorti` <pot@gnu.org>
549
550 * etags.c (add_regex): Reset the whole newly allocated pattern
551 buffer instead of the individual members. It's safer and works
552 with Xemacs.
553
554 * etags.1: Markups corrected.
555
556 2001-05-08 Gerd Moellmann <gerd@gnu.org>
557
558 * ebrowse.c (enter_namespace): Fix reallocation of
559 namespace_stack.
560
561 2001-05-03 Gerd Moellmann <gerd@gnu.org>
562
563 * ebrowse.c (globals): Fix handling of namespace aliases.
564
565 2001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
566
567 * etags.c (print_help): Enclose the regexp in the help text
568 example in quotes.
569
570 2001-04-05 Dave Love <fx@gnu.org>
571
572 * emacsclient.c (fail): Don't return a value.
573 (main): Cast uid values for sprintf.
574
575 2001-04-03 Gerd Moellmann <gerd@gnu.org>
576
577 * emacsclient.c (fail, main): Don't use implicit int return type.
578
579 * b2m.c (main): Always return a value.
580
581 2001-03-02 Gerd Moellmann <gerd@gnu.org>
582
583 * ebrowse.c (parse_qualified_param_ident_or_type): Return a
584 freshly allocated object in *LAST_ID.
585 (read_line): Accept \r\n line endings.
586
587 2001-02-24 Andrew Innes <andrewi@gnu.org>
588
589 * makefile.w32-in: Fix copyright notice.
590
591 2001-02-23 Francesco Potorti` <pot@gnu.org>
592
593 * etags.c (enum sym_type): New label st_C_template.
594 (gperf input): Use it for switching to C++ from C.
595 (consider_token): Do it.
596 (C_entries): Initialise typdefcblev to quiet compilers.
597 [!HAVE_CONFIG_H] [!__STDC__]: #define static as nothing.
598
599 2001-02-22 Andrew Innes <andrewi@gnu.org>
600
601 * makefile.nt ($(BLD)\movemail.obj): Remove reference to
602 VMS header files.
603 ($(BLD)\profile.obj): Ditto.
604
605 * makefile.w32-in ($(BLD)/movemail.$(O)): Remove reference to
606 VMS header files.
607 ($(BLD)/profile.$(O)): Ditto.
608
609 2001-02-05 Andrew Innes <andrewi@gnu.org>
610
611 * makefile.w32-in ($(DOC)): Use $(THISDIR) instead of . in
612 invocation of make-docfile, to work with Windows 2000.
613
614 2001-01-31 Dave Love <fx@gnu.org>
615
616 * etags.c (in_word_set): Use `static' in definition (for pcc).
617
618 2001-01-31 Francesco Potorti` <pot@gnu.org>
619
620 * etags.c: [NDEBUG] #undef assert and #define it as ((void)0), for
621 the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
622 (C_entries): Tag token renamed to still_in_token because sunos4
623 pcc wants to expand it as the token() macro even though it has no
624 arguments.
625
626 2001-01-30 Andrew Innes <andrewi@gnu.org>
627
628 * etags.c (assert) [__MINGW32__]: Redefine assert to work around a
629 bug in the Mingw32 assert.h header file.
630
631 2001-01-30 Francesco Potorti` <pot@gnu.org>
632
633 * etags.c: [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
634 #define it for the sake of Xemacs.
635 [WINDOWSNT]: #undef HAVE_NTGUI even if built without
636 HAVE_CONFIG_H. This change only affects a standalone etags.
637 [WINDOWSNT]: #undef DOS_NT and #define it even if built with
638 HAVE_CONFIG_H. This change does nothing in Emacs, as DOS_NT is
639 always defined when HAVE_CONFIG_H and WINDOWS are both defined.
640 [!HAVE_UNISTD_H]: use defined(WINDOWSNT) instead of the bare
641 WINDOWSNT, as this is the correct way to use it.
642
643 2001-01-28 Francesco Potorti` <pot@gnu.org>
644
645 * etags.c: Be capable to parse nested struct-like structures.
646 (structdef, structtag): Struct state machine revisited.
647 (struct tok): Revisited.
648 (cstack, nestlev, instruct): New struct and macros.
649 (pushclass_above, popclass_above, write_classname): New functions
650 for dealing with nested class names.
651 (consider_token, make_C_tag, C_entries): Many changes for dealing
652 with arbitrarily nested structures.
653 (etags_getcwd): #if MSDOS, not #ifdef MSDOS!
654 (C_entries): Consider templates in C++.
655 (sym_type): New constant st_C_class for detecting "class" also in
656 C mode.
657 (C_AUTO): New macro for automatic detection of C++.
658 (consider_token): Automatic set C++ mode.
659 (C_entries): New security check for yacc.
660 (print_language_names, print_help): Mention the autodetect
661 feature, do not show help for the -C option, now mostly useless.
662 (C_entries): Tag C++ forward declarations if --declarations.
663 (C_entries): Don't be fooled by things like XDEFUN.
664 (consider_token): Discard asm pseudo function.
665
666 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
667
668 * etags.c: Add a coding: tag.
669
670 2001-01-26 Gerd Moellmann <gerd@gnu.org>
671
672 * ebrowse.c (matching_regexp_buffer, matching_regexp_end_buf):
673 New variables.
674 (matching_regexp): Use them instead of static variables in
675 function scope.
676
677 2001-01-25 Francesco Potorti` <pot@gnu.org>
678
679 * etags.c (struct tok): Renamed from struct token.
680 (token): Renamed from tok.
681 (structtype): Make it a local variable.
682 [DEBUG]: Use assert.
683 (xrnew): Change the synopsis.
684 (typedefs_or_cplusplus): Renamed from typedefs_and_cplusplus.
685 (grow_linebuffer): Don't call xrnew when not needed.
686 (token): buffer renamed to line.
687 (C_entries): Three calls to inibuffer moved here from main.
688 (C_entries): Removed all references to var methodlen, delete it.
689 (linebuffer_setlen): Was grow_buffer, now also sets len.
690 (consider_token, C_entries, Pascal_functions): Use it.
691 (C_entries): Preventing problems relative to extern "C".
692 (C_entries): Can tag more than one variable or func separated by
693 comma when --declarations is used.
694 (C_entries): More accurate tagging of members and declarations.
695 (yacc_rules): Was global, made local to C_entries.
696 (next_token_is_func): Removed.
697 (fvdef): New constants fdefunkey, fdefunname.
698 (consider_token, C_entries): Use them.
699 (C_entries): Build proper lisp names for Emacs DEFUNs.
700
701 2001-01-22 Gerd Moellmann <gerd@gnu.org>
702
703 * ebrowse.c (xfree): New function.
704 (member, declaration, globals): Use xmalloc instead of alloca.
705
706 2001-01-15 Francesco Potorti` <pot@gnu.org>
707
708 * etags.c (print_language_names): Print filenames in addition to
709 suffixes.
710
711 2001-01-14 Francesco Potorti` <pot@gnu.org>
712
713 * etags.c (get_language_from_langname): Renamed from
714 get_language_from_name.
715 (get_language_from_filename): Renamed from
716 get_language_from_suffix. Now first looks for the complete file
717 name.
718 (language): New member char **filenames.
719 (Makefile_filenames): List of possible filenames for makefiles.
720 (lang_names): Added a NULL member for every entry, added an entry
721 for makefiles.
722 (Makefile_targets): New function.
723 (Texinfo_nodes): Renamed from Texinfo_fuctions and made
724 it conformant to the style of the rest of the code.
725
726 2001-01-13 Gerd Moellmann <gerd@gnu.org>
727
728 * make-docfile.c (write_c_args): Print newlines as spaces.
729
730 2001-01-06 Andrew Innes <andrewi@gnu.org>
731
732 * makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
733 of *.pdb.
734
735 2001-01-03 Paul Eggert <eggert@twinsun.com>
736
737 * lib-src/rcs2log: Avoid security hole allowing attacker to
738 cause user of rcs2log to overwrite arbitrary files, fixing
739 a bug reported by Morten Welinder.
740
741 Don't put "exit 1" at the end of the exit trap; it's
742 ineffective in POSIX shells.
743
744 2001-01-02 Gerd Moellmann <gerd@gnu.org>
745
746 * ebrowse.c (yyerror): Changed to take two arguments. Prototype
747 added. Callers changed.
748
749 2001-01-02 Eli Zaretskii <eliz@is.elta.co.il>
750
751 * ebrowse.c (enter_namespace, main): Cast variables to shut up
752 compiler warnings.
753 (yyerror): Change parameter declarations to be of type long, so
754 that they can take pointers on 64-bit platforms.
755
756 * emacsclient.c (main): Remove unused local variable statbfr.
757 (main) <homedir>: Make its declaration conditional on
758 SERVER_HOME_DIR, to avoid compiler warnings.
759
760 * emacsserver.c (main) <homedir>: Make its declaration conditional
761 on SERVER_HOME_DIR, to avoid compiler warnings.
762
763 * fakemail.c (readline): Cast buffer to "long *" to pacify
764 over-zealous compilers.
765
766 2000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
767
768 * etags.c (canonicalize_filename) [DOS_NT]: Fix last change.
769
770 2000-12-15 Gerd Moellmann <gerd@gnu.org>
771
772 * ebrowse.c (operator_name): Cast argument of isalpha to
773 unsigned char.
774
775 * etags.c (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
776 Use them throughout instead of ctype functions/macros.
777 (lowcase): Cast to unsigned char.
778 (UPCASE): New macro.
779 (canonicalize_filename): Use UPCASE instead toupper.
780
781 * fakemail.c (get_keyword): Make sure that isspace and
782 similar aren't called with a negative argument.
783
784 2000-12-13 Dave Love <fx@gnu.org>
785
786 * ebrowse.c (ensure_scope_buffer_room): Fix xrealloc call.
787
788 2000-12-06 Andrew Innes <andrewi@gnu.org>
789
790 * makefile.w32-in (LOCAL_FLAGS): Remove -DVERSION flag, since we
791 don't know the real version, and I can't seem to get the quoting
792 right in all circumstances.
793
794 * ebrowse.c (VERSION): Provide default definition, like etags.c
795 does, because Windows build can't snarf this from version.el.
796
797 2000-11-30 Andrew Innes <andrewi@gnu.org>
798
799 * makefile.w32-in ($(BLD)/ebrowse.exe): Use tabs not spaces.
800 (install): Ditto.
801
802 2000-11-23 Jason Rumney <jasonr@gnu.org>
803
804 * makefile.w32-in: Add targets for ebrowse.exe.
805 (LOCAL_FLAGS): Add -DVERSION flag.
806
807 2000-09-25 Dave Love <fx@gnu.org>
808
809 * sorted-doc.c: Include config.h.
810 [!HAVE_STDLIB_H]: Declare malloc.
811
812 2000-09-14 Andrew Innes <andrewi@gnu.org>
813
814 * makefile.w32-in: Revert to Unix line endings.
815
816 2000-09-04 Dave Love <fx@gnu.org>
817
818 * movemail.c (index, rindex): Prototype conditionally.
819
820 2000-09-03 Andrew Innes <andrewi@gnu.org>
821
822 * makefile.w32-in: Change to DOS line endings.
823
824 2000-09-01 Eli Zaretskii <eliz@is.elta.co.il>
825
826 * movemail.c (toplevel): Remove redundant fcntl.h.
827 [!F_OK]: Provide default definitions only after including both
828 fcntl.h and unistd.h.
829
830 2000-08-29 Dave Love <fx@gnu.org>
831
832 * movemail.c: Revert previous change.
833
834 2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
835
836 * Makefile.in (profile, make-docfile, hexl): Depend on config.h.
837
838 2000-08-28 Dave Love <fx@gnu.org>
839
840 * movemail.c (toplevel) [HAVE_STRING_H]: Include string.h.
841 (toplevel) [HAVE_STRINGS_H]: Include strings.h.
842
843 2000-08-22 Andrew Innes <andrewi@gnu.org>
844
845 * ntlib.h (WIN32): Remove unnecessary definition.
846 (sleep): Make argument unsigned long.
847 (_WINSOCK_H): Undefine so normal winsock definitions can be used.
848
849 * ntlib.c (sleep): Make argument unsigned long.
850
851 * movemail.c (main) [WINDOWSNT]: Force binary mode for fileio.
852
853 * makefile.w32-in: New file.
854
855 2000-08-20 Eli Zaretskii <eliz@is.elta.co.il>
856
857 * etags.c (canonicalize_filename) [DOS_NT]: Upcase the first
858 letter only if it is a drive letter.
859
860 2000-07-14 Gerd Moellmann <gerd@gnu.org>
861
862 * ebrowse.c (xrealloc, xmalloc): Renamed from yrealloc and
863 ymalloc.
864
865 * etags.c (xmalloc, xrealloc): Make externally visible, for use
866 by alloca.o.
867
868 * Makefile.in (alloca.o): Add -Demacs so that alloca will use
869 xmalloc.
870
871 2000-07-10 Gerd Moellmann <gerd@gnu.org>
872
873 * ebrowse.c (yylex): Accept string literals with newlines in them.
874 (process_pp_line): Handle case of string literal with newline
875 in it in replacement text, which counts as continuing the
876 replacement text in GNU C.
877
878 2000-07-02 Gerd Moellmann <gerd@gnu.org>
879
880 * ebrowse.c (token_string): Add missing tokens.
881 (parm_list): Handle case of qualified pointers.
882
883 2000-06-23 Dave Love <fx@gnu.org>
884
885 * ebrowse.c: Move config.h before other includes (which may use
886 feature tests).
887
888 2000-06-14 Jim Meyering <meyering@lucent.com>
889
890 * grep-changelog: Fix typos in comments. Remove trailing blanks.
891
892 2000-06-11 Jason Rumney <jasonr@gnu.org>
893
894 * makefile.nt: Add targets for ebrowse.
895
896 * ebrowse.c [WINDOWS_NT]: Use stricmp instead of strcasecmp to
897 compare filenames.
898
899 2000-06-06 Gerd Moellmann <gerd@gnu.org>
900
901 * ebrowse.c (ymalloc): Renamed from xmalloc.
902 (yrealloc): Renamed from xrealloc.
903
904 2000-05-21 Dave Love <fx@gnu.org>
905
906 * movemail.c: Include config.h, not ../src/config.h.
907 (Errmsg): Bump length.
908
909 * pop.c (ERROR_MAX): Increase to 160.
910
911 2000-05-04 Gerd Moellmann <gerd@gnu.org>
912
913 * ebrowse.c (DEFAULT_OUTFILE): Set to `BROWSE'.
914
915 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
916
917 * ebrowse.c (PATH_LIST_SEPARATOR) [__MSDOS__ || WINDOWSNT]: Define
918 to semi-colon.
919 (FILENAME_EQ): New macro, for comparing file names.
920 (add_member_decl, add_global_decl, add_member_defn): Use
921 FILENAME_EQ.
922 (process_file): Don't assume that fread always reads as many bytes
923 as it was told to (DOS-style CR-LF text files fail this logic).
924 (open_file): Allocate enough space for path->path plus the file
925 name and the slash.
926
927 2000-04-19 Dave Love <fx@gnu.org>
928
929 * etags.c (Texinfo_functions): New function.
930 (lang_names): Install it.
931 (Texinfo_suffixes): New variable.
932
933 2000-04-19 Gerd Moellmann <gerd@gnu.org>
934
935 * ebrowse.c (xmalloc, xrealloc): Rewritten.
936 (declaration): Remove parameter IS_EXTERN.
937 (class_definition): Remove unused variable.
938
939 2000-04-09 Gerd Moellmann <gerd@gnu.org>
940
941 * Makefile.in (INSTALLABLES): Add ebrowse.
942 (ebrowse): New target.
943
944 * ebrowse.c: New file.
945
946 2000-03-29 Andreas Schwab <schwab@suse.de>
947
948 * make-docfile.c (scan_lisp_file): Also look for `defsubst'.
949
950 2000-03-02 Gerd Moellmann <gerd@gnu.org>
951
952 * etags.c (lisp_suffixes) Add `LSP'.
953
954 2000-02-10 Francesco Potorti` <pot@gnu.org>
955
956 * etags.c (iswhite): Redefined not to consider '\0' as white
957 space, and use it throughout in place of isspace, thus preventing a
958 potential signed char to int conversion problem.
959 (MSDOS): #undefine befere redefining
960
961 2000-02-04 Francesco Potorti` <pot@gnu.org>
962
963 * etags.c (many functions): Add prototypes.
964
965 2000-02-10 Dave Love <fx@gnu.org>
966
967 * etags.c (pfnote, new_pfnote, C_entries, prolog_pred)
968 (erlang_func): Add `static' to definitions to keep pcc happy.
969
970 2000-01-31 Francesco Potorti` <pot@gnu.org>
971
972 * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
973 (get_compressor_from_suffix, process_file): Use MSDOS in if clause.
974 (etags_strchr, etags_strrchr): Use const char * and int as arguments.
975 (getenv, getcwd): Only declare them if necessary.
976 (EMACS_NAME): New constant macro.
977 (print_version): Use it.
978 (P_) [__STDC__]: Macro for defining function prototypes.
979
980 2000-01-18 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
981
982 * etags.c [WINDOWSNT]: #include <direct.h>
983
984 2000-01-18 Martin Buchholz <martin@xemacs.org>
985
986 * etags.c (all functions): Made them static.
987 (all functions): Write prototypes.
988
989 2000-01-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
990
991 * movemail.c (main): Improve error message if can't create lock file.
992
993 2000-01-28 Eric Hanchrow <offby1@blarg.net>
994
995 * emacsclient.c (socket_status): New function.
996 (main): if $LOGNAME or $USER exist and differ from our euid, look
997 for a socket based on the UID associated with the name.
998
999 2000-01-12 Han-Wen Nienhuys <hanwen@cs.uu.nl>
1000
1001 * emacsclient.c: Add option -a EDITOR and environment variable
1002 ALTERNATE_EDITOR. Exec this editor if we fail to contact Emacs.
1003
1004 1999-12-10 Jonathan Kamens <jik@kamens.brookline.ma.us>
1005
1006 * movemail.c (popmail): Allow mailbox specifications of the
1007 form `po:username:hostname'.
1008
1009 1999-11-19 Francesco Potorti` <pot@gnu.org>
1010
1011 * etags.c (_GNU_SOURCE): Define only if undefined.
1012 (get_scheme): Declaration deleted.
1013 (main): error was called with an integer as second arg, instead of
1014 a char pointer.
1015 (canonicalize_filename): Bug removed.
1016
1017 1999-11-18 Dave Love <d.love@dl.ac.uk>
1018
1019 * etags.c (C_entries): Rename label `intoken', avoiding K&R
1020 lossage from name clash with macro.
1021
1022 1999-11-13 Gerd Moellmann <gerd@gnu.org>
1023
1024 * Makefile.in (b2m): Add dependency on GETOPTDEPS.
1025
1026 1999-11-03 Gerd Moellmann <gerd@gnu.org>
1027
1028 * etags.c (print_help): Change email address to send bugs to.
1029
1030 1999-11-01 Francesco Potorti` <pot@gnu.org>>
1031
1032 * etags.c: Add suffix psw for PSWrap.
1033 (L_getit): Generalize a "cp!=' '" into "!isspace(*cp)".
1034 (Postscript_functions): Add code for PSWrap.
1035 (Scheme_functions): Use local pointer and new get_tag function.
1036 (get_tag): New name for old get_scheme.
1037 (process_file): Do not free NULL when file does not exist.
1038 (typdef): ttypedefseen renamed to tkeyseen, new label ttypeseen.
1039 (C_entries): Modifications that make --members tag even inside
1040 typedefs and C nested structs (one level only).
1041 (consider_token): Corrected a bug which prevented tagging of enum
1042 constants.
1043 (C_stab_entry): Added if, for, while, switch, return as
1044 st_C_ignore. This makes it simpler to work when cblev!=0.
1045
1046 * etags.c (C_entries): tag member function declarations when
1047 --declarations is used.
1048
1049 * etags.c (C_entries, consider_token): C++ `operator' now is
1050 tagged in most cases.
1051 As before, :: is not recognised if surrounded by spaces.
1052
1053 * etags.c (relative_filename): Account for DOS file names such
1054 that is impossible to make one relative to another.
1055
1056 * etags.c (sym_type): New st_C_extern tag.
1057 (gperf input): Use it for spotting external declarations.
1058 (print_help): Document the new behaviour of --declarations.
1059 (fvextern): New global variable.
1060 (consider_token, C_entries): Use it.
1061
1062 * etags.c (HAVE_GETCWD) [WINDOWSNT]: Define if undefined.
1063 (etags_getcwd): Remove test for WINDOWSNT.
1064
1065 * etags.c (process_file) [MSDOS]: If foo.c.gz is not found, try
1066 foo.cgz, foo.cz, etc.
1067
1068 * etags.c (declarations): New global switch.
1069 (longopts): Describe it.
1070 (print_help): Document it.
1071 (C_entries): Use it.
1072 (process_file): Don't process a file twice.
1073
1074 * etags.c (Fortran_functions): No tags for "procedure".
1075
1076 1999-11-01 Eli Zaretskii <eliz@is.elta.co.il>
1077
1078 * etags.c (get_compressor_from_suffix): Second argument EXTPTR, if
1079 non-zero, returns a pointer to where the extension begins; callers
1080 changed.
1081 [MSDOS]: Support DOS file names by handling e.g. foo.cgz as if it
1082 were foo.c.gz.
1083
1084 1999-11-01 Francesco Potorti` <pot@gnu.org>
1085
1086 * etags.c (sym_type, C_stab_entry): New constant st_C_operator.
1087 (fvdev): New constant foperator.
1088 (consider_token): Use it to get "operator" in C++.
1089 (C_entries): Extend length of operator@ function name.
1090 (C_entries): Use foperator when necessary.
1091
1092 * etags.c (main) [!ETAGS_REGEXPS]: Do not call free_patterns.
1093
1094 * etags.c (compressor): New struct for compressed files.
1095 (get_compressor_from_suffix): New function.
1096 (get_language_from_suffix): Use it. Also, semantics changed.
1097 (process_file): Consider compressed files, close file.
1098 (find_entries): Use different call arg for get_language_from_suffix,
1099 don't close file.
1100
1101 * etags.c (main): Call free_tree.
1102 (find_entries): Do not free curfile.
1103 (pfnote): Cosmetic change: NULL and '\0' where appropriate.
1104 (prolog_pred, erlang_func, substitute): Cast strlen to int when
1105 comparing.
1106 (canonicalize_filename): Shut up compiler warning.
1107 (Perl_functions): Make tag significant.
1108
1109 1999-11-01 Dave Love <d.love@dl.ac.uk>
1110
1111 * etags.c (longopts, optstring): New option --ignore-case-regex (-c).
1112 (argument_type): New member at_icregexp.
1113 (lc_trans): New global.
1114 (main): Fill lc_trans. Process -c args.
1115 (add_regex): New arg determining whether to use translation table.
1116 (analyse_regex): New arg. Use it for add_regex.
1117
1118 1999-11-01 Francesco Potorti` <pot@gnu.org>
1119
1120 * etags.c (init): Cosmetic change: NULL --> '\0'.
1121 (erlang_attribute): Bug corrected (uninitialized variable).
1122 (filename_is_absolute): New function replaces absolutefn macro and
1123 corrects a bug. All callers changed.
1124 (canonicalize_filename): New function.
1125 (process_file, etags_getcwd, absolute_dirname): Use it.
1126 (relative_filename, absolute_filename): Removed var shadowing.
1127 (C_entries, Pascal_functions): Add fake initializations to keep
1128 compilers quiet.
1129 (TeX_functions, Prolog_functions, Erlang_functions): Cleanup.
1130
1131 * etags.c (xrnew): New macro. All callers of xrealloc changed.
1132 (language): New typedef (was struct lang_entry).
1133 (curlang): New global variable.
1134 (node): typedef renamed from NODE.
1135 (linebuffer): New typedef (was struct linebuffer).
1136 (pattern): New typedef (was struct pattern). Some members added.
1137 Now used as element of a linked list.
1138 (patterns, num_patterns): Global variables deleted.
1139 (p_head): New global variable.
1140 (forced_lang): New global variable (replaces lang_func).
1141 (get_language_from_name, get_language_from_interpreter,
1142 get_language_from_suffix): Semantics changed. All callers changed.
1143 (last_node): New global variable.
1144 (free_tree, add_node, put_entries, total_size_of_entries): Change
1145 name of local vars to avoid clashes with typedef node.
1146 (number_len): Rewritten for elegance.
1147 (token): New typedef replaces TOKEN.
1148 (analyse_regex, add_regex): Rewritten for new functionality.
1149 (free_patterns): New function called from main and add_regex.
1150 (initbuffer, readline_internal, readline, grow_linebuffer):
1151 Change name of local vars to avoid clashes with typedef
1152 linebuffer.
1153 (readline): Rewritten for new functionality.
1154
1155 * etags.c: (Scheme_suffixes): New suffix ".ss".
1156 (print_help): --globals is now used for more than C-type languages.
1157 (Perl_functions): Tag global variables ("my" and "local").
1158
1159 * etags.c (print_help): Some messages clarified.
1160 (LOOP_ON_INPUT_LINES): New macro.
1161 (just_read_file, Fortran_functions, Asm_labels, Perl_functions,
1162 Python_functions, Cobol_paragraphs, Pascal_functions,
1163 Lisp_functions, Postscript_functions, Scheme_functions,
1164 TeX_functions, Prolog_functions, Erlang_functions): Use it.
1165 (Cobol_paragraphs, Postscript_functions, TeX_functions,
1166 Prolog_functions, Erlang_functions): Use a local variable instead
1167 of the global variable dbp.
1168 (Pascal_functions, L_isquote, Scheme_functions): Use GNU coding
1169 standard indentation.
1170
1171 * etags.c (Python_suffixes, lang_names, Python_functions): Python
1172 support.
1173 (skip_spaces, skip_non_spaces): Utility functions.
1174 (find_entries, takeprec, getit, Fortran_functions, Perl_functions,
1175 Python_functions, L_getit, Lisp_functions, Scheme_functions,
1176 prolog_pred, erlanf_func, erlang_attribute): Use them.
1177 (eat_white): Deleted.
1178
1179 * etags.c (CHAR, init): Keep into account non US-ASCII
1180 characters and compilers with default signed chars.
1181 (L_getit): Tag "(defstruct (foo", "(defun (operator" and similar
1182 constructs.
1183
1184 * (C_stab_entry): "interface" in Java behaves like "class".
1185
1186 * etags.c: (HAVE_NTGUI) [WINDOWSNT]: #undef if HAVE_CONFIG_H.
1187 (main): Put interval syntax here.
1188 (add_regex): And remove it from here.
1189
1190 * etags.c (suggest_asking_for_help): Provide a
1191 meaningful help message with and without LONG_OPTIONS.
1192
1193 * etags.c: <io.h> [MSDOS]: Include it, don't include string.h.
1194 <stdlib.h, string.h>: Don't test MSDOS when including them.
1195 (white, nonam, endtk): Like elsewhere, use \r instead of \013.
1196 (put_entries): Correctly use %ld instead of %d in printf.
1197
1198 * etags.c: <unistd.h> [HAVE_UNISTD_H]: Include conditionally, else
1199 declare getcwd if HAVE_GETCWD.
1200 (consider_token): Dead break instruction removed.
1201
1202 1999-10-19 Paul Eggert <eggert@twinsun.com>
1203
1204 Add support for large files. Merge glibc 2.1.2.
1205
1206 * b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
1207 movemail.c, pop.c:
1208 Do not include <stdlib.h>, as <config.h> does this now.
1209
1210 * b2m.c, emacsserver.c, etags.c, profile.c:
1211 Include <config.h> before any system include files.
1212
1213 * emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
1214 test-distrib.c:
1215 (read, write, open, close): Do not undef.
1216
1217 * getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
1218 (const): Do not define if HAVE_CONFIG_H; that's config.h's job.
1219
1220 * getopt.h: Adopt glibc 2.1.2.
1221
1222 1999-10-15 Dave Love <fx@gnu.org>
1223
1224 * Makefile.in (pop.o): Depend on config.h.
1225
1226 1999-10-11 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1227
1228 * pop.c: Use "pop3" as the POP service name on all platforms,
1229 instead of using "pop" on Unix and "pop3" on Windows NT. "pop3"
1230 has been the standard service name since RFC 1340 was published in
1231 July 1992, so I think it's safe to start using it by default.
1232
1233 1999-09-27 Dave Love <fx@gnu.org>
1234
1235 * make-docfile.c (scan_lisp_file): Fix typo causing infloop.
1236
1237 1999-09-19 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1238
1239 * make-docfile.c (scan_lisp_file): Fix previous changes;
1240 swallow CRLF like just CR or just LF.
1241
1242 1999-09-03 Richard Stallman <rms@gnu.org>
1243
1244 * make-docfile.c: Include config.h not ../src/config.h.
1245 (main, fopen, chdir): Add #undef.
1246 (read_c_string, scan_c_file, skip_white, read_lisp_symbol)
1247 (scan_lisp_file): Handle \r like \n.
1248
1249 1999-08-30 Andreas Schwab <schwab@gnu.org>
1250
1251 * make-docfile.c, fakemail.c: Include <stdlib.h> if available.
1252
1253 * emacsserver.c: Include <stdlib.h> if available. Don't declare
1254 errno if it's a macro.
1255
1256 * test-distrib.c: Include <unistd.h> if available.
1257
1258 1999-08-29 Richard Stallman <rms@gnu.org>
1259
1260 * emacsclient.c (print_help_and_exit): Mention --version.
1261
1262 1999-08-25 Richard M. Stallman <rms@gnu.org>
1263
1264 * emacsclient.c (decode_options): Update version output.
1265 (print_help_and_exit): Update bug report address.
1266
1267 1999-08-13 Richard M. Stallman <rms@gnu.org>
1268
1269 * emacsclient.c (main): Move the dynamic allocation of
1270 system_name outside of the SERVER_HOME_DIR conditional.
1271 * emacsserver.c (main): Likewise.
1272
1273 1999-08-10 Gerd Moellmann <gerd@gnu.org>
1274
1275 * grep-changelog: New.
1276 * Makefile.in (INSTALLABLE_SCRIPTS): Add it.
1277
1278 1999-07-12 Richard Stallman <rms@gnu.org>
1279
1280 * Version 20.4 released.
1281
1282 1999-06-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
1283
1284 * Makefile.in (clean): Remove fns*.el.
1285
1286 1999-06-23 Dave Love <fx@gnu.org>
1287
1288 * etags.c (erlang_attribute): Fix undefined variable usage (after
1289 Potorti).
1290
1291 1999-05-2 Andrew Innes <andrewi@gnu.org>
1292
1293 * movemail.c (main) [WINDOWSNT]: Call ftruncate, which is now
1294 mapped to _chsize.
1295
1296 1999-04-29 Richard M. Stallman <rms@gnu.org>
1297
1298 * emacsclient.c (main, both versions): Use quote_file_name on cwd.
1299
1300 1999-03-30 Dave Love <fx@gnu.org>
1301
1302 * sorted-doc.c (main): Split up tables. Modify the preamble
1303 somewhat.
1304
1305 1999-03-05 Geoff Voelker <voelker@cs.washington.edu>
1306
1307 * makefile.nt: Remove common multiple file compilation commands.
1308
1309 1999-02-26 Richard Stallman <rms@gnu.org>
1310
1311 * Version 20.4 released.
1312
1313 * Makefile.in (yow): Depend on epaths.h, not paths.h.
1314
1315 * yow.c: Refer to epaths.h.
1316
1317 1999-02-22 Simon Josefsson <jas@pdc.kth.se>
1318
1319 * emacsserver.c (perror_1, fatal_error): Don't compile unless needed.
1320
1321 1999-01-27 Andrew Innes <andrewi@gnu.org>
1322
1323 * makefile.nt: Do make version comparison as strings.
1324
1325 1999-01-25 Richard Stallman <rms@gnu.org>
1326
1327 * emacsclient.c (xmalloc): Fix previous change.
1328
1329 1999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
1330
1331 * emacsclient.c (xmalloc): Declare to return long.
1332
1333 1999-01-22 Geoff Voelker <voelker@cs.washington.edu>
1334
1335 * etags.c (etags_getcwd, absolute_filename) [DOS_NT]: Canonicalize
1336 the case of the drive letter.
1337
1338 1999-01-15 Richard Stallman <rms@psilocin.ai.mit.edu>
1339
1340 * emacsserver.c (main): Eliminate arbitrary limit on
1341 length of system_name.
1342
1343 * emacsclient.c (main): Eliminate arbitrary limit on
1344 length of system_name.
1345 (xmalloc): Define unconditionally.
1346
1347 1999-01-12 Darrin B. Jewell <jewell@mit.edu>
1348
1349 * etags.c (relative_filename): Stop backward search at beginning
1350 of string, since non-Unix systems can have absolute paths with no
1351 initial slash.
1352
1353 1998-12-08 Geoff Voelker <voelker@cs.washington.edu>
1354
1355 * makefile.nt: Do string comparision of _NMAKE_VER.
1356
1357 1998-11-03 Theodore Jump <tjump@cais.com>
1358
1359 * makefile.nt: Compile multiple source files when possible.
1360
1361 1998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
1362
1363 * Makefile.in: Replace tabs with spaces
1364 when they might confuse some Make versions.
1365
1366 1998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
1367
1368 * emacsclient.c (main): Null-terminate system_name.
1369
1370 * emacsserver.c (main): Null-terminate system_name.
1371
1372 1998-09-21 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1373
1374 * movemail.c (popmail, pop_retr) [MAIL_USE_POP]: When displaying
1375 an error message from POP, mention that it's from POP, to
1376 distinguish it from local error messages.
1377
1378 1998-09-04 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1379
1380 * movemail.c [MAIL_USE_POP]: Add the "-r" flag to reverse the
1381 order of messages downloaded from a POP server (e.g., if the
1382 server stores messages in mailboxes in reverse order).
1383
1384 1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
1385
1386 * Version 20.3 released.
1387
1388 1998-08-11 Paul Eggert <eggert@twinsun.com>
1389
1390 * rcs2log: Update copyright date and bug report address.
1391 (initialize_fullname): Prefer getent if available.
1392
1393 1998-07-30 Paul Eggert <eggert@twinsun.com>
1394
1395 * lib-src/Makefile.in (REGEXPDEPS, regex.o):
1396 Prepend $(srcdir)/ to rule dependencies outside this dir.
1397
1398 1998-06-09 Andrew Innes <andrewi@harlequin.co.uk>
1399
1400 * etags.c (etags_getcwd) [WINDOWSNT]: Use getcwd on Windows.
1401
1402 1998-06-06 Richard Stallman <rms@psilocin.ai.mit.edu>
1403
1404 * Makefile.in: Properly terminate a comment.
1405
1406 1998-06-01 Andrew Innes <andrewi@mescaline.gnu.org>
1407
1408 * movemail.c (sys_wait): Rename to wait.
1409
1410 * ntlib.h: Undefine _WINSOCKAPI_.
1411
1412 * makefile.nt (LOCAL_FLAGS): Define HAVE_CONFIG_H.
1413
1414 1998-05-30 Geoff Voelker <voelker@cs.washington.edu>
1415
1416 * ntlib.c (getppid): Look for EM_PARENT_PROCESS_ID.
1417
1418 1998-05-01 Andrew Innes <andrewi@harlequin.co.uk>
1419
1420 * movemail.c [WINDOWSNT]: Undefine DISABLE_DIRECT_ACCESS. Force
1421 all file i/o to be in binary mode. Include ntlib.h.
1422
1423 1998-04-27 Andreas Schwab <schwab@delysid.gnu.org>
1424
1425 * make-docfile.c: Include <unistd.h> for chdir.
1426
1427 1998-04-25 Richard Stallman <rms@psilocin.gnu.org>
1428
1429 * etags.c (TEX_decode_env): Don't free the value getenv returns.
1430
1431 1998-04-17 Geoff Voelker <voelker@cs.washington.edu>
1432
1433 * makefile.nt (obj): Update with new files in src.
1434 (clean): Delete patch scratch files, optimized compilation dir.
1435
1436 1998-04-08 Dave Love <fx@gnu.org>
1437
1438 * emacsclient.c: Move inclusion of unistd.h to top, else fails on
1439 Irix6, at least.
1440
1441 1998-04-06 Andreas Schwab <schwab@gnu.org>
1442
1443 Silence -Wimplicit:
1444 * movemail.c: Move cancelations up. Include <stdlib.h> if
1445 available.
1446 * fakemail.c (_XOPEN_SOURCE): Define for declaration of cuserid.
1447 (parse_header): Explicitly declare return type.
1448 * emacsserver.c: Include <unistd.h> if available.
1449 (main, handle_signals, perror_1, fatal_error): Explicitly declare
1450 return types. Add forward declarations.
1451 * emacsclient.c: Include <stdlib.h> and <unistd.h> if available.
1452 Don't declare geteuid.
1453 (print_help_and_exit): Change return type to void. Forward
1454 declare it.
1455 * b2m.c: Include <stdlib.h> if available.
1456 (main): Explicitly declare return type.
1457
1458 1998-04-03 Richard Stallman <rms@delysid.gnu.org>
1459
1460 * etags.c (put_entries): Use %ld.
1461
1462 * b2m.c (fatal): Declare the arg.
1463
1464 1998-04-03 Richard Stallman <rms@psilocin.gnu.org>
1465
1466 * etags.c (put_entries): Use %ld.
1467
1468 * b2m.c (fatal): Declare the arg.
1469
1470 1998-03-26 Richard Stallman <rms@psilocin.gnu.org>
1471
1472 * pop.c (pop_getline): Renamed from getline.
1473
1474 1998-03-05 Richard Stallman <rms@psilocin.gnu.org>
1475
1476 * Makefile.in (install): Use INSTALL_STRIP with INSTALL_PROGRAM
1477 for the utilities.
1478
1479 1998-01-23 Dave Love <d.love@dl.ac.uk>
1480
1481 * etags.c (getit, Cobol_paragraphs, Pascal_functions,
1482 Postscript_functions, prolog_pred, erlang_func, erlang_attribute):
1483 Always make named tags.
1484 (Fortran_functions): Grok BLOCK DATA.
1485
1486 1998-01-23 Andreas Schwab <schwab@gnu.org>
1487
1488 * movemail.c (main): Fix interwoven brace and cpp conditional
1489 nesting.
1490
1491 1997-12-04 Karl Heuer <kwzh@delysid.gnu.org>
1492
1493 * movemail.c, pop.c, pop.h: Allow messages retrieved from the POP
1494 server to contain embedded nulls.
1495
1496 1997-12-03 Paul Eggert <eggert@delysid.gnu.org>
1497
1498 * movemail.c:
1499 (mbx_write) [MAIL_USE_POP]: Disable the code which quotes with a
1500 '>' any lines starting with "From " read from the POP server, but
1501 leave the code in place, wrapped in #ifdef
1502 MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
1503 because it turns out that something is depending on it. Change
1504 suggested by Paul Eggert <eggert@twinsun.com>.
1505 Convert the character \037 (^_) at the beginning of a line into
1506 the character '^' followed by the character '_', because otherwise
1507 Emacs can't parse the resulting file as a valid BABYL file.
1508 Change suggested by Paul Eggert <eggert@twinsun.com>.
1509
1510 1997-12-03 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1511
1512 * movemail.c, pop.c, pop.h: Allow messages retrieved from the POP
1513 server to contain embedded nulls.
1514
1515 1997-12-02 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1516
1517 * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which
1518 quotes with a '>' any lines starting with "From " read from the
1519 POP server, but leave the code in place, wrapped in #ifdef
1520 MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
1521 because it turns out that something is depending on it. Change
1522 suggested by Paul Eggert <eggert@twinsun.com>.
1523
1524 Convert the character \037 (^_) at the beginning of a line into
1525 the character '^' followed by the character '_', because otherwise
1526 Emacs can't parse the resulting file as a valid BABYL file.
1527 Change suggested by Paul Eggert <eggert@twinsun.com>.
1528
1529 1997-11-22 Richard Stallman <rms@gnu.org>
1530
1531 * b2m.c: Include getopt.h.
1532 (main): Use getopt_long to handle --version and --help.
1533
1534 * Makefile.in (b2m): Define VERSION. Link with $(GETOPTOBJS).
1535
1536 1997-10-31 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1537
1538 * pop.c (fullwrite): Get rid of an extra call to write. Problem
1539 pointed out by Chiaki Ishikawa.
1540
1541 1997-10-16 Dave Love <d.love@dl.ac.uk>
1542
1543 * etags.c (L_getit): Always make named tags so that Emacs
1544 completion on symbols containing `:' etc. works.
1545 (get_scheme): Likewise.
1546
1547 1997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1548
1549 * pop.c: Use system header files instead of declaring C-library
1550 functions explicitly.
1551
1552 1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1553
1554 * Version 20.2 released.
1555
1556 1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1557
1558 * Version 20.1 released.
1559
1560 1997-09-02 Andrew Innes <andrewi@harlequin.co.uk>
1561
1562 * makefile.nt (movemail.exe): Link wsock32.lib before LIBS.
1563
1564 * ntlib.c (getpid): Delete function.
1565
1566 1997-08-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
1567
1568 * make-docfile.c (scan_lisp_file): Handle custom-declare-variable.
1569
1570 1997-08-26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
1571
1572 * emacsclient.c [HAVE_SYSVIPC]: Include errno.h, as in the other case.
1573 (main) [!BSD_SYSTEM]: Fix error message for getcwd failure.
1574
1575 1997-08-14 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1576
1577 * emacsserver.c (main): Use SOCKLEN_TYPE for fromlen, if it is defined.
1578
1579 1997-08-13 Kazushi (Jam) Marukawa <jam@poboxes.com>
1580
1581 * profile.c (get_time): Cast arg to fprintf.
1582
1583 * hexl.c (main): Use %08lx instead of %08x in printf because the
1584 variable named addresses is long.
1585
1586 1997-08-08 Geoff Voelker <voelker@cs.washington.edu>
1587
1588 * makefile.nt (lisp): Update paths to lisp files that have moved.
1589
1590 1997-08-08 Andrew Innes <andrewi@harlequin.co.uk>
1591
1592 * makefile.nt (ctags.obj): New target.
1593 (etags.obj, getopt.obj, make-docfile.obj): Update dependencies.
1594
1595 * ntlib.h: Add includes.
1596 Undo definitions of crt routines from config.h.
1597
1598 1997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1599
1600 * etags.c (Yacc_suffixes, Asm_suffixes): Add some alternatives.
1601
1602 1997-07-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1603
1604 * pop.c: Support auto-configuration of both Kerberos V4 and
1605 Kerberos V5 for movemail, including detection of V4 and V5 header
1606 files and libraries.
1607 Include <string.h> when STDC_HEADERS is defined, to get
1608 declarations of string functions.
1609 [KERBEROS5] (socket_connection): Support the current MIT Kerberos
1610 V5 API rather than the old one.
1611 [KERBEROS] (socket_connection): Change a constant name from
1612 SOCKET_ERROR to POP_SOCKET_ERROR to avoid a namespace conflict
1613 with a constant in a header file.
1614
1615 * Makefile.in: Support auto-configuration of both Kerberos V4 and
1616 Kerberos V5 for movemail, including detection of V4 and V5 header
1617 files and libraries.
1618
1619 1997-07-17 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1620
1621 * fakemail.c [HAVE_UNISTD_H]: Include unistd.h.
1622
1623 * etags.c [HAVE_UNISTD_H]: Include unistd.h.
1624
1625 1997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1626
1627 * emacsclient.c [C_ALLOCA] (xmalloc): New function.
1628
1629 1997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1630
1631 * movemail.c (rindex): Add declaration.
1632
1633 Tue Jul 1 01:09:07 1997 Geoff Voelker <voelker@cs.washington.edu>
1634
1635 * makefile.nt (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
1636 (movemail.exe): Depend upon and link with getopt files.
1637 (obj): Include new source files.
1638 (FACE_SUPPORT, MOUSE_SUPPORT, FLOAT_SUPPORT, WINNT_SUPPORT): Define.
1639 (lisp): Include new and reorganized elisp files.
1640
1641 1997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1642
1643 * Makefile.in (blessmail): Find blessmail.el in mail subdirectory.
1644
1645 1997-06-25 Paul Eggert <eggert@twinsun.com>
1646
1647 * rcs2log: Don't assign to $0 in awk; some awks don't allow this.
1648
1649 1997-06-14 Karl Heuer <kwzh@gnu.ai.mit.edu>
1650
1651 * b2m.c (readline): Terminate buffer properly when EOF seen.
1652 Test for valid pointer before dereferencing it.
1653
1654 1997-05-30 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1655
1656 * Makefile.in (etags): Remove -DETAGS_REGEXPS, because now it is
1657 defined inside etags.c if HAVE_CONFIG_H is defined.
1658
1659 1997-05-29 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1660
1661 * etags.c: (logical): Type name changed to bool.
1662 (ETAGS_REGEXPS, LONG_OPTIONS) [HAVE_CONFIG_H]: #define them.
1663 (<getopt.h>) [LONG_OPTIONS]: Include conditionally.
1664 (getopt_long) [!LONG_OPTIONS]: Redefine as macro.
1665 (main): Accepted options depend on ETAGS_REGEXPS and LONG_OPTIONS.
1666 (longopts): New long options without short counterpart are
1667 globals, members, no-globals, no-members. Regexp options are now
1668 defined conditionally to ETAGS_REGEXPS.
1669 (print_help): Updated.
1670
1671 1997-05-22 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1672
1673 * etags.c (C_entries): Use "." instead of "::" for Java.
1674 (consider_token): is_func renamed to is_func_or_var.
1675 (C_entries): is_func renamed to funorvar.
1676 (C_entries): Initialise tok.named.
1677 (sym_type, C_stab_entry, consider_token): st_C_ignore is used to
1678 get rid of "import", "package" and "friend".
1679 (fvdef): Renamed from funcdef. Also some constants renamed. All
1680 users changed.
1681 (C_entries): Make separate tags for variables separated by comma.
1682 (globals, members): New flags.
1683 (main, C_entries): Use them.
1684 (make_C_tag, C_entries): Make tok a global variable.
1685
1686 1997-05-16 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1687
1688 * etags.c (funcdef): New vignore constant.
1689 (consider_token, C_entries): Use it to tag global variables.
1690 (print_help): Update for global variables.
1691 (consider_token, C_entries): Set the len member of token_name.
1692 (prolog_pred): Cleanup according to GNU coding standards.
1693 (Cobol_suffixes, lang_names, Cobol_paragraphs): Cobol support.
1694 (prolog_white, erlang_white): Renamed to eat_white, callers changed.
1695
1696 1997-05-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1697
1698 * etags.c (CHARS, CHAR): New constant and macro.
1699 (iswhite, begtoken, intoken, endtoken): Use them.
1700 (notinname, _nin, nonam): New macro, array, string.
1701 (init): Cleanup and init _nin.
1702 (new_pfnote): New function.
1703 (make_C_tag) [traditional_tag_style]: Use it.
1704 (traditional_tag_style): Costant set to TRUE for now.
1705
1706 1997-05-14 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1707
1708 * etags.c (C_entries, Pascal_functions): Cleanup.
1709 (TeX_functions): NULL as a function arg needs a cast.
1710 (Erlang_functions, erlang_func, erlang_attribute): Cleanup.
1711
1712 1997-05-13 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1713
1714 * etags.c (TeX_functions): Cleaned up.
1715 (tex_getit): Removed.
1716
1717 1997-05-13 Paul Eggert <eggert@twinsun.com>
1718
1719 * rcs2log (files): When computing arguments automatically, ignore
1720 non-files within the RCS subdirectory.
1721
1722 1997-05-13 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1723
1724 * etags.c (C_JAVA): New #define.
1725 (Cjava_suffixes): .java is Java.
1726 (Cjava_entries): New function.
1727 (lang_names): Add Java.
1728 (sym_type): Add st_C_javastruct for Java.
1729 (C_stab_entry): Add `extends' and `implements' keywords.
1730 (consider_token, C_entries): Recognise Java structures.
1731
1732 1997-05-12 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1733
1734 * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
1735 (Postscript_suffixes): .ps is Postscript.
1736 (lang_names): Add Postscript.
1737 (Postscript_functions): New function.
1738 (TEX_decode_env): Close minor memory leak.
1739 (just_read_file): Correct the char number of the tag.
1740
1741 1997-05-11 Paul Eggert <eggert@twinsun.com>
1742
1743 * rcs2log (loginFullnameMailaddrs, logins, rlog_options, files):
1744 Don't prepend $nl since this causes some shells to generate the
1745 empty string when IFS is $nl.
1746 (printlogline): Use SOH (octal code 1), not CR, since some
1747 PC-based shells mishandle CR.
1748 (initialize_fullname): Set NIS_PATH to the empty string before invoking
1749 nismatch, in case it's set to some nonstandard value.
1750
1751 1997-05-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1752
1753 * pop.c (getline): Don't miss CRLF pairs when the CR and LF are
1754 read in separate blocks.
1755
1756 1997-04-30 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1757
1758 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
1759 (struct linebuffer): New member `len' is the length of the string.
1760 (find_entries, Pascal_functions, TeX_functions, TEX_getit):
1761 Use it instead of strlen.
1762 (TEX_getit): Declare and define unconditionally as static.
1763 (TeX_functions): Use if instead of #if TeX_named_tokens.
1764 (add_regex): Set RE_INTERVALS flag for regex compilation.
1765 (substitute): Code cleanup.
1766 (readline_internal): Code cleanup, set new member `len'.
1767 (readline): Bug corrected.
1768
1769 1997-04-23 Geoff Voelker <voelker@cs.washington.edu>
1770
1771 * makefile.nt: Change references of windowsnt.h to ms-w32.h.
1772 (obj): Change references of nt*.c files to w32*.c files.
1773
1774 1997-04-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1775
1776 * etags.c (xnew): Add support for debugging with chkmalloc.
1777 (error): Use this instead of printf whenever possible.
1778 (main): Only call xnew after having initialised progname.
1779 (substitute): Bad memory corruption error corrected.
1780
1781 1997-04-08 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1782
1783 * etags.c (add_regex): Undo previous change.
1784 (relative_filename): Small memory leak closed.
1785 (absolute_filename): Cleaned up the code, possibly closing a bug.
1786 (absolute_dirname): Always return a newly allocated string.
1787
1788 1997-03-21 Paul Eggert <eggert@twinsun.com>
1789
1790 * rcs2log (files): Ignore files in RCS directory whose names are
1791 of the form ,*, or *_; they are probably RCS lock files.
1792 Also, ignore files named .rcsfreeze.log or .rcsfreeze.ver;
1793 they are used by rcsfreeze.
1794
1795 1997-03-14 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1796
1797 * etags.c (add_regex): reset *putbuf before using it.
1798
1799 1997-02-23 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1800
1801 * movemail.c (popmail): Remove some unnecessary function
1802 declarations.
1803 (popmail, pop_retr): Since popmail always passes mbx_write and mbf
1804 into pop_retr, there's no reason to pass in mbx_write, and the
1805 file argument can be declared FILE * explicitly. This fixes a
1806 compilation problem on systems with 64-bit pointers.
1807
1808 1997-02-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
1809
1810 * movemail.c: Delete duplicate inclusion of fcntl.h
1811 and duplicate #undefs of open, read, write, close.
1812
1813 1997-01-20 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1814
1815 * movemail.c (main): Do not display "[POP-password]" in the usage
1816 message when movemail is compiled without POP support.
1817 (main, popmail): Add the optional "-p" argument, which causes
1818 movemail to leave mail in the inbox after copying it into the
1819 output file.
1820
1821 * Makefile.in (movemail): Link with getopt.
1822
1823 1997-01-20 Paul Eggert <eggert@twinsun.com>
1824
1825 * rcs2log: (--help, --version): New options, per GNU coding standards.
1826 (Copyright, Help, Id): New variables, for above.
1827 (rlog): Use -q option with cvs log, to avoid useless chatter.
1828
1829 Treat logs of "Initial revision" (RCS) or "file F was initially added
1830 on branch B." (CVS) as if they said "New file.", for consistency with
1831 change log entries.
1832
1833 1997-01-01 Paul Eggert <eggert@twinsun.com>
1834
1835 * vcdiff (PATH): Add /usr/xpg4/bin,
1836 where XPG4 SCCS hangs out in Solaris 2.5.
1837 (sid1): Don't use bare -r, since XPG4 `get' does not allow it.
1838
1839 1996-12-19 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
1840
1841 * etags.c (streq, strneq): Use == NULL rather than !.
1842
1843 1996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
1844
1845 * Makefile.in (LIBMAIL): New macro. Conditionally includes -lmail.
1846 (movemail): Use LIBMAIL, to link against -lmail.
1847
1848 * movemail.c: Include maillock.h (conditionally).
1849 Remove a redundant inclusion of <stdio.h>.
1850 (MAIL_USE_MAILLOCK): New macro, conditionally defined.
1851 (main): Add variable spool_name.
1852 Support the usage of maillock and mailunlock to
1853 lock and unlock mailboxes.
1854 (mail_spool_name): New function.
1855
1856 * movemail.c: Fix an uninitialized variable which could cause
1857 movemail to exit with an error status incorrectly on systems which
1858 use lock files rather than a system locking function to lock
1859 mailboxes.
1860
1861 1996-12-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1862
1863 * pop.c (socket_connection): Free realhost after using it.
1864
1865 1996-12-04 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1866
1867 * etags.c (C_entries): Test tok.valid. This handles some
1868 particular cases involving function declarations that failed.
1869
1870 1996-11-22 Charles Hannum <mycroft@gnu.ai.mit.edu>
1871
1872 * pop.c (socket_connection):
1873 gethostbyname may return a pointer to static data.
1874 krb_realmofhost can clobber it. So copy it.
1875
1876 1996-11-14 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1877
1878 * etags.c (pfnote, fatal, error): Callers using a NULL pointer
1879 must cast it to (char *) because we have no prototypes.
1880 (make_C_tag): Macro deleted, new function.
1881 (C_entries): Calls to make_C_tag macro changed to call function.
1882
1883 1996-11-13 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1884
1885 * etags.c (grow_linebuffer): New function.
1886 (GROW_LINEBUFFER): Macro deleted. All callers changed.
1887 (make_tag): Macro renamed to make_C_tag. All callers changed.
1888 (<stdlib.h>, <string.h>) [STDC_HEADERS]: New #include's.
1889 (Prolog_functions): prolog_skip_comment was called with wrong
1890 number of arguments.
1891 (xrealloc): fatal was called with wrong number of arguments
1892
1893 1996-11-08 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1894
1895 * etags.c (relative_filename): Bug corrected.
1896 (etags_getcwd): Avoid warning of unused variable.
1897 (C_entries, consider_token): Added support for enum labels.
1898
1899 1996-11-03 Paul Eggert <eggert@twinsun.com>
1900
1901 * rcs2log: When processing cvs log output, remove `Attic/' from
1902 repository file names.
1903
1904 1996-10-22 Karl Heuer <kwzh@gnu.ai.mit.edu>
1905
1906 * emacsserver.c: Fix 1996-09-02 change.
1907
1908 1996-10-12 Paul Eggert <eggert@twinsun.com>
1909
1910 * rcs2log (rlog_options): Look for ' option' rather than 'unknown
1911 option', since CVS says 'invalid option'.
1912 (datearg): Use the empty string, not '-d>1970-01-01', to extract all
1913 revisions, since some hosts reject 1970-01-01 when east of UTC.
1914 (date): Remove.
1915
1916 1996-10-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
1917
1918 * etags.c (etags_getcwd) [WINDOWSNT]: Convert backslashes to slashes.
1919
1920 1996-10-02 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
1921
1922 * etags.c (print_version): Print copyright info.
1923
1924 * etags.c (print_help): Print the bug reporting address.
1925 (main): Use return as the last instruction, instead of exit.
1926
1927 * etags.c (main): Don't open the tags file in cxref mode.
1928
1929 1996-09-29 Dave Love <d.love@dl.ac.uk>
1930
1931 * rcs2log (date): Make default format acceptable to CVS post v1.8
1932 as well as earlier CVSs and RCS.
1933
1934 1996-09-29 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
1935
1936 * movemail.c (main): If the lock call fails with EBUSY or
1937 EAGAIN, retry a few times.
1938
1939 1996-09-25 Paul Eggert <eggert@twinsun.com>
1940
1941 * rcs2log (rlog_options): Use $rlog, not rlog, when deciding
1942 whether to append -zLT.
1943
1944 1996-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
1945
1946 * fakemail.c: Replaced symbol BSD with BSD_SYSTEM.
1947 * emacsclient.c, movemail.c: Likewise.
1948
1949 1996-09-09 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
1950
1951 * emacsclient.c (longopts): Change nowait to no-wait.
1952 (print_help_and_exit): Fix option name; upcase metavars.
1953
1954 1996-09-06 Erik Naggum <erik@naggum.no>
1955
1956 * emacsserver.c (main): Declare `fromlen' as size_t.
1957
1958 1996-09-02 Eli Zaretskii <eliz@is.elta.co.il>
1959
1960 * etags.c (etags_getcwd): Use getcwd if available even if MSDOS.
1961
1962 1996-09-02 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
1963
1964 * emacsclient.c (quote_file_name): Quote with &, not \.
1965 Quote `-' only at start of file name. Terminate the value string.
1966
1967 * emacsserver.c: Include signal.h properly;
1968 delete the duplicate includes for it.
1969
1970 * emacsserver.c: On fatal signal, delete socket-file:
1971 * emacsserver.c: Include signal.h.
1972 (xmalloc, fatal, error): New functions.
1973 (delete_socket, handle_signals): New functions.
1974 (progname, socket_name): New variables.
1975 [HAVE_SOCKETS] (main): Call handle_signals; set the new variables.
1976
1977 1996-09-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
1978
1979 * emacsclient.c (quote_file_name): New function.
1980 (main, both versions): Use quote_file_name.
1981 (decode_options): Don't return a value.
1982 (main, both versions): Use optind.
1983 Don't check for -nowait here.
1984
1985 * emacsclient.c (decode_options): New function.
1986 (main, both versions): Call decode_options.
1987 (print_help_and_exit): New function.
1988 (VERSION): New macro.
1989
1990 * Makefile.in (emacsclient): Link with getopt.
1991 Add -DVERSION so emacsclient knows its version number.
1992
1993 1996-08-31 Geoff Voelker <voelker@cs.washington.edu>
1994
1995 * makefile.nt (lisp): Include dos-nt.elc.
1996
1997 1996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
1998
1999 * Makefile.in (blessmail): Use $srcdir to find blessmail.el.
2000
2001 1996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
2002
2003 * emacsclient.c (both versions): Handle -nowait and --nowait
2004 by sending data to the server.
2005
2006 1996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
2007
2008 * Makefile.in (INSTALL_STRIP): New variable.
2009 (${archlibdir}): Use INSTALL_STRIP.
2010
2011 * Makefile.in (MOVE_LIBS): Use conditionals on KERBEROS,
2012 HAVE_LIBKRB, HAVE_LIBDES, HAVE_LIBCOM_ERR to set it up.
2013
2014 * pop.c: Reverse conditional in previous change.
2015
2016 1996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
2017
2018 * pop.c: Include des.h krb.h with no dir name if SOLARIS2.
2019
2020 1996-08-24 Paul Eggert <eggert@twinsun.com>
2021
2022 * rcs2log: Use ISO 8601 date format, with time zone appended
2023 if change-log-time-zone-rule is non-nil, instead of
2024 traditional Unix date format.
2025
2026 (datearg): When computing default from ChangeLog, handle ISO format
2027 dates in addition to old-fashioned dates from Emacs 19.31 and earlier.
2028 Don't worry about hh:mm:ss since the resolution is now by day.
2029 Use emtpy datearg, not empty rlog_options, to decide whether to pass
2030 "$datearg" option to $rlog.
2031 (logTZ): New variable, set to TZ specified by change-log-time-zone-rule.
2032 (month_data): Remove `mo'; no longer needed.
2033 (rlog_options): Use -zLT for localltime output, if `rlog' supports it.
2034
2035 Match `revision' line of rlog output more accurately.
2036
2037 Add -c, -v options.
2038
2039 1996-08-23 Eli Zaretskii <eliz@is.elta.co.il>
2040
2041 * hexl.c: Include <config.h>, so DOS_NT is defined on MSDOS.
2042
2043 1996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
2044
2045 * Version 19.33 released.
2046
2047 1996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
2048
2049 * Version 19.32 released.
2050
2051 1996-07-23 Andrew Innes <andrewi@harlequin.co.uk>
2052
2053 * etags.c (readline_internal) [DOS_NT]: Don't include CRs when
2054 computing character positions in source files.
2055
2056 1996-07-16 Andrew Innes <andrewi@harlequin.co.uk>
2057
2058 * makefile.nt (clean): Use OBJDIR macro.
2059
2060 1996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
2061
2062 * cvtmail.c, sorted-doc.c, yow.c, emacsserver.c: Undo previous change.
2063
2064 1996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
2065
2066 * cvtmail.c, sorted-doc.c, yow.c: [__GNU_LIBRARY__]: Use <string.h>.
2067 * emacsserver.c (main) [__GNU_LIBRARY__]: Use size_t for fromlen.
2068 * etags.c, fakemail.c, profile.c: Declare main as int, not void.
2069
2070 1996-07-15 Andrew Innes <andrewi@harlequin.co.uk>
2071
2072 * ntlib.h: Correct return type of getwd.
2073 * ntlib.c (getwd): Correct return type.
2074
2075 1996-07-02 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
2076
2077 * emacsserver.c (main) [HAVE_SOCKETS]: Call rewind before writing
2078 to infile.
2079
2080 1996-07-01 Andrew Innes <andrewi@harlequin.co.uk>
2081
2082 * makefile.nt: Remove all references to wakeup.
2083
2084 1996-06-28 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
2085
2086 * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
2087 explicit, mutable, typename.
2088
2089 1996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
2090
2091 * emacsclient.c (main) [HAVE_SOCKETS]: Use two separate stdio
2092 streams, one for sending and one for reading the reply.
2093
2094 1996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
2095
2096 * Makefile.in (timer, timer.o, getdate.o, $(srcdir)/getdate.c)
2097 (wakeup): Target deleted.
2098 (UTILITIES): Delete wakeup and timer.
2099
2100 * wakeup.c, timer.c, getdate.y, getdate.c: Files deleted.
2101
2102 1996-06-11 Geoff Voelker <voelker@cs.washington.edu>
2103
2104 * etags.c (etags_getcwd) [DOS_NT]: Change conditional to MSDOS only.
2105 * makefile.nt (ETAGS_CFLAGS): Define HAVE_GETCWD macro.
2106
2107 1996-06-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
2108
2109 * etags.c (main): Copy cwd when appending slash.
2110
2111 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
2112
2113 * Version 19.31 released.
2114
2115 1996-05-17 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
2116
2117 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
2118 (Pascal_functions): Increase linecharno by the correct number of
2119 chars, inline the GET_NEW_LINE macro and delete its definition.
2120
2121 1996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
2122
2123 * makefile.nt (OBJDIR, BLD): Remove macro definitions.
2124
2125 1996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
2126
2127 * makefile.nt (LOCAL_FLAGS): Include path to NT shadow includes.
2128 (movemail.exe, fakemail.exe): Now built under Win32.o
2129
2130 * ntlib.c: Include ntlib.h.
2131 (nt_sleep): Rename to sleep.
2132 (getwd): Return directory.
2133 (getlogin, cuserid, getuid, setuid, getpwuid, getpass, fchown,
2134 sys_ctime, sys_fopen): New functions.
2135
2136 * ntlib.h: New file.
2137
2138 1996-04-29 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
2139
2140 * pop.c (SEND, RECV): Renamed from send, recv.
2141 (pop_open, pop_trash): Make the trash_started code unconditional.
2142 (socket_connection): Delete casts to void.
2143
2144 1996-04-28 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
2145
2146 * movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP): Definitions
2147 copied from lisp.h.
2148
2149 1996-04-22 Andrew Innes <andrewi@harlequin.co.uk>
2150
2151 * fakemail.c [WINDOWSNT]: Include ntlib.h.
2152
2153 * hexl.c [DOSNT]: Include fcntl.h.
2154 [WINDOWSNT]: Include io.h.
2155 (main) [MSDOS]: Change conditional to DOS_NT.
2156
2157 * movemail.c (access, unlink) [WINDOWSNT]: Macros undefined.
2158 (fork, syswait, DISABLE_DIRECT_ACCESS) [WINDOWSNT]: Macros defined.
2159 [WINDOWSNT]: Include locking.h.
2160 (main): Update usage message. Use IS_DIRECTORY_SEP.
2161 (main) [DISABLE_DIRECT_ACCESS]: Don't check access if defined.
2162 (main) [WINDOWSNT]: Invoke locking instead of flock.
2163 (main) [MAIL_USE_SYSTEM_LOCK && WINDOWSNT]: Emulate ftruncate.
2164 (main) [MAIL_USE_POP]: Pass password to popmail if used.
2165 Include winsock.h; don't include unix inet headers.
2166 (popmail): Add password argument and pass it to pop_open.
2167 Open output file in binary mode.
2168
2169 * pop.c [WINDOWSNT]: Include winsock.h and ntlib.h.
2170 Macro SOCKET_ERROR undefined.
2171 Don't declare h_errno.
2172 [!WINDOWSNT]: Define macros recv and send.
2173 [!WINDOWSNT] (POP_SERVICE): Change to pop3.
2174 (pop_open) [WINDOWSNT]: Initialize trash_started.
2175 (have_winsock) [WINDOWSNT]: New variable.
2176 (socket_connection) [WINDOWSNT]: Initialize winsock.
2177 (socket_connection): Use closesocket instead of close.
2178 (getline): Use recv instead of read.
2179 (fullwrite): Use send instead of write.
2180 (pop_trash): Use closesocket instead of close.
2181 (pop_trash) [WINDOWSNT]: Cleanup winsock.
2182 Check if being called recursively by sendline.
2183
2184 * pop.h (struct _popserver): New field trash_started.
2185
2186 * wakeup.c [HAVE_CONFIG_H]: Only include config.h when defined.
2187
2188 1996-04-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2189
2190 * hexl.c (main) [DJGPP v2]: Don't change to binary for a tty.
2191
2192 1996-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2193
2194 * etags.c [WINDOWSNT]: Include io.h.
2195
2196 1996-04-10 Geoff Voelker <voelker@cs.washington.edu>
2197
2198 * makefile.nt (CTAGSOBJ): Compile with regexp support.
2199
2200 1996-04-09 Eli Zaretskii <eliz@is.elta.co.il>
2201
2202 * hexl.c [DJGPP v2]: Include io.h.
2203 (main) [DJGPP v2]: Switch standard streams to binary with setmode.
2204
2205 * b2m.c (main) [MSDOS]: Switch standard streams to binary under
2206 DJGPP v2.
2207
2208 1996-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2209
2210 * etags.c (absolute_filename): Use absolutefn.
2211
2212 1996-03-31 Eli Zaretskii <eliz@is.elta.co.il>
2213
2214 * etags.c (absolutefn) [DOS_NT]: Support Novell drives whose drive
2215 letter isn't an alphabetic character.
2216 (main) [DOS_NT]: Use binary mode on redirected `stdout'.
2217 (process_file) [DOS_NT]: Convert all slashes to forward style.
2218 (absolute_filename) [DOS_NT]: Emit error message for relative
2219 paths with a drive letter.
2220 (absolute_filename) [DOS_NT]: Handle absolute pathnames with
2221 DOS/NT drive letters which try to reference the parent of the root.
2222 (absolute_dirname) [DOS_NT]: Convert all slashes to forward style.
2223
2224 1996-03-27 Geoff Voelker <voelker@cs.washington.edu>
2225
2226 * makefile.nt: Change uses of del to $(DEL).
2227
2228 1996-03-22 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
2229
2230 * etags.c (just_read_file): Reset lineno and charno on entry.
2231
2232 1996-03-15 Anders Lindgren <andersl@csd.uu.se>
2233
2234 * etags.c: Prolog language totaly rewritten.
2235 (Prolog_functions): Rewritten from scratch.
2236 (skip_comment, prolog_getit): Removed.
2237 (prolog_skip_comment): New function, like old skip_comment.
2238 (prolog_pred, prolog_atom, prolog_white): New functions.
2239 (erlang_func, erlang_attributes): Forward declarations added.
2240 (erlang_atom): Check if backslash ends line inside quoted atom.
2241
2242 1996-03-14 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
2243
2244 * etags.c (absolutefn): DOS_NT version corrected.
2245 (main): Append "/" to the dir name only if not already there.
2246 (print_help): Explain the absolute/relative file name issue.
2247
2248 1996-03-08 Anders Lindgren <andersl@csd.uu.se>
2249
2250 * etags.c: New Languange Erlang added.
2251 (Erlang_functions, erlang_func, erlang_attribute, erlang_atom,
2252 erlang_white): New functions.
2253 (Erlang_suffixes): New suffix list.
2254 (lang_names): Erlang entry added.
2255 (prolog_getit): Accepts headers spanning several lines.
2256 Always name tags.
2257 (Prolog_functions): Removed incorrect compensation for
2258 newline characters.
2259 (readline_internal): Zero-terminate last line.
2260
2261 1996-03-20 Mike Long <mike.long@analog.com>
2262
2263 * b2m.c (main): Initialize progname variable before using it.
2264 Quote `username' in From_ header.
2265
2266 1996-03-18 Geoff Voelker <voelker@cs.washington.edu>
2267
2268 * ntlib.c (getpid): New function.
2269
2270 1996-02-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
2271
2272 * emacsclient.c (main, both definitions):
2273 Print a newline for normal termination.
2274
2275 1996-02-21 Noah Friedman <friedman@prep.ai.mit.edu>
2276
2277 * tcp.c (main): Convert port to network byte order.
2278
2279 1996-01-20 Karl Heuer <kwzh@gnu.ai.mit.edu>
2280
2281 * pop.c (pop_retrieve, getline): Avoid type clashes.
2282
2283 1996-01-19 Karl Heuer <kwzh@gnu.ai.mit.edu>
2284
2285 * etags.c (enum sym_type, anonymous enum): Delete final comma.
2286
2287 1996-01-15 Paul Eggert <eggert@twinsun.com>
2288
2289 * rcs2log (initialize_fullname): Add support for NIS+.
2290 (hostname): Fully qualify the default hostname with the domainname
2291 if the hostname lacks a `.'.
2292
2293 1996-01-15 Paul Eggert <eggert@twinsun.com>
2294
2295 * rcs2log (initialize_fullname): Add support for NIS+.
2296 (hostname): Fully qualify the default hostname with the domainname
2297 if the hostname lacks a `.'.
2298
2299 1996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
2300
2301 * etags.c (consider_token): Fix typo in expression.
2302
2303 1996-01-04 Paul Eggert <eggert@twinsun.com>
2304
2305 * etags.c (substitute): Fix spelling in message.
2306
2307 1996-01-03 George V. Reilly <georger@microcrafts.com>
2308
2309 * makefile.nt (etags, ctags): Compile with regexp support.
2310 (make-docfile, wakeup, etags, ctags, hexl): Ensure build
2311 subdirectory exists before compiling.
2312
2313 1996-01-02 Karl Heuer <kwzh@gnu.ai.mit.edu>
2314
2315 * emacsserver.c (main): Do chmod based on existing permission.
2316
2317 1995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2318
2319 * Makefile.in (install): Turn on read/execute permission.
2320
2321 1995-12-03 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
2322
2323 * Makefile.in (LIB_STANDARD_LIBSRC): Use this instead of LIB_STANDARD.
2324 (LOADLIBES): Use LIB_STANDARD_LIBSRC.
2325
2326 1995-12-01 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
2327
2328 * Makefile.in (THIS_IS_MAKEFILE): Renamed from THIS_IS_YMAKEFILE.
2329
2330 1995-12-07 Francesco Potorti` <pot@cnuce.cnr.it>
2331
2332 * etags.c (pfnote): Don't make a tag for ctags if there is no name.
2333 (getit, Asm_labels, Perl_functions, Pascal_functions, L_getit,
2334 get_scheme, prolog_getit): Name the tag in ctags mode.
2335 (pfnote): Truncate ctags lines to 50 chars, like it worked once.
2336 (Perl_interpreters): Accept "@PERL@" as an interpreter.
2337 (suggest_asking_for_help): New function.
2338 (main, get_language_from_name): Use suggest_asking_for_help.
2339 (main): Let get_language_from_name make language existence check.
2340 (streq, strneq): Check the arguments #if DEBUG.
2341
2342 1995-12-06 Francesco Potorti` <pot@cnuce.cnr.it>
2343
2344 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
2345 (gperf): Added keywords for Objective C and GNU macros.
2346 (sym_type): Added values to account for Objective C and GNU macros.
2347 (begtk): The '@' character can start a token.
2348 (objdef, methodlen, objtag): New variables for Objective C.
2349 (consider_token, C_entries): Added code for Objective C.
2350 (plain_C_suffixes): Add .m and .lm for Objective C.
2351 (Yacc_suffixes): Add .ym for Objective yacc.
2352 (GROW_LINEBUFFER): New macro.
2353 (consider_token, C_entries, Pascal_functions): Use the new macro.
2354 (consider_token): Take one more argument. Caller changed.
2355 (consider_token): Use the hashing function to spot GNU macros.
2356 (C_entries): Consider // as a comment start even in plain C for
2357 the sake of Objective C parsing.
2358
2359 1995-12-04 Francesco Potorti` <pot@cnuce.cnr.it>
2360
2361 * Makefile.in (ctags): depend on etags only for simplicity;
2362 compile with regexp support enabled.
2363
2364 1995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2365
2366 * Version 19.30 released.
2367
2368 1995-11-22 Geoff Voelker <voelker@cs.washington.edu>
2369
2370 * makefile.nt (DOC, clean): Don't use switches to del not
2371 supported by Windows 95.
2372
2373 1995-11-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2374
2375 * Makefile.in (regex.o): Depend on ../src/config.h.
2376
2377 1995-11-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2378
2379 * Makefile.in (LIB_STANDARD): Extract this as in src/Makefile.in.
2380 (LOADLIBES): Use LIB_STANDARD.
2381
2382 1995-11-07 Kevin Gallo <kgallo@microsoft.com>
2383
2384 * makefile.nt (DOC): Include strings from w32term.c, w32xfns.c,
2385 w32fns.c, w32faces.c, w32select.c, w32menu.c, w32reg.c; remove
2386 Windows 95 conditional.
2387
2388 1995-11-06 Francesco Potorti` (pot@cnuce.cnr.it)
2389
2390 * etags.c (get_lang_from_name, get_lang_from_interpreter,
2391 get_lang_from_suffix): New functions.
2392 (get_language): Function deleted.
2393 (lang_entry): Two members added to struct.
2394 (lang_names): Reflect the new layout of lang_entry.
2395 (print_language_names, main, find_entries): Use the new functions.
2396 (find_entries): Look at the first line for #! if no language.
2397 (C_entries): Invalidate the token when funcdef is reset.
2398 (Perl_functions): New function.
2399 (lang_suffixes): .pl and .pm are Perl suffixes.
2400
2401 1995-11-02 Francesco Potorti` (pot@cnuce.cnr.it)
2402
2403 * etags.c (lowcase): Use the standard tolower function.
2404 (substitute): Remove some wrong and some useless code related with
2405 escape `\` character in regexp replacement string.
2406 (TEX_defenv): Added part, appendix, entry, index. Removed typeout.
2407 (lang_suffixes): New suffixes: .hpp for C++; .f90 for Fortran;
2408 .bib, .ltx, .TeX for TeX (.bbl, .dtx removed); .ml for Lisp;
2409 .prolog for prolog (.pl removed).
2410 (massage_name, etags_getcwd): Use lowcase instead of tolower.
2411 (C_entries, find_entries): Added comments about memory leakage.
2412 (add_node): Dead code removed.
2413
2414 1995-10-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2415
2416 * Makefile.in (getdate.o, movemail.o): Specify -Demacs.
2417 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Delete -Demacs.
2418
2419 1995-08-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2420
2421 * test-distrib.c: Add #undef for open, close, read, write.
2422
2423 1995-08-23 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
2424
2425 * test-distrib.c [HAVE_CONFIG_H]: Include config.h.
2426 [! O_RDONLY]: Define it to zero.
2427 (main): Use O_RDONLY instead of explicit zero.
2428
2429 1995-08-17 Francesco Potorti` (pot@cnuce.cnr.it)
2430
2431 * etags.c (Pascal_functions): Close comment bug corrected.
2432 (add_node): Correctly compare node file names.
2433 (Pascal_functions): Correctly allocate and free memory for tline.
2434 (pfnote): Put the definition of fp in the innermost block.
2435 (NODE): `named' member removed.
2436 (pfnote, free_tree, put_entries, total_size_of_entries): Do not
2437 use the `named' member, check whether `name' is NULL instead.
2438 (pfnote): `named' argument removed, all callers changed.
2439 (getit, Asm_labels, Pascal_functions, L_getit, get_scheme,
2440 TeX_functions, TEX_getit, prolog_getit): Useless string allocation
2441 removed from pfnote call, some code cleanup.
2442 (relative_filename): Free temporary space allocated by concat.
2443
2444 1995-08-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2445
2446 * Makefile.in (getdate.c): New target.
2447 (getdate.o): Just compile getdate.c.
2448
2449 1995-08-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
2450
2451 * fakemail.c (xrealloc): Change cast to match return type.
2452
2453 1995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2454
2455 * fakemail.c (xmalloc, xrealloc): Use return-type long *.
2456
2457 1995-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2458
2459 * movemail.c (main): Fix previous change.
2460 Add error check for empty OUTNAME.
2461
2462 1995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2463
2464 * movemail.c (main): Mention lock file name in error message.
2465
2466 1995-07-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2467
2468 * profile.c (gettimeofday): New function, defined if necessary.
2469
2470 1995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2471
2472 * Makefile.in: Renamed from Makefile.in.in.
2473 (distclean): Delete Makefile.c, not Makefile.in.
2474
2475 1995-07-17 Michael Shields <shields@tembel.org>
2476
2477 * Makefile.in.in (tags): Synonym for `TAGS'.
2478
2479 1995-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
2480
2481 * Makefile.in.in (install, maybe-blessmail): Don't cd ..;
2482 configure has already set $(INSTALL) to the proper relative path.
2483
2484 1995-06-27 Francesco Potorti` (pot@cnuce.cnr.it)
2485
2486 * etags.c (plain_C_entries): new function.
2487 (lowcase): new macro.
2488 (tail, Fortran_functions, Pascal_functions): use new macro lowcase.
2489 (lang_suffixes): new suffix ".pc" for Pro*C files.
2490 (consider_token): don't tag all tokens beginning with DEFUN & Co..
2491 (tail): look for the end of the token when comparing.
2492 (takeprec): since now tail behaves differently, use strneq.
2493
2494 1995-07-08 Paul Eggert <eggert@twinsun.com>
2495
2496 * rcs2log (datearg): Separate date from time with comma, not space,
2497 to work around CVS 1.5 bug.
2498 (CVSROOT): Don't abort when unset if repository is absolute.
2499
2500 1995-07-07 Paul Eggert <eggert@twinsun.com>
2501
2502 * rcs-checkin, rcs2log, vcdiff:
2503 Replace `#!/bin/sh' with `#! /bin/sh', for benefit of systems
2504 that interpret `#! /' as a 4-byte magic number.
2505
2506 1995-06-29 Jonathan I. Kamens <jik@cam.ov.com>
2507
2508 * movemail.c (main) [MAIL_USE_POP]: When a user specifies a
2509 mailbox with "po:mailbox", the mailbox is everything after the
2510 "po:" prefix.
2511
2512 1995-06-28 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2513
2514 * emacsserver.c: Make all error messages start with `Error: '.
2515 (fatal_error, perror_1): New functions, use throughout.
2516
2517 1995-06-28 Paul Eggert <eggert@twinsun.com>
2518
2519 * rcs2log (CVSROOT, repository):
2520 Allow remote repositories a la CVS 1.4.
2521
2522 1995-06-27 Francesco Potorti` (pot@cnuce.cnr.it)
2523
2524 * etags.c (plain_C_entries): new function.
2525 (lowcase): new macro.
2526 (tail, Fortran_functions, Pascal_functions): use new macro lowcase.
2527 (lang_suffixes): new suffix ".pc" for Pro*C files.
2528 (consider_token): don't tag all tokens beginning with DEFUN & Co..
2529 (tail): look for the end of the token when comparing.
2530 (takeprec): since now tail behaves differently, use strneq.
2531
2532 1995-06-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2533
2534 * movemail.c (main): Add newline in usage message.
2535
2536 1995-06-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2537
2538 * make-docfile.c (scan_file): Make sure it never looks at filename[-1].
2539
2540 1995-06-21 Francesco Potorti` (pot@cnuce.cnr.it)
2541
2542 * etags.c (find_entries): Rewind before rereading the input file.
2543
2544 1995-06-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2545
2546 * Version 19.29 released.
2547
2548 * make-docfile.c (main) [MSDOS]: Do set _fmode.
2549 This undoes part of the previous change.
2550
2551 1995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2552
2553 * make-docfile.c (main): On MSDOS, don't change stdout
2554 to binary, and insist on an -o option.
2555
2556 1995-06-13 Geoff Voelker <voelker@cs.washington.edu>
2557
2558 * etags.c (process_file,absolute_filename): Handle filenames
2559 starting with a drive letter.
2560
2561 * makefile.nt (install): Copy wakeup.exe properly.
2562
2563 1995-06-08 Karl Heuer <kwzh@gnu.ai.mit.edu>
2564
2565 * make-docfile.c [MSDOS]: #undef chdir.
2566
2567 1995-06-04 Paul Eggert <eggert@twinsun.com>
2568
2569 * rcs2log (output_authors): Allow ':' in time zone,
2570 as per ISO 8601 and RCS 5.6.8 beta.
2571
2572 1995-05-29 Francesco Potorti` (pot@cnuce.cnr.it)
2573
2574 * etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
2575 compatibility problems.
2576
2577 1995-05-26 Richard Stallman <rms@gnu.ai.mit.edu>
2578
2579 * etags.c (etags_getcwd): Don't use #elif.
2580 Have just one function body.
2581
2582 1995-05-25 Geoff Voelker <voelker@cs.washington.edu>
2583
2584 * makefile.nt (LIBS): Use BASE_LIBS.
2585 (make-docfile.exe,hexl.exe,wakeup.exe,etags.exe): Don't depend
2586 upon LIBS.
2587 (DOC): Use del instead of rm.
2588 (DOC) [WINDOWS95]: Use DOC.
2589 (clean): Handle MSVC aux files.
2590 (config.h,paths.h): Use $(CP) instead of cp.
2591 (config.h): Use $(CONFIG_H)
2592 (make-docfile.obj): Depend upon config.h.
2593 Clean up comments.
2594
2595 1995-05-23 Francesco Potorti` (pot@cnuce.cnr.it)
2596
2597 * etags.c (etags_getcwd): Use /bin/pwd instead of pwd because the
2598 former gives the true path even in the presence of simlinks.
2599
2600 1995-05-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2601
2602 * movemail.c (main): Increase lock timeout to five minutes.
2603
2604 1995-05-06 Geoff Voelker <voelker@cs.washington.edu>
2605
2606 * makefile.nt (obj): Use .c files.
2607
2608 1995-05-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2609
2610 * make-docfile.c: Include config.h.
2611 (NO_SHORTNAMES): New definition.
2612 (xmalloc): Return long *.
2613
2614 * etags.c (C_entries): Cast result of xrealloc.
2615 (xmalloc, xrealloc): Declare them to return long *.
2616
2617 * b2m.c (xmalloc, xrealloc): Declare them long *.
2618
2619 * movemail.c (xmalloc): Declare it to return long *.
2620
2621 1995-04-30 Paul Eggert <eggert@twinsun.com>
2622
2623 * rcs2log (datearg): If rlog options are specified explicitly,
2624 omit the implicit '-d>DATE' option.
2625 (repository, rlog): Allow absolute paths to CVS repositories.
2626 Look only at the first line of CVS/Repository.
2627
2628 1995-04-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
2629
2630 * Makefile.in.in (extraclean): Depend on maintainer-clean, not
2631 realclean.
2632
2633 1995-04-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2634
2635 * Makefile.in.in [REGEXP_IN_LIBC] (REGEXPOBJ, REGEXPDEPS):
2636 Alternative (empty) definitions.
2637
2638 1995-04-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2639
2640 * emacsclient.c (main): Add argv[0] to an error message.
2641
2642 1995-04-13 Karl Heuer <kwzh@gnu.ai.mit.edu>
2643
2644 * emacsclient.c (main): Improve error handling.
2645 * cvtmail.c (main, skip_to_lf): Improve error handling.
2646 (sysfail): New function.
2647
2648 * b2m.c (main): Check for trailing ", " before trying to delete it.
2649
2650 1995-04-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
2651
2652 * Makefile.in.in (all): Build test-distrib and make-docfile.
2653
2654 * make-docfile.c (scan_c_file): At end, restore file name last char
2655 to its original value.
2656
2657 1995-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2658
2659 * emacsclient.c, emacsserver.c: Test NO_SOCKETS_IN_FILE_SYSTEM.
2660
2661 1995-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2662
2663 * Makefile.in.in (BASE_CFLAGS): Renamed from ALLOCA_CFLAGS.
2664 (alloca.o, regex.o): Use BASE_CFLAGS.
2665
2666 1995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2667
2668 * emacsclient.c [Berkeley sockets version] (main): Declare getcwd.
2669
2670 1995-04-04 Karl Heuer <kwzh@gnu.ai.mit.edu>
2671
2672 * Makefile.in.in (aixcc, aixcc.c): Targets deleted.
2673 (SOURCES, distclean): Removed obsolete references to aixcc.
2674
2675 1995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2676
2677 * aixcc.lex: File deleted--surely obsolete now.
2678
2679 1995-03-23 Paul Eggert <eggert@twinsun.com>
2680
2681 * rcs2log (output_authors): Replace /[/]/ by /[\/]/, for
2682 portability to mawk and nawk.
2683
2684 1995-03-21 Paul Eggert <eggert@twinsun.com>
2685
2686 * rcs2log: Treat -u "login:fullname:mailaddr" as if it were
2687 -u "login<tab>fullname<tab>mailaddr".
2688
2689 1995-03-21 Paul Eggert <eggert@twinsun.com>
2690
2691 * rcs2log: Add -u "login<tab>fullname<tab>mailaddr" option, which
2692 replaces the (now obsolescent) -n login fullname mailaddr option.
2693 Add -R option for recursive rlog.
2694 (AWK): New environment variable (default `awk') for awk program name.
2695 (output_authors, tab, loginFullnameMailaddrs, recursive): New vars.
2696 Quote authors and fullnames correctly.
2697 Don't omit path from repository root when logging CVS files.
2698
2699 1995-03-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2700
2701 * emacsclient.c, emacsserver.c: Use BSD sockets whenever available,
2702 even if HAVE_SYSVIPC.
2703 * emacsclient.c (main): Use getcwd if not BSD.
2704
2705 1995-03-13 Francesco Potorti` (pot@cnuce.cnr.it)
2706
2707 * etags.c (process_file): free (filename) after using it.
2708 (readline_internal): Do not access the char before start of line.
2709
2710 1995-02-22 Francesco Potorti` (pot@cnuce.cnr.it)
2711
2712 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
2713 savetok.valid. Mark token as valid when it is initialised.
2714 (make_tag): Make token only if token is valid and reset validity.
2715 (CNL_SAVE_DEFINEDEF): Test for savetok.valid instead of token_saved.
2716 (TOKEN): Added a new member: valid.
2717
2718 1995-02-15 Francesco Potorti` (pot@cnuce.cnr.it)
2719
2720 * etags.c (C_entries): Bug corrected in xrealloc of token_str.
2721 (main): Do not read twice the last filename in the stdin file list.
2722
2723 1995-02-14 Francesco Potorti` (pot@cnuce.cnr.it)
2724
2725 * etags.c (C_entries): Initialise the new members of TOKEN.
2726 (C_entries): Do not allocate a new space for each token found by
2727 consider_token. Let make_tag do that instead.
2728 (make_tag): Since now TOKEN has memory of where it is taken from,
2729 this new macro substitutes both make_tag_from_new_lb and
2730 make_tag_from_oth_lb. All callers changed.
2731 (TOKEN): Add linepos and buffer members.
2732 (main): Initialise token_str.
2733 (lang_extensions): Recognise .c++ and .h++ as C++ file suffixes.
2734 (token_str): New global variable used by C_entries.
2735
2736 1995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
2737
2738 * Makefile.in.in (maintainer-clean): Renamed from realclean.
2739
2740 1995-02-01 Francesco Potorti` (pot@cnuce.cnr.it)
2741
2742 * etags.c (pfnote): Initialise been_warned in the node.
2743 (C_entries): Removed a speed hack for the sake of clarity.
2744
2745 1995-01-18 Francesco Potorti` (pot@cnuce.cnr.it)
2746
2747 * etags.c (longopts, print_help, main): Use -I as abbreviation
2748 for the --ignore-indentation option.
2749 (main): Do not print an error message for unknown options.
2750
2751 1995-01-12 Francesco Potorti` (pot@cnuce.cnr.it)
2752
2753 * etags.c (FILEPOS, GET_CHARNO, GET_FILEPOS, max, LINENO): Deleted.
2754 (append_to_tagfile, typedefs, typedefs_and_cplusplus,
2755 constantypedefs, update, vgrind_style, no_warnings,
2756 cxref_style, cplusplus, noindentypedefs): Were int, now logical.
2757 (permit_duplicates): Was a var, now a #define.
2758 (filename_lb): Was global, now local to main.
2759 (main): Open the tag file when in cxref mode.
2760 Use a BUFSIZ size buffer for making the shell commands.
2761 Look at the return value from the system routine.
2762 Exit when cannot open the tag file.
2763 (process_file): Open the file and pass the FILE* to find_entries.
2764 (find_entries): Now void, because does not open the file itself.
2765 (pfnote): Recovering from lack of memory does not work. Removed.
2766 Use savenstr and simplify the code.
2767 (free_tree): Only free the name space if node is named.
2768 (structtag): Now a pointer, not a fixed length array of chars.
2769 (consider_token): Don't take a token as argument. Use savenstr
2770 when saving a tag in structtag. Callers changed.
2771 (TOKEN): Structure changed. Now used only in C_entries.
2772 (TOKEN_SAVED_P, SAVE_TOKEN, RESTORE_TOKEN): Deleted.
2773 (C_entries): nameb and savenameb deleted. Use dinamic allocation.
2774 (pfcnt): Deleted. Users updated.
2775 (getit, Asm_labels, Pascal_functions, L_getit, get_scheme,
2776 TEX_getit, prolog_getit): Use dinamic allocation for storing
2777 the tag instead of a fixed size buffer.
2778
2779 1995-01-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2780
2781 * movemail.c (main): Skip past the colon in inname.
2782
2783 1995-01-10 Francesco Potorti` (pot@cnuce.cnr.it)
2784
2785 * etags.c (pfatal): New function.
2786 (main, etags_getcwd): Use pfatal.
2787 (etags_getcwd): Corrected another bug in the HAVE_GETCWD version.
2788
2789 1995-01-10 Francesco Potorti` (pot@cnuce.cnr.it)
2790
2791 * etags.c (Lang_function): Use void instead to declare the
2792 language functions, because many compilers are buggy.
2793 (etags_getcwd): Fix the previous fix on the #else branch.
2794 (readline_internal): Discard possible \r before \n here.
2795 (C_entries): Do not deal with \r here: undo previous fix.
2796
2797 1995-01-09 Francesco Potorti` (pot@fly)
2798
2799 * b2m.c (concat, xmalloc, xrealloc, readline, xnew): Four new
2800 functions and a macro that allow the program to work on input
2801 lines of whatever length. Copied from etags.c.
2802 (fatal): Print a fatal error message and exit.
2803 (main): Use the new functions. Fixed a bug that made a \037 char
2804 appear at the end of the output.
2805
2806 1995-01-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2807
2808 * etags.c (C_entries): Ignore carriage return at end of line.
2809
2810 1994-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2811
2812 * fakemail.c (xmalloc, xrealloc): Add casts.
2813 (add_field): Handle <...> and "..." syntax.
2814 (setup_files, get_keyword): Clean up parens and line breaks.
2815 (args_size): Likewise.
2816
2817 1994-12-21 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
2818
2819 * yow.c: Include program name in error messages.
2820
2821 1994-12-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2822
2823 * make-docfile.c (scan_lisp_file): Handle dynamic doc strings.
2824 (xmalloc, fatal, error): New functions.
2825 (progname): New variable.
2826 (main): Set progname.
2827
2828 1994-12-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2829
2830 * emacsclient.c, emacsserver.c [HAVE_SYSVIPC]: Include sys/utsname.h.
2831 (main): If socket/mqueue name is in home dir, add in the host name.
2832 Rename .emacs_server to .emacs-server....
2833
2834 1994-12-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2835
2836 * emacsclient.c [!HAVE_SYSVIPC] (main): Fix error message diction.
2837
2838 1994-11-22 Francesco Potorti` (pot@cnuce.cnr.it)
2839
2840 * etags.c (print_help): print --regex usage for ctags also.
2841 (main): use -h in addition to -H as abbreviation for --help.
2842
2843 1994-11-16 Francesco Potorti` (pot@cnuce.cnr.it)
2844
2845 * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
2846 is compiled if this is defined. The new functions and variables
2847 added #ifdef ETAGS_REGEXP are not listed in this ChangeLog.
2848 [VMS]: All VMS specific code previously contained in
2849 etags-vmslib.c is now included here, modified for dealing with
2850 language and regex options intermixed with filenames.
2851 (header_file): Global variable deleted.
2852 (Lang_Function): New typedef. All language parser functions
2853 changed to this new type.
2854 (string_numeric_p, substr, prestr): Functions deleted.
2855 (readline_internal): Does the job that readline did previously.
2856 (longopts): --language and --regex options added.
2857 (lang_names, lang_extensions, lang_func, print_language_names):
2858 New structures, variables and functions for choosing languages.
2859 (print_help): Help strings updated. Calls print_language_names.
2860 (argument_type, ARGUMENT): Typedefs for dealing with language and
2861 regex options intermixed with filenames.
2862 (main): Changed the way of dealing with arguments on the command
2863 line to deal with language and regex options intermixed with
2864 filenames.
2865 (get_language, default_C_entries, Cplusplus_entries,
2866 Cstar_entries, Yacc_entries, just_read_file): New functions.
2867 (find_entries): Use the new method for choosing the language.
2868 (Pascal_functions): Allow intermixing of comment styles.
2869 (prolog_getit, skip_comment): Rewritten for speed.
2870 (readline): Rewritten to deal with regexps.
2871
2872 1994-11-16 Francesco Potorti` (pot@cnuce.cnr.it)
2873
2874 * etags.c (<errno.h>): #include added.
2875 (etags_getcwd): Check return value from getcwd.
2876
2877 1994-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2878
2879 * profile.c (TV1, TV2): Use EMACS_TIME as type.
2880 (get_time): Use EMACS_SUB_TIME.
2881
2882 1994-10-30 voelker <voelker@cs.washington.edu>
2883
2884 * ntlib.c: New file.
2885 * makefile.nt: New file.
2886
2887 * make-docfile.c (main) [WINDOWSNT]: Set _fmode and stdout to O_BINARY.
2888 [WINDOWSNT]: Include the NT headers.
2889 (READ_TEXT, READ_BINARY): Test DOS_NT, not MSDOS.
2890
2891 * etags.c (main, etags_getcwd): Test DOS_NT instead of MSDOS.
2892 [WINDOWSNT]: Include some NT headers.
2893
2894 1994-10-24 Jonathan I. Kamens (jik@cam.ov.com)
2895
2896 * pop.c (getline): When a search of already-read input for CRLF
2897 fails, store the fact that we've searched it and don't search it
2898 again after reading more data.
2899
2900 * pop.c (getline): When determining whether or not it's necessary
2901 to grow the input buffer, take into account the null that's stored
2902 at the end of already-read input in the buffer.
2903
2904 1994-10-21 Francesco Potorti` (pot@cnuce.cnr.it)
2905
2906 * etags.c (prestr, substr): return a logical type.
2907 (consider_token): Comment out "EXFUN". Use "DEFUN" instead of "DEF".
2908 (consider_token): set funcdef to fignore when a DEFUN is met.
2909 (C_entries): Now we can use Tom Hageman patch for extern "C".
2910
2911 1994-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2912
2913 * movemail.c: PopServer renamed to popserver throughout.
2914
2915 1994-10-20 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
2916
2917 * etags.c: Don't declare malloc, since we include config.h.
2918 * fakemail.c: Likewise.
2919
2920 1994-10-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2921
2922 * movemail.c: Don't declare malloc.
2923
2924 1994-10-19 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
2925
2926 * rcs-checkin: Use test -r instead of < to check readability, to
2927 avoid syntax error.
2928
2929 1994-10-19 Jonathan I. Kamens (jik@cam.ov.com)
2930
2931 * pop.c: Only include ../src/config.h if HAVE_CONFIG_H is
2932 defined, and if HAVE_CONFIG_H isn't defined, define
2933 MAIL_USE_POP always (so that this file can be included in
2934 other programs besides emacs).
2935
2936 * pop.c: Only declare h_errno if HAVE_H_ERRNO isn't defined or
2937 HAVE_CONFIG_H isn't defined.
2938
2939 * pop.c (find_crlf, getline): Instead of using strstr, use a
2940 custom function for finding CRLF.
2941 (my_strstr): Function deleted.
2942
2943 1994-10-17 Jonathan I. Kamens (jik@cam.ov.com)
2944
2945 * pop.c (getline): Fix a segfault because of passing a
2946 non-null-terminated string into strstr(). Fix from
2947 djm@va.pubnix.com (David J. MacKenzie).
2948
2949 * pop.c: Don't include <string.h> and <strings.h>.
2950
2951 * pop.c: Include <des.h> before <krb.h>, rather than after. They
2952 should be interchangeable, and indeed the inclusion is done in
2953 both orders in various files in the Kerberos 4 library sources,
2954 but djm@va.pubnix.com (David J. MacKenzie) reports that BSDI
2955 requires that <des.h> be included first, and I don't see any harm
2956 in changing the order.
2957
2958 * pop.c: Include ../src/config.h, to get HAVE_STRING_H and
2959 STDC_HEADERS, if they're defined. Undef open, read, write and
2960 close after including it.
2961
2962 1994-10-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2963
2964 * pop.c: Fix mismatch in conditionals.
2965
2966 * make-docfile.c (main): Don't process one input file twice.
2967 Never use exit code > 1.
2968
2969 * pop.c (open, close, read, write): Add #undefs.
2970
2971 * pop.c: Don't declare malloc, realloc, free.
2972 Include ../src/config.h.
2973 Don't include string.h or strings.h.
2974 Include des.h before krb.h.
2975 Do declare my_strstr.
2976 (getline): Really use my_strstr.
2977 Leave one empty place in server->buffer,
2978 and put a null at the end of the data in it.
2979
2980 1994-10-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
2981
2982 * emacsserver.c [SYSV_IPC] (main): Catch SIGHUP as well. Don't
2983 call kill with pid 0. Handle EINTR when receiving messages.
2984
2985 1994-10-17 Karl Heuer <kwzh@gnu.ai.mit.edu>
2986
2987 * Makefile.in.in (regex.o): Use full path to find regex.c.
2988
2989 1994-10-17 Francesco Potorti` (pot@fly.cnuce.cnr.it)
2990
2991 * Makefile.in.in (etags): add dependency on regex.o, link with it.
2992 (REGEXPOBJ, REGEXPDEPS, regex.o): target and macros added.
2993
2994 1994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
2995
2996 * Makefile.in.in (DONT_INSTALL): Remove make-path.
2997 (${archlibdir}): Use mkinstalldirs instead.
2998
2999 * movemail.c: Make functions that return nothing void, not
3000 implicitly int.
3001 (main): Improve usage message.
3002 (error): Write to stderr, not stdout.
3003
3004 * b2m.c cvtmail.c digest-doc.c emacsclient.c emacsserver.c etags.c
3005 fakemail.c hexl.c make-docfile.c profile.c sorted-doc.c test-distrib.c
3006 timer.c wakeup.c yow.c: Eliminate some -Wall warnings from unused
3007 variables and implicitly declared functions.
3008
3009 1994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3010
3011 * Makefile.in.in (clean): rm DOC* and *.tab.[ch].
3012 (distclean): Not here.
3013
3014 * Makefile.in.in (libexecdir): Renamed from libdir.
3015
3016 1994-10-11 Francesco Potorti` (pot@cnuce.cnr.it)
3017
3018 * etags.c (C_entries): Name the #define's that are macros.
3019
3020 1994-10-10 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
3021
3022 * emacsserver.c [! SYSVIPC] (main): Fix uses of FD_* macros:
3023 fd_set arg is a pointer, descriptor arg comes first.
3024
3025 1994-09-29 Francesco Potorti` (pot@cnuce.cnr.it)
3026
3027 * etags.c (C_entries): Recognise typedef of ANSI style functions.
3028 (C_entries): Recognise #define inside a struct.
3029 (C_entries): ANSI tells that preprocessor commands do not have to
3030 start on the first column.
3031 (print_help): Documentation corrected for -d and -D.
3032 (white, endtk): ANSI tells the vertical tab is a separator.
3033
3034 1994-09-24 Jonathan I. Kamens (jik@gza-client1.aktis.com)
3035
3036 * Makefile.in.in (MOVE_FLAGS, MOVE_LIBS): New variables.
3037 (pop.o, movemail.o): New targets.
3038 (movemail): Link in pop.o and movemail.o. Use MOVE_LIBS, MOVE_FLAGS.
3039
3040 * pop.c, pop.h: New files.
3041
3042 * movemail.c: Improve POP code, move most of it into a separate file.
3043 (mbx_delimit_end, mbx_delimit_begin): Check for errors.
3044 (mbx_write): Check for errors and for From line.
3045 (pop_retr, popmail): Use subroutines in pop.c to do the real work.
3046 (get_errmsg, multiline, getline, putline, pop_stat, pop_command)
3047 (pop_init): Functions deleted.
3048
3049 1994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
3050
3051 * make-path.c (touchy_mkdir): Make dir ugo+rx even if it isn't new.
3052 Rename path to dirname.
3053
3054 1994-09-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3055
3056 * Makefile.in.in (UTILITIES):
3057 Remove test-distrib, make-docfile, make-path.
3058 (DONT_INSTALL): New variable--list those files here.
3059 (clean): Delete the files in DONT_INSTALL.
3060
3061 1994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3062
3063 * b2m.c (from, labels, data): Use MAX_DATA_LEN as length.
3064 (main): Use fgets, not gets.
3065
3066 1994-09-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3067
3068 * timer.c: Don't declare malloc.
3069
3070 1994-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
3071
3072 * emacsserver.c (FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already
3073 defined, use simple 32-bit versions of these macros.
3074 (main) [HAVE_SOCKETS & !HAVE_SYSVIPC]: Use these macros.
3075
3076 1994-09-16 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
3077
3078 * etags.c (etags_getcwd): Use getcwd if available.
3079
3080 1994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3081
3082 * Version 19.27 released.
3083
3084 1994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3085
3086 * Version 19.26 released.
3087
3088 1994-08-15 Paul Eggert <eggert@twinsun.com>
3089
3090 * rcs2log: Add support for CVS.
3091 Work with `rlog's that output ISO 8601 dates.
3092
3093 1994-08-09 Lawrence R. Dodd <dodd@roebling.poly.edu>
3094
3095 * rcs2log: Use <> to delimit email address.
3096
3097 1994-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3098
3099 * emacsserver.c [SYSV_IPC] (main): Make a separate process
3100 so we can listen for multiple requests.
3101
3102 1994-08-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3103
3104 * movemail.c: Include config.h first thing.
3105
3106 1994-08-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3107
3108 * emacsserver.c (main): Add casts to avoid warnings.
3109
3110 1994-07-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3111
3112 * Makefile.in.in (${archlibdir}): Compare the proper dir
3113 before installing the scripts.
3114
3115 1994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3116
3117 * emacsclient.c (main): New local var progname saves argv[0].
3118
3119 1994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3120
3121 * emacsclient.c (main): Don't actually modify argv[0].
3122 Modify a copy instead.
3123
3124 1994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
3125
3126 * profile.c (reset_watch, get_time): Use EMACS_GET_TIME.
3127 (tzp): Var deleted.
3128
3129 * Makefile.in.in: Add #undef alloca.
3130
3131 1994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3132
3133 * timer.c (xmalloc): New function.
3134
3135 1994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3136
3137 * Makefile.in.in (ALLOCA_CFLAGS): New variable.
3138 (alloca.o): New target.
3139
3140 1994-07-08 Dave Love (d.love@dl.ac.uk)
3141
3142 * etags.c (takeprec): recognise `character*(*) function'
3143
3144 1994-07-08 Francesco Potorti` (pot@cnuce.cnr.it)
3145
3146 * etags.c (main): Don't barf on obsolete -t and -T switches.
3147 (main): Print an explicative message when a switch is not known.
3148
3149 1994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3150
3151 * hexl.c: Don't declare exit or perror.
3152
3153 * emacsserver.c (main): Don't declare geteuid.
3154 Don't declare getenv if convex.
3155
3156 1994-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3157
3158 * Makefile.in.in (test-distrib): Use ALL_CFLAGS.
3159
3160 1994-06-03 Francesco Potorti` (pot@fly.cnuce.cnr.it)
3161
3162 * etags.c (absolute_filename): Remove infinite loop bug when
3163 accessing files in directories whose name begins with a dot.
3164
3165 1994-06-03 Francesco Potorti` (pot@fly.cnuce.cnr.it)
3166
3167 * etags.c (etags_getcwd): Delete the trailing newline from cwd.
3168
3169 1994-06-01 Morten Welinder (terra@diku.dk)
3170
3171 * yow.c (rootrelativepath) [MSDOS]: Define, expanding to dynamic
3172 location of data directory.
3173
3174 1994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3175
3176 * Version 19.25 released.
3177
3178 1994-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3179
3180 * Makefile.in.in (distclean): Delete Makefile, Makefile.in, blessmail.
3181
3182 1994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3183
3184 * Makefile.in.in (blessmail): Don't depend on ../src/emacs.
3185
3186 1994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3187
3188 * Version 19.24 released.
3189
3190 1994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3191
3192 * make-docfile.c (write_c_args): Put `default' in upper case.
3193
3194 1994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3195
3196 * etags.c (etags_getcwd): Cast result of popen.
3197 (popen): Declaration deleted.
3198
3199 1994-05-17 Karl Heuer (kwzh@gnu.ai.mit.edu)
3200
3201 * etags.c [!MSDOS]: Declare popen.
3202
3203 1994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3204
3205 * b2m.c (main): Avoid crash if argc is 1.
3206
3207 1994-05-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3208
3209 * Version 19.23 released.
3210
3211 * Makefile.in.in (blessmail): Specify directory for blessmail.el.
3212
3213 1994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3214
3215 * Makefile.in.in (maybe-blessmail): Mention bless-mail is in lib-src.
3216
3217 1994-05-05 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
3218
3219 * Makefile.in.in: Fix out of date comment.
3220
3221 1994-05-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3222
3223 * Makefile.in.in: Put in a separator for where to start cpp procssing.
3224 Move all autoconf substitutions above that point.
3225 Above that point, use Make-style comments.
3226 This goes with changes in ../configure.in.
3227
3228 1994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3229
3230 * Makefile.in.in (maybe-blessmail): New target to print the blessmail
3231 warning message.
3232 (${archlibdir}): Don't do it here. Don't depend on blessmail.
3233
3234 1994-05-02 Karl Heuer (kwzh@gnu.ai.mit.edu)
3235
3236 * Makefile.in.in (${archlibdir}): Be lenient about wc output format.
3237
3238 1994-05-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3239
3240 * Makefile.in.in (${archlibdir}): Don't run blessmail; instead
3241 print advice to run it, if it has anything significant to do.
3242 And only if MOVEMAIL_NEEDS_BLESSING.
3243 (blessmail): Use emacs, not temacs.
3244 (configuration): Renamed from configname.
3245
3246 1994-04-30 Morten Welinder (terra@diku.dk)
3247
3248 * etags.c (find_entries): Treat `*.cpp' as C++ files.
3249
3250 1994-04-30 Morten Welinder (terra@diku.dk)
3251
3252 * etags.c [MSDOS]: #include <sys/param.h> for the following.
3253 [MSDOS] (etags_getcwd): Define simple MSDOS version without spawning
3254 a shell.
3255
3256 1994-04-29 Morten Welinder (terra@diku.dk)
3257
3258 * hexl.c [MSDOS]: Don't define proto type for exit.
3259
3260 1994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3261
3262 * b2m.c: Don't include string.h or strings.h.
3263
3264 1994-04-27 Karl Heuer (kwzh@gnu.ai.mit.edu)
3265
3266 * Makefile.in.in: C_SWITCH_SYSTEM and C_SWITCH_MACHINE are now cpp
3267 symbols, not make variables.
3268
3269 1994-04-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3270
3271 * Makefile.in.in (etags, ctags): Make VERSION a string constant.
3272 * etags.c (print_version): Print VERSION as a string.
3273
3274 1994-04-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3275
3276 * fakemail.c (readline): Fix updating of p when buffer grows.
3277
3278 1994-04-20 Karl Heuer (kwzh@gnu.ai.mit.edu)
3279
3280 * Makefile.in.in (blessmail): New target.
3281 ${archlibdir}: Use blessmail when installing movemail.
3282
3283 1994-04-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3284
3285 * fakemail.c (readline): When extending the buffer,
3286 calculate end afresh using the new size.
3287
3288 1994-04-18 Francesco Potorti` (pot@fly.cnuce.cnr.it)
3289
3290 * etags.c (main, print_help): eliminate the -F option.
3291
3292 1994-04-18 Francesco Potorti` (pot@fly.cnuce.cnr.it)
3293
3294 * etags.c (absolute_filename): compare against '\0' instead of NULL.
3295
3296 1994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3297
3298 * Makefile.in.in: Renamed from Makefile.in.
3299 Makefile.in is now generated from it, and then preprocessed.
3300 Change comments to C syntax.
3301 Include config.h.
3302 (LIBS_SYSTEM, LIBS_MACHINE): Define as empty if not defined.
3303 (LOADLIBES): Define from LIBS_SYSTEM and LIBS_MACHINE.
3304
3305 1994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3306
3307 * movemail.c [HAVE_UNISTD_H]: Include unistd.h.
3308
3309 1994-04-12 Francesco Potorti` (pot@fly.cnuce.cnr.it)
3310
3311 * etags.c (etags_getcwd): Initialize bufsize.
3312
3313 1994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3314
3315 * profile.c (gettimeofday): If system doesn't have this, define it
3316 to give a fatal error.
3317
3318 1994-04-11 Karl Heuer (kwzh@gnu.ai.mit.edu)
3319
3320 * movemail.c (main): Use setuid, not seteuid.
3321
3322 1994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3323
3324 * etags.c: #undef static.
3325
3326 1994-04-08 Francesco Potorti` (pot@fly.cnuce.cnr.it)
3327
3328 * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
3329 (PF_funcs, Asm_funcs, L_funcs, PAS_funcs, TEX_funcs,
3330 Scheme_funcs, prolog_funcs): renamed to Fortran_functions,
3331 Asm_labels, Lisp_functions, Pascal_functions, Scheme_functions,
3332 TeX_functions, Prolog_functions.
3333 (inf): no more a global variable.
3334 (C_entries): take 2nd parameter `inf' instead of using the global one.
3335 (find_entries): added the cp1 var for optimisation.
3336 (find_entries): added more suffixes for assembler files.
3337 (Asm_funcs): Now finds labels even without an ending colon.
3338
3339 1994-03-30 Francesco Potorti` (pot@fly.cnuce.cnr.it)
3340
3341 * etags.c (main): use etags_getcwd for compatibility.
3342 (etags_getcwd): new function.
3343
3344 1994-03-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3345
3346 * Makefile.in (etags, ctags): Pass -D for VERSION.
3347
3348 1994-03-25 Francesco Potorti` (pot@cnuce.cnr.it)
3349
3350 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
3351 (main): don't allow the use of -t and -T in etags mode.
3352 (print_help): don't show options enabled by default.
3353 (print_version): show the emacs version number if VERSION is #defined.
3354 (find_entries): add "ss" as suffix for Chez Scheme.
3355
3356 1994-03-23 Francesco Potorti` (pot@cnuce.cnr.it)
3357
3358 * etags.c (cwd, outfiledir): vars added.
3359 (relative_filename, absolute_filename, absolute_dirname):
3360 functions added to compute filenames in tags files.
3361 (process_file): filenames in tags file are relative to the
3362 directory where the tags file is (useful with the -o option).
3363 (main): initialise the outfiledir var.
3364 (TYPEDST): added the `tignore' value.
3365 (C_entries): corrected various small bugs.
3366
3367 1994-03-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3368
3369 * Makefile.in (UTILITIES): `env' deleted.
3370 (env): Target deleted.
3371 * env.c: File deleted.
3372
3373 1994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3374
3375 * Makefile.in (install, ${archlibdir}): Switch back to ..
3376 before running INSTALL_PROGRAM.
3377
3378 1994-03-14 Francesco Potorti` (pot@cnuce.cnr.it)
3379
3380 * etags.c (TYPEDST): added the `tignore' value.
3381 (C_entries): corrected various bugs, now correctly parses the
3382 `extern "C" {' construction (patch by Tom R.Hageman).
3383
3384 1994-03-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3385
3386 * b2m.c: Use <...> to include config.h.
3387 Don't include stdlib.h.
3388
3389 1994-03-03 Heiko Muenkel (muenkel@tnt.uni-hannover.de)
3390
3391 * b2m.c (main): Change delimiter from "^L" to "^_^L".
3392 Allow for text following "BABYL OPTIONS:".
3393 Add --help option. Use argv[0] in error messages.
3394
3395 1994-03-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3396
3397 * emacsclient.c (main) [HAVE_SYSVIPC]:
3398 Make msgp->mtext longer if necessary.
3399 On HPUX, error if it's more than 512 chars.
3400
3401 1994-02-26 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
3402
3403 * etags-vmslib.c: Use GPL.
3404 * emacstool.c: Use GPL.
3405 * fakemail.c: Update GPL.
3406
3407 * make-path.c (main): Return 1 on error, not -1.
3408 Update GPL.
3409
3410 * cvtmail.c: Declare malloc, realloc, xmalloc, xrealloc, getenv.
3411 (xmalloc, xrealloc): Return char *, not int.
3412 (error): Write to stderr, not stdout.
3413 Update GPL.
3414
3415 1994-02-23 Karl Heuer (kwzh@gnu.ai.mit.edu)
3416
3417 * profile.c (main, get_time): Don't crash on invalid input.
3418
3419 1994-02-22 Karl Heuer (kwzh@gnu.ai.mit.edu)
3420
3421 * profile.c (get_time): Simplify; avoid calling index.
3422 (main): exit on EOF.
3423
3424 1994-02-17 Francesco Potorti` (pot@cnuce.cnr.it)
3425
3426 * etags.c (--absolute-pathnames): option removed.
3427
3428 1994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3429
3430 * fakemail.c (put_line): Don't break the line if it all fits.
3431
3432 1994-02-14 Francesco Potorti` (pot@fly)
3433
3434 * etags.c (absolute_pathnames, cwd): added global vars.
3435 (longopts, print_help, main, process_file): put absolute filenames
3436 in the tag file if the -A --absolute-pathnames option is used.
3437 (print_help): alfabetically order the options.
3438 (malloc, realloc, strcpy, strncpy, strcmp): remove extern declar.
3439
3440 1994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3441
3442 * Makefile.in (C_SWITCH_MACHINE): Get this from autoconf.
3443 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use C_SWITCH_MACHINE.
3444
3445 1994-02-07 Christian Lynbech (lynbech@avignon)
3446
3447 * emacsserver.c (main) [HAVE_SYSVIPC]: Reverse test of fork value.
3448
3449 1994-02-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3450
3451 * Makefile.in (UTILITIES): Mention profile.
3452 (profile): New target.
3453
3454 * profile.c: New file.
3455
3456 1994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
3457
3458 * Make the argument list output look more like the Lisp docstrings do.
3459 make-docfile.c (write_c_args): Take new arg FUNC. Make output
3460 look like lisp call prototypes: (function ARG1 ARG2), upcasing args.
3461 (scan_c_file): Pass BUF to write_c_args for FUNC arg.
3462
3463 1994-01-14 Francesco Potorti` (pot@cnuce.cnr.it)
3464
3465 * etags.c (stab_entry, stab_create, stab_find, stab_search,
3466 stab_type, add_keyword, C_reate_stab, C_create_stabs): deleted.
3467 Use gperf generated hash table instead of linked list.
3468 (C_stab_entry, hash, in_word_set, get_C_stab, C_symtype): added.
3469 Mostly code generated by gperf.
3470 (consider_token): removed unused parameter `lp'.
3471 (PF_funcs, getit): allow subroutine and similar declarations
3472 to span multiple lines.
3473 (C_entries): check for newline if inchar to avoid bus errors.
3474 (process_file, find_entries): distinguish among nonexistent
3475 and not regular file.
3476
3477 1994-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3478
3479 * timer.c: Include errno.h; don't include fasync.h.
3480 (schedule): Don't return a value.
3481 (sigcatch): Reestablish the handler first.
3482 (getevent): Always call notify at the end.
3483 (notify): Defer alarms around the whole body of function.
3484
3485 1994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3486
3487 * timer.c (main): Don't request SIGIO, and don't handle it.
3488 Loop calling getevent.
3489 (sigcatch): Delete code to handle SIGIO.
3490 if defer_alarms is set, don't call notify, just set alarm_deferred.
3491 (getevent): Use read, not getchar. Handle EINTR and EAGAIN.
3492 Set defer_alarms around realloc and schedule.
3493 If alarm_deferred gets set, call notify.
3494 Likewise if this event is the only pending event.
3495 Make buf and buf_size global variables.
3496 Don't malloc buf if it is already non-zero.
3497 (schedule): Just exit if run out of memory.
3498 Return the number of events.
3499 (signal) [_CX_UX]: Add #undef.
3500
3501 1994-01-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3502
3503 * timer.c [USG] (SIGIO): Define as SIGPOLL.
3504 (main) [USG]: Do ioctl to enable SIGPOLL.
3505
3506 1994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
3507
3508 * timer.c: Don't declare sys_errlist; declare strerror instead.
3509 (schedule, main): Call strerror instead of using sys_errlist.
3510 * movemail.c (get_errmsg, pfatal_with_name, pfatal_and_delete):
3511 Call strerror instead of using sys_errlist.
3512 * env.c (main): Call strerror instead of using sys_errlist.
3513 * emacsclient.c: Don't declare sys_errlist; declare strerror instead.
3514 (main): Call strerror instead of using sys_errlist.
3515 * emacsclient.c [! HAVE_STRERROR] (strerror): Define the function.
3516 * env.c [! HAVE_STRERROR] (strerror): Likewise.
3517 * timer.c [! HAVE_STRERROR] (strerror): Likewise.
3518 * movemail.c [! HAVE_STRERROR] (strerror): Likewise.
3519
3520 1994-01-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3521
3522 * hexl.c: Fix up whitespace. Get rid of spurious casts to void.
3523
3524 * movemail.c (malloc): Don't declare it.
3525 (xmalloc): Cast result of malloc.
3526 (strcpy): Don't declare it.
3527
3528 1993-11-14 Morten Welinder (terra@diku.dk)
3529
3530 * hexl.c [MSDOS]: Use binary file modes for non-text side of pipe.
3531 (main): Use fclose to close file opened by fopen.
3532
3533 * fakemail.c (main) [MSDOS]: Dummy stub just to make the file compile.
3534
3535 * movemail.c [MSDOS]: #undef `access'.
3536
3537 * b2m.c (main) [MSDOS]: Open all files as binary.
3538 * etags.c (main) [MSDOS]: Open all files as binary.
3539
3540 * make-docfile.c [MSDOS]: Use text/binary mode as appropriate.
3541 (scan_c_file, scan_lisp_file): Extra parameter for the mode to open
3542 with.
3543
3544 1994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3545
3546 * Makefile.in (ALL_CFLAGS): Include LDFLAGS.
3547 Use ALL_CFLAGS in all the rules that compile and link with one cmd.
3548 (LINK_CFLAGS): New variable.
3549 (timer): Use LINK_CFLAGS.
3550
3551 1993-12-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3552
3553 * movemail.c: Include syswait.h.
3554 Fork a subprocess and use it to copy the mail file.
3555
3556 1993-12-07 Richard Stallman (rms@srarc2)
3557
3558 * make-docfile.c (scan_lisp_file): Don't add newline at end of string.
3559
3560 1993-12-04 Richard Stallman (rms@srarc2)
3561
3562 * movemail.c (main): When making tempname, cast result of xmalloc.
3563 Include room for EXXXXXX in the size.
3564 Don't use result of strcpy.
3565
3566 1993-12-03 Paul Eggert (eggert@twinsun.com)
3567
3568 * vcdiff: Add --brief option.
3569
3570 1993-12-02 Richard Stallman (rms@srarc2)
3571
3572 * Makefile.in (${archlibdir}, install): Use $(INSTALL_PROGRAM)
3573 for all executables and scripts.
3574
3575 1993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3576
3577 * Version 19.22 released.
3578
3579 1993-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3580
3581 * Makefile.in (mostlyclean): Make it distinct from clean.
3582
3583 1993-11-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3584
3585 * Makefile.in (${archlibdir}): Don't do chown or chgrp.
3586
3587 1993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3588
3589 * Version 19.21 released.
3590
3591 * Makefile.in (install): Don't change mode or group when installing.
3592
3593 * etags.c (FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
3594
3595 1993-11-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3596
3597 * make-docfile.c (read_c_string): For "", concatenate the two strings.
3598
3599 * movemail.c (main): Fix error message text.
3600
3601 1993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3602
3603 * Version 19.20 released.
3604
3605 1993-11-08 Tom Hageman (tom@basil.icce.rug.nl)
3606
3607 * etags.c: (C_entries): Keep track of ()-parenthesis level so that
3608 functions returning a pointer to a function, a la `signal', can be
3609 parsed. This also required new state `fstartlist' to `FUNCST'.
3610 (SAVE_TOKEN, RESTORE_TOKEN, TOKEN_SAVED_P): 1-deep token save stack.
3611 (C_entries, CNL): use it to isolate preprocessor directive processing
3612 from the other state engines.
3613 (begtk): add '~', for C++ class destructors.
3614
3615 1993-11-02 Francesco Potorti` (pot@cnuce.cnr.it)
3616
3617 * etags.c (consider_token): removed unused variable firsttok.
3618 (prolog_getit): call pfnote with the right number of arguments.
3619
3620 1993-10-19 Paul Eggert (eggert@twinsun.com)
3621
3622 * rcs2log (printlogline): Don't generate lines containing only
3623 white space.
3624
3625 1993-10-04 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
3626
3627 * Makefile.in (${archlibdir}):
3628 Install ${SCRIPTS} from ${srcdir}, not cwd.
3629
3630 1993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
3631
3632 * Makefile.in: Fixed typos or brainos of whoever thought `@' was
3633 the comment character.
3634
3635 1993-10-01 Francesco Potorti` (pot@cnuce.cnr.it)
3636
3637 * etags.c (process_file): dead code removed.
3638 (S_ISREG): #define it using S_IFREG if not defined.
3639 (process_file): regular files have nothing to do with symlinks.
3640
3641 1993-09-28 Brian Fox (bfox@ai.mit.edu)
3642
3643 * Makefile.in (${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not
3644 from current directory. Only chmod and chgrp files that we
3645 installed, which excludes ${INSTALLABLE_SCRIPTS}. They go in
3646 ${bindir}.
3647 (INSTALLFLAGS): Deleted definition, since it is an unused variable
3648 now.
3649
3650 1993-09-27 Brian Fox (bfox@ai.mit.edu)
3651
3652 * Makefile.in (INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Let
3653 configure figure out the correct values for these variables.
3654
3655 1993-09-14 Brian Fox (bfox@ai.mit.edu)
3656
3657 * Makefile.in (archlibdir): Only install execuatables internally
3658 used by emacs; don't install bindir binaries here.
3659
3660 1993-09-24 Paul Eggert (eggert@twinsun.com)
3661
3662 * rcs2log: Add -h, -n, -r options.
3663 By default, look for *,v files as well as RCS/*,v files.
3664 Use $TMPDIR (default /tmp) instead of /tmp.
3665
3666 1993-09-20 Francesco Potorti` (pot@fly)
3667
3668 * etags.c (C_entries): is_func is initialised here instead of in
3669 consider_token for the sake of the yacc rules section.
3670 (C_entries): Now class, struct, enum, union and typedef produce
3671 named tags.
3672
3673 1993-09-11 Roland McGrath (roland@baalperazim.gnu.ai.mit.edu)
3674
3675 * yow.c: Include <src/paths.h>, instead of "src/paths.h".
3676
3677 1993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
3678
3679 * Support configuring in a different directory when ${srcdir} has
3680 already been configured.
3681 * Makefile.in (ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before
3682 -I${srcdir} -I${srcdir}/../src.
3683 (b2m, movemail, fakemail, env, emacsserver, emacsclient,
3684 getdate.o, timer.o, timer): Remove `-I${srcdir}/../src', since it
3685 is already in CPP_FLAGS.
3686 * etags.c, emacsclient.c, wakeup.c, timer.c, b2m.c, fakemail.c,
3687 movemail.c, emacsserver.c: Include <config.h> instead of "config.h".
3688
3689 1993-08-25 Paul Eggert (eggert@twinsun.com)
3690
3691 * rcs2log: Change /{/ to /\{/ for Posix ERE compatibility;
3692 otherwise, HP awk complains.
3693
3694 * vcdiff: Append /usr/ccs/bin and /usr/sccs to PATH, since these
3695 are common hangouts for SCCS commands.
3696
3697 1993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3698
3699 * Version 19.19 released.
3700
3701 1993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3702
3703 * Makefile.in (make-path): Dep on config.h.
3704
3705 1993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3706
3707 * b2m.c (TRUE, FALSE): Don't define if already defined.
3708
3709 1993-08-09 Paul Eggert (eggert@twinsun.com)
3710
3711 * rcs2log (awkscript):
3712 Some sites put comma-separated junk after the fullname.
3713 Remove it, but leave "Bill Gates, Jr" alone.
3714 Remove the junk from fullnames like "0000-Admin(0000)".
3715
3716 1993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3717
3718 * Version 19.18 released.
3719
3720 1993-08-04 Francesco Potorti` (pot@spiff.gnu.ai.mit.edu)
3721
3722 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
3723 (L_funcs): the (foo::defmumble stuff now should work.
3724 (consider_token): function returned random value--corrected.
3725 (C_entries): corrected == versus = typo.
3726
3727 1993-08-01 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
3728
3729 * etags.c (put_entries): For NODE->rewritten, put pattern before
3730 \177 and name after, not vice versa.
3731
3732 1993-08-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3733
3734 * timer.c (main): Generate a SIGIO as soon as we've initialized.
3735
3736 1993-07-30 Francesco Potorti` (pot@cnuce.cnr.it)
3737
3738 * etags.c (FINCST): added the fignore status. Means we are
3739 after the parameter list and before the open curly brace.
3740 Allows correct parsing of C++ constructors.
3741 (C_entries, consider_token): make use of fignore.
3742 (consider_token): reset funcdef when next_token_is_func: when in
3743 ctags mode makes DEFVAR and others work better.
3744 (L_isquote): function that recognises the "(quote" string.
3745 (L_getit): ignore quoting via "'" or "(quote". Useful for defalias.
3746
3747 1993-07-29 Paul Eggert (eggert@twinsun.com)
3748
3749 * rcs-checkin: Don't check whether a file is readable until we have
3750 decided not to ignore it.
3751
3752 1993-07-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3753
3754 * Makefile.in (etags): Depend on ../src/config.h.
3755
3756 * emacsserver.c: Include types.h before file.h.
3757
3758 1993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3759
3760 * Makefile.in (install): Use .n, not .new, for temporary filenames.
3761
3762 1993-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3763
3764 * Version 19.17 released.
3765
3766 1993-07-15 Jim Blandy (jimb@totoro.cs.oberlin.edu)
3767
3768 * etags.c (print_help): Break up the very long strings containing
3769 the help message into shorter strings, to placate chintzy C
3770 compilers which can't handle strings that long.
3771
3772 * wakeup.c: Use CPP tangle from autoconf manual to #include the
3773 correct combination of <time.h> and <sys/time.h>.
3774
3775 1993-07-08 Francesco Potorti` (pot@cnuce.cnr.it)
3776
3777 * etags.c (alloca): removed all references to it.
3778 (main): now calls xnew instead of alloca for portability.
3779 (../src/config.h): included only if HAVE_CONFIG_H.
3780 (const): void definition removed--config.h takes care of it.
3781
3782 1993-07-08 Francesco Potorti` (pot@cnuce.cnr.it)
3783
3784 * etags.c (consider_token): was `==', now is `='.
3785 (consider_token): DEFUNs now treated like funcs in ctags mode.
3786
3787 * etags.c (LEVEL_OK_FOR_FUNCDEF): removed.
3788 (C_entries): optimized the test that used LEVEL_OK_FOR_FUNCDEF.
3789 (C_entries): removed a piece of useless code.
3790 (C_entries): making typedef tags is delayed until a semicolon
3791 is met. This handles "typedef int X, Y, Z;" correctly.
3792
3793 1993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
3794
3795 * Version 19.16 released.
3796
3797 * b2m.c: #include <sys/types.h>.
3798 (ltoday): Declare this to be time_t.
3799
3800 1993-06-30 Paul Eggert (eggert@twinsun.com)
3801
3802 * vcdiff: Add -q option.
3803
3804 1993-06-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3805
3806 * etags.c: #include "config.h" and the alloca CPP tangle before
3807 #including the system headers and getopt.h. AIX requires the
3808 #pragma to come before any actual C code.
3809
3810 1993-06-21 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3811
3812 * Makefile.in (ctags): Depend on etags, so that parallel makes
3813 don't write etags.o files on top of each other.
3814
3815 1993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3816
3817 * version 19.15 released.
3818
3819 1993-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3820
3821 * etags.c (add_node): Move var last_node to file scope.
3822
3823 1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3824
3825 * Version 19.14 released.
3826
3827 1993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3828
3829 Bring mumbleclean targets into conformance with GNU coding standards.
3830 * Makefile.in (distclean): Call clean to do most of the work.
3831 Delete aixcc.c and TAGS.
3832 (realclean): Just call distclean.
3833
3834 * Makefile.in: Remember, spaces are not tabs.
3835
3836 1993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3837
3838 * Makefile.in (CPP_CFLAGS): New variable.
3839 Use it instead of ALL_CFLAGS when compiling a .c file.
3840 (getopt.o, getopt1.o): Add explicit compilation commands.
3841
3842 1993-06-10 Mark D. Baushke (mdb@cisco.com)
3843
3844 * etags.c: Reinstate old -f option as an alias for -o for
3845 installed base uses.
3846
3847 1993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3848
3849 * emacsserver.c (main): When we're passing a `struct sockaddr_un'
3850 to bind or accept, cast the pointer, to avoid warnings on systems
3851 which declare prototypes for this.
3852 * emacsclient.c (main): Same.
3853
3854 * Makefile.in (YACC): New variable, to be set by top-level Makefile.
3855
3856 1993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3857
3858 * Version 19.13 released.
3859
3860 * wakeup.c: Include sys/types.h, too; I think that's where time_t
3861 comes from, not sys/time.h.
3862
3863 1993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3864
3865 * wakeup.c: Include sys/time.h.
3866
3867 * etags.c: #undef static.
3868
3869 * Version 19.12 released.
3870
3871 * Makefile.in (all): Exclude INSTALLABLE_SCRIPTS and SCRIPTS from deps.
3872
3873 1993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3874
3875 * Version 19.11 released.
3876
3877 * timer.c [LINUX]: #undef signal.
3878 * emacsserver.c: #undef signal.
3879
3880 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3881
3882 * wakeup.c (main): Make when a time_t.
3883
3884 1993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3885
3886 * Makefile.in: (${archlibdir}): Use `(cd foo && pwd)` instead of
3887 `(cd foo ; pwd)` to get the canonical name of a directory; cd
3888 might fail, and have pwd print out the current directory.
3889
3890 * movemail.c [MAIL_USE_POP] (main): Don't use non-portable
3891 string-handling functions.
3892
3893 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3894
3895 * Version 19.10 released.
3896
3897 1993-05-29 Paul Eggert (eggert@twinsun.com)
3898
3899 * rcs2log: When given no file arguments, inspect RCS/.* as well
3900 as RCS/*. Don't report an error if RCS is empty or nonexistent.
3901
3902 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3903
3904 * Makefile.in (timer): Link with $(LOADLIBES).
3905
3906 1993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3907
3908 * fakemail.c (put_line): Don't output \n\t unless more text follows.
3909
3910 1993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
3911
3912 * etags.c: Replace the CPP tangle for alloca with the one from the
3913 autoconf documentation, since that's working elsewhere.
3914
3915 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
3916
3917 * Makefile.in (ALL_CFLAGS): Add "-I.", so the system and machine
3918 description files can find their ancestors.
3919
3920 1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3921
3922 * Makefile.in (install): Get the scripts from ${srcdir},
3923 unlike the executables.
3924 (ALL_CFLAGS): Add -I../src
3925
3926 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
3927
3928 * Version 19.9 released.
3929
3930 1993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3931
3932 * Makefile.in (install): Do install the programs listed in
3933 INSTALLABLE_SCRIPTS. Make the renaming loop use INSTALLABLES and
3934 INSTALLABLE_SCRIPTS, instead of writing the programs out.
3935
3936 * Makefile.in (ALL_CFLAGS): Include -I${srcdir}.
3937 (getopt.o, getopt1.c): Use ${srcdir} as appropriate.
3938
3939 1993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3940
3941 * etags.c: Include ../src/config.h.
3942
3943 * Makefile.in (install): Don't handle INSTALLABLE_SCRIPTS
3944 in first loop. Delete files from bindir before installing new ones.
3945 (ALL_CFLAGS): Use ${srcdir} to find .../src dir.
3946
3947 1993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3948
3949 * Version 19.8 released.
3950
3951 * make-docfile.c: Doc fix.
3952
3953 1993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3954
3955 * tcp.c: Fix comment syntax at top of file.
3956 (main): Don't call htons with the port number.
3957
3958 1993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3959
3960 * Makefile.in (timer.o, sorted-doc.c): Link with alloca.o, if it's
3961 appropriate.
3962
3963 * Makefile.in (install): Refer to the variables INSTALLABLES and
3964 INSTALLABLE_SCRIPTS, instead of writing them out.
3965
3966 1993-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3967
3968 * make-path.c (main): Return 0.
3969
3970 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
3971
3972 * Version 19.7 released.
3973
3974 1993-05-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3975
3976 * make-docfile.c (scan_lisp_file): Recognize defalias like fset.
3977
3978 1993-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
3979
3980 * tcp.c: New file.
3981
3982 1993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
3983
3984 * Makefile.in (.c.o): Make the rule start with a tab, not spaces.
3985
3986 1993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
3987
3988 * timer.c (notify): Don't call sighold or sigrelse; they're USG
3989 only. We should really fix this later, but let's just make it
3990 compile for now.
3991
3992 Install patches from David J. Mackenzie to make the srcdir option
3993 work.
3994 * Makefile.in (srcdir, VPATH): Get this value from the top-level
3995 Makefile.
3996 (INSTALLABLES): Split this into two lists - INSTALLABLES and
3997 INSTALLABLE_SCRIPTS.
3998 (INSTALLABLE_SCRIPTS): New list.
3999 (EXECUTABLES): Include INSTALLABLE_SCRIPTS.
4000 (${archlibdir}): The scripts to be installed live in the source
4001 tree, not in the object tree.
4002 (test-distrib): Note that the data file lives in the source tree,
4003 not the object tree.
4004 (GETOPTDEPS): Note that getopt.h lives in the source tree.
4005 (all other targets): Change references to source files to use
4006 ${srcdir}, except for config.h, which lives in the object dir.
4007 (timer.o): Note that this depends on ../src/config.h.
4008 * make-docfile.c (main): Add a -d option, to tell it where to find
4009 the source files.
4010 * test-distrib.c (main): Take the name of the distribution file to
4011 test from the command line.
4012
4013 * timer.c: Fix mispellings of get_date function's name.
4014
4015 1993-05-12 Roland McGrath (roland@geech.gnu.ai.mit.edu)
4016
4017 * etags.c (main):
4018 Don't require that there be input files if -i switches were given.
4019
4020 1993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
4021
4022 The GNU coding standards specify that CFLAGS should be left for
4023 users to set.
4024 * Makefile.in (CFLAGS): Put this in the "things configure might
4025 edit" section, and have it default to -g.
4026 (ALL_CFLAGS): New variable, set to all the flags which should be
4027 passed to compilations. Replace all other uses of CFLAGS with
4028 ALL_CFLAGS.
4029 (.c.o): New rule, to pass ALL_CFLAGS to compilations.
4030
4031 * Makefile.in (DEFS): Remove this; it's always just going to be
4032 "-DHAVE_CONFIG_H -Demacs".
4033
4034 1993-05-03 Paul Eggert (eggert@twinsun.com)
4035
4036 * rcs2log: mawk, SunOS 4.1.3 nawk, and Ultrix/MKS nawk all barf on
4037 /[/]/, so change it to /[\/]/. This should work on all
4038 Posix-compliant awks. It's slightly wrong with traditional awk,
4039 since it matches \ too, but that's a minor problem compared to awk
4040 syntax errors.
4041
4042 1993-05-01 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
4043
4044 * Makefile.in (ALLOCA): New variable, whose value we should
4045 inherit from the top-level makefile.
4046 (etags, ctags): Include ALLOCA in the list of object files that
4047 these executables depend on and link.
4048
4049 1993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
4050
4051 * Makefile.in (DEFS): Renamed from CONFIG_CFLAGS.
4052
4053 1993-04-07 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
4054
4055 * make-docfile.c (write_c_args): Print an argument named "defalt"
4056 as "default".
4057
4058 1993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
4059
4060 * Makefile.in (C_SWITCH_SYSTEM): New variable.
4061 (CFLAGS): Include C_SWITCH_SYSTEM in the flags to pass to the
4062 compiler.
4063
4064 1993-03-22 Francesco Potorti` (pot@cnuce.cnr.it)
4065
4066 * etags.c (YACC): flag added to c_ext.
4067 (c_ext): no more a synonim for c_ext&C_PLPL because of YACC.
4068 (find_entries): consistently use streq when reasonable.
4069 (find_entries): a .y file is a yacc file.
4070 (get_C_stab): c_ext becomes c_ext&C_PLPL.
4071 (C_entries): logical cplpl means c_ext&C_PLPL.
4072 (C_entries): logical yacc_rules means we are after the first %%.
4073 (C_entries): added logic for yacc files.
4074
4075 1993-03-16 Francesco Potorti` (pot@cnuce.cnr.it)
4076
4077 * etags.c (C_entries): ':' case moved to the second switch.
4078 (C_entries): do not examine token if structdef==scolonseen.
4079 (consider_token): structtag set to null string for enum.
4080
4081 1993-03-12 Francesco Potorti` (pot@cnuce.cnr.it)
4082
4083 * etags.c (GET_COOKIE): and related macros removed.
4084 (logical): is now int, no more a char.
4085 (reg): define deleted.
4086 (isgood, _gd, notgd): deleted.
4087 (gotone): deleted.
4088 (TOKEN): member linestart removed.
4089 (linepos, prev_linepos, lb1): deleted.
4090 (main): call initbuffer on lbs array instead of lb1.
4091 (init): removed the initialisation of the logical _gd array;
4092 (find_entries): a .sa suffix means assembler file.
4093 (C_create_stab): "auto", "void", "extern", "static" are st_C_typespec.
4094 All C state machines rewritten.
4095 (C_entries): complete rewrite.
4096 (condider_token): complete rewrite.
4097 (getline): deleted.
4098
4099 1993-03-01 Francesco Potorti` (pot@fly.CNUCE.CNR.IT)
4100
4101 * etags.c (C_entries): Added the quotednl logical variable.
4102 Used for parsing of #define's spanning multiple lines.
4103
4104 1993-02-23 Francesco Potorti` (pot@fly.CNUCE.CNR.IT)
4105
4106 * etags.c (C_entries): Save the definedef status even when a
4107 newline is met inside a string.
4108
4109 1993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
4110
4111 * Makefile.in (EXECUTABLES): added rcs-checkin.
4112
4113 * Makefile.in (unlock, relock): New productions.
4114
4115 1993-03-16 Paul Eggert (eggert@twinsun.com)
4116
4117 * rcs2log: Some awks don't understand "\r". Code around this.
4118 Unfortunately this requires putting a carriage return in the
4119 source code. Don't assume that rlog will tolerate times like
4120 `10:10:60'; RCS 5.7 won't allow this.
4121
4122 1993-03-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
4123
4124 * timer.c (main): Set the ownership of the stdin file descriptor
4125 to the current process. Print error messages if either of the
4126 fcntl's fails.
4127
4128 * timer.c (sigcatch): Declare this to return SIGTYPE (defined in
4129 ../src/config.h), not void.
4130
4131 1993-03-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
4132
4133 * b2m.c (main): Don't exit upon reading a blank line.
4134
4135 1993-03-01 Francesco Potorti` (pot@fly.CNUCE.CNR.IT)
4136
4137 * etags.c (C_entries): New local variable quotednl. Used for
4138 parsing of #define's spanning multiple lines.
4139
4140 * etags.c (C_entries): Save the definedef status
4141 even when a newline is met inside a string.
4142
4143 1993-02-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
4144
4145 * timer.c (notify): Initialize waitfor properly.
4146
4147 1993-02-22 Francesco Potorti` (pot@CNUCE.CNR.IT)
4148
4149 * etags.c (C_entries): Don't reset definedef when a newline inside a
4150 comment is met.
4151
4152 1993-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4153
4154 * etags.c (find_entries): If filename ends in .f or .for,
4155 don't try anything but Fortran.
4156
4157 1993-01-08 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
4158
4159 * timer.c (notify): Flush stdout after writing message to avoid lossage
4160 on terminals.
4161
4162 (notify): Also, write a newline after the token.
4163
4164 1992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
4165
4166 * Makefile.in (exec_prefix): New variable.
4167 (bindir, libdir): Use it instead of `prefix'.
4168
4169 * Makefile.in (CFLAGS): #define HAVE_CONFIG_H, too.
4170
4171 * Makefile.in (libdir): Default to ${prefix}/lib.
4172 (archlibdir): Adjusted to match.
4173
4174 * Makefile.in (distclean): Don't delete backup or autosave files.
4175 (extraclean): Like realclean, but does delete backup and autosave
4176 files.
4177
4178 * Makefile.in (realclean): Ignore errors from rm.
4179
4180 * Makefile.in (distclean): Don't bother to delete ../arch-lib;
4181 that doesn't exist anymore.
4182
4183 1992-12-11 Jim Blandy (jimb@totoro.cs.oberlin.edu)
4184
4185 * Makefile.in (prefix, bindir, libdir, srcdir): New variables, as
4186 described in the top-level Makefile.
4187 (UTILITIES): Add make-path to the list of utility programs.
4188 (../arch-lib): Replaced by the ${archlibdir} target, which places
4189 the executables in their permanent home.
4190 (install, install.sysv, install.xenix): Consolidated into one
4191 target which should work under all circumstances, modulo a few
4192 ignored error messages.
4193
4194 * make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
4195 a different number of arguments than other DEFVARs, recognize it
4196 specially, and expect the right number of commas.
4197
4198 1992-12-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
4199
4200 * make-path.c: New program, to help with the installation process.
4201 * Makefile.in (make-path): New target.
4202
4203 * make-path.c (touchy_mkdir): Remove debugging output.
4204
4205 1992-11-05 Jim Blandy (jimb@totoro.cs.oberlin.edu)
4206
4207 * Makefile.in (getdate.o): Added explicit target for this, so we
4208 can indicate that it depends on ../src/config.h.
4209
4210 1992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
4211
4212 * Makefile.in (CONFIG_CFLAGS): Let the configure script edit this
4213 instead of CFLAGS.
4214 (CFLAGS): Add -Demacs and -I../src to CONFIG_CFLAGS to produce this.
4215
4216 1992-09-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
4217
4218 * getdate.y: Correctly recognize Mt. Xinu BSD running on an HP
4219 9000/300 as BSD; don't include both <sys/time.h> and <time.h> on
4220 that system.
4221
4222 * Makefile.in (arch-lib): Give rm the `-f' option.
4223
4224 1992-09-28 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
4225
4226 * make-docfile.c (write_c_args): Rewritten to correctly print
4227 &optionals before the first identifier, but after the first paren.
4228 This code used to just wait for commas or spaces; now it notices
4229 identifier boundaries.
4230
4231 1992-09-26 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
4232
4233 * rcs2log: When getting date, use %02d instead of %.2d in awk printf.
4234
4235 1992-09-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
4236
4237 * make-docfile.c (write_c_args): Print the argument lists properly
4238 when the first argument is optional.
4239
4240 1992-09-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4241
4242 * sorted-doc.c (main): Redefine special chars to use fonts tensy, teni.
4243 Redefine @item. Set catcode of +.
4244
4245 1992-08-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4246
4247 * emacsclient.c (main): Set IPC_CREAT in msgget call.
4248
4249 1992-08-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4250
4251 * etags.c (TEX_funcs): Keep just 1 of two redundant nested loops.
4252 (TEX_decode_env): Make `tab' one element longer.
4253
4254 1992-08-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4255
4256 * etags.c (PF_funcs): Recognize the "entry" keyword.
4257
4258 1992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4259
4260 * Makefile.in: Add rcs2log and vcdiff to the list of utilities.
4261
4262 1992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4263
4264 * timer.c (events): Rather than having slots marked as in use or
4265 out of use by the `token' field, keep all pending events at the
4266 beginning of the array. When we delete an event in the middle of
4267 the array, we move the last event into its place.
4268 (num_events): New variable.
4269 (schedule): It is now cheaper to find a free event slot;
4270 events[num_events] is the first free slot.
4271 (notify): Scan events[0 .. num_events-1], instead of the whole
4272 array. When an event fires, move the last event in the array into
4273 its spot. Use num_events to determine whether or not there are
4274 any pending events, not wait_for.
4275 (getevent): Deleted unused variable `ep'.
4276 (sigcatch): It's now easier to find all the active events.
4277 (main): Initialize num_events.
4278
4279 * etags.c: Rather than fret about which systems have index and
4280 which systems have strchr, and how to tell the difference between
4281 them, we just write out our own versions. Big deal.
4282 (index, rindex): Extern declarations removed.
4283 (NEED_INDEX, NEED_RINDEX): Special hacks for hpux removed.
4284 (etags_index, etags_rindex): New declarations.
4285 (process_file, find_entries, pfnote, TEX_funcs, TEX_decode_env,
4286 TEX_getit, substr): Use the etags_*index functions, rather than
4287 the native *index functions.
4288 (rindex, index): Renamed to etags_rindex and tags_rindex, and
4289 made them unconditionally defined, rather than having them depend
4290 on NEED_*INDEX.
4291
4292 * etags.c (savenstr): Add declaration for this at top of file.
4293 (TEX_decode_env): Don't declare it local to this function.
4294
4295 * b2m.c: #include "../src/config.h", so we can test for the USG
4296 macro, and decide whether to include <string.h> or <strings.h>.
4297 * Makefile.in: Note that b2m.c depends on ../src/config.h.
4298
4299 1992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4300
4301 * timer.c: Reformatted according to the GNU coding standards.
4302 Removed arbitrary limits on the number of events queued and the
4303 length of the tokens used to identify them.
4304 Removed casts to (void).
4305 Removed debugging printfs; they clutter the code, and the need
4306 can be better filled using a real debugger.
4307
4308 1992-08-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4309
4310 * timer.c: Installed new version from Eric Raymond; this is more
4311 portable, since it doesn't try to use SIGIO.
4312
4313 1992-07-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
4314
4315 * emacsclient.c (main): If we can't find the socket in this
4316 person's home directory, print a message which asks if they've
4317 started the server, instead of just printing the message from
4318 sys_errmsg; Cygnus finds that people are much less confused by
4319 this.
4320
4321 1992-07-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
4322
4323 * etags.c: Rather than defining "notdef" when "hpux" is #defined,
4324 so that index and rindex get defined, why don't we actually
4325 control index and rindex using symbols called "NEED_INDEX" and
4326 "NEED_RINDEX", and define them if hpux is defined? Isn't that a
4327 little more readable than defining something whose name implies
4328 that it's not?
4329
4330 1992-07-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
4331
4332 * movemail.c: Merged changes from Jamie Zawinski's byte compiler
4333 distribution:
4334 Miscellaneous doc fixes.
4335 (skip_white, read_lisp_symbol): New functions.
4336 (scan_lisp_file): Instead of using long hairy strings of ifs, call
4337 read_lisp_symbol and then see what we got. Call skip_white
4338 instead of writing out a loop to do its job. Correctly extract
4339 docstrings from "defmacro" declarations.
4340
4341 1992-06-25 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4342
4343 * movemail.c (strcpy): Declare this to return char *.
4344
4345 1992-06-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4346
4347 * etags.c (C_entries): When we find a C++ comment, do actually
4348 skip to the end of the line; do a 'break' instead of a 'continue'.
4349
4350 1992-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
4351
4352 * etags.c (getit): Add missing parenthesis to expression which
4353 decides if this token is an identifier.
4354
4355 1992-06-04 Roland McGrath (roland@geech.gnu.ai.mit.edu)
4356
4357 * etags.c (consider_token): Recognize `ENTRY' macro used in libc.
4358
4359 1992-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4360
4361 * etags.c (put_entries): Always put space between name and line num.
4362
4363 1992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
4364
4365 * etags.c (getit): Parenthesize &&/|| expression to avoid gcc
4366 warning.
4367 (LEVEL_OK_FOR_FUNCDEF): Ditto.
4368
4369 1992-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
4370
4371 * make-docfile.c (write_c_args): Pass both arguments to putc.
4372
4373 1992-05-10 Roland McGrath (roland@albert.gnu.ai.mit.edu)
4374
4375 * etags.c (C_entries): Fixed reading of "..." strings.
4376 (consider_token): Recognize `SYSCALL' and `PSEUDO' macros, used in
4377 the C library source.
4378
4379 * etags.c (C_entries): When we see a backslash inside a quoted
4380 string, skip to the next character. This allows us to correctly
4381 deal with strings containing quotes.
4382
4383 1992-05-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4384
4385 * make-docfile.c (write_c_args): Print the C argument names as
4386 they would be written in Elisp; print '_' as '-'.
4387
4388 1992-05-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4389
4390 * movemail.c [POP]: Get user name via getpwuid.
4391
4392 1992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4393
4394 * Makefile.in: flags in CC invocations rearranged for no reason.
4395
4396 1992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4397
4398 * etags.c (print_help): Remember not to imbed raw newlines in
4399 strings - end the lines with `\n\'.
4400
4401 1992-04-17 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4402
4403 * timer.c (getevent): Removed declaration of memcpy; since
4404 different systems have different return types, and we're not even
4405 using the return type anyway, it wasn't doing us any good.
4406
4407 1992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4408
4409 * emacsserver.c (msgcatch): Use the SIGTYPE macro to declare the
4410 type of this function.
4411
4412 1992-04-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4413
4414 * ChangeLog: Since the old etc contents have been split into etc
4415 and lib-src, the old etc's ChangeLog has been duplicated in the
4416 new etc and lib-src. That means that each contains complete and
4417 coherent information, although each contains extraneous
4418 information.
4419
4420 1992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4421
4422 * lib-src/etags.c: "--no-warning" option renamed to "--no-warn",
4423 to be consistent with other GNU programs, like makeinfo.
4424
4425 * lib-src/Makefile: Renamed to Makefile.in; the configure script
4426 will edit this to produce Makefile.
4427
4428 1992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4429
4430 * etags.c (print_help, print_version): New functions.
4431 (main): Options added to support them.
4432
4433 * etags.c (longopts): New array of long names for the options.
4434 (main): Recognize them.
4435
4436 1992-04-06 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4437
4438 * etags.c (C_entries): Removed comment saying that \" in a string
4439 isn't recognized as magic, because it is correctly handled.
4440
4441 * getopt.c, getopt.h: New files, from GNU C library.
4442 * etags.c: Rewritten to use getopt.
4443 #include "getopt.h".
4444 (file_num): Variable deleted; its role is now played by getopt's
4445 optind.
4446 (main): Argument processing loop rewritten to call getopt to get
4447 next option. Options which take parameters (-o and -i) rewritten
4448 to get parameter from optarg instead of argv[1]. Filename
4449 preprocessing loop and update command changed similarly.
4450 * Makefile (etags, ctags): Depend on and link with getopt.h,
4451 getopt.o, and getopt1.o.
4452 (getopt.o, getopt1.o): New targets for the GNU getopt routines.
4453
4454 * etags.c (outfflag): Variable deleted; it is non-zero iff outfile
4455 is non-zero.
4456
4457 (main): In the argument processing loop, the 'goto next_arg'
4458 statements are breaking out of the switch statement in exactly the
4459 same way that a simple 'break' statement would; replace the gotos
4460 with breaks, and remove the label.
4461
4462 1992-04-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4463
4464 * etags.c (C_entries): Clear tydef and next_token_is_func at start.
4465 (consider_token): Move next_token_is_func to global.
4466
4467 1992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4468
4469 * Makefile: Conform with GNU coding standards:
4470 (mostlyclean): New target, synonymous with clean.
4471 (TAGS, check): New targets.
4472 (INSTALL, INSTALLFLAGS): New variables.
4473
4474 1992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4475
4476 * lib-src/Makefile, etc/MACHINES, etc/NEWS: Changed references to
4477 `config.emacs' to `configure'.
4478
4479 * lib-src/Makefile: Adjusted for renaming of share-lib to etc.
4480 * etc/MACHINES: Same.
4481
4482 1992-03-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4483
4484 * movemail.c (main): Allow tempname to be as long as necessary,
4485 instead of limiting it to 39 characters.
4486
4487 * movemail.c (main): Move declaration of buf from top of function
4488 to local block surrounding the copy loop. This makes it less
4489 likely to be confused with the buf used by the code which checks the
4490 permissions on outname's directory.
4491
4492 1992-03-20 Jim Kingdon (kingdon@albert.gnu.ai.mit.edu)
4493
4494 * SERVICE: Remove my entry.
4495
4496 1992-03-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
4497
4498 * Makefile (emacstool, nemacstool, xvetool): Use ${CFLAGS}, not
4499 hardcoded -g.
4500
4501 * movemail.c (xmalloc): Return char *, not int.
4502 (main) [!MAIL_USE_FLOCK]: Add a new conditional, MAIL_UNLINK_SPOOL,
4503 that is off by default -- normally don't unlink the mail spool
4504 file, just empty it. Pass creat mode 0600, not 0666.
4505
4506 1992-02-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4507
4508 * Makefile (../arch-lib): Depend on ${EXECUTABLES}.
4509 (all): Instead of here.
4510 (install): Don't use the -s option, since people need symbols to
4511 debug code.
4512
4513 1992-01-19 Eric Youngdale (youngdale@v6550c.nrl.navy.mil)
4514
4515 * etags-vmslib.c (fn_exp): Add type cast.
4516
4517 1992-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4518
4519 * movemail.c: Changes in comments.
4520
4521 1992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4522
4523 * Makefile: Make the distclean target erase the DOC files from
4524 ../share-lib and the executables from ../arch-lib.
4525
4526 1992-01-09 Jim Blandy (jimb@pogo.cs.oberlin.edu)
4527
4528 * emacsclient.c: #include <sys/stat.h>
4529 (main): Do declare statbfr.
4530
4531 1991-12-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4532
4533 * emacsserver.c, emacsclient.c [BSD]: Use either /tmp or ~
4534 for the socket, depending on SERVER_HOME_DIR.
4535 If using /tmp, put host name in the socket name.
4536
4537 * movemail.c (pfatal_and_delete): New function.
4538 (main, popmail): Use it.
4539 (popmail): Close output before deleting messages.
4540 Check for error on close and on fsync.
4541 Use `fatal' where appropriate.
4542 (main): Remove (void).
4543
4544 * aixcc.lex: New file. Not officially part of Emacs.
4545 * Makefile: Rules for that.
4546
4547 1991-12-04 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
4548
4549 * yow.c (main): Rename all references to PATH_EXEC to PATH_DATA.
4550
4551 * etags.c (main): Properly cast call to alloca that initializes
4552 included_files.
4553
4554 1991-08-17 Roland McGrath (roland@geech.gnu.ai.mit.edu)
4555
4556 * etags.c (files_are_tag_tables): Remove global var.
4557 (process_file): Don't test it. Also remove hack checking for a
4558 file named "TAGS".
4559 (main): -i now takes an arg which is the name of a file to include.
4560 Collect these names and emit include tags for them after processing
4561 all the argument files.
4562
4563 1991-07-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4564
4565 * wakeup.c: Terminate if parent goes away.
4566
4567 1991-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4568
4569 * etags.c (C_entries): Process token before handling end of line.
4570 When inner loops reach end of line, just back up.
4571 Let the real end of line processing happen in just one place.
4572 (consider_token): Likewise.
4573
4574 1991-04-11 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
4575
4576 * etags.c (TEX_mode): Skip comments while scanning the text to see
4577 which escape character this file uses.
4578
4579 1991-03-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
4580
4581 * emacsserver.c [USG]: Terminate if msgrcv fails.
4582
4583 1991-03-03 Richard Stallman (rms@mole.ai.mit.edu)
4584
4585 * emacsserver.c [BSD]: Check for errors on stdin after scanf.
4586
4587 1991-01-25 Jim Blandy (jimb@churchy.ai.mit.edu)
4588
4589 * make-docfile: Find the arguments to a C function correctly,
4590 by not ignoring the character that read_c_string returns. Don't
4591 even try to find argument names for functions that take MANY
4592 or UNEVALLED arguments, since they're a figment of the docstring's
4593 imagination.
4594
4595 1991-01-14 Jim Blandy (jimb@churchy.ai.mit.edu)
4596
4597 * make-docfile: Read the .elc files generated by the new byte
4598 compiler.
4599
4600 1990-12-31 Richard Stallman (rms@mole.ai.mit.edu)
4601
4602 * refcard.tex: Use cm fonts, not am, in multi-column mode.
4603
4604 1990-11-29 Richard Stallman (rms@mole.ai.mit.edu)
4605
4606 * movemail.c (mbx_delimit_begin): Put space before `unseen'.
4607
4608 1990-11-27 Richard Stallman (rms@mole.ai.mit.edu)
4609
4610 * Makefile (install*): No need to install wakeup.
4611
4612 1990-11-26 Richard Stallman (rms@mole.ai.mit.edu)
4613
4614 * Makefile (install*): Install emacsclient like etags.
4615
4616 1990-11-13 Richard Stallman (rms@mole.ai.mit.edu)
4617
4618 * movemail.c (error): Handle 3 args.
4619 (main): Don't check input access if using pop.
4620
4621 1990-10-16 Richard Stallman (rms@mole.ai.mit.edu)
4622
4623 * etags.c (find_entries): Check for numbers after Scheme suffix.
4624
4625 1990-10-14 Richard Stallman (rms@mole.ai.mit.edu)
4626
4627 * termcap.dat (vt200-80): Fix ke and ks to frob flag 1.
4628
4629 1990-10-09 Richard Stallman (rms@mole.ai.mit.edu)
4630
4631 * Makefile (nemacstool, xvetool): New targets.
4632
4633 1990-09-26 Richard Stallman (rms@mole.ai.mit.edu)
4634
4635 * emacsclient.c: Include errno.h and define related variables.
4636
4637 1990-09-23 Richard Stallman (rms@mole.ai.mit.edu)
4638
4639 * emacsclient.c: Change usage message.
4640
4641 1990-08-30 David Lawrence (tale@pogo.ai.mit.edu)
4642
4643 * emacs.1: Add break before -nw option.
4644
4645 1990-08-19 David J. MacKenzie (djm@apple-gunkies)
4646
4647 * qsort.c: Replace with GNU version.
4648
4649 1990-08-14 David J. MacKenzie (djm@apple-gunkies)
4650
4651 * wakeup.c: New program replacing loadst.c.
4652
4653 1990-08-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4654
4655 * emacsclient.c [USG]: Pass msgsnd only 4 args.
4656
4657 1990-08-09 David J. MacKenzie (djm@pogo.ai.mit.edu)
4658
4659 * etags.c: Rename `flag' variables for what they do instead of
4660 which option character sets them.
4661
4662 1990-05-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4663
4664 * loadst.c (main): Conditional to get load average on Apollo.
4665
4666 1990-05-22 Joseph Arceneaux (jla@churchy.ai.mit.edu)
4667
4668 * emacsserver.c: Set the permission on the socket to 0600.
4669
4670 1990-03-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4671
4672 * emacsclient.c [BSD]: Print clean message for failing getwd.
4673
4674 1990-03-20 David Lawrence (tale@pogo.ai.mit.edu)
4675
4676 * getdate.y: Use the getdate.y from GNU tar for timer.
4677
4678 1990-03-18 Jim Kingdon (kingdon@pogo.ai.mit.edu)
4679
4680 * emacsclient.c (main): Don't put brackets around "filename" in
4681 usage message. It isn't optional.
4682
4683 1990-03-14 Joseph Arceneaux (jla@churchy.ai.mit.edu)
4684
4685 * etags.c (getit): Recognize '$' as beginning identifiers.
4686
4687 1990-02-22 David Lawrence (tale@pogo.ai.mit.edu)
4688
4689 * emacsserver.c: Renamed from server.c.
4690 * Makefile: Reference emacsserver rather than server.
4691 * MACHINES: Doc fix for new emacsserver name.
4692
4693 1990-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4694
4695 * emacsclient.c: Print program name in error messages.
4696
4697 1990-01-19 David Lawrence (tale@cocoa-puffs)
4698
4699 * timer.c, getdate.y (new files) and Makefile:
4700 Sub-process support for run-at-time in timer.el.
4701 Doesn't yet work correctly for USG.
4702
4703 1990-01-10 Jim Kingdon (kingdon@pogo)
4704
4705 * MACHINES: Add HP 300 running BSD.
4706
4707 1990-01-02 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4708
4709 * yow.c: Dynamically allocate buffer; skip header before random
4710 choice to avoid bias toward first item.
4711
4712 1989-12-24 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4713
4714 * etags.c (readline): Separate out init of `pend'.
4715
4716 1989-12-17 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4717
4718 * etags.c: Undo changes relating to isgoodhdr.
4719
4720 1989-12-16 Mosur Mohan (rms@sugar-bombs.ai.mit.edu)
4721
4722 * etags.c (isgoodhdr): New macro.
4723 (_gdh, notgdh): New variable used by that.
4724 (init): Initialize _gdh.
4725 (find_entries): Set header_file.
4726 (consider_token): Use isgoodhdr if in header file.
4727
4728 * etags.c (total_size_of_entries):
4729 Was miscalculating by 1 in rewritten case.
4730
4731 * etags.c (PAS_funcs): One arg to pfnote was missing.
4732
4733 1989-12-05 Joseph Arceneaux (jla@spiff)
4734
4735 * MACHINES: Change for the ULTRIX entry.
4736
4737 1989-11-21 Joseph Arceneaux (jla@spiff)
4738
4739 * etags.c (process_file): If file is not regular, return.
4740
4741 1989-11-06 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4742
4743 * loadst.c (main): Handle FIXUP_KERNEL_SYMBOL_ADDR.
4744
4745 1989-10-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4746
4747 * loadst.c (load_average): If HAVE_GETLOADAVG, use getloadavg.
4748 (main): If HAVE_GETLOADAVG, don't call `nlist'.
4749
4750 1989-10-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4751
4752 * etags.c (consider_token): Allow any number of typespec keywords
4753 after `typedef', before new type name.
4754 (enum sym_type): Add st_C_typespec.
4755 (C_create_stab): Put typespec kwds in table.
4756
4757 1989-08-27 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
4758
4759 * etags.c (main): Don't depend on name invoked by.
4760 If CTAGS is not defined, assume it is ETAGS.
4761
4762 1989-07-31 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4763
4764 * etags.c (L_funcs): Allow package name in define construct,
4765 as in (foo::defmumble name-defined ...).
4766
4767 1989-07-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4768
4769 * etags.c (find_entries): Stupid bug testing for C filename suffixes.
4770
4771 * Makefile (yow): Depends on ../src/paths.h.
4772
4773 1989-07-04 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
4774
4775 * etags.c: Fix compilation by moving Pascal after Fortran.
4776
4777 1989-06-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4778
4779 * movemail.c [USG]: Define F_OK, etc., if not found in header.
4780
4781 1989-05-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4782
4783 * hexl.c: New file, supports hexl-mode.
4784
4785 1989-05-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4786
4787 * movemail.c: New compilation flag MAIL_USE_MMDF.
4788
4789 1989-05-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4790
4791 * emacsclient.c: Use BSD code whenever HAVE_SOCKETS.
4792 * server.c: Likewise.
4793
4794 * make-docfile.c (scan_c_file): Output argument names at end of string.
4795 (write_c_args): New subroutine.
4796
4797 1989-04-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4798
4799 * movemail.c: Report failure of flock.
4800
4801 1989-04-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4802
4803 * etags.c (find_entries): Allow multi-letter extensions for fortran.
4804
4805 1989-04-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4806
4807 * loadst.c: on bsd4.3, use gettimeofday instead of CPUSTATES.
4808
4809 1989-03-15 Jeff Peck (rms@sugar-bombs.ai.mit.edu)
4810
4811 * emacstool.c: setenv IN_EMACSTOOL=t, TERM=sun, TERMCAP=.
4812
4813 * emacsstool.1: update to document environment variables.
4814
4815 1989-02-21 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4816
4817 * etags.c (PAS_funcs): New function by Mosur Mohan.
4818
4819 * movemail.c: On sysv, include unistd.h.
4820
4821 1989-02-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4822
4823 * b2m.c: New file.
4824
4825 1989-02-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4826
4827 * etags.c: Prolog support from Sunichirou Sugou
4828
4829 1989-02-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4830
4831 * Makefile (clean): New target.
4832
4833 1989-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4834
4835 * fakemail.c (put_line): Break header lines at 79 cols.
4836
4837 1989-01-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4838
4839 * etags.c: Greatly rewritten by Sam Kendall for C++ support and for
4840 multiple tags per line.
4841
4842 1989-01-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4843
4844 * movemail.c: Check access before doing real work.
4845 Check that outfile is in a writable directory.
4846 On fatal error, delete the lock file.
4847
4848 1988-12-31 Richard Mlynarik (mly@rice-chex.ai.mit.edu)
4849
4850 * env.c: Add decl for my-index
4851 * etags.c (file-entries): .oak => scheme
4852
4853 1988-12-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4854
4855 * movemail.c: Use `access' to check input and output files.
4856
4857 1988-12-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4858
4859 * emacsclient.c (main): Ignore all of CWD before first slash.
4860
4861 1988-12-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4862
4863 * etags.c (readline): Double linebuffer->size outside the xrealloc.
4864
4865 1988-12-22 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4866
4867 * server.c, emacsclient.c: Don't try to use gid_t; it isn't defined.
4868 * server.c: chmod the socket to 0700.
4869
4870 1988-12-09 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4871
4872 * fakemail.c (main): Let env var FAKEMAILER override pgm to run.
4873 (add_field): Delete comments and turn `<', `>' to spaces
4874 in header lines.
4875 (USE_FAKEMAIL): New customization macro says to make fakemail
4876 not be a no-op even on a BSD system.
4877
4878 1988-12-01 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4879
4880 * etags.c (consider_token): Skip comments just like whitespace.
4881 Notice `struct', etc. and set strtag for those tokens.
4882 Return 1 for the token following `struct' if an open-brace follows it.
4883 (C_entries): Special handling of token following `struct'
4884 needed because we have probably advanced to the following line
4885 to find the `{'.
4886 (main): New option `T' sets tflag and strflag.
4887 Set both of them by default if eflags.
4888
4889 1988-11-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4890
4891 * movemail.c: Do fsync before closing output.
4892
4893 1988-11-29 Richard Mlynarik (mly@pickled-brain.ai.mit.edu)
4894
4895 * movemail.c: Better error message when can't create tempname.
4896 This file needs a great deal of extra error-checking and lucid reporting...
4897
4898 1988-11-16 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4899
4900 * etags.c: Support assembler code for .s and .a files.
4901 (getit): Allow underscore in a tag.
4902
4903 1988-11-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4904
4905 * movemail.c: Close output and check errors before deleting input.
4906
4907 1988-10-01 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
4908
4909 * emacsclient.c [SYSVIPC]: Compute cwd only once; decide properly
4910 whether to prefix it. Handle line number args.
4911
4912 1988-09-24 Richard Stallman (rms@gluteus.ai.mit.edu)
4913
4914 * etags.c (main): default setting of eflag was backwards.
4915
4916 1988-09-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4917
4918 * etags.c: New option -i. -f renamed -o.
4919 `-' as input file means read input file names from stdin.
4920 -i spec'd or input file named TAGS means the input file is another
4921 tag table; output an "include" line for it.
4922
4923 1988-09-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4924
4925 * Makefile: New vars DESTDIR, BINDIR, LIBDIR, MANDIR, MANEXT.
4926 New targets install, install.sysv, install.xenix.
4927 This makefile is now responsible for installing executables
4928 and documentation from this directory into system directories.
4929
4930 1988-09-16 Richard Stallman (rms@corn-chex.ai.mit.edu)
4931
4932 * server.c, emacsclient.c (main): Compute socket name from euid.
4933
4934 1988-08-04 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4935
4936 * emacsclient.c: Args like +DIGITS are passed through unchanged.
4937
4938 1988-07-12 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4939
4940 * server.c: If both BSD and HAVE_SYSVIPC, use the latter.
4941 * emacsclient.c: Likewise.
4942 In the HAVE_SYSVIPC alternative, if BSD, use getwd instead of getcwd.
4943
4944 1988-06-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4945
4946 * etags.c: Handle `typedef struct foo {' (price@mcc.com).
4947 (istoken) New string-comparison macro.
4948 (consider_token): New arg `level'. New state `tag_ok' in `tydef'.
4949
4950 1988-06-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4951
4952 * etags.c: Changes for VMS.
4953 Always define ETAGS on VMS.
4954 Define macros GOOD and BAD for success and failure exit codes.
4955 (begtk, intk): Allow `$' in identifiers
4956 (main): Don't support -B, -F or -u on VMS.
4957 Alternate loop for scanning filename arguments.
4958 (system): Delete definition of this function.
4959
4960 * etags-vmslib.c (system): Undefine this; VMS now provides it.
4961
4962 1988-06-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
4963
4964 * loadst.c: Prevent multiple-def errors on BSD and BSD4_3
4965 around include of param.h. (Like fns.c.)
4966
4967 1988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
4968
4969 * loadst.c (load_average): Move load-average code to this new fn.
4970 Add conditionals to compute load ave on UMAX.
4971
4972 1988-05-14 Richard Stallman (rms@lucky-charms.ai.mit.edu)
4973
4974 * loadst.c: Change DK_HEADER_FILE to DKSTAT_HEADER_FILE
4975 with opposite sense.
4976
4977 1988-05-13 Chris Hanson (cph@kleph)
4978
4979 * emacsclient.c: Delete references to unused variable `out'. This
4980 caused a bus error when used under hp-ux.
4981
4982 1988-05-06 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
4983
4984 * loadst.c: Control dk.h conditional with DK_HEADER_FILE.
4985
4986 1988-05-04 Richard Stallman (rms@rice-krispies.ai.mit.edu)
4987
4988 * etags.c (find_entries): `.t' or `.sch' means scheme code.
4989
4990 1988-04-29 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
4991
4992 * loadst.c: Add BSD4_3 conditional for file dk.h instead of dkstat.h.
4993
4994 1988-04-28 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
4995
4996 * movemail.c: #undef close, since config can #define it on V.3.
4997 * emacsclient.c, fakemail.c, loadst.c, server.c: likewise.
4998
4999 1988-04-26 Richard Stallman (rms@lucky-charms.ai.mit.edu)
5000
5001 * etags.c (TEX_mode, etc.): Remove superfluous backslashes from
5002 invalid escape sequences such as `\{'.
5003
5004 * loadst.c: Add `sequent' conditional for file dk.h.
5005
5006 1988-03-20 Richard M. Stallman (rms@wilson)
5007
5008 * server.c [not BSD and not HAVE_SYSVIPC]: fix error message.
5009
5010 * loadst.c (main) [XENIX]: use /usr/spool/mail, not /usr/mail.
5011
5012 ;; Local Variables:
5013 ;; coding: iso-2022-7bit
5014 ;; End:
5015
5016 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002
5017 Free Software Foundation, Inc.
5018 Copying and distribution of this file, with or without modification,
5019 are permitted provided the copyright notice and this notice are preserved.