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