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