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