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