Consider frame's buffer predicate in switch-to-prev-/next-buffer.
[bpt/emacs.git] / lib-src / ChangeLog
CommitLineData
b69a6d22
PE
12012-08-19 Paul Eggert <eggert@cs.ucla.edu>
2
bad03192 3 Rely on <config.h> + <unistd.h> to declare 'environ'.
b69a6d22
PE
4 * emacsclient.c (environ): Remove decl.
5
9851e4a5
JB
62012-08-17 Juanma Barranquero <lekktu@gmail.com>
7
8 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
9
8453bb55
PE
102012-08-15 Paul Eggert <eggert@cs.ucla.edu>
11
12 * etags.c (Pascal_functions): Fix parenthesization typo.
13
f5d9e83a
PE
142012-08-14 Paul Eggert <eggert@cs.ucla.edu>
15
16 * make-docfile.c (enum global_type): Sort values roughly in
17 decreasing alignment, except put functions last.
18 (compare_globals): Use this new property of enum global_type.
19 (write_globals): Use bool, not int, for booleans.
20
9374581a
GM
212012-08-10 Glenn Morris <rgm@gnu.org>
22
25e65510
GM
23 * make-docfile.c (IF_LINT):
24 * emacsclient.c (IF_LINT): Remove (in config.h now).
25
9748df5d
GM
26 * make-docfile.c (main):
27 (fopen) [!WINDOWSNT]:
28 (chdir) [!DOS_NT]: No more need to undef.
29
9374581a
GM
30 * movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP):
31 * make-docfile.c (DIRECTORY_SEP, IS_DIRECTORY_SEP):
32 * emacsclient.c (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP):
33 Remove (they are in config.h now).
35656638
GM
34
35 * ebrowse.c (PATH_LIST_SEPARATOR):
36 Remove, and replace with SEPCHAR from config.h.
37
3fbc4b54
JB
382012-08-03 Juanma Barranquero <lekktu@gmail.com>
39
40 * makefile.w32-in (LOCAL_FLAGS): Remove WINDOWSNT and DOS_NT,
41 they are always defined in config.h.
42
6dad7178
EZ
432012-08-03 Eli Zaretskii <eliz@gnu.org>
44
45 * ntlib.c (lstat): New function, calls 'stat'.
46
f162bcc3
PE
472012-08-02 Paul Eggert <eggert@cs.ucla.edu>
48
49 Use C99-style 'extern inline' if available.
50 * profile.c (SYSTIME_INLINE): Define.
51
837b365b
GM
522012-08-02 Glenn Morris <rgm@gnu.org>
53
54 * makefile.w32-in (MS_W32_H): Update for new ms-w32.h location.
55
de7de872
GM
562012-08-01 Glenn Morris <rgm@gnu.org>
57
58 * Makefile.in (config_h): New variable.
59 Use throughout in place of ../src/config.h.
60
552a99b4
JB
612012-08-01 Juanma Barranquero <lekktu@gmail.com>
62
63 * makefile.w32-in (CONFIG_H): Update dependencies.
64 (CONF_POST_H): New macro.
65
0aee6912
PE
662012-07-30 Paul Eggert <eggert@cs.ucla.edu>
67
68 Update .PHONY listings in makefiles.
69 * Makefile.in (.PHONY): Add all, need-blessmail, maybe-blessmail,
70 install, uninstall, mostlyclean, clean, distclean,
71 maintainer-clean, extraclean, check, tags.
72
8519232d
EZ
732012-07-29 Eli Zaretskii <eliz@gnu.org>
74
75 * makefile.w32-in ($(BLD)/profile.$(O)): Depend on stamp_BLD.
76
debd9b27
PE
772012-07-12 Paul Eggert <eggert@cs.ucla.edu>
78
79 * movemail.c: Add missing 'defined'.
80 Suggested by Sven Joachim in
81 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00218.html>.
82
5ebbef1d
PE
832012-07-11 Paul Eggert <eggert@cs.ucla.edu>
84
c214e35e
PE
85 Port 'movemail' again to Solaris and similar hosts.
86 See Susan Cragin's report in
87 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00199.html>.
88 * movemail.c (xmalloc): Also define if !DISABLE_DIRECT_ACCESS &&
89 !MAIL_USE_MMDF && !MAIL_USE_SYSTEM_LOCK. Move up, so it doesn't
90 need a forward declaration.
91 (main): Rewrite to avoid no-longer-present function 'concat', if
92 !DISABLE_DIRECT_ACCESS && !MAIL_USE_MMDF && !MAIL_USE_SYSTEM_LOCK.
93
5ebbef1d
PE
94 Assume strerror.
95 * emacsclient.c, movemail.c, update-game-score.c (strerror)
96 [!HAVE_STRERROR]: Remove.
97
e99a530f
PE
982012-07-10 Paul Eggert <eggert@cs.ucla.edu>
99
e9a9ae03
PE
100 EMACS_TIME simplification (Bug#11875).
101 * profile.c (TV2): Remove no-longer-needed static var.
102
e99a530f
PE
103 Simplify by avoiding confusing use of strncpy etc.
104 * etags.c (write_classname, C_entries):
105 Use sprintf rather than strncpy or strncat.
106 * etags.c (consider_token, C_entries, HTML_labels, Prolog_functions)
107 (Erlang_functions, substitute, readline_internal, savenstr):
108 * movemail.c (mail_spool_name):
109 Use memcpy rather than strncpy or strncat when either will do.
110 * make-docfile.c (write_c_args):
111 Use memcmp rather than strncmp when either will do.
112 * movemail.c (pop_retr):
113 * pop.c (pop_stat, pop_list, pop_multi_first, pop_last)
114 (socket_connection, pop_getline, sendline, getok):
115 Use snprintf rather than strncpy or strncat.
116 * movemail.c (concat): Remove; no longer needed.
117 (xmalloc): Define only if needed, now that concat has gone away.
118 Return void *. All uses changed.
119
5994c183
PE
1202012-07-09 Paul Eggert <eggert@cs.ucla.edu>
121
122 Add GCC-style 'const' attribute to functions that can use it.
123 * etags.c (number_len): Add ATTRIBUTE_CONST.
124
ad0a19b7
JB
1252012-07-09 Juanma Barranquero <lekktu@gmail.com>
126
127 * emacsclient.c (w32_execvp): Declare execvp to silence the compiler.
128
65e46515
JB
1292012-07-09 Juanma Barranquero <lekktu@gmail.com>
130
131 * makefile.w32-in ($(BLD)/test-distrib.exe): Use LIB_SRC, not SRC.
132 (LIB_SRC, NT_INC, GNU_LIB, MS_W32_H, CONFIG_H, INTTYPES_H, NTLIB_H)
133 (SYSTIME_H): New macros.
134 (SRC): Redefine to point to src/, not current directory.
135 ($(BLD)/ctags.$(O), $(BLD)/ebrowse.$(O), $(BLD)/emacsclient.$(O))
136 ($(BLD)/etags.$(O), $(BLD)/hexl.$(O), $(BLD)/make-docfile.$(O))
137 ($(BLD)/movemail.$(O), $(BLD)/ntlib.$(O), $(BLD)/pop.$(O))
138 ($(BLD)/profile.$(O), $(BLD)/test-distrib.$(O)): Update dependencies.
139 ($(BLD)/regex.$(O)): New dependency.
140
31542918
JB
1412012-07-09 Juanma Barranquero <lekktu@gmail.com>
142
143 * makefile.w32-in (ALL): Add profile.exe.
144 (PROFILEOBJS): New macro.
145 ($(BLD)/profile.exe): New target.
146 (install): Copy profile.exe.
147 ($(BLD)/alloca.$(O), $(BLD)/tcp.$(O)): Remove, obsolete.
148
07adc2c6
JB
1492012-07-07 Juanma Barranquero <lekktu@gmail.com>
150
151 * makefile.w32-in ($(BLD)/ctags.$(O), $(BLD)/etags.$(O)):
152 Update dependencies.
153
fee5959d
PE
1542012-07-06 Paul Eggert <eggert@cs.ucla.edu>
155
156 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
157 * etags.c: Include c-strcase.h.
158 (etags_strcasecmp, etags_strncasecmp): Remove.
159 All uses replaced with c_strcasecmp and c_strncasecmp.
160
9c32bf45
AS
1612012-07-06 Andreas Schwab <schwab@linux-m68k.org>
162
163 * make-docfile.c (write_globals): Warn about duplicate function
164 definitions with differing signatures.
165
9c46aab9
PE
1662012-07-03 Paul Eggert <eggert@cs.ucla.edu>
167
168 * make-docfile.c (scan_c_file): Suppress GCC warning.
169
404dbd37
TT
1702012-06-29 Tom Tromey <tromey@redhat.com>
171
172 * make-docfile.c (enum global_type) <FUNCTION>: New constant.
173 (struct global) <value>: New field.
174 (add_global): Add 'value' argument.
175 (compare_globals): Sort functions at the end.
176 (close_emacs_globals): New function.
177 (write_globals): Handle functions.
178 (scan_c_file): Call add_global for DEFUN.
179
b95b7254
JB
1802012-06-30 Juanma Barranquero <lekktu@gmail.com>
181
182 * makefile.w32-in (CTAGS_CFLAGS): Remove EMACS_NAME;
183 already defined in ETAGS_CFLAGS.
184
1ba6038a
GM
1852012-06-27 Glenn Morris <rgm@gnu.org>
186
187 * makefile.w32-in (lisp2): Remove paths.el.
188
cf38a720
PE
1892012-06-26 Paul Eggert <eggert@cs.ucla.edu>
190
191 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
192 * Makefile.in (BASE_CFLAGS):
193 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
194 * etags.c, hexl.c, pop.c: Include <config.h> unconditionally.
195 * etags.c (DOS_NT):
196 * pop.c (MAIL_USE_POP, h_errno):
197 Remove code that was conditioned on !HAVE_CONFIG_H.
198
3511c784
DA
1992012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
200
201 * etags.c (etags_strcasecmp, etags_strncasecmp): Define to
202 library functions strcasecmp and strncasecmp if available.
203
845ca893
PE
2042012-06-24 Paul Eggert <eggert@cs.ucla.edu>
205
206 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
207 * ebrowse.c (usage, version):
208 * emacsclient.c (print_help_and_exit, fail):
209 * etags.c (suggest_asking_for_help, fatal, pfatal):
210 * hexl.c (usage):
211 * make-docfile.c (fatal):
212 * movemail.c (fatal, pfatal_with_name, pfatal_and_delete):
213 * update-game-score.c (usage):
214 * ebrowse.c (usage, version):
215 * emacsclient.c (print_help_and_exit, fail):
216 Use _Noreturn rather than NO_RETURN.
217 No need for separate decl merely because of _Noreturn.
218
dd1ff7c0
SB
2192012-06-24 Samuel Bronson <naesten@gmail.com> (tiny change)
220
221 * emacsclient.c (set_local_socket): Fix compiler warning (Bug#7838).
222
d35af63c
PE
2232012-06-22 Paul Eggert <eggert@cs.ucla.edu>
224
225 Support higher-resolution time stamps (Bug#9000).
226 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
227 (profile${EXEEXT}): Use it.
10b6eb0d 228 * profile.c: Include inttypes.h, intprops.h.
d35af63c
PE
229 (time_string): Size conservatively; do not guess size.
230 (get_time): Now prints nanoseconds.
231 (gettimeofday): Remove replacement function; gnulib now does this.
232
7cb70fd7
AS
2332012-06-08 Andreas Schwab <schwab@linux-m68k.org>
234
235 * make-docfile.c (search_lisp_doc_at_eol): Unget last read
236 character.
237
276d5f5d
GM
2382012-06-06 Glenn Morris <rgm@gnu.org>
239
67163749
GM
240 * Makefile.in (STAMP_INST_SCRIPTS, STAMP_SCRIPTS, insrcdir)
241 (stamp-rcs2log, stamp-grep-changelog): Remove.
242 (all, clean): Remove references to stamps.
243
276d5f5d
GM
244 * vcdiff: Remove file.
245 * Makefile.in (SCRIPTS, STAMP_SCRIPTS): Remove vcdiff.
246 (stamp-vcdiff): Remove.
247
b3c659a1
GM
2482012-06-05 Glenn Morris <rgm@gnu.org>
249
250 * makefile.w32-in ($(BLD)/getdate.$(O), $(BLD)/leditcfns.$(O)):
251 ($(BLD)/make-path.$(O), $(BLD)/qsort.$(O)):
252 ($(BLD)/timer.$(O)): Remove cruft.
253
418cd726
GM
2542012-06-03 Glenn Morris <rgm@gnu.org>
255
256 * rcs-checkin: Remove file.
257 * Makefile.in (INSTALLABLE_SCRIPTS, STAMP_INST_SCRIPTS):
258 Remove rcs-checkin.
259 (stamp-rcs-checkin): Remove.
260
efc00ab1 2612012-05-31 Eli Zaretskii <eliz@gnu.org>
06523364
EZ
262
263 * makefile.w32-in ($(BLD)/emacsclientw.exe): Use $(MWINDOWS)
264 instead of a literal -mwindows, which is not supported by MSVC.
265 (Bug#11405)
266
61b108cc
SM
2672012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
268
269 * make-docfile.c: Improve comment style.
270 (search_lisp_doc_at_eol): New function.
271 (scan_lisp_file): Use it.
272
fe453991
GM
2732012-05-26 Glenn Morris <rgm@gnu.org>
274
275 * Makefile.in (INSTALL_DATA): Remove; unused.
276
34374650
PE
2772012-05-22 Paul Eggert <eggert@cs.ucla.edu>
278
279 Remove src/m/*.
280 * makefile.w32-in: Remove dependencies on
281 $(EMACS_ROOT)/src/m/intel386.h.
282
32514cfe
GM
2832012-05-22 Glenn Morris <rgm@gnu.org>
284
285 * Makefile.in (install): Remove unneeded chmods.
286
261cb4bb
PE
2872012-05-21 Paul Eggert <eggert@cs.ucla.edu>
288
289 Assume C89 or later.
290 * etags.c (static, const): Remove macros.
291 (PTR): Remove; all uses replaced with void *. Omit needless casts.
292
b847032c
GM
2932012-05-21 Glenn Morris <rgm@gnu.org>
294
295 * Makefile.in (insrcdir, $(DESTDIR)${archlibdir}):
296 Scrap superfluous subshells.
297
ed4affe1
GM
2982012-05-18 Glenn Morris <rgm@gnu.org>
299
300 * Makefile.in (install): Ensure $bindir exists.
301
3a4155de
GM
3022012-05-17 Glenn Morris <rgm@gnu.org>
303
304 * Makefile.in (ns_appbindir): New, set by configure.
305
005ad204
GM
3062012-05-12 Glenn Morris <rgm@gnu.org>
307
308 * Makefile.in (MKDIR_P): New, set by configure.
309 ($(DESTDIR)${archlibdir}): Use $MKDIR_P.
310
db5a3003
PE
3112012-05-10 Paul Eggert <eggert@cs.ucla.edu>
312
313 etags: pacify gcc -Wstack-protector on Ubuntu 12.04 x86
314 * etags.c: Include <stdarg.h>.
315 (error): Declare as printf-style, as that's what it really is.
316 All uses changed.
317 (add_regex): Use single char rather than array-of-one char.
318
eceeb5fc
CY
3192012-05-05 Jim Meyering <meyering@redhat.com>
320
321 * lib-src/pop.c (pop_stat, pop_list, pop_multi_first, pop_last):
322 NUL-terminate the error buffer (Bug#11372).
323
069a7756
JB
3242012-05-02 Juanma Barranquero <lekktu@gmail.com>
325
326 * emacsclient.c (min): Undef before redefining it.
327
1e6f32f8
JM
3282012-05-02 Jim Meyering <jim@meyering.net>
329
330 * emacsclient.c (send_to_emacs): Avoid invalid strcpy upon partial
331 send (Bug#11374).
332
a706a3bc
AS
3332012-04-29 Andreas Schwab <schwab@linux-m68k.org>
334
335 * make-docfile.c (scan_lisp_file) [DEBUG]: Also skip if and
336 byte-code forms. (Bug#11380)
337
c07a4c0b 3382012-04-20 Chong Yidong <cyd@gnu.org>
9a864fa2
CY
339
340 * emacsclient.c (decode_options): Move -t -n corner case handling
341 into server.el (Bug#11102).
5d3385a0 342 (main): Send -tty to Emacs under more circumstances (Bug#8314).
9a864fa2 343
6c94c34f 3442012-04-18 Paul Eggert <eggert@cs.ucla.edu>
b8df54ff 345
9f46df23 346 configure: new option --enable-gcc-warnings (Bug#11207)
b8df54ff
PE
347 * Makefile.in (C_WARNINGS_SWITCH): Remove.
348 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
349 (BASE_CFLAGS): Use new macros rather than old.
350
15142f27
PE
3512012-04-16 Paul Eggert <eggert@cs.ucla.edu>
352
353 Assume less-ancient POSIX support.
354 * update-game-score.c: Include <getopt.h> rather than rolling our
355 own decls for optarg, optind, opterr. See
356 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html>.
357
bdf35b6a 3582012-04-14 Juanma Barranquero <lekktu@gmail.com>
6c91c9f0 359
9401b326
JB
360 * emacsclient.c (decode_options) [WINDOWSNT]:
361 Call ttyname instead of passing its address (typo in 2011-12-04T17:13:01Z!lekktu@gmail.com).
362
9078ead6
EZ
3632012-04-07 Eli Zaretskii <eliz@gnu.org>
364
365 * makefile.w32-in (obj): Add xml.o.
366
d67a9a85
EZ
3672012-04-07 Eli Zaretskii <eliz@gnu.org>
368
369 * makefile.w32-in (ALL): Now the list of executables, not of phony
370 targets.
371 (.PHONY): Only make-docfile is its prerequisite now.
372 (make-docfile): Don't depend on stamp_BLD. Add a comment about
373 the need in this target.
374 (ctags, etags, ebrowse, hexl, movemail, emacsclient)
375 (test-distrib): Phony targets removed.
376 ($(BLD)/test-distrib.exe): Run test-distrib as part of the recipe.
377 (all): Don't depend on stamp_BLD.
e4ecc6a2 378 (ALL): Include $(BLD)/test-distrib.exe.
d67a9a85 379
6b0c8984
AS
3802012-03-11 Andreas Schwab <schwab@linux-m68k.org>
381
e29ab36b
AS
382 * emacsclient.c (main): Handle -print-nonl command.
383
2b84f674
AS
384 * emacsclient.c (main): Handle multiple messages in a single
385 datagram.
386
6b0c8984
AS
387 * emacsclient.c (socket_name): Add const.
388 (get_server_config): Add parameter config_file, use it instead of
389 global server_file.
390 (set_tcp_socket): Add parameter local_server_file, pass it down to
391 get_server_config.
392 (set_local_socket): Add parameter local_socket_name, use it
393 instead of global socket_name.
394 (set_socket): Adjust calls to set_local_socket and set_tcp_socket.
395 Don't clobber global server_file or socket_name.
396 (main): No longer reset server_file or socket_name.
397
1c6e5a32
GM
3982012-01-05 Glenn Morris <rgm@gnu.org>
399
400 * ebrowse.c (version) <emacs_copyright>:
401 * etags.c (print_version) <emacs_copyright>:
402 * rcs2log (Copyright): Update short copyright year to 2012.
403
28796b3a
AS
4042011-12-25 Andreas Schwab <schwab@linux-m68k.org>
405
406 * etags.c (C_entries): Properly skip over string and character
407 constants and comments inside brackets. (Bug#10357)
408
520fca41
JB
4092011-12-04 Juanma Barranquero <lekktu@gmail.com>
410
411 * emacsclient.c (decode_options) [WINDOWSNT]: Don't force tty = 0;
412 instead, treat both -c and -t as always requesting a new "tty" frame,
413 and let server.el decide which kind is actually required.
414 Reported by Uwe Siart <usenet@siart.de> in this thread:
415 http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00303.html
416
e7308292
CY
4172011-11-30 Chong Yidong <cyd@gnu.org>
418
419 * emacsclient.c (main): Condition last change on WINDOWSNT
420 (Bug#10155).
421
8c9afb46
EZ
4222011-11-27 Eli Zaretskii <eliz@gnu.org>
423
424 * makefile.w32-in (LOCAL_FLAGS): Add $(EMACS_EXTRA_C_FLAGS).
425
426 * emacsclient.c (main) <environ>: Remove declaration, already
75f1671a 427 pulled in by unistd.h on POSIX hosts and stdlib.h on MS-Windows.
8c9afb46 428
420b63ad
GM
4292011-11-24 Glenn Morris <rgm@gnu.org>
430
431 * make-docfile.c (scan_lisp_file): Treat defcustom like defvar.
432
5ef215d8
DN
4332011-11-14 Dan Nicolaescu <dann@ics.uci.edu>
434
435 * Makefile.in (all): Make sure "all" is the first target.
436
657d08d3
JB
4372011-10-27 Juanma Barranquero <lekktu@gmail.com>
438
439 * emacsclient.c (w32_getenv): Silence compiler warnings.
440
0f054abc
GM
4412011-09-07 Glenn Morris <rgm@gnu.org>
442
443 * etags.c (Fortran_functions): Handle "elemental" functions.
444
d0417b4c
DS
4452011-09-07 Dieter Schuster <didischuster@arcor.de> (tiny change)
446
447 * etags.c (Fortran_functions): Handle "pure" functions. (Bug#9359)
448
e39b275c 4492011-09-06 Paul Eggert <eggert@cs.ucla.edu>
24e0f6b1
PE
450
451 * Makefile.in ($(DESTDIR)${archlibdir}): install-sh moved
abec06ff 452 to build-aux (Bug#9169).
24e0f6b1 453
86633eab 4542011-09-04 Paul Eggert <eggert@cs.ucla.edu>
17107bb6 455
005d87bd 456 Integer and memory overflow issues (Bug#9397).
17107bb6
PE
457
458 * emacsclient.c (xmalloc): Accept size_t, not unsigned int, to
459 avoid potential buffer overflow issues on typical 64-bit hosts.
460 Return void *, not long *.
461 (get_current_dir_name): Report a failure, instead of looping
462 forever, if buffer size calculation overflows. Treat malloc
463 failures like realloc failures, as that has better behavior and is
464 more consistent. Do not check whether xmalloc returns NULL, as
465 that's not possible.
466 (message): Do not arbitrarily truncate message to 2048 bytes when
467 sending it to stderr; use vfprintf instead.
468 (get_server_config, set_local_socket)
469 (start_daemon_and_retry_set_socket): Do not alloca
470 arbitrarily-large buffers; that's not safe.
471 (get_server_config, set_local_socket): Do not use sprintf when its
472 result might not fit in 'int'.
473 (set_local_socket): Do not assume uid fits in 'int'.
474
9250f758
PE
475 * etags.c (xmalloc, xrealloc): Accept size_t, not unsigned int,
476 to avoid potential buffer overflow issues on typical 64-bit hosts.
477 (whatlen_max): New static var.
478 (main): Avoid buffer overflow if subsidiary command length is
479 greater than BUFSIZ or 2*BUFSIZ + 20. Do not use sprintf when its
480 result might not fit in 'int'.
481
644a0faa
PE
482 * movemail.c (main): Do not use sprintf when its result might not fit
483 in 'int'. Instead, put the possibly-long file name into the
484 output of pfatal_with_name.
485
0c6d656d
PE
486 * update-game-score.c: Include <limits.h>
487 (get_user_id): Do not assume uid fits in 'int'. Simplify.
488
044c22e5 4892011-07-28 Paul Eggert <eggert@cs.ucla.edu>
9cfdb3ec 490
0e926e56
PE
491 Assume freestanding C89 headers, string.h, stdlib.h.
492 * ebrowse.c: Include stdlib.h unconditionally.
493 * etags.c, update-game-score.c:
494 Include string.h and stdlib.h unconditionally.
495 * makefile.w32-in (LOCAL_CFLAGS): Don't define STDC_HEADERS.
496 * movemail.c, pop.c: Include string.h unconditionally.
497 * update-game-score.c: No need to include stdarg.h; not used.
498
9cfdb3ec
PE
499 Assume support for memcmp, memcpy, memmove, memset.
500 * etags.c (absolute_filename): Assume memmove exists.
501
ec3b5374
AS
5022011-07-09 Andreas Schwab <schwab@linux-m68k.org>
503
504 * update-game-score.c (usage): Update usage line.
505
bc92abd2
JR
5062011-07-02 Jason Rumney <jasonr@gnu.org>
507
508 * emacsclient.c (decode_options) [WINDOWSNT]: Avoid tty mode on
509 Windows (Bug#5486).
510
3794a2d3
GM
5112011-06-25 Glenn Morris <rgm@gnu.org>
512
513 * emacsclient.c (decode_options) <opt>: Add `F:'.
514 (print_help_and_exit): Mention --frame-parameters.
515
18a4ce5e
AR
5162011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
517
518 * emacsclient.c (longopts, decode_options, main): Add frame-parameters.
519
529a133c
PE
5202011-06-10 Paul Eggert <eggert@cs.ucla.edu>
521
522 * movemail.c: Fix race condition and related bugs (Bug#8836).
523 (main) [!MAIL_USE_SYSTEM_LOCK]: Prefer mkstemp to mktemp, as this
524 fixes some race conditions. Report mkstemp/mktemp errno rather
525 than a possibly-garbage errno. Reinitialize the template each
526 time through the loop, as earlier mkstemp/mktemp calls could have
527 trashed it. Pass 0600 (not 0666) to mktemp, for consistency
528 with mkstemp; the permissions don't matter anyway.
529
fe91f5a0
DN
5302011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
531
532 * emacsclient.c (socket_status): Use constant pointer.
533
55d4c1b2
PE
5342011-05-28 Paul Eggert <eggert@cs.ucla.edu>
535
536 Use 'inline', not 'INLINE'.
537 * etags.c (hash): Now inline unconditionally.
538 * make-docfile.c (put_char): inline, not INLINE.
539
7bdede3f
GM
5402011-05-25 Glenn Morris <rgm@gnu.org>
541
e9490743
GM
542 * Makefile.in (.c.o): Remove (every .o file has an explicit rule).
543 (insrcdir): New.
544 (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff):
545 Use $insrcdir to suppress unaesthetic ignored errors.
546 (clean): Simplify list of things to delete.
497c74cd 547 (all, clean): Use $EXE_FILES.
e9490743 548
d114d4f3
GM
549 * Makefile.in (movemail${EXEEXT}): Build in one step, not via .o file.
550
7bdede3f
GM
551 * Makefile.in (REGEXPOBJ, REGEXPDEPS): Remove. Replace by expansion.
552 (etags${EXEEXT}): Just depend on regex.o, not regex.h as well.
553
1c728a9d
GM
5542011-05-24 Glenn Morris <rgm@gnu.org>
555
556 * Makefile.in (update-game-score${EXEEXT}): Use a single rule.
557
4a720484
GM
5582011-05-19 Glenn Morris <rgm@gnu.org>
559
560 * makefile.w32-in (echolisp): Remove rule that is no longer needed.
561 (clean): No more echolisp.tmp.
562
c136e5cd
GM
5632011-05-18 Glenn Morris <rgm@gnu.org>
564
565 * fakemail.c: Remove file.
566 * makefile.w32-in ($(BLD)/fakemail.exe, fakemail)
567 ($(BLD)/fakemail.$(O)): Remove.
568 * Makefile.in (UTILITIES): Remove fakemail${EXEEXT}.
569 (fakemail${EXEEXT}): Remove rule.
570
418401a5
TZ
5712011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
572
17519c90 573 * makefile.w32-in (obj): Add gnutls.o.
418401a5 574
c5443aa5
PE
5752011-04-16 Paul Eggert <eggert@cs.ucla.edu>
576
fd35b6f9
PE
577 Static checks with GCC 4.6.0 and non-default toolkits.
578
5a9c1e26
PE
579 * movemail.c (mail_spool_name): Protoize.
580 (main): Remove unused var. Mark var as initialized.
581 Move locals to avoid shadowing, and use time_t for times.
582
cd52b244
PE
583 * fakemail.c (xmalloc, xreallc): Use standard C prototypes
584 with void *. This avoids warnings about pointer casts.
585
c5443aa5
PE
586 * emacsclient.c (main): Don't use uninitialized var.
587 (IS_ANY_SEP): Remove; unused.
588 (get_current_dir_name): Add an extern decl.
589
41cf7d1a 5902011-04-06 Paul Eggert <eggert@cs.ucla.edu>
72b04a8a 591
41cf7d1a 592 Fix more problems found by GCC 4.6.0's static checks.
72b04a8a 593
41cf7d1a 594 * emacsclient.c (message): Mark it as a printf-like function.
8e48d7bc
PE
595
596 * make-docfile.c (IF_LINT): New macro, copied from emacsclient.c.
597 (write_c_args): Use it to suppress GCC warning.
598
77861b95 5992011-03-30 Paul Eggert <eggert@cs.ucla.edu>
8c422c30 600
77861b95 601 Fix a problem found by GCC 4.6.0's static checks.
8c422c30
PE
602 * etags.c (just_read_file): Remove dummy variable and simplify.
603
9af30bdf
GM
6042011-03-27 Glenn Morris <rgm@gnu.org>
605
606 * emacsclient.c: Replace SIGTYPE with void.
607
9c88f339
JB
6082011-03-23 Juanma Barranquero <lekktu@gmail.com>
609
610 * ntlib.c: Include <ctype.h>.
611
8cc1d519
GM
6122011-03-23 Glenn Morris <rgm@gnu.org>
613
614 * Makefile.in ($(DESTDIR)${archlibdir}):
615 Use `install-sh -d' rather than mkinstalldirs.
616
c9c49752 6172011-03-23 Paul Eggert <eggert@cs.ucla.edu>
d5cad867 618
b1f961e1
PE
619 * ebrowse.c: Use size_t, not int, for sizes.
620 This avoids a warning with gcc -Wstrict-overflow, and works
621 better for very large objects.
622 (inbuffer_size): Now size_t. All uses changed.
623 (xmalloc, xrealloc, operator_name, process_file): Use size_t for
624 sizes. Don't bother testing whether a size_t value can be negative.
625
58cb46fb
PE
626 * etags.c (Ada_funcs): Redo slightly to avoid overflow warning.
627
3ef271f2
PE
628 etags: In Prolog functions, don't assume int fits in size_t.
629 This avoids a warning with gcc -Wstrict-overflow.
630 * etags.c (Prolog_functions, prolog_pr, prolog_atom): Use size_t,
631 not int, to store sizes.
632 (prolog_atom): Return 0, not -1, on error. All callers changed.
633
f0d80d43
PE
634 update-game-score: fix bug with -r
635 * update-game-score.c (main): Don't set 'scores' to garbage when
5d6d7e57
PE
636 -r is specified and scorecount != MAX_SCORES (Bug#8310). This bug
637 was introduced in the 2002-04-10 change, and was found with gcc
f0d80d43
PE
638 -Wstrict-overflow (GCC 4.5.2, x86-64).
639
d5cad867
PE
640 fakemail: Remove dependency on ignore-value.
641 This undoes some of the recent fakemail-related changes.
642 It is made possible due to recent changes to gnulib's stdio module.
643 * Makefile.in (fakemail${EXEEXT}): Do not depend on ignore-value.h.
644 * fakemail.c: Do not include ignore-value.h.
645 (put_line): Do not use ignore_value.
646
33383987
JB
6472011-03-07 Chong Yidong <cyd@stupidchicken.com>
648
649 * Version 23.3 released.
650
0b973fc5
DW
6512011-03-03 Drake Wilson <drake@begriffli.ch> (tiny change)
652
653 * emacsclient.c (longopts): Add quiet.
654 (decode_options): Handle q/quiet.
655 (print_help_and_exit): Add q/quiet.
656 (main): Suppress some messages if quiet option is used.
657
a54af40e
EZ
6582011-02-26 Eli Zaretskii <eliz@gnu.org>
659
00030ef0
EZ
660 * Makefile.in (fakemail${EXEEXT}): Depend on lib/ignore-value.h.
661
a54af40e
EZ
662 * emacsclient.c (xstrdup) [WINDOWSNT]: Function added back.
663 (w32_getenv): Use xstrdup to return all values in malloc'ed
664 storage.
665
34e6d782
PE
6662011-02-26 Paul Eggert <eggert@cs.ucla.edu>
667
6c0668d9
PE
668 * ebrowse.c (parse_qualified_param_ident_or_type): Make it clear
669 to reader (and to the compiler) that the loop always executes at
670 least once. This prevents a warning with recent GCC.
9e1b7fe6 671 (BROWSE_STRUCT): Remove unused macro.
6c0668d9 672
a4fe4e89
PE
673 * fakemail.c: Include <ignore-value.h>.
674 (put_line): Explicitly ignore fwrite return value, for benefit of
675 recent glibc + gcc.
676 (close_the_streams): Diagnose output errors instead of merely
677 exiting with nonzero status.
678 (my_fclose, main): Diagnose input errors, and exit with nonzero status.
679 Formerly, input errors were silently ignored.
680
34e6d782
PE
681 * ebrowse.c (putstr): Rename from PUTSTR and turn into a function.
682 All callers changed. This is cleaner, and avoids GCC warnings about
683 passing NULL to fputs.
70279bd1 684 (insert_keyword): Rename parameter to avoid shadowing diagnostic.
34e6d782 685
564ff1f2
PE
6862011-02-25 Paul Eggert <eggert@cs.ucla.edu>
687
7e6bb4c9 688 * emacsclient.c (main): Avoid dangling 'if'.
b9170155
PE
689 (xstrdup): Remove; no longer needed.
690 (get_current_dir_name, w32_getenv, get_server_config, find_tty):
691 (set_local_socket, main):
692 Use const char *, not char *, for pointers that are not assigned
693 through.
4be3dfc5
PE
694 (IF_LINT): New macro.
695 (set_local_socket, main): Use it to suppress warnings with
696 GCC -Wuninitialized.
7e6bb4c9 697
b0bbc07d
PE
698 * emacsclient.c: Redo local variables to avoid shadowing problems.
699 (message, socket_status, start_daemon_and_retry_set_socket):
700 Rename locals.
701 (main): Move decl of "i".
702
3f5e6230
PE
703 * etags.c (ISUPPER): Move to inside the only #ifdef where it's used.
704 This avoids an unused-macro warning with some GCC settings.
705
564ff1f2
PE
706 * make-docfile.c (write_globals): Change char * to char const *
707 to avoid a GCC "assignment discards qualifiers" diagnostic
708 in some configurations.
8dfa32f6
PE
709 (scan_c_file): Refactor local variable decls to make their scope
710 more accurate and to avoid a GCC -Wuninitialized diagnostic.
564ff1f2 711
b97decf2
EZ
7122011-02-22 Eli Zaretskii <eliz@gnu.org>
713
32e793fa
EZ
714 * etags.c (canonicalize_filename, ISUPPER): Fix last change.
715
61b108cc
SM
716 * makefile.w32-in ($(BLD)/ebrowse.$(O), $(BLD)/pop.$(O)):
717 Depend on ../lib/min-max.h.
b97decf2 718
f68c809d
PE
7192011-02-22 Paul Eggert <eggert@cs.ucla.edu>
720
e5075711
PE
721 etags: Downcase drive letters, for consistency with Emacs proper.
722 * etags.c (upcase): Remove; no longer used.
723 (canonicalize_filename): Downcase drive letters.
724
f68c809d
PE
725 Assume S_ISLNK etc. work, since gnulib supports this.
726 * etags.c (S_ISREG): Remove.
727
b97decf2
EZ
7282011-02-22 Paul Eggert <eggert@cs.ucla.edu>
729
730 Assume S_ISLNK etc. work, since gnulib supports this.
731 * etags.c (S_ISREG): Remove.
732
602a5739
JB
7332011-02-22 Juanma Barranquero <lekktu@gmail.com>
734
735 * makefile.w32-in (obj): Remove filemode.o.
736
b23b5a5b
PE
7372011-02-21 Paul Eggert <eggert@cs.ucla.edu>
738
ba01e9d7
PE
739 New file "lib/min-max.h".
740 * ebrowse.c (min, max): Define them by including <min-max.h>
741 instead of defining it ourselves.
742 * pop.c (min): Likewise.
d47d6319 743 * Makefile.in (ebrowse${EXEEXT}, pop.o): Depend on min-max.h.
ba01e9d7 744
f0939c31
PE
745 * movemail.c (popmail): Report fchown failure instead of ignoring it.
746 But if the file already has the right ownership, don't worry about it.
747
4df52042 748 * make-docfile.c (input_buffer): Rename variables to avoid shadowing.
08c69097 749 * test-distrib.c (buf): Make this local, to avoid shadowing.
4df52042 750
27d41fb4 751 * movemail.c (main, pop_retr): Rename locals to avoid shadowing.
1afca8cc 752 (progname, sfi, sfo, ibuffer, obuffer): Remove unused vars.
5ecec6a7
PE
753 (DONE): Remove unused macro.
754 (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_FROM_LINE):
755 Define these macros only in the contexts that need them.
0d7fdc0e
PE
756 * pop.c (index): Remove unused macro.
757 (KPOP_PORT): Define only if KERBEROS is defined.
27d41fb4 758
b23b5a5b
PE
759 Declare file-scope functions and variables static if not exported.
760 This is more consistent, and is nicer with gcc -Wstrict-prototypes.
761 * ebrowse.c, emacsclient.c, fakemail.c, make-docfile.c, movemail.c:
762 * profile.c, test-distrib.c, update-game-score.c:
763 Declare non-'main' functions and variables to be static.
764 * ebrowse.c: Omit redundant function prototypes.
765
25c51af3
EZ
7662011-02-21 Eli Zaretskii <eliz@gnu.org>
767
768 * makefile.w32-in ($(BLD)/ctags.$(O), $(BLD)/emacsclient.$(O))
769 ($(BLD)/etags.$(O), $(BLD)/movemail.$(O), $(BLD)/ntlib.$(O)):
770 Depend on $(EMACS_ROOT)/nt/inc/sys/stat.h.
771
e18c0aa3 7722011-02-21 Ben Key <bkey76@gmail.com>
6ca1c3b4
BK
773
774 * make-docfile.c (scan_c_file): Adapt DEFVAR_PER_BUFFER case to
775 the new BVAR macro.
776
50a4e25a
JB
7772011-02-20 Juanma Barranquero <lekktu@gmail.com>
778
779 * makefile.w32-in (obj): Remove md5.o.
780
b166dcd8
KC
7812011-02-18 Karl Chen <Karl.Chen@quarl.org>
782
783 * emacsclient.c (main): Loop while `recv' return EINTR.
784
64df8c10
PE
7852011-02-09 Paul Eggert <eggert@cs.ucla.edu>
786
787 * make-docfile.c (EMACS_INTEGER): Rename from EMACS_INT.
788 This avoids collision with config.h's EMACS_INT on some
789 configurations. All uses changed.
790
00b3c7ac
TT
7912011-02-08 Tom Tromey <tromey@redhat.com>
792
793 * make-docfile.c: Unconditionally include stdlib.h.
794 (generate_globals): New global.
795 (xrealloc): New function.
796 (main): Handle '-g'. Call start_globals, write_globals.
797 (scan_file): Conditionally call put_filename.
798 (start_globals): New function.
799 (struct global): New.
800 (num_globals, globals): New globals.
801 (add_global, compare_globals, write_globals): New functions.
802 (scan_c_file): Update for "-g".
803 (scan_lisp_file): Fail if "-g".
804
03fc768b
PE
8052011-02-05 Paul Eggert <eggert@cs.ucla.edu>
806
602a5739 807 * emacsclient.c: Conform to C89 pointer rules.
03fc768b
PE
808 (file_name_absolute_p): Accept const char *, not const unsigned
809 char *, to satisfy C89 rules.
810
d9f1f55e
EZ
8112011-02-02 Eli Zaretskii <eliz@gnu.org>
812
b166dcd8
KC
813 * makefile.w32-in (ETAGS_CFLAGS, CTAGS_CFLAGS):
814 Add ``-DEMACS_NAME="\"GNU Emacs\""''.
83cc5772 815 (obj): Remove strftime.o.
d9f1f55e 816
70b0d280
EZ
8172011-01-31 Eli Zaretskii <eliz@gnu.org>
818
819 * makefile.w32-in (VERSION): Don't define, defined on nt/config.nt.
820 (ECLIENT_CFLAGS): Remove -DVERSION.
821 ($(BLD)/emacsclient.$(O)): Don't depend on makefile.w32-in.
822
16fab143
PE
8232011-01-31 Paul Eggert <eggert@cs.ucla.edu>
824
825 src/emacs.c now gets version number from configure.in
826 * ebrowse.c: Adjust comment to say that.
827
8aec9916
JM
8282011-01-30 Jim Meyering <meyering@redhat.com>
829
830 make-docfile: don't corrupt heap for an invalid .elc file
831 "printf '#@1a' > in.elc; ./make-docfile in.elc" would store 0
832 one byte before just-malloc'd saved_string buffer.
833 * make-docfile.c (scan_lisp_file): Diagnose an invalid dynamic
834 doc string length. Also fix an always-false while-loop test.
835
f915f0f7
EZ
8362011-01-29 Eli Zaretskii <eliz@gnu.org>
837
838 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
839 (GETOPTOBJS, GETOPTDEPS): Remove targets.
840 (MOVEMAILOBJS): Replace $(GETOPTOBJS) with ../lib/$(BLD)/libgnu.$(A).
841 ($(BLD)/movemail.exe): Depend on ../lib/getopt.h.
842 (ECLIENTOBJS, ETAGSOBJ, CTAGSOBJ, EBROWSEOBJ): Replace getopt.o
843 and getopt1.o with ../lib/$(BLD)/libgnu.$(A).
844 (clean): Don't remove getopt.h.
845 (getopt.h, $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O)): Remove targets.
846 ($(BLD)/ctags.$(O), $(BLD)/etags.$(O)): Replace getopt.h with
847 $(EMACS_ROOT)/lib/getopt.h.
848
8492011-01-28 Chong Yidong <cyd@stupidchicken.com>
850
851 * ntlib.c (setregid): New stub, renamed from setegid.
852
853 * ntlib.h: Update prototype.
854
06d8ace5 8552011-01-25 Chong Yidong <cyd@stupidchicken.com>
fbf4af3a
CY
856
857 * movemail.c (main): Use setregid instead of setegid, which is
858 missing on older systems. Suggested by Peter O'Gorman (Bug#6811).
859
9055082e
PE
8602011-01-23 Paul Eggert <eggert@cs.ucla.edu>
861
862 Check return values of some library calls.
863 * hexl.c (main): Check fread result.
864 * make-docfile.c (main): Check chdir result.
865 (scan_c_file): Check fscanf result.
866 * movemail.c (main): Check ftruncate result.
867
33fe4243 8682011-01-17 Paul Eggert <eggert@cs.ucla.edu>
e275c824 869
4004364e
PE
870 Include <unistd.h> unilaterally.
871 * emacsclient.c, etags.c, fakemail.c, make-docfile.c, movemail.c:
872 * pop.c, test-distrib.c, update-game-score.c:
873 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
874 unistd.h is always present now, possibly supplied by gnulib.
875
613f7bda
PE
876 Include <getopt.h> not "getopt.h".
877 * ebrowse.c, emacsclient.c: Include <getopt.h>, not "getopt.h".
878 Since getopt.h is no longer in this directory, there's no point
879 using the form with double-quotes.
880
e275c824
PE
881 Remove unused files.
882 * getopt.c, getopt1.c, getopt_.h, getopt_int.h: Remove.
883 These files are now in ../lib, copied from gnulib.
884
885 Use gnulib's getopt-gnu module.
886 * Makefile.in (mostlyclean): Do not clean getopt.h or getopt.h-t,
887 as these are now done by gnulib.
888 (GETOPT_H, getopt.h, GETOPTOBJS, GETOPTDEPS, getopt.o, getopt1.o):
889 Remove; now done by gnulib. All uses removed.
890
9a514d4a
PE
891 Automate syncing from gnulib.
892 * Makefile.in (EXE_FILES): New macro.
893 (BASE_CFLAGS): Add -I../lib and -I${srcdir}/../lib,
894 for gnulib's .h files.
895 (LOADLIBES): Add ../lib/libgnu.a.
896 ($(EXE_FILES)): Depend on ../lib/libgnu.a.
897 (../lib/libgnu.a): New rule.
898
72427c46
PE
8992011-01-08 Paul Eggert <eggert@cs.ucla.edu>
900
901 * Makefile.in (EXECUTABLES): Remove; macro unused since 1993.
902
4967fa34
GM
9032011-01-08 Glenn Morris <rgm@gnu.org>
904
e7a42417
GM
905 * Makefile.in (EMACSOPT): Add --no-site-lisp.
906
4967fa34
GM
907 * Makefile.in (EMACSOPT): Remove --multibyte, it does nothing any more.
908
d7bfa7a1
GM
9092011-01-02 Glenn Morris <rgm@gnu.org>
910
911 * ebrowse.c (version) <emacs_copyright>:
912 * etags.c (print_version) <emacs_copyright>:
913 * rcs2log (Copyright): Set short copyright year to 2011.
914
da2b5401
JM
9152010-11-27 Joe Matarazzo <joe.matarazzo@gmail.com> (tiny change)
916
917 * ebrowse.c (yylex): If end of input buffer encountered while
918 searching for a newline after "//", return YYEOF. (Bug#7446)
919
4a47c275 9202010-11-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
76cc4cd6
YM
921
922 * emacsclient.c (set_local_socket) [DARWIN_OS]: Add fall-back
923 definition of _CS_DARWIN_USER_TEMP_DIR for Mac OS X 10.4 and older.
924
f16cafe3
DN
9252010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
926
927 * test-distrib.c: Remove include guards for config.h and fcntl.h.
928 (O_RDONLY): Do not define.
929 (cool_read): Fix type for variable "sofar".
930
6a5c2175
GM
9312010-10-25 Glenn Morris <rgm@gnu.org>
932
933 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove easymenu.elc.
934
17284e30
GM
9352010-10-23 Glenn Morris <rgm@gnu.org>
936
937 * digest-doc.c, sorted-doc.c: Remove files.
938 * Makefile.in (UTILITIES): Remove digest-doc and sorted-doc.
939 (digest-doc${EXEEXT}, sorted-doc${EXEEXT}): Remove rules.
940 * makefile.w32-in (ALL): Remove digest-doc and sorted-doc.
941 ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe, sorted-doc, digest-doc)
942 ($(BLD)/digest-doc.$(O), $(BLD)/sorted-doc.$(O)): Remove rules.
943 (install): Don't install digest-doc.exe or sorted-doc.exe.
944
a4daeecf
DN
9452010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
946
947 * Makefile.in (PROFILING_LDFLAGS): Remove, not needed.
948
3fb78d1f
GM
9492010-10-09 Glenn Morris <rgm@gnu.org>
950
951 * b2m.c, b2m.pl: Remove files.
952 * Makefile.in (INSTALLABLES): Remove b2m.
953 * makefile.w32-in ($(BLD)/b2m.$(O)): Remove.
954
4628bef1 9552010-10-08 Glenn Morris <rgm@gnu.org>
b336bfcd
GM
956
957 * emacsclient.c (set_local_socket) [DARWIN_OS]: Try as a fall-back
958 DARWIN_USER_TEMP_DIR. (Bug#3992)
959
f99d75f5
DN
9602010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
961
728a982d
DN
962 * test-distrib.c (cool_read):
963 * movemail.c (main, concat):
964 * make-docfile.c (scan_file, write_c_args):
602a5739 965 * emacsclient.c (get_server_config): Fix -Wconversion warning.
728a982d
DN
966 (egetenv): Move conditional definition earlier.
967 (progname): Use const.
968 * sorted-doc.c (xstrdup): Use const.
969
f99d75f5
DN
970 * Makefile.in: Remove ^L, old makes choke on it.
971
3ecb8d93
WS
9722010-10-02 Wolfgang Schnerring <wosc@wosc.de> (tiny change)
973
974 * emacsclient.c (main): Return EXIT_FAILURE if Emacs sends us an
975 error string (Bug#6963).
976
54b65f7b
JB
9772010-10-02 Juanma Barranquero <lekktu@gmail.com>
978
979 * makefile.w32-in (tags): Remove target.
980
73077a9a
EZ
9812010-10-01 Eli Zaretskii <eliz@gnu.org>
982
983 * makefile.w32-in (tags, TAGS): New targets.
984
968ef9b4
JB
9852010-09-30 Juanma Barranquero <lekktu@gmail.com>
986
987 * emacsclient.c (get_server_config): Don't read Emacs pid from
988 the authentication file.
989
6ab88e02
JB
9902010-09-29 Juanma Barranquero <lekktu@gmail.com>
991
a69edb8a
JB
992 * makefile.w32-in (../src/config.h): Remove target, it is stale.
993
6ab88e02
JB
994 * emacsclient.c (main): Remove unused variables.
995 (start_daemon_and_retry_set_socket): Use EXIT_FAILURE.
996
4c964351
UM
9972010-09-25 Ulrich Mueller <ulm@gentoo.org>
998
999 * etags.c (compressors, print_language_names): Support xz compression.
1000
988e88ab
J
10012010-08-11 Jan Djärv <jan.h.d@swipnet.se>
1002
70e31436 1003 * fakemail.c: Include stdlib.h for getenv. Remove declaration of
5e3b9a89 1004 popen, fclose and pclose.
70e31436 1005 (my_name, fatal, error, put_line): Use const char*.
5e3b9a89
J
1006 (main): Remove extern getenv, mail_program_name is const char*.
1007
988e88ab
J
1008 * update-game-score.c (get_prefix, write_scores, main): Use const char*.
1009
1010 * sorted-doc.c (error, fatal, states): Use const char *.
1011
1012 * pop.h (pop_multi_first): Use const char *.
1013 (_ARGS): Remove.
1014
70e31436 1015 * pop.c (pop_multi_first, socket_connection, sendline): Use const char*.
988e88ab
J
1016
1017 * movemail.c (fatal, error, concat): Use const char *.
1018
b166dcd8
KC
1019 * make-docfile.c (error, fatal, scan_c_file, scan_lisp_file):
1020 Use const char *.
988e88ab
J
1021
1022 * etags.c (compressor, language, Ada_suffix, Ada_help, Asm_suffixes)
1023 (Asm_help, default_C_suffixes, default_C_help, Cplusplus_suffixes)
1024 (Cplusplus_help, Cjava_suffixes, Cobol_suffixes, Cstar_suffixes)
1025 (Erlang_suffixes, Erlang_help, Forth_suffixes, Forth_help)
1026 (Fortran_suffixes, Fortran_help, HTML_suffixes, HTML_help)
1027 (Lisp_suffixes, Lisp_help, Lua_suffixes, Lua_help)
1028 (Makefile_filenames, Makefile_help, Objc_suffixes, Objc_help)
1029 (Pascal_suffixes, Pascal_help, Perl_suffixes, Perl_interpreters)
1030 (Perl_help, PHP_suffixes, PHP_help, plain_C_suffixses, PS_suffixes)
1031 (PS_help, Prolog_suffixes, Prolog_help, Python_suffixes, Python_help)
1032 (Scheme_suffixes, Scheme_help, TeX_suffixes, TeX_help, Texinfo_suffixes)
1033 (Texinfo_help, Yacc_suffixes, Yacc_help, auto_help, none_help)
1034 (no_lang_help, print_language_names)
1035 (get_language_from_interpreter, get_language_from_filename)
1036 (init, make_tag, struct C_stab_entry, write_classname, TEX_defenv)
1037 (TEX_decode_env, nocase_tail, savestr, savenstr, fatal, pfatal)
1038 (concat): Use const char*.
1039
1040 * emacsclient.c (message, sock_err_message, send_to_emacs)
1041 (quote_argument, set_local_socket)
1042 (start_daemon_and_retry_set_socket): Use const char*.
1043
1044 * ebrowse.c (struct member): filename, def_filename is const.
1045 (struct sym): filename, sfilename is const.
1046 (struct kw): name is const.
1047 (add_sym, yyerror, token_string, insert_keyword, main): Use const char*.
1048
1049 * b2m.c (concat, fatal): Use const char*.
1050 (main): Don't assign labels a string literal.
1051
0e9c8657
JB
10522010-08-07 Juanma Barranquero <lekktu@gmail.com>
1053
1054 * ebrowse.c (usage, version, mark_virtual):
1055 Remove duplicate declarations.
1056
0613f5d5
DN
10572010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
1058
1059 * emacsclient.c: Move socket related #includes together with the
70e31436 1060 rest of the #includes. Move WINDOWSNT includes closer together.
0613f5d5
DN
1061 (HAVE_CONFIG_H): Remove.
1062 (NO_RETURN): Remove, defined in config.h.
1063 (main): Convert definition to standard C.
1064
a94a477d
JB
10652010-07-29 Juanma Barranquero <lekktu@gmail.com>
1066
1067 * make-docfile.c (write_c_args): Warn for old-style empty arglist ().
1068
35a7804d
JB
10692010-07-25 Juanma Barranquero <lekktu@gmail.com>
1070
1071 * emacsclient.c (getcwd): Fix previous change: make getcwd
1072 conditional on HAVE_GETCWD and declare with the correct POSIX
1073 profile (for some reason MinGW headers define its 2nd arg as int,
1074 not size_t; but getcwd is not used on Windows nonetheless).
1075
361358ea
JB
10762010-07-25 Juanma Barranquero <lekktu@gmail.com>
1077
1078 * emacsclient.c (getcwd, w32_getenv):
1079 * ntlib.h (getlogin, getuid, getegid, getgid): Fix prototypes.
1080
68441b90
DN
10812010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
1082
087b38a0 1083 * update-game-score.c (usage): Add NO_RETURN specifier.
68441b90
DN
1084 * movemail.c (fatal, pfatal_with_name, pfatal_and_delete):
1085 * make-docfile.c (fatal):
1086 * hexl.c (usage):
1087 * fakemail.c (fatal):
1088 * etags.c (fatal, suggest_asking_for_help, pfatal):
1089 * emacsclient.c (fatal):
1090 * b2m.c (fatal): Likewise.
1091
554d39be
JB
10922010-07-23 Juanma Barranquero <lekktu@gmail.com>
1093
1094 * make-docfile.c (write_c_args): Correctly handle prefixes of "defalt".
1095
7c3320d8
JB
10962010-07-20 Juanma Barranquero <lekktu@gmail.com>
1097
1098 * emacsclient.c (get_current_dir_name, w32_get_resource)
1099 (w32_getenv, w32_set_user_model_id, w32_window_app, w32_execvp)
1100 (close_winsock, initialize_sockets, w32_find_emacs_process)
1101 (w32_give_focus):
1102 * ntlib.c (getlogin, getuid, getgid, getegid):
1103 Convert definitions to standard C.
1104
e6cfa7c3
AS
11052010-07-12 Andreas Schwab <schwab@linux-m68k.org>
1106
1107 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
1108 (PROFILING_LDFLAGS): Set from substitution.
1109 (BASE_CFLAGS): Add ${C_WARNINGS_SWITCH}.
1110 (ALL_CFLAGS, CPP_CFLAGS): Add ${PROFILING_CFLAGS}.
1111 (LINK_CFLAGS): Add ${PROFILING_LDFLAGS}.
1112
f09e4c6b
EZ
11132010-07-12 Eli Zaretskii <eliz@gnu.org>
1114
1115 * makefile.w32-in (lisp2): Change hebrew.el to hebrew.elc (see
1116 2010-07-12T05:25:46Z!handa@etlken).
1117
8966b757
AS
11182010-07-11 Andreas Schwab <schwab@linux-m68k.org>
1119
1120 * emacsclient.c (set_local_socket): Use strchr, strrchr instead of
1121 index, rindex.
1122 * movemail.c (mail_spool_name, popmail): Likewise.
1123 * pop.c (pop_list): Likewise.
1124
994a7c3b
EZ
11252010-07-11 Eli Zaretskii <eliz@gnu.org>
1126
a628ad9d 1127 * makefile.w32-in (obj): Add menu.o, bidi.o, w32uniscribe.o,
994a7c3b
EZ
1128 and unexw32.o. (Bug#6603)
1129
c971758d
EZ
11302010-07-10 Eli Zaretskii <eliz@gnu.org>
1131
1132 * Makefile.in ($(DESTDIR)${archlibdir}): Convert spaces to TABs.
1133
91a7f76d
AS
11342010-07-09 Andreas Schwab <schwab@linux-m68k.org>
1135
1136 * make-docfile.c (write_c_args): Restructure scanning loop.
1137
0508c67f
DN
11382010-07-09 Dan Nicolaescu <dann@ics.uci.edu>
1139
1140 * make-docfile.c (write_c_args): Deal with type names in DEFUN
1141 arguments.
1142
0216627e
DN
11432010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
1144
1145 * update-game-score.c (P_): Remove macro.
1146 * ebrowse.c: Remove include guards.
1147 (P_): Remove macro.
1148
72af86bd
AS
11492010-07-07 Andreas Schwab <schwab@linux-m68k.org>
1150
1151 * ebrowse.c (add_sym, make_namespace): Replace bcopy, bzero by
1152 memcpy, memmove, memset.
1153 * pop.c (pop_retrieve, socket_connection, pop_getline): Likewise.
1154
e2ad23ef
AS
11552010-07-06 Andreas Schwab <schwab@linux-m68k.org>
1156
1157 * movemail.c: Add MAIL_USE_POP around prototypes.
1725ae55
AS
1158 Include <string.h> if HAVE_STRING_H.
1159 (strerror): Only declare if !HAVE_STRERROR.
1160 (fatal): Make static.
1161 (error): Likewise.
1162 (pfatal_with_name): Likewise.
70e31436 1163 (pfatal_and_delete): Likewise.
1725ae55
AS
1164 (concat): Likewise.
1165 (xmalloc): Likewise.
1166 (popmail): Likewise.
1167 (pop_retr): Likewise.
1168 (mbx_write): Likewise.
1169 (mbx_delimit_begin): Likewise.
1170 (mbx_delimit_end): Likewise.
e2ad23ef 1171
b8463cbf
DN
11722010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
1173
1174 * fakemail.c (action): Convert function definitions to standard C.
1175 (add_a_stream):
1176 * test-distrib.c (cool_read):
1177 (main): Likewise.
1178
a52a00a3
AS
11792010-07-03 Andreas Schwab <schwab@linux-m68k.org>
1180
1181 * sorted-doc.c (cmpdoc): Fix signature.
1182 (qsort_compare): Delete.
1183 (main): Remove cast.
1184
35d99b72
JB
11852010-07-03 Juanma Barranquero <lekktu@gmail.com>
1186
1187 * ebrowse.c (match_qualified_namespace_alias): Check for null pointer.
1188
3a35a84c
JB
11892010-07-03 Juanma Barranquero <lekktu@gmail.com>
1190
1191 Fix prototype warnings.
1192
1193 * ebrowse.c (match_qualified_namespace_alias):
1194 Pass sym* to find_namespace, not link*.
1195
1196 * emacsclient.c (send_to_emacs, quote_argument): Arg s is HSOCKET.
1197
1198 * sorted-doc.c (qsort_compare): New typedef.
1199 (main): Use it to cast cmpdoc.
1200
873fbd0b
DN
12012010-07-03 Dan Nicolaescu <dann@ics.uci.edu>
1202
1203 * update-game-score.c: Convert function definitions to standard C.
1204 * sorted-doc.c:
1205 * profile.c:
1206 * pop.c:
1207 * movemail.c:
1208 * make-docfile.c:
1209 * hexl.c:
1210 * fakemail.c:
1211 * etags.c:
1212 * ebrowse.c:
1213 * digest-doc.c:
1214 * b2m.c: Likewise.
1215
c532d349
DN
12162010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
1217
1218 * make-docfile.c (xmalloc, xrealloc, concat, readline, fatal):
1219 * b2m.c (scan_file, scan_lisp_file, scan_c_file): Convert to
1220 standard C prototypes.
1221
f57e2426
J
12222010-07-02 Jan Djärv <jan.h.d@swipnet.se>
1223
1224 * ebrowse.c: Remove P_ and __P.
1225 * etags.c:
1226 * movemail.c:
1227 * pop.c:
1228 * update-game-score.c: Likewise.
1229
3b3807f8
JB
12302010-06-24 Juanma Barranquero <lekktu@gmail.com>
1231
1232 * movemail.c (error): Avoid warning when there are no args.
1233
5fee75d4
JB
12342010-06-11 Juanma Barranquero <lekktu@gmail.com>
1235
1236 * makefile.w32-in (lisp2): Fix references to vc/vc-hooks.elc
1237 and vc/ediff-hook.elc.
1238
3085237c
DN
12392010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
1240
1241 * ntlib.h: Remove code dealing with BSTRING.
1242
0191e222
CY
12432010-05-29 Chong Yidong <cyd@stupidchicken.com>
1244
1245 * emacsclient.c (longopts, decode_options, print_help_and_exit):
1246 New arg `-parent-id'.
1247 (main): Send parent-id to Emacs.
1248
81ac4f35
GM
12492010-05-27 Glenn Morris <rgm@gnu.org>
1250
1251 * Makefile.in (distclean): No more Makefile.c.
1252
4e3028f8
JD
12532010-05-22 Jan Djärv <jan.h.d@swipnet.se>
1254
1255 * Makefile.in (STAMP_INST_SCRIPTS, STAMP_SCRIPS): New (Bug #6246).
1256 (all): Depend onSTAMP_INST_SCRIPTS, STAMP_SCRIPS (Bug #6246).
1257 (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff):
1258 New rules (Bug #6246).
1259 (clean): Remove stamp-* (Bug #6246).
1260
44b031a6
GM
12612010-05-12 Glenn Morris <rgm@gnu.org>
1262
1263 * Makefile.in (INSTALLABLES): Remove @LIB_SRC_EXTRA_INSTALLABLES@.
1264
acddf8ae
GM
12652010-05-11 Glenn Morris <rgm@gnu.org>
1266
c88b05a9
GM
1267 * Makefile.in (.m.o): Remove, there are no .m files.
1268 (BASE_CFLAGS): New variable.
1269 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use $BASE_CFLAGS.
1270 (check): Update the message.
1271 (update-game-score${EXEEXT}): Do not use $MOVE_FLAGS.
1272
d3b23034
GM
1273 * Makefile.in: Convert comments to makefile format.
1274
acddf8ae
GM
1275 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
1276 (config.h) [MSDOS]: Do not include.
1277
7490175b
GM
12782010-05-10 Glenn Morris <rgm@gnu.org>
1279
97efb629
GM
1280 * Makefile.in (LIBS_SYSTEM): Set with configure, not cpp.
1281 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
1282 (NOT_C_CODE): Remove, no longer used.
1283 (config.h) [!MSDOS]: No longer include.
1284 (LOADLIBES): Use LIBS_SYSTEM as a variable.
1285
7490175b
GM
1286 * Makefile.in (BLESSMAIL_TARGET): Set with configure, not cpp.
1287
7b42b29f
GM
12882010-05-08 Glenn Morris <rgm@gnu.org>
1289
1290 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
1291
61a808e8
CY
12922010-05-07 Chong Yidong <cyd@stupidchicken.com>
1293
1294 * Version 23.2 released.
1295
f6c0ee20
GM
12962010-05-06 Glenn Morris <rgm@gnu.org>
1297
1298 * Makefile.in: Minimize blessmail-related cpp usage.
1299 (BLESSMAIL_TARGET): New variable.
1300 (MOVEMAIL_NEEDS_BLESSING): Remove, replace by above variable.
1301 (blessmail): Always define this rule.
1302 (need-blessmail): New rule, split out from maybe-blessmail.
1303 (maybe-blessmail): Use BLESSMAIL_TARGET.
1304
49628785
GM
13052010-05-04 Glenn Morris <rgm@gnu.org>
1306
1307 * Makefile.in: Use @C_SWITCH_SYSTEM@, @C_SWITCH_MACHINE@ rather than
1308 @c_switch_system@, @c_switch_machine@.
1309
7e10844c
DN
13102010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
1311
1312 * Makefile.in (LIBS_MACHINE): Remove all uses, unused.
1313
4794a582
DN
13142010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
1315
1316 * Makefile.in (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Move to the
1317 non-cpp section.
1318
76bd8202
DN
13192010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
1320
1321 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE): Define using
1322 autoconf, not cpp.
1323 (ALL_CFLAGS): Use them as make variables.
1324
53cfe624 13252010-04-07 Christoph Scholtes <cschol2112@googlemail.com>
42d3cab7
C
1326
1327 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis
1328 for macros for nmake compatibility.
1329
b372fceb
JB
13302010-04-03 Juanma Barranquero <lekktu@gmail.com>
1331
1332 Add stubs for Windows, required after CVE-2010-0825 change.
1333 * ntlib.c (getgid, getegid, setegid): New stubs.
1334 * ntlib.h (getgid, getegid, setegid): Declare them.
1335
51a91f9d
CY
13362010-04-02 Dan Rosenberg <dan.j.rosenberg@gmail.com> (tiny change)
1337
b166dcd8
KC
1338 * movemail.c (main): Check return values of setuid.
1339 Avoid possibility of symlink attack when movemail is setgid mail
51a91f9d
CY
1340 (CVE-2010-0825).
1341
42a2c622
DN
13422010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
1343
1344 Remove extern errno declarations.
1345 * movemail.c:
1346 * etags.c:
1347 * emacsclient.c: Remove extern errno declarations.
1348
5e58e3a4
GM
13492010-03-20 Glenn Morris <rgm@gnu.org>
1350
1351 * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
1352 (LIBHESIOD, LIBRESOLV): Make previous change a bit more friendly by
1353 defining these as Makefile variables.
1354 (LIBS_MOVE): Add LIBS_MAIL into this.
1355 (movemail${EXEEXT}): Just use LIBS_MOVE, not LIBS_MAIL as well.
1356
aded53ff
GM
13572010-03-18 Glenn Morris <rgm@gnu.org>
1358
1359 * Makefile.in (KRB4LIB, DESLIB, KRB5LIB, CRYPTOLIB, COM_ERRLIB)
1360 (HESIODLIB, LIBS_MAIL): Set using autoconf rather than cpp.
1361 (BASE_CFLAGS): Remove (identical to CPP_CFLAGS).
1362
f8388570
TO
13632010-03-18 Tetsurou Okazaki <okazaki@be.to> (tiny change)
1364
1365 * Makefile.in (uninstall): Handle the case where archlibdir does not
1366 exist. (Bug#5720)
1367
288f9fc0
CY
13682010-03-10 Chong Yidong <cyd@stupidchicken.com>
1369
1370 * Branch for 23.2.
1371
f9b84f9f
CY
13722010-02-20 Kevin Ryde <user42@zip.com.au>
1373
1374 * etags.c (Scheme_functions): Don't loop past a null character
1375 (Bug#5601).
1376
c14902e0 13772010-01-29 Kester Habermann <kester@linuxtag.org> (tiny change)
9d77a91f 1378
a628ad9d 1379 * etags.c (Fortran_functions): Handle recursive keyword (Bug#5484).
9d77a91f 1380
6589a2f9
GM
13812010-01-11 Glenn Morris <rgm@gnu.org>
1382
1383 * ebrowse.c (version):
1384 * etags.c (print_version):
1385 * rcs2log (Copyright): Set copyright year to 2010.
1386
03dcfe01
CY
13872009-12-09 David Robinow <drobinow@gmail.com> (tiny change)
1388
1389 * makefile.w32-in: Use parenthesis for macros for nmake
1390 compatibility.
1391
5ce6e4f4 13922009-11-23 Tobias Ringström <tobias@ringis.se> (tiny change)
46f3381a 1393
f7e0618c 1394 * etags.c (absolute_filename): Use memmove if we have it for
46f3381a
JD
1395 overlapping copy.
1396
f6195dfb
DN
13972009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
1398
1399 * make-docfile.c (scan_lisp_file): Also look for `defvaralias'.
1400
b53f6df2
JB
14012009-10-15 Juanma Barranquero <lekktu@gmail.com>
1402
1403 * .gitignore: Add echolisp.tmp.
1404
9fc3db2b
GM
14052009-10-15 Glenn Morris <rgm@gnu.org>
1406
5f54cae6
GM
1407 * emacsclient.c (print_help_and_exit): Fix bug report instructions.
1408
9fc3db2b
GM
1409 * makefile.w32-in (echolisp): New rule.
1410 (clean): Delete echolisp.tmp.
1411
614bd9cf
EZ
14122009-09-27 Eli Zaretskii <eliz@gnu.org>
1413
1414 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Add term/internal.elc,
1415 term/pc-win.elc, emacs-lisp/easymenu.elc, and term/ns-win.elc, to
1416 be consistent with src/Makefile.in.
1417
24e9e996
SM
14182009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1419
1420 * update-game-score.c (main): Sort scores before trimming them,
1421 reported by Jason Feng <jfeng@ozbert.com> (bug#4397).
1422
c5a139ca
GM
14232009-09-09 Glenn Morris <rgm@gnu.org>
1424
1425 * Makefile.in ($(DESTDIR)${archlibdir}): Set umask to world-readable
1426 before creating directories and game score files.
1427
a8a8ec61
GM
14282009-08-19 Glenn Morris <rgm@gnu.org>
1429
0916a29e 1430 * cvtmail.c: Remove file.
a8a8ec61
GM
1431 * Makefile.in (UTILITIES): Remove cvtmail.
1432 (cvtmail${EXEEXT}): Remove.
1433
678bc1f5
CY
14342009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
1435
1436 * b2m.c (main): Ensure that each message ends in two newlines.
1437
0a3472c7
JR
14382009-07-03 Jason Rumney <jasonr@gnu.org>
1439
1440 * emacsclient.c (w32_set_user_model_id): Use standard types.
1441
f2d6b714
EZ
14422009-07-03 Eli Zaretskii <eliz@gnu.org>
1443
1444 * makefile.w32-in (WINNT_SUPPORT): Add common-win.elc, like
1445 src/Makefile.in did.
1446
ff90fbde
JR
14472009-06-30 Jason Rumney <jasonr@gnu.org>
1448
1449 * emacsclient.c (w32_give_focus): Use GetModuleHandle for library
1450 that is already loaded.
1451 (w32_set_user_model_id): New function.
1452 (main): Use it to associate emacsclient with emacs (bug#1849).
1453
e0f59195
JM
14542009-06-29 Jim Meyering <meyering@redhat.com>
1455
1456 Remove useless if-before-free test.
1457 * make-docfile.c (scan_lisp_file): Remove useless test.
1458
f5f20f6c
DN
14592009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
1460
1461 * Makefile.in (movemail.o): Don't pass -Demacs, unused.
1462
70243478
CY
14632009-06-21 Chong Yidong <cyd@stupidchicken.com>
1464
1465 * Branch for 23.1.
1466
fa44da6e
AR
14672006-06-09 Adrian Robert <Adrian.B.Robert@gmail.com>
1468
1469 * mac-fix-env.m:
1470 * Makefile.in (mac-fix-env): Remove.
1471
a7f2b0b1
AR
14722006-06-06 David Reitter <david.reitter@gmail.com>
1473
1474 * Makefile.in (mac-fix-env): Compile it using ALL_CFLAGS.
1475
9dfda22f
JB
14762009-04-20 Juanma Barranquero <lekktu@gmail.com>
1477
1478 * emacsclient.c (print_help_and_exit): Fix typo and tabify (careful
1479 spacing is required in the message output, as the comment suggests).
1480
24d5010d
CY
14812009-04-20 Chong Yidong <cyd@stupidchicken.com>
1482
1483 * emacsclient.c (print_help_and_exit): Clarify argument placement
1484 for short option names.
1485
6133a1a9
DN
14862009-04-02 Dan Nicolaescu <dann@ics.uci.edu>
1487
1488 * emacsclient.c (print_help_and_exit): Fix typo.
1489
22749e9a
EZ
14902009-03-21 Eli Zaretskii <eliz@gnu.org>
1491
1492 * ntlib.c (setuid): Argument is now unsigned.
1493 (getuid): Return value is now unsigned.
1494 (getpwuid): Argument is now unsigned.
1495 (fchown): UID and GID arguments are now unsigned.
1496
1497 * ntlib.h (fchown): UID and GID arguments are now unsigned.
1498 (getuid): Return value is now unsigned.
1499 (setuid): Argument is now unsigned.
1500 (getpwuid): Remove prototype (it's declared in nt/inc/pwd.h).
1501
b57ac69d 15022009-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
6cde1b21
JB
1503
1504 * emacsclient.c (main): Revert part of last change, so
1505 drive-relative file names again work on Windows.
1506
ba528748
SM
15072009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
1508
1509 * emacsclient.c (main): Always pass cwd via "-dir". Pass the file
1510 names without prepending cwd to them, so Emacs uses its customary
1511 rules to determine how to interpret the file name.
1512
f213f2c0
GM
15132009-03-04 Glenn Morris <rgm@gnu.org>
1514
1515 * movemail.c (main) [MAIL_USE_POP]: Add -r to usage message.
1516
8ee7d7be
CY
15172009-02-13 Sven Joachim <svenjoac@gmx.de>
1518
1519 * movemail.c: Include time.h unconditionally.
1520 (main): Use time_t for time variables.
1521
d228a23c
GM
15222009-02-11 Glenn Morris <rgm@gnu.org>
1523
1524 * movemail.c (mbx_delimit_begin): Also write the current time.
1525
3f32be22
GM
15262009-02-10 Glenn Morris <rgm@gnu.org>
1527
1528 * movemail.c (mbx_delimit_begin, mbx_delimit_end): Write mbox rather
1529 than Babyl format. (Bug#2196)
1530
e7534fc4
AR
15312009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
1532
1533 * emacsclient.c (decode_options): Use a dummy display name under
1534 NS/Cocoa.
1535
9eb67dd9
CY
15362009-01-14 Lars Rasmusson <lars.rasmusson@gmail.com> (tiny change)
1537
1538 * ebrowse.c (matching_regexp): Fix OB1 error.
1539
b433a991
GM
15402009-01-05 Glenn Morris <rgm@gnu.org>
1541
1542 * ebrowse.c (version):
1543 * etags.c (print_version):
1544 * rcs2log (Copyright): Update copyright for 2009.
1545
81f82586
CY
15462009-01-01 Chong Yidong <cyd@stupidchicken.com>
1547
1548 * movemail.c (main): Fatal if hard links cannot be created.
1549
fd95644b
DN
15502008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
1551
1552 * emacsclient.c (start_daemon_and_retry_set_socket): Improve error
1553 checking.
1554
67c1df01
DN
15552008-12-14 Dan Nicolaescu <dann@ics.uci.edu>
1556
1557 * emacsclient.c: Include syswait.h instead of sys/types.h.
1558
f0131492 15592008-12-11 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
5445ab06 1560
d4835507
JB
1561 * emacsclient.c (WCONTINUED): New compatibility define
1562 for older systems.
5445ab06 1563
d50299d5
DN
15642008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
1565
1566 * emacsclient.c (main): Fix previous change.
1567
52016647
JB
15682008-12-10 Juanma Barranquero <lekktu@gmail.com>
1569
1570 * emacsclient.c (main): Fix mindless breakage where emacsclient
1571 does not work *at all* on Windows, even if it *can* connect.
1572
802bdb3c
DN
15732008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
1574
1575 * emacsclient.c (EMACS_DAEMON): Remove definition.
1576 (decode_options): Do not allow an empty alternate_editor on
1577 WINDOWSNT.
1578 (print_help_and_exit): Replace EMACS_DAEMON with WINDOWSNT.
1579 (start_daemon_and_retry_set_socket): Likewise.
45ce4570 1580 (main): Fail in case of not being able to connect.
802bdb3c 1581
c3f995a2
JB
15822008-12-10 Juanma Barranquero <lekktu@gmail.com>
1583
1584 * emacsclient.c [!WINDOWSNT] (EMACS_DAEMON): New define.
1585 Changes when EMACS_DAEMON is not defined:
1586 (print_help_and_exit): Don't add daemon information to help.
1587 (start_daemon_and_retry_set_socket): Make a no-op.
1588 (main): Don't set `start_daemon_if_needed' (which is initialized to 0).
1589
636b507b
DN
15902008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
1591
1592 * emacsclient.c (print_help_and_exit): Describe what an empty
1593 string argument does for --alternate-editor.
1594 (set_socket): Make it possible to not exit in case of an error.
1595 (start_daemon_and_retry_set_socket): New function.
1596 (main): Use it. Restore the NULL value for socket_name and
1597 server_file after the set_socket call.
1598
448d4085
DN
15992008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
1600
7b641241 1601 * emacsclient.c: Include <arpa/inet.h>.
448d4085 1602
938ebc4f
DN
16032008-12-01 Dan Nicolaescu <dann@ics.uci.edu>
1604
1605 * make-docfile.c (scan_lisp_file): Use xmalloc instead of malloc.
1606
3d864325
GM
16072008-11-22 Derek Peschel <dpeschel@eskimo.com> (tiny change)
1608
1609 * etags.c (add_regex): Pass correct length to re_compile_pattern.
1610
48c2dc68
CY
16112008-11-02 Chong Yidong <cyd@stupidchicken.com>
1612
1613 * emacsclient.c (window_system): Delete redundant variable.
1614 (decode_options): Don't use it.
1615 (find_tty): New function.
1616 (main): Use find_tty, and don't use window_system.
1617
d41784ee
EZ
16182008-11-01 Eli Zaretskii <eliz@gnu.org>
1619
1620 * emacsclient.c (main) [WINDOWSNT]: Don't ifdef away the call to
1621 `ttyname'.
1622 (w32_getenv): Treat $TERM specially: if not found in the
1623 environment and in the Registry, return "w32console".
1624 (ttyname) [WINDOWSNT]: New function.
1625
322ca650
AS
16262008-10-31 Andreas Schwab <schwab@suse.de>
1627
1628 * emacsclient.c (main): Don't force sending tty when in eval mode.
1629
8a8a7cd3
CY
16302008-10-30 Chong Yidong <cyd@stupidchicken.com>
1631
1632 * emacsclient.c (main): If using the current frame, send tty
1633 information to Emacs in case daemon mode needs to occupy this tty.
1634
f8baa639
JB
16352008-10-29 Juanma Barranquero <lekktu@gmail.com>
1636
bc558f3e
JB
1637 * emacsclient.c (EXTRA_SPACE): New macro.
1638 (get_server_config, set_local_socket): Use it.
1639
f8baa639
JB
1640 * makefile.w32-in ($(BLD)/sorted-doc.$(O)): Remove spurious backslash.
1641 Reported by Guillaume Conjat <gconjat.ext@orange-ftgroup.com>.
1642
f77b11a0
JB
16432008-10-29 Ulrich Mueller <ulm@gentoo.org>
1644
1645 * emacsclient.c (set_local_socket): Use TMPDIR (default /tmp)
1646 instead of hardcoded /tmp.
1647
dc1cd5f7
DN
16482008-10-13 Dan Nicolaescu <dann@ics.uci.edu>
1649
1650 * emacsclient.c (longopts, print_help_and_exit): Add -nw.
1651 (decode_options): Use getopt_long_only.
1652
7a09249b
EZ
16532008-09-30 Eli Zaretskii <eliz@gnu.org>
1654
1655 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Remove ccl.elc and
1656 codepage.elc.
1657
997ec957
CY
16582008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
1659
1660 * emacsclient.c (main): Use stdout rather than stdin to obtain the
1661 terminal (bug#427).
1662
0d80bf29
FP
16632008-08-25 Francesco Potortì <pot@gnu.org>
1664
1665 * etags.c (main): Do not use static space for the tagfile string.
1666
34a23e94
FP
16672008-08-17 Francesco Potortì <pot@gnu.org>
1668
1669 * etags.c (main): Use canonicalize_filename on tags file name.
1670 (relative_filename): Revert 3.85: do not collapse slashes here.
1671 (absolute_dirname): Remove useless call to canonicalize_filename.
1672 (canonicalize_filename): Collapse multiple slashes here.
1673
48fad8e8
DN
16742008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
1675
10d1d0af
JB
1676 * Makefile.in (INSTALLABLES): Add LIB_SRC_EXTRA_INSTALLABLES.
1677 Do not special case for NS_IMPL_COCOA.
48fad8e8 1678
6088b51f 16792008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
f4494e84
AR
1680
1681 * Makefile.in (CFLAGS): Drop -universal under NS_IMPL_COCOA.
1682 (.m.o): Dispense with GNUstep-specific flags.
1683
39b8bb9b
CY
16842008-08-05 Ulrich Mueller <ulm@gentoo.org>
1685
1686 * pop.c (socket_connection): Add conditionals for
1687 HAVE_KRB5_ERROR_TEXT and HAVE_KRB5_ERROR_E_TEXT to support
1688 compilation with MIT Kerberos and Heimdal, respectively.
1689
7c2fb837
DN
16902008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
1691
1692 * etags.c:
1693 * emacsclient.c: Remove VMS support.
1694
9e2a2647
DN
16952008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
1696
1697 Remove support for Mac Carbon.
1698 * makefile.w32-in:
1699 * emacsclient.c: Remove code for Carbon.
1700
7f619bab
DN
17012008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
1702
1703 * Makefile.in (mac-fix-env): Remove #ifdef around rule.
1704
32cc3925
AS
17052008-07-17 Andreas Schwab <schwab@suse.de>
1706
1707 * Makefile.in (INSTALL_SCRIPT): Remove duplicate definition.
1708 (LIB_STANDARD_LIBSRC): Don't define.
1709 (LOADLIBES): Remove LIB_STANDARD_LIBSRC.
1710
ba60bd44 17112008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
122e9f8f
AR
1712
1713 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
1714 NS_IMPL_COCOA.
1715
50863f58
DN
17162008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
1717
ba60bd44
JB
1718 * ntlib.h (fcloseall, fgetchar, flushall, fputchar, putw):
1719 Remove, unused.
50863f58 1720
ba60bd44 17212008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
edfda783
AR
1722
1723 * .cvsignore: Add mac-fix-env.
1724 * mac-fix-env.m: New file, automatically update
1725 ~/.MacOSX/environment.plist on OS X systems to expose environment
1726 variables inside Emacs started from icon.
1727 * Makefile.in: Add -universal to CFLAGS on OS X, add mac-fix-env to
1728 programs to build.
1729 * make-docfile.c: Add .m to list of file extensions.
1730
bba104c1
DN
17312008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
1732
1733 * movemail.c (main): Use int instead of WAITTYPE.
1734
da007124
JB
17352008-07-05 Juanma Barranquero <lekktu@gmail.com>
1736
1737 * makefile.w32-in (OTHER_PLATFORM_SUPPORT):
1738 Remove vmsproc.el and vms-patch.el.
1739
c9fc02c7
JB
17402008-06-26 Juanma Barranquero <lekktu@gmail.com>
1741
1742 * makefile.w32-in (obj): Remove w32bdf.o.
1743
f2a77c3a
DN
17442008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
1745
1746 * fakemail.c: Remove references to obsolete variables.
1747
c2cd06e6
JM
17482008-06-02 Jim Meyering <meyering@redhat.com>
1749
e914c409 1750 * ebrowse.c (xfree): Remove definition; s/xfree/free/.
5c19cd0b 1751
e914c409 1752 Remove useless if-before-free tests.
70fdbb46
JM
1753 * ebrowse.c (xfree): Likewise.
1754 * etags.c (process_file_name, free_tree, free_fdesc): Likewise.
c2cd06e6 1755 (popclass_above, Prolog_functions, Erlang_functions): Likewise.
70fdbb46 1756 * pop.c (pop_quit): Likewise.
c2cd06e6 1757
01b996ad
JB
17582008-05-30 Juanma Barranquero <lekktu@gmail.com>
1759
1760 * makefile.w32-in (lisp2): Add minibuffer.elc.
1761
2926947a
SM
17622008-05-29 Tom Tromey <tromey@redhat.com>
1763
1764 * etags.c (relative_filename): Treat "///" like "/" in filenames.
1765
10fea9c4
EZ
17662008-05-09 Eli Zaretskii <eliz@gnu.org>
1767
1768 * ntlib.c: Include sys/types.h, sys/stat.h, and errno.h.
1769 (IS_DIRECTORY_SEP): New macro.
1770 (convert_time, is_exec, stat): New functions.
1771
86914123
EZ
17722008-05-08 Eli Zaretskii <eliz@gnu.org>
1773
1774 * makefile.w32-in (lisp2): Rename epa-file-hook.elc to epa-hook.elc.
1775
58bb7d50
EZ
17762008-05-03 Eli Zaretskii <eliz@gnu.org>
1777
1778 * makefile.w32-in (lisp2): Add epa-file-hook.elc, to track the
1779 corresponding change in src/Makefile.in.
1780
63b9b605
GM
17812008-04-24 Adam Gołębiowski <adamg@pld-linux.org> (tiny change)
1782
1783 * Makefile.in (etags${EXEEXT}, ctags${EXEEXT}): Fix quote typo.
1784
4429f88c
JR
17852008-04-10 Jason Rumney <jasonr@gnu.org>
1786
1787 * makefile.w32-in (CLIENTRES): New variable and target.
1788 (TRES): Remove.
1789 ($(BLD)/emacsclientw.exe): Use $(CLIENTRES) instead of $(TRES).
1790
14b11401
SM
17912008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1792
1793 * vcdiff: Use "sccs get" rather than "get"; leave PATH alone.
1794
95de358c
RF
17952008-04-18 Steve Grubb <sgrubb@redhat.com> (tiny change)
1796
1797 * vcdiff: Use mktemp (CVE-2008-1694).
1798
6948400c
JR
17992008-04-09 Jason Rumney <jasonr@gnu.org>
1800
1801 * makefile.w32-in (distclean, maintainer-clean): New targets.
1802
afd27920
GM
18032008-03-13 Glenn Morris <rgm@gnu.org>
1804
1805 * makefile.w32-in (VERSION): Set to 23.0.60.
1806
3d193d0f
JB
18072008-03-04 Juanma Barranquero <lekktu@gmail.com>
1808
1809 * .cvsignore: Add oo.
1810
1797886f
SM
18112008-02-27 Yuri Shtil <yuris@juniper.net> (tiny change)
1812
1813 * etags.c (Perl_functions): Fix call to skip_spaces.
1814
9d2818d6
DN
18152008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
1816
1817 * Makefile.in (NO_SHORTNAMES):
1818 * emacsclient.c (NO_SHORTNAMES):
1819 * fakemail.c (NO_SHORTNAMES):
1820 * make-docfile.c (NO_SHORTNAMES):
1821 * movemail.c (NO_SHORTNAMES):
1822 * pop.c (NO_SHORTNAMES): Remove references to obsolete variable.
1823
79d48c1a
JR
18242008-02-23 Jason Rumney <jasonr@gnu.org>
1825
1826 * makefile.w32-in (MOUSE_SUPPORT): Remove duplicate tooltip.elc.
1827 (MSDOS_SUPPORT, VMS_SUPPORT): Remove.
290afd83 1828 (OTHER_PLATFORM_SUPPORT): Replace above. Add X specific files too.
79d48c1a
JR
1829 (lisp2): Add new languages.
1830 ($(DOC)): Use OTHER_PLATFORM_SUPPORT.
1831
9c61c734
JB
18322008-02-22 Juanma Barranquero <lekktu@gmail.com>
1833
1834 * makefile.w32-in (lisp2): Remove devanagari.el, kannada.el,
1835 malayalam.el, and tamil.el. Add sinhala.el.
1836
50f271cb
JB
18372008-02-20 Juanma Barranquero <lekktu@gmail.com>
1838
1839 * emacsclient.c (main) [WINDOWSNT]: Understand DRIVE:NAME,
1840 where NAME is relative to DRIVE'S current directory.
1841
d07529f3
JB
18422008-02-15 Juanma Barranquero <lekktu@gmail.com>
1843
1844 * emacsclient.c (print_help_and_exit): Show -d option on Windows.
1845
45c1955d
DN
18462008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
1847
1848 * fakemail.c: Undo previous change.
1849
deeaffe1
DN
18502008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
1851
4624371d
DN
1852 * fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional.
1853 (main): Replace MAIL_PROGRAM_NAME with its value.
1854
d07529f3 1855 * Makefile.in (REGEXP_IN_LIBC): Remove reference to obsolete variable.
deeaffe1 1856
9997dc15
SM
18572008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1858
1859 * emacsclient.c (decode_options): Pass --display implicitly if -c
1860 is specified. Only set tty if -t or -c is specified.
1861
0c55bf82
JR
18622008-02-04 Jason Rumney <jasonr@gnu.org>
1863
1864 * makefile.w32-in (lisp1): Use (), not {}.
1865
31cdf671
CY
18662008-02-04 Tom Tromey <tromey@redhat.com>
1867
d07529f3
JB
1868 * etags.c: Add "GTY" as synonym for __attribute__.
1869 Update gperf output.
31cdf671 1870
9303f985 18712008-02-01 Jason Rumney <jasonr@gnu.org>
aca7a3d2 1872
c4cc8b9a 1873 * makefile.w32-in (obj): Sync with src/Makefile.in.
aca7a3d2
MB
1874 (TOOLTIP_SUPPORT, WINDOW_SUPPORT): New definitions.
1875 (WINNT_SUPPORT): Add term/w32-win.elc.
1876 (lisp1, lisp2): Sync with lisp in src/Makefile.in.
1877
9303f985 18782008-02-01 Jason Rumney <jasonr@gnu.org>
aca7a3d2 1879
d07529f3 1880 * makefile.w32-in (obj): Add font.o and w32font.o.
aca7a3d2 1881
d07529f3 18822008-02-01 Zhang Wei <id.brep@gmail.com> (tiny change)
aca7a3d2 1883
290afd83 1884 * makefile.w32-in (lisp1): Delete ucs-tables.elc,
aca7a3d2
MB
1885 utf-8.elc, and latin-*.el.
1886
0ea5797a
SM
18872008-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
1888
bcc891c2 1889 * emacsclient.c (decode_options): Default to NULL display, as Emacs-22.
0ea5797a
SM
1890 Allow the -d option under w32 again, for those rare cases where it
1891 actually does make sense.
1892
5ab73228
JB
18932008-01-25 Juanma Barranquero <lekktu@gmail.com>
1894
1895 * emacsclient.c (set_tcp_socket): Don't send "\n" after
1896 the authentication string; there's no need to haste.
1897
702123a8
CY
18982008-01-22 Chong Yidong <cyd@stupidchicken.com>
1899
1900 * pop.c (pop_stat, pop_last): Fix last fix.
1901
76ed5e01
DN
19022008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
1903
1904 * movemail.c: Remove references to XENIX.
1905
e39a993c
DN
19062008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
1907
1908 * movemail.c:
1909 * make-docfile.c: Remove reference to symbols defined by systems
1910 not supported anymore: MAC_OS8, XENIX and STRIDE.
1911
0ebec7d3
EZ
19122008-01-12 Eli Zaretskii <eliz@gnu.org>
1913
1914 * emacsclient.c (decode_options) [WINDOWSNT]: Don't use the value
1915 of DISPLAY in the environment. Don't support -d.
1916 (print_help_and_exit) [WINDOWSNT]: Don't show the --display option.
1917 (longopts) [WINDOWSNT]: Remove --display.
1918
6eae3ad4
CY
19192008-01-10 Chong Yidong <cyd@stupidchicken.com>
1920
1921 * pop.c (pop_stat, pop_last): Check validity of string-to-integer
1922 conversion. Mistakes spotted by Nico Golde.
1923
78da39c6
GM
19242008-01-09 Glenn Morris <rgm@gnu.org>
1925
1926 * emacsclient.c: Add missing final newlines to message calls.
1927
34a14ec9 19282008-01-09 Daniel Hackney <dan@haxney.org> (tiny change)
78da39c6
GM
1929
1930 * emacsclient.c (set_socket): Add final newline to socket error message.
1931
a408ea17
GM
19322008-01-04 Glenn Morris <rgm@gnu.org>
1933
07655e62
JB
1934 * ebrowse.c (version) <emacs_copyright>: New variable.
1935 Just use current year for copyright.
a408ea17
GM
1936
1937 * etags.c (print_version):
1938 * rcs2log (Copyright): Update to 2008.
1939
0dc7a8bc
JR
19402007-11-28 Jason Rumney <jasonr@gnu.org>
1941
1942 * makefile.w32-in (VMS_SUPPORT): No longer byte-compiled.
1943
880820fe 19442007-11-27 Jan Djärv <jan.h.d@swipnet.se>
7291159e
JD
1945
1946 * pop.c (socket_connection): Remove AI_ADDRCONFIG.
1947
880820fe 19482007-11-19 Jan Djärv <jan.h.d@swipnet.se>
ee15f312
JD
1949
1950 * pop.c (socket_connection): Move realhost out of #ifdefs.
1951 Set realhost both for HAVE_GETADDRINFO and !HAVE_GETADDRINFO.
1952
880820fe 19532007-11-18 Jan Djärv <jan.h.d@swipnet.se>
33a2a872
JD
1954
1955 * pop.c (socket_connection): Use getaddrinfo if available.
1956
880820fe 19572007-11-22 Francesco Potortì <pot@gnu.org>
63f018cd 1958
65841dd8 1959 * etags.c (default_C_help) [CTAGS]: Differentiate the help string,
63f018cd 1960 as the defaults in ctags are different from etags.
63f018cd 1961
880820fe 19622007-11-15 Francesco Potortì <pot@gnu.org>
21e14641
FP
1963
1964 * etags.c: Make prototypes for extern definitions, and add all
1965 that are needed to quench warnings on 64-bit.
1966 (main): Use the same defaults for ctags as for etags: find
1967 typedefs, structure tags, macro constants, enum constants, struct
1968 members and global variables.
1969 (make_C_tag) [DEBUG]: Add debugging printout.
1970 (C_entries): In case '}' decrement bracelev before testing it.
1971
7455effc
FP
19722007-11-15 Masatake YAMATO <jet@gyve.org>
1973
1974 * etags.c (C_entries): In case '}', set fvdef to fvnone
1975 unconditioned to (!ignoreindent && lp == newlb.buffer + 1).
1976
04a697fe
DN
19772007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
1978
1979 * makefile.w32-in (obj): Remove sunfns.o.
1980
a2666217
JB
19812007-10-28 Juanma Barranquero <lekktu@gmail.com>
1982
1983 * makefile.w32-in (obj): Remove abbrev.o.
1984
7ce8671d
JB
19852007-10-26 Juanma Barranquero <lekktu@gmail.com>
1986
1987 * emacsclient.c: Add a wrapper for getenv so it also checks the
1988 registry on Windows. Suggestion and algorithm by Eli Zaretskii.
1989 Code partially based on w32_get_resource and init_environment (w32.c).
1990 (egetenv): New wrapper for getenv.
1991 (get_current_dir_name, decode_options, get_server_config)
1992 (set_local_socket, set_socket, main): Use egetenv, not getenv.
1993 (w32_get_resource, w32_getenv) [WINDOWSNT]: New functions.
1994
d22b00e5
JR
19952007-10-25 Jason Rumney <jasonr@gnu.org>
1996
1997 * emacsclient.c (sock_err_message): New function.
1998 (set_tcp_socket): Use it.
1999
c4b858e3
JB
20002007-10-09 Juanma Barranquero <lekktu@gmail.com>
2001
2002 * emacsclient.c (print_help_and_exit): Fix space to improve
2003 alignment in output messages.
2004
dbf60b07
JR
20052007-09-27 Jason Rumney <jasonr@gnu.org>
2006
2007 * makefile.w32-in (emacsclient, emacsclientw): Link to COMCTL32.
2008
2009 * emacsclient.c (w32_window_app): Init common controls when windowed.
2010
165e85b2
GM
20112007-09-21 Glenn Morris <rgm@gnu.org>
2012
2013 * emacstool.c: Remove file.
2014 * Makefile.in (emacstool, nemacstool, xvetool, xveterm):
2015 Delete targets built from emacstool.
2016
c1b8e896
SM
20172007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
2018
2019 * emacsclient.c (decode_options): -t implies -c.
2020
cb06b8dc
SM
20212007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2022
2023 * emacsclient.c (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP)
2024 (IS_ANY_SEP): Only define if !defined(HAVE_GET_CURRENT_DIR_NAME).
2025 (main_argc): Remove.
2026 (strprefix): Use strncmp.
2027
c801ad51
JR
20282007-09-20 Jason Rumney <jasonr@gnu.org>
2029
2030 * emacsclient.c (main) [SIGSTOP]: Change conditional from WINDOWSNT.
2031
31fa6595
SM
20322007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2033
2034 * emacsclient.c (current_frame): Change the default.
2035 (longopts): Replace --current-frame by --create-frame.
2036 (decode_options): Reverse the meaning of -c.
2037 (print_help_and_exit): Update help text accordingly.
2038 (main): Remove the -version and -good-version messages.
2039
58573230
GM
20402007-09-12 Glenn Morris <rgm@gnu.org>
2041
2042 * Makefile.in (SOURCES, unlock, relock): Delete.
2043
bfd9ce71
GM
20442007-08-29 Glenn Morris <rgm@gnu.org>
2045
2046 * makefile.w32-in (VERSION): Increase to 23.0.50.
2047
8d9cc0b7
MB
20482007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
2049
2050 * emacsclient.c (w32_execvp): Move definition before use.
2051 (decode_options): Don't use a tty on mac carbon or windows.
2052
20532007-08-29 Jason Rumney <jasonr@gnu.org>
2054
31fa6595 2055 * emacsclient.c (SEND_STRING, SEND_QUOTED): Remove obfuscation macros.
8d9cc0b7
MB
2056 (quote_argument, set_tcp_socket, handle_sigcont, handle_sigtstp):
2057 (main): Expand removed macros inline.
2058 (main) [WINDOWSNT]: Don't call ttyname. Don't recognize -suspend
2059 option.
2060 (main) [NO_SOCKETS_IN_FILE_SYSTEM]: Don't call init_signals.
2061
880820fe 20622007-08-29 Károly Lőrentey <lorentey@elte.hu>
8d9cc0b7
MB
2063
2064 * emacsclient.c (signal.h): New include.
2065 (sys/stat.h, errno.h): Always include, even on WINDOWSNT.
31fa6595
SM
2066 (DIRECTORY_SEP, IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
2067 Copy definitions here from src/lisp.h.
2068 (main_argc, main_argv, current_frame, window_system, tty): New vars.
8d9cc0b7
MB
2069 (longopts): Add tty, current-frame.
2070 (xmalloc, xstrdup): New functions.
2071 (get_current_dir_name): New function, copied from src/sysdep.c.
2072 (decode_options): Set display from environment. Add tty and
2073 current_frame options. Make --no-wait imply --current-frame,
2074 except when it is the only option given. Make sure no frame is
2075 opened when --current-frame is set.
2076 (print_help_and_exit): Document tty and current-frame options.
2077 (fail): Change arguments to void.
2078 (main): When sockets are not defined, set main_argc, main_argv,
2079 and call fail() with no arguments.
2080 (emacs_socket): New variable (moved out from main `s').
2081 (quote_file_name): Rename to quote_argument.
2082 (quote_argument): New name for old quote_file_name.
2083 (unquote_argument, strprefix, pass_signal_to_emacs)
2084 (handle_sigcont, handle_sigtstp, init_signals): New functions.
2085 (set_local_socket): Initialize saved_errno to 0. If socket-name
2086 is too long, call `fail' rather than `exit'.
2087 (main): Doc update. Set main_argc, main_argv. New var `str'.
2088 Don't need a filename or argument if tty or window_system set.
2089 Call fail with no arguments. Use get_current_dir_name to send
2090 over the current directory. Send version number to Emacs for
2091 verification. If tty is set, check TERM, and pass name and type
2092 to Emacs. Pass window_system to Emacs. Move sending of eval to
2093 optind loop. Send -position, -file to Emacs. Call fsync after
31fa6595
SM
2094 fflush. Check for a client/server version match.
2095 Handle -emacs-pid, -window-system-unsupported, -print, -error, and
2096 -suspend commands. Don't exit prematurely on --no-wait, let Emacs
2097 close the connection for us. When creating a new frame, send
8d9cc0b7
MB
2098 environment and pwd to Emacs. Send current-frame to Emacs.
2099
ca4ea90f
EZ
21002007-08-25 Eli Zaretskii <eliz@gnu.org>
2101
2102 * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
2103 Prepend "-" to the command, in case srcdir=. and file is copied
2104 into itself.
2105
cacc7b51
GM
21062007-07-25 Glenn Morris <rgm@gnu.org>
2107
2108 * Relicense all FSF files to GPLv3 or later.
2109
2110 * COPYING: Switch to GPLv3.
2111
880820fe 21122007-07-17 Francesco Potortì <pot@gnu.org>
180f5b99
FP
2113
2114 * etags.c (C_entries): Reset the fvdef machine when out of function.
21b2cdc7
FP
2115 (PRINT_UNDOCUMENTED_OPTIONS_HELP): #define as FALSE if undefined.
2116 (print_help): Use it in if() rather than #if.
2117 (print_help): Conditionally print help about --no-line-directive.
180f5b99 2118
9724908a
EZ
21192007-07-16 Eli Zaretskii <eliz@gnu.org>
2120
2121 * makefile.w32-in (clean): Don't delete *~.
2122
5cf9ca93
GM
21232007-06-07 Glenn Morris <rgm@gnu.org>
2124
2125 * etags.c (print_version): Add `emacs_copyright' string, for
2126 easier automatic updating.
2127
880820fe 21282007-05-18 Francesco Potortì <pot@gnu.org>
cabfc1bc
FP
2129
2130 * etags.c: Extern definitions of some more pointer functions for
2131 standalone compilation, especially important for 64bit platforms.
2132 (main, print_help): --members is now the default for etags.
2133 (C_entries): Parse start of C comment as a space == end of token.
2134 This is not necessary for C++ comment, already parsed as newline.
2135
07016031
GM
21362007-04-26 Glenn Morris <rgm@gnu.org>
2137
2138 * makefile.w32-in (VERSION): Increase to 22.1.50.
2139
7dfc4cda
CY
21402007-06-02 Chong Yidong <cyd@stupidchicken.com>
2141
2142 * Version 22.1 released.
2143
880820fe 21442007-02-26 Francesco Potortì <pot@gnu.org>
11d2d983 2145
d620ddb3 2146 * Makefile.in (etags, ctags): Define EMACS_NAME as "GNU Emacs".
11d2d983 2147
0971f887
GM
21482007-02-20 Ulrich Mueller <ulm@kph.uni-mainz.de> (tiny change)
2149
2150 * Makefile.in (EMACS, EMACSOPT): New variables.
2151 (blessmail): Use `--no-site-file' when compiling.
2152
880820fe 21532007-02-05 Francesco Potortì <pot@gnu.org>
933ccc8c
FP
2154
2155 * etags.c (default_C_help, Cplusplus_help, PHP_help, print_help)
2156 (main): Now --members is the default for etags, not for ctags yet.
2157
d881944f 21582007-02-04 Per Cederqvist <ceder@ingate.com> (tiny change)
953dea63 2159
47dad44f 2160 * etags.c (gperf, in_word_set): Change attribute for Java to
953dea63
FP
2161 (C_JAVA & ~C_PLPL). The previous change introduced 2004-09-13 was
2162 broken, as (C_JAVA & !C_PLPL) always evaluates to 0. This caused
2163 import, package, extends, implements and interface to be treated
2164 specially for all kinds of C-style files, not just Java files.
2165
880820fe 21662007-01-02 Francesco Potortì <pot@gnu.org>
ed8bbc0e 2167
47dad44f 2168 * etags.c (longopts): New undocumented option --no-duplicates.
ed8bbc0e
FP
2169 (no_duplicates): Static variables for the above option.
2170 (print_help): Do not print help for --no-warn, now undocumented.
2171 (add_node): Allow duplicate tags in ctags mode unless --no-duplicates.
56c0d866 2172 (main): Pass the -u option to sort in ctags mode.
ed8bbc0e 2173
880820fe 21742006-12-28 Francesco Potortì <pot@gnu.org>
18f9bf25
FP
2175
2176 * etags.c (readline): When creating a relative file name from a
2177 #line directive, leave the file name alone. The previous
a7c29764 2178 behavior was to make it relative to the tags file directory,
18f9bf25
FP
2179 under the hypothesis that the #line directive file name was
2180 relative to the directory of the tagged file. That hypothesis is
2181 wrong with Cpp and Lex.
17d5f8a6 2182 (Makefile_targets): Do not include spaces in tag names.
18f9bf25 2183
5e059fc1
EZ
21842006-12-22 Eli Zaretskii <eliz@gnu.org>
2185
2186 * makefile.w32-in (make-docfile, ctags, etags, ebrowse, hexl)
2187 (movemail, fakemail, sorted-doc, digest-doc, emacsclient)
47dad44f 2188 (test-distrib, $(DOC), all): Depend on stamp_BLD instead of $(BLD).
5e059fc1
EZ
2189 ($(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O))
2190 ($(BLD)/sorted-doc.$(O) $(BLD)/digest-doc.$(O))
2191 ($(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS))
2192 ($(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O))
2193 ($(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O)): Depend on stamp_BLD.
6808dce1 2194 (clean): Delete stamp_BLD.
5e059fc1 2195
880820fe 21962006-12-20 Francesco Potortì <pot@gnu.org>
bd3b41c6
FP
2197
2198 * etags.c (C_entries): DEFUN names were longer by one: corrected.
2199
0e0dced5
JB
22002006-12-18 Juanma Barranquero <lekktu@gmail.com>
2201
2202 * emacsclient.c [WINDOWSNT] (set_fg, get_wc): New variables.
2203 [WINDOWSNT] (w32_find_emacs_process, w32_give_focus): New functions.
2204 (main) [WINDOWSNT]: Remove code to release the focus; call
2205 w32_give_focus instead.
2206
4472aef4
JB
22072006-12-15 Juanma Barranquero <lekktu@gmail.com>
2208
2209 * emacsclient.c (w32_execvp): New function; wrapper for `execvp'.
2210 (execvp) [WINDOWSNT]: Redefine to `w32_execvp'.
2211 (fail): Remove Windows-specific fix (subsumed into w32_execvp).
2212 Suggestions and comment by Eli Zaretskii.
2213
12f7728e 22142006-12-06 Christoph Conrad <christoph.conrad@gmx.de>
c388769e
JB
2215
2216 * makefile.w32-in ($(BLD)/emacsclient.exe, $(BLD)/emacsclientw.exe):
2217 Use $(USER32) for compatibility with Visual Studio .NET 2003.
2218
310afa17
JB
22192006-11-30 Juanma Barranquero <lekktu@gmail.com>
2220
2221 * emacsclient.c (emacs_pid): New variable.
2222 (message): Remove leftover code.
2223 (get_server_config): Set emacs_pid. Don't allow Emacs to grab the
2224 focus yet; emacsclient can still display an informational message
2225 before sending requests to Emacs.
2226 (main): Allow Emacs to grab the focus. Simplify message() call.
2227
22282006-11-30 Michael Mauger <mmaug@yahoo.com>
2229
2230 * emacsclient.c (message): Make sure the message is properly
2231 written even if it contains printf escapes, and flush the result.
2232 (set_tcp_socket): Make the message for non-local connections
2233 informational rather than an error.
2234
8c57275b 22352006-11-28 Kevin Ryde <user42@zip.com.au>
9b492fad
FP
2236
2237 * etags.c (readline): Check for double quote after #line.
2238
880820fe 22392006-11-28 Jan Djärv <jan.h.d@swipnet.se>
9b492fad
FP
2240
2241 * etags.c (readline): sscanf could in principle return 2.
2242
880820fe 22432006-11-28 Francesco Potortì <pot@gnu.org>
9b492fad
FP
2244
2245 * etags.c (readline): lno is unsigned.
2246 (TeX_commands): Use p++ (rather than *p++) to increment p.
2247 (Lua_functions): Explicitly discard LOOKING_AT's return value.
2248
4d91c8f9
JB
22492006-11-27 Juanma Barranquero <lekktu@gmail.com>
2250
2251 * makefile.w32-in (TRES): New macro (copied from nt/makefile.w32-in).
2252 ($(TRES)): New rule (copied from nt/makefile.w32-in).
2253 ($(BLD)/emacsclientw.exe): Add dependency.
2254
340d34a5
EZ
22552006-11-27 Eli Zaretskii <eliz@gnu.org>
2256
d620ddb3 2257 * makefile.w32-in ($(BLD)/emacsclient.$(O)): Depend on makefile.w32-in.
340d34a5 2258
7dce1990
JB
22592006-11-25 Juanma Barranquero <lekktu@gmail.com>
2260
2261 * makefile.w32-in (VERSION): New macro.
2262 (ECLIENT_CFLAGS): Add -DVERSION.
2263
410797a5 22642006-11-25 Jason Rumney <jasonr@gnu.org>
402767e4
JR
2265
2266 * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Use isalpha().
2267
410797a5 22682006-11-24 Michael Mauger <mmaug@yahoo.com>
cb0297bb 2269
4472aef4
JB
2270 * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Support absolute
2271 file names with forward slashes.
cb0297bb 2272
30aa95ce
JB
22732006-11-23 Juanma Barranquero <lekktu@gmail.com>
2274
2275 * emacsclient.c (print_help_and_exit): Tweak message contents and
2276 tabs/spaces to improve alignment in message boxes.
2277
42073bfb
JB
22782006-11-22 Lennart Borgman <lennart.borgman.073@student.lu.se>
2279
2280 * emacsclient.c: Include <stdarg.h>.
2281 [WINDOWSNT]: Include <windows.h>.
2282 (w32_check_console_app): New function.
2283 (message): New function.
2284 (decode_options, print_help_and_exit, fail, main)
2285 (initialize_sockets, get_server_config, set_tcp_socket)
2286 (set_local_socket, set_socket): Use message().
2287
32dd9283 22882006-11-13 Jason Rumney <jasonr@gnu.org>
1ac3c910 2289
32dd9283
JR
2290 * emacsclient.c [WINDOWSNT]: Let config.h define HAVE_SOCKETS and
2291 HAVE_INET_SOCKETS.
2292
1bbea9fc
JB
22932006-11-13 Juanma Barranquero <lekktu@gmail.com>
2294
2295 * makefile.w32-in (emacsclient): Depend also on emacsclientw.exe.
2296 ($(BLD)/emacsclientw.exe): New target.
2297 (install): Install emacsclientw.exe.
2298 ($(BLD)/cvtmail.$(O), $(BLD)/emacstool.$(O)): Remove obsolete targets.
2299 (ECLIENT_CFLAGS): Remove redundant flags.
2300
2301 * emacsclient.c [WINDOWSNT]: Undef _WINSOCKAPI_ and _WINSOCK_H.
2302
a48db427
JR
23032006-11-13 Jason Rumney <jasonr@gnu.org>
2304
2305 * makefile.w32-in ($(BLD)/emacsclient.$(O)): Use CFLAGS.
2306
21f89bb7 23072006-11-10 David Reitter <david.reitter@gmail.com>
ed4a3730
JB
2308
2309 * emacsclient.c [!WINDOWSNT]: Include <sys/types.h>.
2310
d5abc12c
JB
23112006-11-08 Juanma Barranquero <lekktu@gmail.com>
2312
ed4a3730
JB
2313 * emacsclient.c (get_server_config) [WINDOWSNT]: Declare set_fg as
2314 FARPROC to avoid a compiler warning.
d5abc12c 2315
18b8c421
JB
23162006-11-07 Juanma Barranquero <lekktu@gmail.com>
2317
88b46d84
JB
2318 * emacsclient.c (get_server_config) [WINDOWSNT]: Look for the server
2319 file on APPDATA if it doesn't exist on HOME, even if HOME is defined.
2320
18b8c421
JB
2321 * emacsclient.c (get_server_config): Extract also the Emacs pid
2322 from the server file. On Windows, try to force the Emacs frame to
2323 the foreground.
2324
b03d27bd
JB
23252006-11-06 Juanma Barranquero <lekktu@gmail.com>
2326
21f89bb7 2327 * emacsclient.c (longopts) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't show
b03d27bd
JB
2328 option --socket-name.
2329 (decode_options): Don't get EMACS_SERVER_FILE here, it could override
2330 command line options.
21f89bb7 2331 (decode_options) [!NO_SOCKETS_IN_FILE_SYSTEM]: Don't parse "-s" option.
b03d27bd
JB
2332 (fail): Don't check for missing arguments, it is now done in set_socket.
2333 (file_name_absolute_p): New function (loosely based on the one in
2334 fileio.c).
2335 (initialize_sockets): Don't check for duplicate loading of Winsock.
2336 (get_server_config): Only try relative paths in the default
2337 directory locations.
2338 (set_tcp_socket): Don't call INITIALIZE(). Warn when connecting to
2339 a remote server.
2340 (set_socket): Call INITIALIZE(). Search explicit command-line
2341 arguments, then environment variable EMACS_SERVER_FILE, then implicit
2342 socket paths, before trying the alternate editor.
2343 (main): Use file_name_absolute_p.
2344
b20d6154
EZ
23452006-11-04 Eli Zaretskii <eliz@gnu.org>
2346
2347 * makefile.w32-in (../src/$(BLD)/temacs.exe): Create as temporary
2348 file if it doesn't already exist.
2349
9c92edca
JB
23502006-11-03 Juanma Barranquero <lekktu@gmail.com>
2351
2352 * emacsclient.c (initialize_sockets): Don't initialize Winsock
2353 more than once.
2354
b6ce9c46
JB
23552006-11-03 Mark Davies <mark@mcs.vuw.ac.nz>
2356
2357 * Makefile.in (INSTALL_SCRIPT): New macro.
2358 ($(DESTDIR)${archlibdir}, install): Use it, instead of INSTALL_PROGRAM.
2359
4418616b
JB
23602006-11-02 Juanma Barranquero <lekktu@gmail.com>
2361
2362 * grep-changelog: When called with no arguments (not even a
2363 filter), show help instead of blindingly dumping every single
2364 ChangeLog available. Doc fix. Update version.
2365
1e7823d0
JB
23662006-11-02 Tim Van Holder <tim.vanholder@gmail.com> (tiny change)
2367
2368 * emacsclient.c [WINDOWSNT]: Define HAVE_INET_SOCKETS.
2369 [!WINDOWSNT]: Include <netinet/in.h> if available.
2370 [HAVE_SOCKETS]: Also require HAVE_INET_SOCKETS.
2371 (IOCTL, IOCTL_BOOL_ARG): Remove.
2372 (set_tcp_socket): Don't set the socket in blocking mode.
2373 Remove c_arg.
2374
ebc20ca0
JB
23752006-11-01 Juanma Barranquero <lekktu@gmail.com>
2376
2377 * emacsclient.c (fail) [WINDOWSNT]: Force the first argv passed to
2378 execvp to point to alternate_editor (otherwise .BAT scripts can't run).
2379
880820fe 23802006-10-31 Óscar Fuentes <ofv@wanadoo.es> (tiny change)
411b80a5
JB
2381
2382 * emacsclient.c [WINDOWSNT]: Include <malloc.h> and <stdlib.h>.
2383 (close_winsock): Declare as __cdecl.
2384
880820fe 23852006-10-31 Jan Djärv <jan.h.d@swipnet.se>
95d0feaa
JB
2386
2387 * emacsclient.c [!WINDOWSNT]: Include <fcntl.h> if available.
2388 (set_tcp_socket): Prefer O_NONBLOCK, then O_NDELAY, then FIONBIO
2389 to set the socket in non-blocking mode.
2390
e35fc962
JB
23912006-10-31 Tim Van Holder <tim.vanholder@gmail.com> (tiny change)
2392
d4fa60c8 2393 * emacsclient.c [!WINDOWSNT]: Include <netinet/in.h> and <sys/ioctl.h>.
e35fc962
JB
2394 (INVALID_SOCKET): Define.
2395 (initialize_sockets): Put #endif at the right place.
2396 (set_local_socket): Use progname, not argv[0].
2397
ecc54057
JB
23982006-10-31 Juanma Barranquero <lekktu@gmail.com>
2399
2400 * makefile.w32-in (ALL): Add emacsclient.
2401 (ECLIENT_CFLAGS, ECLIENTOBJS): New macros.
2402 (emacsclient, $(BLD)/emacsclient.exe): New targets.
2403 (install): Install emacsclient.
2404
2405 * emacsclient.c: Add support for TCP sockets.
2406 (SEND_STRING, SEND_QUOTED, HSOCKET, CLOSE_SOCKET, IOCTL)
2407 (INITIALIZE): New macros.
2408 (IOCTL_BOOL_ARG): New typedef.
2409 (server_file): New global variable.
2410 (longopts): New option --server-file.
2411 (decode_options): Process new option --server-file and environment
2412 variable EMACS_SERVER_FILE.
2413 (print_help_and_exit): Document new option.
2414 (fail): If no connection available and no alternate editor,
2415 suggest using options to make them explicit.
2416 (AUTH_KEY_LENGTH, SEND_BUFFER_SIZE): New constants.
2417 (send_buffer, sblen): New variables.
31fa6595 2418 (send_to_emacs): New function to buffer output and send it with `send'.
ecc54057
JB
2419 (quote_file_name): Use SEND_STRING.
2420 (close_winsock, initialize_sockets): New functions to load and
2421 unload Winsock.
2422 (get_server_config, set_tcp_socket): New functions to create and
2423 set up TCP sockets.
2424 (set_local_socket): New function to create and set up Unix
2425 socket (code moved from previous implementation).
10d1d0af 2426 (set_socket): New function to choose between TCP and Unix sockets.
ecc54057
JB
2427 (main): Use SEND_STRING and SEND_QUOTED. Most code moved to
2428 set_local_socket. Use set_socket. Get answers from server.el with
2429 recv(), not file stream functions.
2430
70846e2a
EZ
24312006-10-09 Eli Zaretskii <eliz@gnu.org>
2432
2433 * makefile.w32-in (../src/config.h): Fix error message.
2434
e2247cd0
EZ
24352006-09-30 Eli Zaretskii <eliz@gnu.org>
2436
2437 * .cvsignore: Add blessmail.
2438
45a2056c
JB
24392006-09-15 Jay Belanger <belanger@truman.edu>
2440
2441 * COPYING: Replace "Library Public License" by "Lesser Public
2442 License" throughout.
2443
880820fe 24442006-08-09 Jan Djärv <jan.h.d@swipnet.se>
1f4edc37 2445
ecc54057 2446 * etags.c (readline): Expect sscanf returns >= 1.
ea90c5d3 2447 (readline): Change position on %n and \" in sscanf.
1f4edc37 2448
1520a816
JD
24492006-08-07 Masatake YAMATO <jet@gyve.org>
2450
ecc54057
JB
2451 * etags.c (readline): Expect sscanf returns 2, not 1.
2452
867cc23e
JD
24532006-08-07 Masatake YAMATO <jet@gyve.org>
2454
9984b9d5 2455 * etags.c (TEX_mode): Check getc returns EOF.
867cc23e
JD
2456 File ended without newline causes infinite loop.
2457
6088b51f 24582006-07-30 Adrian Aichner <adrian@xemacs.org> (tiny change)
fc185ae6 2459
ecc54057 2460 * etags.c: It's XEmacs, not Xemacs: change all the occurrences.
fc185ae6 2461
880820fe 24622006-07-30 Francesco Potortì <pot@gnu.org>
fc185ae6
FP
2463
2464 * etags.c [ETAGS_REGEXPS]: Now is unconditionally defined.
2465 [LONG_OPTIONS]: Changed to NO_LONG_OPTIONS, which is undefined.
2466 (Objc_suffixes): Suggest using --lang=c for full help.
e1dbe924 2467 (C_entries): Initialize savetoken to 0 to shut up the compiler.
fc185ae6 2468
116e754b
AS
24692006-07-20 Andreas Schwab <schwab@suse.de>
2470
2471 * fakemail.c (fatal): Drop second parameter and treat first
2472 parameter as a plain string. Callers changed.
2473
2381d38d
DN
24742006-07-18 Dan Nicolaescu <dann@ics.uci.edu>
2475
2476 * ebrowse.c (usage, version): Mark as NO_RETURN.
2477
2478 * emacsclient.c (print_help_and_exit): Likewise.
2479
880820fe 24802006-07-10 Francesco Potortì <pot@gnu.org>
327891eb
FP
2481
2482 * etags.c (absolute_filename): Free unused space (cosmetic change).
2483 (in_word_set): In C, also tag #undef symbols.
2484
7cb93181
EZ
24852006-06-09 Eli Zaretskii <eliz@gnu.org>
2486
2487 * yow.c: Remove file.
2488
2489 * makefile.w32-in ($(BLD)/yow.$(O)): Remove target.
2490
2491 * Makefile.in (UTILITIES): Remove yow${EXEEXT}.
2492 yow${EXEEXT}: Remove target.
2493
0f29c66d
MY
24942006-06-04 Masatake YAMATO <jet@gyve.org>
2495
63fbb644 2496 * ebrowse.c (main): Exit with EXIT_FAILURE if BROWSE file
0f29c66d
MY
2497 doesn't exist, is not seekable, not is failed in ftall.
2498
a941b26b
EZ
24992006-06-03 Eli Zaretskii <eliz@gnu.org>
2500
9781fb53
EZ
2501 * makefile.w32-in (ALL): Add sorted-doc and digest-doc.
2502 ($(BLD)/sorted-doc.exe, $(BLD)/digest-doc.exe)
2503 ($(BLD)/test-distrib.exe): New targets.
2504 (sorted-doc, digest-doc, test-distrib): New targets.
2505 (install): Install sorted-doc.exe and digest-doc.exe.
2506 ($(BLD)/sorted-doc.$(O)): Update dependencies.
2507
1b178b99
EZ
2508 * digest-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
2509 (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
2510 terminal device.
2511
ae85efdb
EZ
2512 * sorted-doc.c [DOS_NT] <top level>: Include fcntl.h and io.h.
2513 [WINDOWSNT] <top level>: Don't redeclare malloc.
2514 (main) [DOS_NT]: Switch stdin to binary mode, if it is not a
2515 terminal device.
6088b51f 2516 (main): Initialize bp, to avoid compiler warnings.
ae85efdb 2517
a941b26b
EZ
2518 * makefile.w32-in: Delete traces of leditcfns.c.
2519
2520 * leditcfns.c: Remove file.
2521
880820fe 25222006-05-23 Francesco Potortì <pot@gnu.org>
8a6d5da7 2523
31fa6595
SM
2524 * pop.c (pop_open, socket_connection, KPOP_SERVICE):
2525 Add comments explaining why the "kpop" service is never used.
8a6d5da7 2526
642c61f3
EZ
25272006-05-13 Eli Zaretskii <eliz@gnu.org>
2528
2529 * makefile.w32-in (lisp1): Add fringe.elc.
2530
880820fe 25312006-05-02 Francesco Potortì <pot@gnu.org>
7e237d24
FP
2532
2533 * etags.c (Perl_functions): Free space allocated for var package.
2534 (Erlang_functions): Possibly free space allocated for var last.
2535 (Prolog_functions): Possibly free space allocated for var last.
2536
7c47913b
DN
25372006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
2538
7fe8b491
DN
2539 * sorted-doc.c (main): Initialize docs to NULL.
2540
cdeda579
DN
2541 * yow.c (yow): Free buf.
2542
7c47913b
DN
2543 * etags.c: Delete c-indentation-style local variable.
2544
2ef88a94
RS
25452006-04-29 Richard Stallman <rms@gnu.org>
2546
5e5b35c7
RS
2547 * movemail.c (main): Check for negative value from `read'.
2548
2ef88a94
RS
2549 * fakemail.c (read_header): Give fatal error if input has no header.
2550
d65b4235
PE
25512006-04-02 Paul Eggert <eggert@cs.ucla.edu>
2552
2553 * b2m.c (main): Don't include <limits.h>.
2554 (TM_YEAR_BASE): New macro.
2555 (TM_YEAR_IN_ASCTIME_RANGE): Don't define if already defined, so
2556 that s/ files can override this. Use the more-conservative range
2557 1000-9999.
2558 (main): Check for asctime returning NULL.
2559 * fakemail.c: Likewise.
2560
f5565804
PE
25612006-03-27 Paul Eggert <eggert@cs.ucla.edu>
2562
2563 * b2m.c: Include <limits.h>.
2564 (TM_YEAR_IN_ASCTIME_RANGE): New macro.
2565 (main): Check for out-of-range time stamps.
2566 * fakemail.c: Likewise.
2567
90c9c343
AS
25682006-03-18 Andre Spiegel <spiegel@gnu.org>
2569
2570 * vcdiff: Use "echo" as a default for $echo, otherwise we'll
2571 execute $DIFF twice, and once with the wrong options.
2572
a6a2b5d4
EZ
25732006-02-23 Claudio Fontana <claudio@gnu.org>
2574
9e2bcc86
EZ
2575 * Makefile.in (install, uninstall): Add DESTDIR variable to
2576 support staged installations.
a6a2b5d4 2577
ef3f69f9
EZ
25782005-12-30 Eli Zaretskii <eliz@gnu.org>
2579
2580 * makefile.w32-in (MOUSE_SUPPORT): Add tooltip.elc.
fc8dc7cf
EZ
2581 (lisp1): Add rfn-eshadow.elc, international/utf-16.elc, image.elc,
2582 international/fontset.elc, dnd.elc, mwheel.elc, and tool-bar.elc.
2583 Rearrange the list to be similar to $(shortlisp) in
2584 src/Makefile.in.
ef3f69f9
EZ
2585 (lisp2): Add language/kannada.el, emacs-lisp/syntax.elc,
2586 emacs-lisp/timer.elc, jka-cmpr-hook.elc, font-lock.elc,
2587 jit-lock.elc. Rearrange the list to be similar to $(shortlisp) in
2588 src/Makefile.in.
2589
30cfcf7f
RS
25902005-12-22 Richard M. Stallman <rms@gnu.org>
2591
2592 * Makefile.in (update-game-score.o): Delete spurious final `\'.
2593
ecc54057 25942005-11-18 Hideki IWAMOTO <h-iwamoto@kit.hi-ho.ne.jp> (tiny change)
2e0bea68
FP
2595
2596 * etags.c (main): Cxref mode writes to stdout: do not close tagf,
2597 which was never opened.
2598
283879ef 25992005-10-20 Olli Savia <ops@iki.fi> (tiny change)
ce0ae3a9
EZ
2600
2601 * etags.c: Undef STDIN if defined. (LynxOS defines it in system
2602 header files.)
2603
880820fe 26042005-09-27 Francesco Potortì <pot@gnu.org>
55102b5d
FP
2605
2606 * etags.c: Preliminary Forth support.
2607 (prolog_pr): Cast strlen to int before comparison.
2608 (LOOKING_AT, LOOKING_AT_NOCASE): Let the preprocessor check that
2609 the second argument is indeed a literal string.
b9509712 2610 (main): In append mode, sort the tags file after writing it.
55102b5d
FP
2611
26122005-09-27 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
2613
2614 * etags.c (longopts, print_help, main): The -a (--append) option
2615 can be used in ctags also; for one, the Linux make file uses it.
2616
41ea4df8
CY
26172005-09-20 Chong Yidong <cyd@stupidchicken.com>
2618
2619 * ebrowse.c (add_sym): Compare namespace names instead of
2620 namespace objects. This prevents the parser from incorrectly
2621 treating classes whose superclass is in another namespace.
2622
5c4757d3
RS
26232005-09-15 Richard M. Stallman <rms@gnu.org>
2624
2625 * Makefile.in (update-game-score.o): New target.
10d1d0af 2626 Compile and link this program separately.
5c4757d3
RS
2627 (update-game-score${EXEEXT}): Use GETOPTDEPTS.
2628
df1b2142
JR
26292005-09-11 Jason Rumney <jasonr@gnu.org>
2630
ecc54057 2631 * makefile.w32-in (../src/config.h): Don't overwrite. Print a
df1b2142 2632 message instead.
31fa6595 2633 (../src/paths.h): Remove.
df1b2142 2634
c638055f
JB
26352005-07-27 Juanma Barranquero <lekktu@gmail.com>
2636
2637 * .cvsignore: Don't ignore fns-* and fns.el, which are no longer
2638 generated. Ignore also ctags.c and getopt.h.
2639
2640 * makefile.w32-in (clean): Delete getopt.h.
2641 (getopt.h): New rule.
2642
9eff9fe3
PE
26432005-07-26 Paul Eggert <eggert@cs.ucla.edu>
2644
2645 Merge gnulib getopt implementation into Emacs.
2646
2647 * Makefile.in (mostlyclean): Remove getopt.h, getopt.h-t.
2648 (GETOPT_H): New macro, from gnulib.
2649 (getopt.h): New rule, from gnulib.
2650 (GETOPTOBJS): Now autoconfigured.
2651 (GETOPTDEPS): getopt.h is now autoconfigured.
2652 (getopt.o, getopt1.o): Depend on $(GETOPT_H), not ${srcdir}/getopt.h.
2653 (getopt.o): Depend on ${srcdir}/gettext.h.
2654 (movemail.o): Depend on $(GETOPT_H).
2655 * getopt.c, getopt1.c: Sync from gnulib.
2656 * getopt_.h, getopt_int.h, gettext.h: New files, from gnulib.
2657 * getopt.h: Removed (now is getopt_.h).
2658
ec641d50
KR
26592005-07-13 Ken Raeburn <raeburn@gnu.org>
2660
0e0dced5
JB
2661 * pop.c: Don't include des.h (or variants thereof); krb.h will do it.
2662 (sendline): Add the \r\n to the line in a temporary buffer, and write
2663 it all at once.
ec641d50 2664
a0ec7a4a
LK
26652005-07-04 Lute Kamstra <lute@gnu.org>
2666
2667 Update FSF's address in GPL notices.
2668
0e0dddda
EZ
26692005-06-13 Eli Zaretskii <eliz@gnu.org>
2670
2671 * makefile.w32-in ($(DOC)): Fix last change.
2672
5a77c8e2
EZ
26732005-06-12 Eli Zaretskii <eliz@gnu.org>
2674
2675 * makefile.w32-in ($(DOC)): Depend on make-docfile.exe,
2676 temacs.exe, and the preloaded *.elc files. This avoids
2677 unnecessary dumping and DOC rebuilding.
2678
1a8fb426
EZ
26792005-06-04 Eli Zaretskii <eliz@gnu.org>
2680
2681 * ntlib.h (fileno): Don't define if already defined.
2682
7235a58f
TTN
26832005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
2684
2685 * yow.c (setup_yow): Use EXIT_FAILURE in case no separators found.
2686 (yow): Use EXIT_FAILURE in case of memory error.
2687
5063dbbf
YM
26882005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2689
2690 * make-docfile.c (DIRECTORY_SEP): New macro.
2691 (IS_DIRECTORY_SEP): Use it.
2692
880820fe 26932005-03-18 Jan Djärv <jan.h.d@swipnet.se>
5b9562c3
JD
2694
2695 * emacsclient.c: Avoid expansion of getcwd when defined as a macro.
2696
ba025f6d
YM
26972005-03-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2698
2699 * make-docfile.c: Undo previous change.
2700
a9eedf40
AS
27012005-02-04 Andreas Schwab <schwab@suse.de>
2702
0e0dced5
JB
2703 * movemail.c (fatal): Accept third parameter and pass down to error.
2704 (pfatal_with_name): Pass error string as format parameter instead of
2705 as part of format string.
a9eedf40
AS
2706 (pfatal_and_delete): Likewise.
2707 (main): Adjust call to fatal.
2708 (xmalloc): Likewise.
2709
5a92a9eb
RS
27102005-01-29 Richard M. Stallman <rms@gnu.org>
2711
2712 * movemail.c (popmail): Don't use Errmsg as format string.
2713
e6973a25
ST
27142004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2715
0e0dced5 2716 * make-docfile.c: Include stdlib.h even if WINDOWSNT is not defined.
e6973a25 2717
1bb3da38
AS
27182004-12-15 Andreas Schwab <schwab@suse.de>
2719
2720 * etags.c (main): Fix typo in conversion of LONG_OPTIONS from
2721 preprocessing to compile time constant.
2722
d4a38fdd
KS
27232004-11-17 Kim F. Storm <storm@cua.dk>
2724
2725 * etags.c: Undo last change.
2726
f2eb41c8
KS
27272004-11-09 Kim F. Storm <storm@cua.dk>
2728
2729 * make-docfile.c (scan_c_file): Set defvarperbufferflag to
2730 silence compiler.
2731
2732 * hexl.c (main): Init local var c to silence compiler.
2733
2734 * etags.c (main, consider_token, C_entries): Add misc switch
2735 default targets to silence compiler.
2736
880820fe 27372004-11-09 Jan Djärv <jan.h.d@swipnet.se>
3cf5c994
JD
2738
2739 * makefile.w32-in (obj): Add all files (X and Mac) to doc so the
2740 resulting DOC file can be used on Unix/Mac also.
2741
880820fe 27422004-09-13 Francesco Potortì <pot@gnu.org>
e057dc50
FP
2743
2744 * etags.c (main): When relative file names are given as argument,
2745 make them relative to the current working dir, rather than
2746 relative to the output tags file, if the latter is in /dev.
2747
880820fe 27482004-09-13 Francesco Potortì <pot@gnu.org>
05d9a399
FP
2749
2750 * etags.c [EXIT_SUCCESS, EXIT_FAILURE]: Define them when no
2751 <stdlib.h> is available.
2752 (enum sym_type): New st_C_attribute value for parsing
2753 gcc's __attribute__. Deleted st_C_typespec value.
2754 (gperf, in_word_set): Use gperf 3, options changed. Added the
2755 __attribute__ keyword, removed all the st_C_typespec keywords,
2756 changed attribute for Java to (C_JAVA & !C_PLPL).
2757 (inattribute): New global bool, part of the C state machine.
2758 (cblev): Identifier renamed to bracelev throughout.
2759 (consider_token, C_entries): Numerous changes for making the
2760 parser more robust and adding support for __attribute__.
2761
27622004-09-13 David A. Capello <dacap@users.sourceforge.net> (tiny change)
2763
ecc54057 2764 * etags.c (Lua_suffixes, Lua_help, lang_names, Lua_functions):
05d9a399
FP
2765 Support the Lua scripting language <http://www.lua.org>.
2766
880820fe 27672004-09-08 Francesco Potortì <pot@gnu.org>
fba74375 2768
d57727c9 2769 * etags.c [LONG_OPTIONS]: Make it TRUE (ifdef) or FALSE (ifndef)
fba74375
FP
2770 for ease of use.
2771
3751eb00
RS
27722004-07-17 Richard M. Stallman <rms@gnu.org>
2773
2774 * emacsclient.c (quote_file_name): Pass COPY thru %s to output it.
2775
86d373e6
JB
27762004-06-01 Juanma Barranquero <lektu@terra.es>
2777
2778 * makefile.w32-in (obj): Add image.c.
2779
80e26b66
TTN
27802004-05-10 Thien-Thi Nguyen <ttn@gnu.org>
2781
0e0dced5 2782 * test-distrib.c (main): For failing cases, exit with `EXIT_FAILURE'.
80e26b66 2783
e6662c8b
JR
27842004-05-08 Jason Rumney <jasonr@gnu.org>
2785
2786 * makefile.w32-in (lisp1, lisp2): Split lisp to avoid long
2787 command-lines.
2788
65396510
TTN
27892004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
2790
2791 * cvtmail.c: Throughout, replace 0 destined for `exit' arg
2792 with `EXIT_SUCCESS'. Likewise, replace 1 with `EXIT_FAILURE'.
2793 (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
2794
2795 * ebrowse.c, emacsclient.c, fakemail.c, hexl.c,
86d373e6
JB
2796 * make-docfile.c, movemail.c, profile.c, sorted-doc.c,
2797 * test-distrib.c, update-game-score.c, yow.c: Likewise.
65396510 2798
c2bcfb19
TTN
27992004-05-08 Thien-Thi Nguyen <ttn@gnu.org>
2800
2801 * Makefile.in (emacsclient${EXEEXT}): Use makefile var `version'.
2802
3f0656ff
TTN
28032004-05-07 Thien-Thi Nguyen <ttn@gnu.org>
2804
2805 * b2m.c (GOOD, BAD): Delete macros. Throughout,
2806 replace w/ `EXIT_SUCCESS' and `EXIT_FAILURE', respectively.
2807 (main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
2808
2809 * etags.c: Likewise.
2810
238add5e
JR
28112004-05-03 Jason Rumney <jasonr@gnu.org>
2812
2813 * makefile.nt: Remove.
2814
b09c5608
EZ
28152004-04-26 Eli Zaretskii <eliz@gnu.org>
2816
2817 * make-docfile.c (IS_DIRECTORY_SEP): New macro.
2818 (put_filename): Remove unused variable len. Use IS_DIRECTORY_SEP
2819 instead of a literal '/'.
2820
d814862a
JB
28212004-04-23 Juanma Barranquero <lektu@terra.es>
2822
2823 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
2824
442a2160
PE
28252004-04-17 Paul Eggert <eggert@gnu.org>
2826
2827 * rcs2log (Help): Clarify wording of the usage message.
2828 Problem reported by Alan Mackenzie in
2829 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-04/msg00188.html>.
2830
d5d66b7e
SM
28312004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2832
2833 * make-docfile.c (xmalloc): Fix return type.
2834 (put_filename): New fun.
2835 (scan_file): Use it.
2836
bdfd0369
JB
28372004-03-09 Juanma Barranquero <lektu@terra.es>
2838
2839 * grep-changelog: Changes to support ChangeLog.10+.
2840 (main): Tidy up usage string. Fix "Use of uninitialized value"
2841 warning. Set version to 0.2. Parse the directory listing to get
2842 any ChangeLog.n file, not just 1..9.
2843 (header_match_p, entry_match_p, print_log, parse_changelog):
2844 Remove Perl prototypes (their purpose is to help the parser, which
2845 isn't needed here, not declare arguments).
2846 (parse_changelog): Make --reverse faster on big batches by not
2847 modifying the entries list.
2848
a64387ee
JB
28492004-03-01 Juanma Barranquero <lektu@terra.es>
2850
2851 * makefile.w32-in (obj): Add fringe.c.
2852
9766d41b
PE
28532004-02-14 Paul Eggert <eggert@twinsun.com>
2854
2855 * rcs2log: Work correctly if CVSROOT specifies :fork: or
2856 :local: methods, or omits the colon between the hostname
2857 and the path. Allow :/ in repository path, since CVS does.
2858 Fix typo: "pository" should be set from $CVSROOT, not $repository.
2859 This fixes a bug reported by Wolfgang Scherer in
2860 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-02/msg00085.html>,
2861 along with some related bugs I discovered by inspecting how
2862 CVS itself parses $CVSROOT.
2863
880820fe 28642004-02-04 Jérôme Marant <jmarant@nerim.net> (tiny change)
98c6e531
SM
2865
2866 * emacsclient.c (decode_options): Fix handling of alternate editor.
2867
0734b0d0
SM
28682004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
2869
2870 * emacsclient.c (main): Don't use the hostname in the socket name.
2871 Look for relative socket names in the /tmp dir rather than in cwd.
2872
2a6fc2d9
RS
28732004-01-24 Richard M. Stallman <rms@gnu.org>
2874
2875 * emacsclient.c (main): Restore errno from saved_errno,
2876 so the error message comes from socket_status.
2877
0734b0d0
SM
28782004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
2879
2880 * emacsclient.c (main): Stop if socket name too long.
2881 Only try su-fallback if the socket name was not explicit.
2882 Check socket name length in su-fallback case as well.
2883
152b6e83
AS
28842004-01-08 Andreas Schwab <schwab@suse.de>
2885
2886 * emacsclient.c (main): Save errno from socket_status.
2887
e8228824
AS
28882004-01-04 Andreas Schwab <schwab@suse.de>
2889
2890 * emacsclient.c (main): Fix socket name when using another user.
2891
c9140662
PE
28922003-12-27 Paul Eggert <eggert@twinsun.com>
2893
2894 * rcs2log (rlog_options): Append -rbranchtag if CVS/Tag indicates
2895 a tag, and if the user has not specified an rlog option.
2896 Adapted from a suggestion by Martin Stjernholm in
2897 <http://mail.gnu.org/archive/html/bug-gnu-emacs/2003-07/msg00066.html>.
2898 (Copyright): Update to 2003.
2899
8babaa59
TTN
29002003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
2901
2902 * make-docfile.c (main): For return code, no longer special-case VMS.
2903 Instead, use `EXIT_SUCCESS' and `EXIT_FAILURE' from stdlib.h.
2904
880820fe 29052003-09-28 Andreas Büsching <crunchy@tzi.de> (tiny change)
14ef7288
EZ
2906
2907 * emacsclient.c (quote_file_name): Print the result instead of
2908 returning it. Fix the return type accordingly.
1ae7cf5e
RS
2909 (main): With --eval, if no file name, read from stdin.
2910 Quote file names.
14ef7288 2911
f387bdea
RS
29122003-09-10 Richard M. Stallman <rms@gnu.org>
2913
07655e62 2914 * emacsclient.c (main): Use socket_name.
f387bdea 2915
880820fe 29162003-09-10 Andreas Büsching <crunchy@tzi.de> (tiny change)
f387bdea
RS
2917
2918 * emacsclient.c (socket_name): New variable.
2919 (longopts, decode_options, print_help_and_exit):
2920 Handle --socket-name argument.
2921
0b7e7337
FP
29222003-08-25 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2923
783bcffa 2924 * etags.c (consider_token): Check C++ `operator' only when the
0b7e7337
FP
2925 token len is long enough.
2926
ac06b30b
DL
29272003-08-20 Dave Love <fx@gnu.org>
2928
2929 * Makefile.in: Remove obsolete references to alloca.
2930
32b0a3c6
JB
29312003-07-29 Ken Brush <ken@wirex.com>
2932
2933 * emacsclient.c (main)
2934 * etags.c (suggest_asking_for_help)
2935 * movemail.c (main): Fix having macros in a printf statement.
2936
3867c42d
JB
29372003-05-31 Juanma Barranquero <lektu@terra.es>
2938
2939 * makefile.w32-in (lisp): Fix references to byte-run.el,
2940 float-sup.el and map-ynp.el, which are now in emacs-lisp.
2941
7933722a
DL
29422003-05-22 Dave Love <fx@gnu.org>
2943
2944 * update-game-score.c (difftime) [!HAVE_DIFFTIME]: Define.
2945 (strerror) [!HAVE_STRERROR && !WINDOWSNT]: New.
2946
463f55ee
DL
29472003-05-20 Dave Love <fx@gnu.org>
2948
2949 * movemail.c: Check HAVE_LIBLOCKFILE like HAVE_LIBMAIL.
2950
2951 * Makefile.in [HAVE_LIBLOCKFILE]: Define LIBS_MAIL=-llockfile.
2952
1b7a835b
JB
29532003-04-27 Oliver Scholz <alkibiades@gmx.de>
2954
0e0dced5 2955 * update-game-score.c (read_scores): Fix corruption of scores on read.
1b7a835b 2956
eec54bd7
SM
29572003-04-12 Stefan Monnier <monnier@cs.yale.edu>
2958
2959 * emacsclient.c (main): Use new safe location for socket.
2960
ff4bd681
JB
29612003-03-12 Tom Tromey <tromey@redhat.com>
2962
eec54bd7
SM
2963 * emacsclient.c (print_help_and_exit): Print to stdout.
2964 Exit successfully. Added some blank lines for readability.
ff4bd681
JB
2965 (decode_options): Don't call print_help_and_exit in default case.
2966 Print version information to stdout.
2967 (main): Don't call print_help_and_exit.
2968
dd132e44
RS
29692003-02-15 Richard M. Stallman <rms@gnu.org>
2970
2971 * cvtmail.c: Cast result of malloc and realloc.
10d1d0af 2972 Don't include stdlib.h, because config.h does.
dd132e44 2973 (malloc, realloc): Declarations deleted.
ff4bd681 2974
dd132e44
RS
2975 * yow.c (yow): Cast result of malloc and realloc.
2976 (malloc, realloc): Declarations deleted.
2977
71ffc53a
JB
29782003-02-11 Juanma Barranquero <lektu@terra.es>
2979
2980 * makefile.w32-in (lisp): Add malayalam.el and tamil.el.
2981
0dfd93c0
AS
29822003-02-08 Andreas Schwab <schwab@suse.de>
2983
2984 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
2985 instead of the substitution.
2986
37d1e680
RS
29872003-02-04 Richard M. Stallman <rms@gnu.org>
2988
2989 * update-game-score.c (push_score, read_scores): Cast values
2990 of malloc and realloc.
2991 (main, lock_file): Avoid assignment inside if.
2992
c60ee5e7
JB
29932003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
2994
2995 * Makefile.in: Use @EXEEXT@ for Cygwin.
2996
b24e2dc7
DL
29972003-01-21 Dave Love <fx@gnu.org>
2998
2999 * etags.c (Cplusplus_help, Cjava_help): Re-phrase and avoid
3000 column-0 `('.
3001
3002 * yow.c: Don't include string.h.
3003
675d000f
RS
30042003-01-20 Richard M. Stallman <rms@gnu.org>
3005
3006 * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff):
3007 New targets.
3008
207aa3ff
KS
30092003-01-06 Kim F. Storm <storm@cua.dk>
3010
31fa6595 3011 * pop.c (__P): Rename from _P to avoid problems on Cygwin.
207aa3ff
KS
3012 All uses changed.
3013
cf6d30d7
AI
30142002-12-18 Andrew Innes <andrewi@gnu.org>
3015
3016 * makefile.w32-in ($(DOC)): Use -o and -a options to make-docfile,
3017 because GNU make doesn't append when using >> redirection.
3018
f0131492 30192002-12-12 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
649fc2c5
PJ
3020
3021 * b2m.pl: Make sure every message ends with a blank line, because
3022 some mbox parsers require a blank line before "From " lines.
3023
85cce843
RS
30242002-12-08 Richard M. Stallman <rms@gnu.org>
3025
3026 * getopt.c: Do include libintl.h if HAVE_LIBINTL_H.
3027 (_): Test only HAVE_LIBINTL_H to decide what to do.
3028
2ccc4d34
RS
30292002-12-05 Richard M. Stallman <rms@gnu.org>
3030
3031 * getopt.c: Comment out include of libintl.h or gettext.h.
3032
c5992177
RS
30332002-12-04 Richard M. Stallman <rms@gnu.org>
3034
3035 * Update getopt from gnulib version; changes described below.
3036
3037 * getopt1.c: Conditionally find getopt.h.
3038 [_LIBC] (getopt_long, getopt_long_only): Do libc_hidden_def.
3039
3040 * getopt.c (const): Move outside !HAVE_CONFIG_H conditional.
3041 (libintl.h): Include this if _LIBC. Otherwise include gettext.h.
c60ee5e7 3042 (wchar.h): Include, maybe.
10d1d0af 3043 (attribute_hidden): Define if not defined.
c5992177 3044 (__getopt_initialized): Use attribute_hidden.
b166dcd8 3045 (__libc_argc, __libc_argv): Rename from original_argc, etc.
d7982012
JB
3046 (__getopt_nonoption_flags, nonoption_flags_max_len)
3047 (nonoption_flags_len): Conditional on USE_NONOPTION_FLAGS.
c5992177
RS
3048 (SWAP_FLAGS): New definitions.
3049 (exchange): Test USE_NONOPTION_FLAGS.
3050 (_getopt_initialize): Test USE_NONOPTION_FLAGS.
3051 (_getopt_internal): Error if argc < 1. New local var print_errors.
3052 Improve test for ambiguous long option.
3053 Add LIBIO support for error message output.
3054 (NONOPTION_P): Test USE_NONOPTION_FLAGS.
3055
3056 * getopt.h: Maybe include ctype.h.
3057 Treat __cplusplus like __STDC__.
3058 (decls): Use __ in arg names.
3059
4b5e69bd
SE
30602002-12-02 Stephen Eglen <stephen@gnu.org>
3061
3062 * emacsclient.c (main): Tell user how to start server within Emacs
3063 if socket could not be found.
3064
19fa03f3
RS
30652002-12-02 Richard M. Stallman <rms@gnu.org>
3066
3067 * emacsclient.c (main): Test HAVE_GETCWD rather than BSD_SYSTEM.
3068
7be215b4
JB
30692002-11-19 Ben Key <bkey1@tampabay.rr.com>
3070
29f538e6
BK
3071 * makefile.w32-in: Fixed a bug that caused the documentation for
3072 the built in function play-sound-internal not to be included in
3073 /etc/DOC.
7be215b4 3074
1998560a
DL
30752002-11-18 Dave Love <fx@gnu.org>
3076
3077 * update-game-score.c: Include unistd.h, string.h, stdlib.h,
3078 fcntl.h, stdarg.h conditionally.
3079 (_GNU_SOURCE, __attribute__): Don't define.
3080 (optarg, optind, opterr): Declare.
3081 (lose, lose_syserr): Use NO_RETURN.
3082 (get_user_id): Use P_.
3083
8b96caf3
RS
30842002-11-17 Richard M. Stallman <rms@gnu.org>
3085
3086 * Makefile.in (${archlibdir}): Ignore errors operating on $(gamedir).
3087
59daa29a
DL
30882002-11-14 Dave Love <fx@gnu.org>
3089
3090 * movemail.c (pop_retr): Declare comment.
3091
3092 * make-docfile.c (read_c_string_or_comment): Declare msgno.
9a007cb7 3093
61b108cc 3094 * Makefile.in (YACC): Delete.
9a007cb7 3095
f1b443bf
AS
30962002-10-19 Andreas Schwab <schwab@suse.de>
3097
3098 * Makefile.in (${archlibdir}): Always create $(gamedir).
3099 (update-game-score): Pass $(gamedir) as HAVE_SHARED_GAME_DIR.
3100
52402e4f
JB
31012002-10-04 Juanma Barranquero <lektu@terra.es>
3102
3103 * makefile.w32-in (lisp): Load devanagari.el, not .elc.
3104
15dab115
MR
31052002-09-30 Markus Rost <rost@math.ohio-state.edu>
3106
3107 * emacsclient.c (main): Remove reference to SERVER_HOME_DIR
3108 completely.
3109
30be2360
SM
31102002-09-27 Stefan Monnier <monnier@cs.yale.edu>
3111
3112 * emacsclient.c: Remove SYSV support.
3113 (eval, display): New vars.
3114 (longopts): Add --eval and --display.
3115 (decode_options): Add -e and -d processing.
3116 (print_help_and_exit): Update the usage string.
3117 (main): Add support for --eval and --display.
3ecdcd59 3118 (main): Always use /tmp and non-qualified hostname.
30be2360 3119
4208da83
SM
31202002-09-25 Stefan Monnier <monnier@cs.yale.edu>
3121
3122 * emacsserver.c: Remove.
3123
3cf8c6aa
SM
31242002-09-17 Stefan Monnier <monnier@cs.yale.edu>
3125
3126 * emacsclient.c (quote_file_name): Quote \n.
3127 (main): Print a final \n when needed.
3128
880820fe 31292002-09-03 Francesco Potortì <pot@gnu.org>
4c6dce51
FP
3130
3131 * etags.c (regex_tag_multiline, readline): Never pass pfnote a
3132 string that cannot be freed.
3133
880820fe 31342002-08-30 Francesco Potortì <pot@gnu.org>
ba88f8eb
FP
3135
3136 * etags.c (consider_token, C_entries): Switch to C++ parsing when
3137 auto-detection is enabled and the `::' qualifier is met.
3138 (consider_token, C_entries): Several bugs corrected that tagged
3139 some declarations even though --declarations was not used.
3140 (plainc): New macro.
3141 (C_entries): Use it.
3142 (C_entries): Several cosmetic changes.
3143 (C_entries): Invalidate the token is some cases.
3144
880820fe 31452002-08-29 Francesco Potortì <pot@gnu.org>
09cd1a74 3146
eec54bd7 3147 * etags.c (C_entries): Correct a problem with const C++ funcs.
b166dcd8 3148 (ignoreindent): Rename from noindentypedefs.
09cd1a74
FP
3149 (cjava, cplpl): They are now macros instead of local vars.
3150
880820fe 31512002-08-28 Francesco Potortì <pot@gnu.org>
09cd1a74
FP
3152
3153 * etags.c (HTML_labels): Tag ID= also.
3154
880820fe 31552002-08-27 Francesco Potortì <pot@gnu.org>
87046df8
FP
3156
3157 * etags.c (Ada_funcs): Do not tag "use type Xxxx;".
3158
ecc54057 3159 * etags.c (HTML_labels): New language HTML.
8ee14629
FP
3160 (etags_strcasecmp): Like BSD's, for compatibility.
3161 (strcaseeq): Make it into a macro.
3162
3163 * etags.c (make_tag): Never generate null length tag names.
b166dcd8 3164 (linebuffer_init): Rename from initbuffer. All callers changed.
87046df8
FP
3165 (pattern): Structure renamed to `regexp', member regex renamed to
3166 pattern.
3167 (node_st): Member pat renamed to regex.
eec54bd7
SM
3168 (pattern); New member force_explicit_name, for future use.
3169 Now always set to true, cannot be reset.
87046df8
FP
3170 (add_regex, regex_tag_multiline, readline): Use it.
3171 (main): Free some global structures.
8ee14629 3172 (fdesc): New member `written'.
e1dbe924 3173 (readline, process_file): Initialize it.
87046df8
FP
3174 (put_entries): Set it.
3175 (main): Use it to create entries for files without tags.
3176 (total_size_of_entries): Do not count invalid tags.
87046df8 3177
02ce3e80
SM
31782002-08-19 Stefan Monnier <monnier@cs.yale.edu>
3179
3180 * make-docfile.c (scan_keyword_or_put_char, write_c_args): Use `fn'
3181 for the function name in the usage info.
3182
5fba5c21
CW
31832002-07-31 Colin Walters <walters@gnu.org>
3184
3185 * update-game-score.c (P_): New macro. Use it for all prototypes.
3186 (lose): Don't use varargs.
3187 (lose_syserr): New function.
3188
3189 * update-game-score.c: Change all functions to K&R style.
3190
712eaee0
AS
31912002-07-30 Andreas Schwab <schwab@suse.de>
3192
3193 * Makefile.in (localstatedir): New variable.
3194
f0131492 31952002-07-29 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
c89ed6ef
PJ
3196
3197 * b2m.pl: Fix regexp for finding return address fields.
3198
1e042160
SM
31992002-07-15 Stefan Monnier <monnier@cs.yale.edu>
3200
3201 * make-docfile.c (scan_c_file): Warn about missing `usage' info.
3202
f0131492 32032002-07-05 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
e9b60209 3204
02ce3e80 3205 * b2m.pl: Obey the rmail file and use the unpruned header properly.
e9b60209 3206
880820fe 32072002-06-26 Pavel Janík <Pavel@Janik.cz>
9ee028d2
PJ
3208
3209 * b2m.pl: New file.
3210
880820fe 32112002-06-21 Francesco Potortì <pot@gnu.org>
e1af8d40 3212
ecc54057 3213 * etags.c (F_getit, Fortran_functions, Ada_getit, Asm_labels)
e1af8d40
FP
3214 (Python_functions, PHP_functions, PHP_functions, PHP_functions)
3215 (PHP_functions, PHP_functions, Cobol_paragraphs)
3216 (Makefile_targets, Postscript_functions, Texinfo_nodes)
3217 (prolog_pr, erlang_func, erlang_attribute)
3218 (Perl_functions, Perl_functions, Pascal_functions)
3219 (TeX_commands, get_tag): Use make_tag instead of pfnote.
3220 (get_tag): Prototype changed, all callers changed.
3221
880820fe 32222002-06-20 Francesco Potortì <pot@gnu.org>
ceaeb365 3223
d76132d0
FP
3224 * etags.c: Implement implicit tag names, that is, unnamed tags
3225 whose name is automatically deduced by etags.el. The advantage is
3226 that there is no explicit tag name in most tags, so the size of
3227 the tags file is reduced, yet find-tag is able to do a match as
eec54bd7 3228 accurate as with named tags. See the comment in make_tag for details.
ceaeb365
FP
3229 (make_tag): New function (was the disabled function new_pfnote).
3230 (make_C_tag): Use it.
3231
880820fe 32322002-06-19 Francesco Potortì <pot@gnu.org>
f175bfff
FP
3233
3234 * etags.c (add_regex): Invalid regexp modifiers are ignored.
3235 (Makefile_targets): Tag variables unless --no-globals.
3236 (LOOP_ON_INPUT_LINES): Serious bug corrected.
3237
880820fe 32382002-06-13 Francesco Potortì <pot@gnu.org>
82ef78b3
FP
3239
3240 * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
3241 (invalidate_nodes): Bug corrected.
3242 (print_help): Better help for regexps.
3243
7a8940da
JB
32442002-06-13 Juanma Barranquero <lektu@terra.es>
3245
3246 * makefile.w32-in (lisp): Add international/ucs-tables.elc and
3247 font-core.elc.
3248
880820fe 32492002-06-12 Francesco Potortì <pot@gnu.org>
6861f0e3
FP
3250
3251 * etags.c: New multi-line regexp and new regexp syntax.
3252 (arg_type): at_icregexp label removed (obsolete).
3253 (pattern): New member multi_line for multi-line regexps.
3254 (filebuf): A global buffer containing the whole file as a string
3255 for multi-line regexp matching.
3256 (need_filebuf): Global flag raised if multi-line regexps used.
3257 (print_help): Document new regexp modifiers, remove references to
3258 obsolete option --ignore-case-regexp.
3259 (main): Do not set regexp syntax and translation table here.
3260 (main): Treat -c option as a backward compatibility hack.
3261 (main, find_entries): Init and free filebuf.
3262 (find_entries): Call regex_tag_multiline after the regular parser.
10d1d0af 3263 (scan_separators): Check for unterminated regexp and return NULL.
6861f0e3
FP
3264 (analyse_regex, add_regex): Remove the ignore_case argument, which
3265 is now a modifier to the regexp. All callers changed.
3266 (add_regex): Manage the regexp modifiers.
3267 (regex_tag_multiline): New function. Reads from filebuf.
3268 (readline_internal): If necessary, copy the whole file into filebuf.
3269 (readline): Skip multi-line regexps, leave them to regex_tag_multiline.
3270
880820fe 32712002-06-11 Francesco Potortì <pot@gnu.org>
6861f0e3
FP
3272
3273 * etags.c (add_regex): Better check for null regexps.
3274 (readline): Check for regex matching null string.
6772c8e1 3275 (find_entries): Reorganization.
6861f0e3 3276
880820fe 32772002-06-07 Francesco Potortì <pot@gnu.org>
f0da41a6
FP
3278
3279 * etags.c (scan_separators): Support all character escape
3280 sequences supported by Gcc.
02ce3e80 3281 (find_entries): Rewind unconditionally.
f0da41a6
FP
3282 (find_entries): Do not call language functions directly, now calls
3283 itself.
e1dbe924 3284 (find_entries): Do general initializations here.
f0da41a6
FP
3285 (CNL_SAVE_DEFINEDEF, C_entries, LOOP_ON_INPUT_LINES, F_getit)
3286 (Ada_getit, Pascal_functions, Pascal_functions)
3287 (prolog_skip_comment): Do not do them here.
3288 (readline_internal): Increment lineno here.
3289 (readline): Conditionally undo readline_internal increment.
3290 (readline): Do not return a value.
3291
880820fe 32922002-06-06 Francesco Potortì <pot@gnu.org>
5526f1f6 3293
88c71720 3294 * etags.c: New option --parse-stdin=FILE.
97b90b0a
FP
3295 (enum arg_type): New label at_stdin.
3296 (STDIN): New constant.
3297 (parsing_stdin): New flag.
3298 (longopts): New option --parse-stdin=NAME.
3299 (print_help): Document it.
3300 (main): Handle it.
3301 (process_file): Split into process_file and process_file_name.
3302 (process_file_name): New function.
3303
88c71720 3304 * etags.c: Improvements and bug squashing in TeX handling.
97b90b0a 3305 (TeX_commands): Skip comments.
10d1d0af 3306 (TEX_defenv): Now contains more constructs.
5526f1f6
FP
3307 (TEX_cmt): Make it a static char and move it before TeX_commands.
3308 (TeX_commands): Shorten the tag to the brace after the name.
3309 (TeX_commands): Names now include the initial backslash.
3310 (TeX_commands): Names do not include numeric args #n.
3311 (TeX_commands): Correct line char number in tags.
61b108cc 3312 (TEX_tabent, TEX_token): Delete.
5526f1f6
FP
3313 (TeX_commands, TEX_decode_env): Streamlined.
3314
880820fe 33152002-06-05 Francesco Potortì <pot@gnu.org>
50496bd9
FP
3316
3317 * etags.c (main): Avoid a buffer overrun with sprintf.
3318
a71867c5
RS
33192002-05-30 Richard M. Stallman <rms@gnu.org>
3320
b166dcd8
KC
3321 * Makefile.in (LIBS_MAIL): Rename from LIB_MAIL.
3322 (LIBS_MOVE): Rename from MOVE_LIBS.
a71867c5 3323
b7e67db6
PE
33242002-05-26 Paul Eggert <eggert@twinsun.com>
3325
3326 Reinstate the following change from 2002-03-22, which was
3327 inadvertently lost on 2002-04-13.
3328
3329 * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
3330 `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
3331 the latter usage.
3332
5f226e2c
EZ
33332002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
3334
3335 * pop.c (socket_connection): Move the code to resolve the POP
3336 host right before trying to connect with it.
3337
9021bb49
GM
33382002-05-05 Eli Zaretskii <eliz@is.elta.co.il>
3339
3340 * tcp.c: Delete file since the TCP emulation is no longer in use on any
3341 platform.
3342
5167cfda
CW
33432002-04-28 Colin Walters <walters@verbum.org>
3344
3345 * Makefile.in (${archlibdir}): Don't conditionalize on
3346 HAVE_SHARED_GAME_DIR. Instead, test at installation time whether
3347 or not we have access to the specified game user.
50496bd9 3348
5167cfda
CW
3349 * update-game-score.c (SCORE_FILE_PREFIX): Delete.
3350 (main): New argument -d, for specifying directory.
3351 (usage): Document.
02ce3e80 3352 (get_user_id): Compute.
61b108cc 3353 (get_home_dir): Delete.
5167cfda
CW
3354 (get_prefix): New function, taken from main.
3355 (main): Check whether or not we are running setuid. Move prefix
3356 computation to get_prefix. Don't call getpwent; we don't need to
3357 any more. Instead, move it to get_user_id().
3358
880820fe 33592002-04-24 Pavel Janík <Pavel@Janik.cz>
beedfcf1
PJ
3360
3361 * ebrowse.c (skip_initializer): Return void.
3362
973c3c87
CW
33632002-04-23 Colin Walters <walters@verbum.org>
3364
3365 * update-game-score.c (read_score) [HAVE_GETDELIM]: Trim trailing
3366 space.
3367
880820fe 33682002-04-22 Francesco Potortì <pot@gnu.org>
8378bcd3 3369
ecc54057 3370 * etags.c (last_node): Make it a global variable.
8378bcd3
FP
3371 (process_file): Print the tags from the nodes as soon as
3372 possible, and delete the nodes. This brings down the memory
3373 occupancy as etags to almost the same level as when the #line
3374 directives were not parsed.
3375 (free_fdesc): New function.
3376 (find_entries): Use it.
3377 (invalidate_nodes): In etags mode, do not just mark the nodes as
3378 invalid, do delete them.
3379
c901ceff
GM
33802002-04-21 Gerd Moellmann <gerd@gnu.org>
3381
3382 * ebrowse.c (add_declarator): Test *CLS instead of CLS.
3383
c42d6dbd
EZ
33842002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
3385
3386 * update-game-score.c: Move config.h before the other headers, to
3387 avoid compiler warnings.
3388
880820fe 33892002-04-16 Francesco Potortì <pot@gnu.org>
090416ca
FP
3390
3391 * etags.c (find_entries): Bug fix in list management.
3392
880820fe 33932002-04-15 Francesco Potortì <pot@gnu.org>
5dab24c1
FP
3394
3395 * etags.c (get_language_from_filename): Add one argument.
3396 (strcaseeq): New function.
10d1d0af 3397 (get_language_from_filename): Use it to do a case insensitive
5dab24c1
FP
3398 comparison if called with appropriate args.
3399 (find_entries): Try with case insensitive match.
3400 (process_file): Bug fixed.
3401
880820fe 34022002-04-13 Francesco Potortì <pot@gnu.org>
c150db23
FP
3403
3404 * etags.c (find_entries): Delete tags previously obtained from
3405 file xxx.c's #line directives when parsing file xxx.y. This is
3406 generally done for automatically generated files containing
3407 #line directives. This handles the case when xxx.y is tagged
3408 before xxx.c, and the entries of xxx.c pointing to xxx.y should
3409 be discarded.
eec54bd7 3410 (language): Add the metasource member. Initializers changed.
c150db23
FP
3411 (invalidate_nodes): New function.
3412 (readline): Discard lines after having found a #line
02ce3e80 3413 directive pointing to an already tagged file. This handles the
c150db23
FP
3414 case when xxx.y is tagged before xxx.c, and the entries of
3415 xxx.c pointing to xxx.y should be discarded.
3416 (fdesc): New structure for keeping track of input files.
3417 (fdesc): Remove `file' member (a string) and use instead a pointer
3418 to a file description structure.
02ce3e80
SM
3419 (curfile, curfiledir, curtagfname, curlang, nocharno)
3420 (forced_lang): Global variables removed in favor of fdhead and
10d1d0af 3421 curfdp, pointers to file description structures.
c150db23
FP
3422 (longopts, main, print_help): Use the CTAGS conditional to include
3423 or exclude options that work on etags or ctags only.
02ce3e80
SM
3424 (process_file, find_entries, pfnote, add_node, put_entries)
3425 (readline): Use fdhead and curfdp.
c150db23
FP
3426 (process_file, find_entries): Do not take an arg string, all
3427 callers changed.
3428
3429 * etags.c (longopts, print_help, main): Test CTAGS to disallow
3430 options that are not right for either etags or ctags.
3431
3432 * etags.c (number_len, total_size_of_entries): Define them also
3433 in CTAGS mode, because gcc does not compile all refs away.
3434
e9d1f248
CW
34352002-04-14 Colin Walters <walters@debian.org>
3436
3437 * update-game-score.c (lock_file): If the lock file is older than
3438 an hour, delete it. Reset attempts to zero if we have to break
3439 the lock.
3440
7605f1bd
AS
34412002-04-14 Andreas Schwab <schwab@suse.de>
3442
3443 * update-game-score.c (read_score): Fix type of second parameter
3444 of getdelim to be of type size_t instead of int. Use 0 instead of
3445 ESUCCES.
3446
e82defd1
CW
34472002-04-10 Colin Walters <walters@verbum.org>
3448
ecc54057 3449 * update-game-score.c (toplevel): Include stdarg.h.
b9b966e0
CW
3450 (MAX_DATA_LEN, MAX_SCORES): New.
3451 (SCORE_FILE_PREFIX): If HAVE_SHARED_GAME_DIR is not defined,
3452 default to ~/.emacs.d/games.
3453 (get_user_id): Don't zero uid in the case where we can't get the
3454 username.
3455 (lose): New function.
3456 (main): Actually use `max', and default it to MAX_SCORES.
3457 Correctly handle new default for SCORE_FILE_PREFIX. Use `lose'
3458 function.
3459 (read_score): Handle the case of reading unamelen characters, then
3460 finishing. Use mktemp if mkstemp isn't available.
3461 (lock_file, unlock_file): Delete unused versions.
3462 (lock_file): Always sleep, even if we unlinked the lock file.
3463
e82defd1
CW
3464 * Makefile.in (gamedir, gameuser): New variables.
3465 (toplevel, UTILITIES): Add update-game-score.
3466 (${archlibdir}): Handle HAVE_SHARED_GAME_DIR.
3467
5795b420
CW
34682002-04-07 Colin Walters <walters@verbum.org>
3469
3470 * update-game-score.c (SCORE_FILE_PREFIX): Don't hardcode.
3471 (get_user_id): Take struct passwd as an argument.
3472 (get_home_dir): New function.
3473 (main): Read in user information here. Discover home directory if
3474 necessary.
3475 (read_score): Trim newline only in `getline' case.
3476
cd553ffb 34772002-04-05 Colin Walters <walters@debian.org>
c150db23 3478
cd553ffb
CW
3479 * update-game-score.c (toplevel): Include pwd.h.
3480 (struct score_entry): Add username field.
3481 (push_score): Use it.
3482 (get_user_id): New function.
3483 (main): Don't malloc excessively.
3484 (main): Use username field.
3485 (read_score): Read it.
3486 (push_score): Handle it.
07655e62 3487 (write_scores): Write it.
c150db23
FP
3488 (read_score): Handle arbitrary length data.
3489
b74bd4a3
EZ
34902002-03-30 Eli Zaretskii <eliz@is.elta.co.il>
3491
3492 * ebrowse.c (add_declarator): Fix the first call to add_member_defn.
3493
fa8bc89d
GM
34942002-03-29 Gerd Moellmann <gerd@gnu.org>
3495
3496 * ebrowse.c (add_declarator, skip_initializer): New functions.
3497 (declaration): Use them.
3498
dd87b4cc
JR
34992002-03-28 Jason Rumney <jasonr@gnu.org>
3500
3501 * makefile.w32-in (lisp): Move backquote.elc into emacs-lisp.
3502
cd553ffb
CW
35032002-03-27 Colin Walters <walters@debian.org>
3504
3505 * update-game-score.c: New file.
3506
dfef6d49
PE
35072002-03-22 Paul Eggert <eggert@twinsun.com>
3508
3509 * etags.c (main): Use `sort -o TAGFILE TAGFILE' instead of
3510 `sort TAGFILE -o TAGFILE', as POSIX 1003.1-2001 disallows
3511 the latter usage.
3512
880820fe 35132002-03-12 Francesco Potortì <pot@gnu.org>
a13d6523 3514
4fff90e4 3515 * etags.c (Python_functions): Skip spaces at beginning of lines.
a13d6523
FP
3516 (Python_functions, PHP_functions): Name tags, for ctags' sake.
3517 (TeX_commands): Name tags. Correction of old disabled code.
3518
3519 * etags.c (curfiledir, curtagfname): New global variables.
e1dbe924 3520 (process_file): Initialize them.
a13d6523 3521 (readline): Canonicalize the name found in #line directive.
893a741e 3522
4fff90e4 35232002-03-06 Jason Rumney <jasonr@gnu.org>
ca55a1e3 3524
893a741e
JR
3525 * etags.c (put_entries): Use #if !CTAGS, to fix link error on
3526 compilers that don't optimize out dead code.
3527
880820fe 35282002-03-05 Francesco Potortì <pot@gnu.org>
51aeded3
FP
3529
3530 * etags.c: Honour #line directives.
a7c29764 3531 (no_line_directive): New global var; set it for old behavior.
51aeded3
FP
3532 (main): Remove some #ifdef in the getopt switch.
3533 (add_node, put_entries): Code added to merge different chunks of
3534 nodes referring to the same file. Currently the tags are just
3535 appended, without any check for duplicates.
3536 (Perl_functions): Do not special case ctags.
3537 (readline): Identify #line directives and do the right thing.
3538 (nocharno, invalidcharno): New global vars.
3539 (process_file): Reset nocharno.
3540 (readline): Set nocharno.
3541 (pfnote): Read nocharno and maybe put invalidcharno in node.
3542 (total_size_of_entries, put_entries): Use invalidcharno.
3543
3544 * etags.c: Keep the whole tag table in memory, even in etags mode.
3545 (main): Call put_entries here even in CTAGS mode.
3546 (main, process_file): Check the return values of fclose and pclose.
3547 (process_file): Do not call put_entries after parsing each file.
333f9019 3548 (process_file): Canonicalize file names even for ctags.
51aeded3
FP
3549 (process_file): Set curfile here...
3550 (find_entries): ... not here any more.
3551 (add_node): In etags mode, build a linked list of entries (on
3552 right pointer) for each file, and link the first entry of each
3553 file on left nodes.
3554 (put_entries): Print here the name of the file.
3555 (put_entries): Print the entries starting from the first file.
c150db23 3556 (number_len, total_size_of_entries): Define these only in etags
51aeded3
FP
3557 mode, make the second work only on the right nodes.
3558
3559 * etags.c: Make all global variables static.
3560
50ce1f62
JB
35612002-02-25 Juanma Barranquero <lektu@terra.es>
3562
3563 * makefile.w32-in (lisp): Add missing backslash.
3564
82a399d2
JR
35652002-02-24 Jason Rumney <jasonr@gnu.org>
3566
3567 * makefile.w32-in (WINNT_SUPPORT, MOUSE_SUPPORT, lisp): Revert to
3568 using .elc files.
c4cc8b9a 3569 (lisp): Sync with list in src/Makefile.in.
82a399d2
JR
3570 (VMS_SUPPORT, MSDOS_SUPPORT): Define, so DOC files can be shared.
3571
a279c920
PE
35722002-02-10 Paul Eggert <eggert@twinsun.com>
3573
3574 * rcs-checkin: Use `sort -k 2', not `sort +1', as POSIX 1003.1-2001
3575 disallows the old syntax.
3576
0caa685d
PE
35772002-02-03 Paul Eggert <eggert@twinsun.com>
3578
d7982012 3579 * rcs2log (Copyright): Update to 2002.
0caa685d
PE
3580 (AWK, TMPDIR): Work around portability problem in broken shells that
3581 don't understand `: ${VAR=val}'.
3582 (SORT_K_OPTIONS): New var, for hosts that conform to POSIX 1003.1-2001.
3583 Prefer the new -k option to the traditional +M -N option.
3584
880820fe 35852002-01-01 Pavel Janík <Pavel@Janik.cz>
03950b5b
PJ
3586
3587 * b2m.c (main): Parenthesize assignment when used as truth value
3588 to prevent gcc warnings.
3589
3590 * fakemail.c: Include <config.h>.
3591
880820fe 35922001-12-29 Pavel Janík <Pavel@Janik.cz>
2f8fe2f4
PJ
3593
3594 * cvtmail.c, emacsclient.c, emacsserver.c, pop.c, sorted-doc.c,
3595 * yow.c: Include <config.h>.
3596
880820fe 35972001-12-21 Francesco Potortì <pot@gnu.org>
a60e4de9
FP
3598
3599 * etags.c (Perl_functions): Tag packages and use them in sub tags.
3600 (get_tag): Return a pointer to the tag that is found.
3601
3602 * etags.c (LOOKING_AT): Use !intoken instead of iswhite.
b166dcd8
KC
3603 (F_takeprec): Rename from takeprec. All callers changed.
3604 (F_getit): Rename from getit. All callers changed.
3605 (nocase_tail): Rename from tail. All callers changed.
3606 (Ada_getit): Rename from adagetit. All callers changed.
eec54bd7 3607 (L_getit): Simplify by using get_tag.
a60e4de9
FP
3608 (Perl_functions, Postscript_functions, erlang_attribute): Use the
3609 modified LOOKING_AT.
e1dbe924 3610 (notinname): Remove '[' and added ')' to the recognized chars.
a60e4de9
FP
3611 (LOOKING_AT, get_tag, PHP_functions): Use notinname.
3612 (Ada_getit, Ada_funcs, Python_functions, Scheme_functions):
3613 Clarified, using strneq or notinname.
61b108cc 3614 (L_isdef, L_isquote): Remove.
a60e4de9
FP
3615 (Lisp_functions, L_getit): Clarified.
3616
b166dcd8 3617 * etags.c (P_): Rename to __P for consistency with config.h.
a60e4de9
FP
3618 [HAVE_CONFIG_H]: Let config.h deal with __P.
3619 [__STDC__] [!HAVE_CONFIG_H]: Define PTR as in config.h.
3620 [!__STDC__] [!HAVE_CONFIG_H]: Do not undefine static, because
3621 gperf code needs it.
ecc54057
JB
3622 [HAVE_CONFIG_H] [!PTR]: Define PTR (for use with XEmacs).
3623 [HAVE_CONFIG_H] [!__P]: Define __P (for use with XEmacs).
a60e4de9
FP
3624 (xmalloc, xrealloc): Use PTR instead of long *.
3625 (bool): Make it a define, not a typedef, for C++ compilers.
3626 (pattern): Members renamed to avoid name clash in some C++ compilers.
3627 (get_language_from_langname): Use const argument.
3628
880820fe 36292001-12-22 Pavel Janík <Pavel@Janik.cz>
c95eaa61
PJ
3630
3631 * makefile.nt, makefile.w32-in: Remove mocklisp files.
3632
880820fe 36332001-12-19 Pavel Janík <Pavel@Janik.cz>
69bfc389 3634
b8509940
PJ
3635 * emacsserver.c: Conditionally include config.h.
3636
594aa066
PJ
3637 * fakemail.c: Likewise.
3638
e69233c2
PJ
3639 * emacsclient.c: Include "config.h", not <../src/config.h>.
3640 (main): Parenthesize assignment when used as truth value to
3641 prevent gcc warnings.
3642
69bfc389
PJ
3643 * ebrowse.c: Include stdlib.h and string.h conditionally.
3644
e4e34e31
EZ
36452001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
3646
3647 * yow.c (main): Use time_t, not long, to avoid a compiler warning.
3648
880820fe 36492001-12-18 Pavel Janík <Pavel@Janik.cz>
ffb7c9c6
PJ
3650
3651 * test-distrib.c: Fix previous change.
3652
fb5aa7ac
DL
36532001-12-18 Dave Love <fx@gnu.org>
3654
3655 * test-distrib.c: Conditionally include fcntl.h.
3656
3657 * fakemail.c: Include "config.h", not <../src/config.h>.
3658 (_XOPEN_SOURCE): Define as 500.
3659
3660 * emacsserver.c: Include "config.h", not <../src/config.h>.
3661
3662 * cvtmail.c: Include config.h, stdlib.h.
3663 (xmalloc, xrealloc, skip_to_lf sysfail): Prototype.
3664
3665 * yow.c: Conditionally include various headers. Use "epaths.h",
3666 not <../src/epaths.h>.
3667 (malloc, realloc) [!HAVE_STDLIB_H]: Prototype.
3668
880820fe 36692001-12-12 Francesco Potortì <pot@gnu.org>
e94a3679 3670
13dc0576 3671 * etags.c (PHP_functions): New function for parsing PHP.
e94a3679
FP
3672 (LOOKING_AT): New macro.
3673 (Perl_functions, Python_functions, PHP_functions)
3674 (Scheme_functions, Texinfo_nodes): Use it.
3675 (Perl_functions): Use strneq.
b166dcd8 3676 (prolog_pred): Rename to prolog_pr.
e1dbe924 3677 (prolog_pr): Recognize Prolog rules in addition to predicates.
e94a3679 3678 [ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent
13dc0576 3679 unmodified compile, as Cygwin's regex.h is incompatible with us.
e94a3679
FP
3680 [!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string.
3681
34e39c95
RS
36822001-12-11 Richard M. Stallman <rms@gnu.org>
3683
3684 * Makefile.in (clean): Don't delete ../etc/DOC*.
3685
880820fe 36862001-12-11 Pavel Janík <Pavel@Janik.cz>
296071e7
PJ
3687
3688 * COPYING: Moved back.
3689
76054cc8
AI
36902001-11-30 Andrew Innes <andrewi@gnu.org>
3691
e94a3679
FP
3692 * makefile.w32-in (FACE_SUPPORT):
3693 (MOUSE_SUPPORT):
3694 (FLOAT_SUPPORT):
3695 (WINNT_SUPPORT):
76054cc8
AI
3696 (lisp): Reference .el files instead of .elc files, to simplify
3697 bootstrapping.
3698 ($(DOC)): Change dependency to just `make-docfile'.
3699
880820fe 37002001-11-29 Pavel Janík <Pavel@Janik.cz>
0142178a
PJ
3701
3702 * COPYING: Removed.
3703
e8d6a09b
PE
37042001-11-28 Paul Eggert <eggert@twinsun.com>
3705
3706 * rcs2log (Copyright): Add '(C)' as per coding guidelines.
3707
3708 The following changes are derived from suggestions by Bob Chapman
3709 <rechapman@compuserve.com>.
3710
3711 * rcs2log (printlogline): Also allow tab and newline to separate
3712 '(function):' from the rest of a comment.
3713 (reformat the sorted log entries): Require date and author to
3714 match the clumpname.
3715
9a190096
GM
37162001-11-16 Gerd Moellmann <gerd@gnu.org>
3717
3718 * ebrowse.c (matching_regexp): Escape '\\'.
3719
880820fe 37202001-11-15 Pavel Janík <Pavel@Janik.cz>
8ec1b917
PJ
3721
3722 * Makefile.in: Add support for --program-prefix, --program-suffix
3723 and --program-transform-name options.
3724
6d8f7d5d
RS
37252001-11-03 Richard M. Stallman <rms@gnu.org>
3726
3727 * cvtmail.c (xrealloc): Always pass two args to `fatal'.
3728
3729 * movemail.c (popmail): Always pass two args to `error'.
3730
84e70f78
KR
37312001-10-24 Ken Raeburn <raeburn@gnu.org>
3732
3733 * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
3734 -lhesiod and maybe -lresolv.
3735 (CRYPTOLIB) [HAVE_LIBK5CRYPTO]: Use -lk5crypto for Kerberos
3736 support if it's available.
3737
386ca361
MB
37382001-10-21 Miles Bader <miles@gnu.org>
3739
a3b10252
MB
3740 * make-docfile.c (struct rcsoc_state): New type.
3741 (read_c_string_or_comment): Add SAW_USAGE
386ca361 3742 parameter, and implement scanning for a `usage:' keyword.
a3b10252
MB
3743 Use a variable of type `rcsoc_state' to hold most of our state.
3744 (put_char): Add STATE parameter, and remove all other parameters
3745 except CH. Use STATE to get access to all needed state.
3746 (scan_keyword_or_put_char): New function.
386ca361
MB
3747 (scan_c_file): Pass SAW_USAGE argument to read_c_string_or_comment.
3748 Don't output a usage-string if there was one in the doc-string.
3749
71431a0e
GM
37502001-10-20 Gerd Moellmann <gerd@gnu.org>
3751
6aa97356 3752 * (Version 21.1 released.)
71431a0e 3753
880820fe 37542001-10-19 Pavel Janík <Pavel@Janik.cz>
37a9305e
PJ
3755
3756 * b2m.c: Properly spell the name of Emacs.
3757
945220bd
MB
37582001-10-17 Miles Bader <miles@gnu.org>
3759
3760 * make-docfile.c (put_char): New function.
3761 (read_c_string_or_comment): Strip trailing spaces and newlines.
3762
14242528
MB
37632001-10-16 Miles Bader <miles@gnu.org>
3764
3765 * make-docfile.c (scan_c_file): Handle `new style' doc strings in
3766 comments [with `doc:' keyword prefix].
3767
9f5eb4a3
GM
37682001-10-15 Gerd Moellmann <gerd@gnu.org>
3769
3770 * make-docfile.c (read_c_string_or_comment): Don't drop a '*'
3771 in a C doc comment.
3772
e641b454
GM
37732001-10-13 Gerd Moellmann <gerd@gnu.org>
3774
b166dcd8 3775 * make-docfile.c (read_c_string_or_comment): Rename from
e641b454
GM
3776 read_c_string. Add parameter COMMENT. Read C-style comments.
3777 (scan_c_file): Handle doc strings in C comments.
3778
967d7793
AI
37792001-10-12 Andrew Innes <andrewi@gnu.org>
3780
3781 * makefile.nt (ALL): Do not include fakemail.
3782
3783 * makefile.w32-in (install): Do not copy fakemail.
3784
d682756a
JR
37852001-10-10 Jason Rumney <jasonr@gnu.org>
3786
07655e62 3787 * makefile.w32-in (ALL): Do not include fakemail.
d682756a 3788
07655e62 3789 * makefile.nt (install): Ditto.
d682756a 3790
14a3dff7
GM
37912001-10-09 Gerd Moellmann <gerd@gnu.org>
3792
3793 * emacsserver.c (main): Cast geteuid in sprintf to int.
14a3dff7 3794
95bc7904 3795 * emacsclient.c (main): Cast isdigit argument to unsigned char.
14a3dff7 3796
880820fe 37972001-10-07 Pavel Janík <Pavel@Janik.cz>
f98d41f5
PJ
3798
3799 * profile.c: Include config.h, not ../src/config.h.
3800 Include systime.h, not ../src/systime.h.
3801
ab952a4f
GM
38022001-10-05 Gerd Moellmann <gerd@gnu.org>
3803
3804 * Branch for 21.1.
dff28924 3805
12c64503
GM
38062001-10-01 Alexander Zhuckov <zuav@int.spb.ru>
3807
3808 * ebrowse.c (struct alias): Add two new struct members: NAMESP and
3809 ALIASEE to help work with namespace aliases.
3810 (struct sym): Remove struct member NAMESP_ALIASES.
3811 (namespace_alias_table): New variable.
3812 (make_namespace): Add parameter CONTEXT.
3813 (check_namespace): New function.
3814 (find_namespace): Add parameter CONTEXT.
3815 (check_namespace_alias): New function.
02ce3e80
SM
3816 (register_namespace_alias): Change type of parameter OLD_NAME.
3817 Search for already defined alias in NAMESPACE_ALIAS_TABLE.
12c64503
GM
3818 (check_namespace): New function.
3819 (enter_namespace): Call find_namespace with CONTEXT parameter.
3820 (match_qualified_namespace_alias): New function.
eec54bd7 3821 (parse_qualified_ident_or_type): Fix typo in comment.
02ce3e80 3822 While parsing qualified ident or type update namespace context and
12c64503 3823 restore it on exit.
eec54bd7
SM
3824 (parse_qualified_param_ident_or_type): Fix typo in comment.
3825 (globals): Change handling of namespace aliases.
3826 (version): Add year 2001.
12c64503 3827
990e1190
FP
38282001-09-15 Eli Zaretskii <eliz@is.elta.co.il>
3829
3830 * etags.c (analyse_regex): If regex_arg is NULL, return
3831 immediately after a call to free_patterns.
3832
f2e7e23e
AS
38332001-09-05 Paul Eggert <eggert@twinsun.com>
3834
3835 * rcs2log (Help, mainline code): Add new option -L FILE.
3836 (Copyright): Update year.
02ce3e80
SM
3837 (LANG, LANGUAGE, LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES)
3838 (LC_NUMERIC, LC_TIME): New shell vars, to make sure we live in the
f2e7e23e
AS
3839 C locale.
3840 (mainline code): Handle nonstandard -u option differently, by
3841 transforming it to standard form. Check for "Working file: ", not
3842 "Working file:". Allow file names with spaces.
3843 (SOH, rlogfile): New shell vars.
dff28924 3844 (rlogout): Remove. Its old functionality is mostly migrated to
f2e7e23e
AS
3845 rlogfile.
3846
3847 Append ';;' to the last arm of every case statement, for
3848 portability to ancient broken BSD shells.
3849
02ce3e80 3850 (logins): Fix bug; was not being computed at all, lowering performance.
f2e7e23e
AS
3851 (pository): New var. This fixes some bugs where repositories are
3852 remote, or have trailing slashes.
02ce3e80 3853 (authors): $llogout is never an empty shell var, so don't worry
f2e7e23e 3854 about that possibility.
dff28924 3855 (printlogline, mainline code): Fix bug with SOH's being put into
f2e7e23e 3856 the output.
dff28924 3857
75c911eb
EZ
38582001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
3859
3860 * ebrowse.c (SEEK_END): #define if not defined by system headers.
3861 Suggested by Dave Love <d.love@dl.ac.uk>.
3862
5ae10f4a
EZ
38632001-08-29 Eli Zaretskii <eliz@is.elta.co.il>
3864
3865 * makefile.nt (lisp): Synchronize with src/Makefile.in.
3866 * makefile.w32-in (lisp): Ditto.
3867
0e4011d8 38682001-07-25 Juanma Barranquero <lektu@terra.es>
e743f599
GM
3869
3870 * grep-changelog (parse_changelog): Remove unused local variable.
3871
3872 * grep-changelog (main): Add new option --reverse.
3873 (print_log): Use it.
3874 (parse_changelog): Use it.
3875
3c88ae74
GM
38762001-07-20 Gerd Moellmann <gerd@gnu.org>
3877
3878 * grep-changelog: Remove RCS Id keyword.
3879
41848daa
GM
38802001-07-20 Juanma Barranquero <lektu@terra.es>
3881
6e07c0a5
GM
3882 * grep-changelog (parse_changelog): Add tests for defined values
3883 to quiet warning from Perl 5.005 or above.
177ab8ce 3884 (entry_match_p, header_match_p): Fix handling of null or empty
0e4011d8
GM
3885 argument to prevent duplicate headers.
3886
3887 * grep-changelog (main, parse_changelog): Make "use strict"-clean.
41848daa 3888
467f1209
GM
38892001-07-17 Jan Nieuwenhuizen <janneke@gnu.org>
3890
3891 * emacsclient.c (print_help_and_exit): Fix help message for
3892 +LINE:COLUMN option.
3893
38942000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
990e1190 3895
467f1209
GM
3896 * emacsclient.c (main): Add support for +LINE:COLUMN command line
3897 argument.
3898
bb24c64f
GM
38992001-07-16 Gerd Moellmann <gerd@gnu.org>
3900
3901 * ebrowse.c (main): Check that the output file exists and
3902 is non-empty if invoked with `--append'.
3903
880820fe 39042001-05-14 Francesco Potortì <pot@gnu.org>
fa829470 3905
e335b66a
GM
3906 * etags.c (add_regex): Reset the whole newly allocated pattern
3907 buffer instead of the individual members. It's safer and works
ecc54057 3908 with XEmacs.
fa829470 3909
e335b66a 3910 * etags.1: Markups corrected.
fa829470 3911
6da5c7da
GM
39122001-05-08 Gerd Moellmann <gerd@gnu.org>
3913
02ce3e80 3914 * ebrowse.c (enter_namespace): Fix reallocation of namespace_stack.
6da5c7da 3915
efbecf9d
GM
39162001-05-03 Gerd Moellmann <gerd@gnu.org>
3917
3918 * ebrowse.c (globals): Fix handling of namespace aliases.
3919
f4976ebc
EZ
39202001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
3921
3922 * etags.c (print_help): Enclose the regexp in the help text
3923 example in quotes.
3924
23431241
DL
39252001-04-05 Dave Love <fx@gnu.org>
3926
3927 * emacsclient.c (fail): Don't return a value.
fa829470 3928 (main): Cast uid values for sprintf.
23431241 3929
476bf681
GM
39302001-04-03 Gerd Moellmann <gerd@gnu.org>
3931
b3f6107b
GM
3932 * emacsclient.c (fail, main): Don't use implicit int return type.
3933
476bf681
GM
3934 * b2m.c (main): Always return a value.
3935
ef53d75e
GM
39362001-03-02 Gerd Moellmann <gerd@gnu.org>
3937
3938 * ebrowse.c (parse_qualified_param_ident_or_type): Return a
3939 freshly allocated object in *LAST_ID.
3940 (read_line): Accept \r\n line endings.
3941
425de386
AI
39422001-02-24 Andrew Innes <andrewi@gnu.org>
3943
3944 * makefile.w32-in: Fix copyright notice.
3945
880820fe 39462001-02-23 Francesco Potortì <pot@gnu.org>
f55ae599
FP
3947
3948 * etags.c (enum sym_type): New label st_C_template.
3949 (gperf input): Use it for switching to C++ from C.
3950 (consider_token): Do it.
e1dbe924 3951 (C_entries): Initialize typdefcblev to quiet compilers.
c2a642c0 3952 [!HAVE_CONFIG_H] [!__STDC__]: #define static as nothing.
f55ae599 3953
f6839838
AI
39542001-02-22 Andrew Innes <andrewi@gnu.org>
3955
3956 * makefile.nt ($(BLD)\movemail.obj): Remove reference to
3957 VMS header files.
3958 ($(BLD)\profile.obj): Ditto.
3959
3960 * makefile.w32-in ($(BLD)/movemail.$(O)): Remove reference to
3961 VMS header files.
3962 ($(BLD)/profile.$(O)): Ditto.
3963
193fba87
AI
39642001-02-05 Andrew Innes <andrewi@gnu.org>
3965
3966 * makefile.w32-in ($(DOC)): Use $(THISDIR) instead of . in
3967 invocation of make-docfile, to work with Windows 2000.
3968
30526cc6
DL
39692001-01-31 Dave Love <fx@gnu.org>
3970
3971 * etags.c (in_word_set): Use `static' in definition (for pcc).
3972
880820fe 39732001-01-31 Francesco Potortì <pot@gnu.org>
8f79fe72 3974
ecc54057 3975 * etags.c [NDEBUG]: #undef assert and #define it as ((void)0), for
8f79fe72
FP
3976 the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
3977 (C_entries): Tag token renamed to still_in_token because sunos4
3978 pcc wants to expand it as the token() macro even though it has no
3979 arguments.
3980
914d7258
AI
39812001-01-30 Andrew Innes <andrewi@gnu.org>
3982
3983 * etags.c (assert) [__MINGW32__]: Redefine assert to work around a
3984 bug in the Mingw32 assert.h header file.
3985
880820fe 39862001-01-30 Francesco Potortì <pot@gnu.org>
b28e26be 3987
ecc54057
JB
3988 * etags.c [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
3989 #define it for the sake of XEmacs.
b28e26be
FP
3990 [WINDOWSNT]: #undef HAVE_NTGUI even if built without
3991 HAVE_CONFIG_H. This change only affects a standalone etags.
3992 [WINDOWSNT]: #undef DOS_NT and #define it even if built with
3993 HAVE_CONFIG_H. This change does nothing in Emacs, as DOS_NT is
3994 always defined when HAVE_CONFIG_H and WINDOWS are both defined.
2f2c687b 3995 [!HAVE_UNISTD_H]: Use defined(WINDOWSNT) instead of the bare
b28e26be
FP
3996 WINDOWSNT, as this is the correct way to use it.
3997
880820fe 39982001-01-28 Francesco Potortì <pot@gnu.org>
8c463abe
FP
3999
4000 * etags.c: Be capable to parse nested struct-like structures.
4001 (structdef, structtag): Struct state machine revisited.
4002 (struct tok): Revisited.
4003 (cstack, nestlev, instruct): New struct and macros.
4004 (pushclass_above, popclass_above, write_classname): New functions
13dc0576 4005 for dealing with nested class names.
8c463abe
FP
4006 (consider_token, make_C_tag, C_entries): Many changes for dealing
4007 with arbitrarily nested structures.
4008 (etags_getcwd): #if MSDOS, not #ifdef MSDOS!
4009 (C_entries): Consider templates in C++.
4010 (sym_type): New constant st_C_class for detecting "class" also in
4011 C mode.
4012 (C_AUTO): New macro for automatic detection of C++.
4013 (consider_token): Automatic set C++ mode.
4014 (C_entries): New security check for yacc.
4015 (print_language_names, print_help): Mention the autodetect
07655e62 4016 feature, do not show help for the -C option, now mostly useless.
8c463abe
FP
4017 (C_entries): Tag C++ forward declarations if --declarations.
4018 (C_entries): Don't be fooled by things like XDEFUN.
4019 (consider_token): Discard asm pseudo function.
4020
e26f9ced
EZ
40212001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
4022
4023 * etags.c: Add a coding: tag.
4024
a47b7816
GM
40252001-01-26 Gerd Moellmann <gerd@gnu.org>
4026
8c463abe 4027 * ebrowse.c (matching_regexp_buffer, matching_regexp_end_buf):
a47b7816
GM
4028 New variables.
4029 (matching_regexp): Use them instead of static variables in
4030 function scope.
4031
880820fe 40322001-01-25 Francesco Potortì <pot@gnu.org>
d22a24fa 4033
b166dcd8
KC
4034 * etags.c (struct tok): Rename from struct token.
4035 (token): Rename from tok.
d22a24fa
FP
4036 (structtype): Make it a local variable.
4037 [DEBUG]: Use assert.
4038 (xrnew): Change the synopsis.
b166dcd8 4039 (typedefs_or_cplusplus): Rename from typedefs_and_cplusplus.
d22a24fa 4040 (grow_linebuffer): Don't call xrnew when not needed.
02ce3e80 4041 (token): Buffer renamed to line.
d22a24fa 4042 (C_entries): Three calls to inibuffer moved here from main.
eec54bd7 4043 (C_entries): Remove all references to var methodlen, delete it.
d22a24fa
FP
4044 (linebuffer_setlen): Was grow_buffer, now also sets len.
4045 (consider_token, C_entries, Pascal_functions): Use it.
4046 (C_entries): Preventing problems relative to extern "C".
4047 (C_entries): Can tag more than one variable or func separated by
4048 comma when --declarations is used.
4049 (C_entries): More accurate tagging of members and declarations.
4050 (yacc_rules): Was global, made local to C_entries.
61b108cc 4051 (next_token_is_func): Remove.
d22a24fa
FP
4052 (fvdef): New constants fdefunkey, fdefunname.
4053 (consider_token, C_entries): Use them.
4054 (C_entries): Build proper lisp names for Emacs DEFUNs.
4055
21c2bbe0
GM
40562001-01-22 Gerd Moellmann <gerd@gnu.org>
4057
4058 * ebrowse.c (xfree): New function.
4059 (member, declaration, globals): Use xmalloc instead of alloca.
4060
880820fe 40612001-01-15 Francesco Potortì <pot@gnu.org>
83be933c
FP
4062
4063 * etags.c (print_language_names): Print filenames in addition to
4064 suffixes.
4065
880820fe 40662001-01-14 Francesco Potortì <pot@gnu.org>
47df1a5e 4067
b166dcd8 4068 * etags.c (get_language_from_langname): Rename from
47df1a5e 4069 get_language_from_name.
b166dcd8 4070 (get_language_from_filename): Rename from get_language_from_suffix.
eec54bd7 4071 Now first looks for the complete file name.
47df1a5e
EZ
4072 (language): New member char **filenames.
4073 (Makefile_filenames): List of possible filenames for makefiles.
eec54bd7 4074 (lang_names): Add a NULL member for every entry, added an entry
47df1a5e 4075 for makefiles.
13dc0576 4076 (Makefile_targets): New function.
c5e87d10 4077 (Texinfo_nodes): Rename from Texinfo_functions and made
47df1a5e
EZ
4078 it conformant to the style of the rest of the code.
4079
291c7e74
GM
40802001-01-13 Gerd Moellmann <gerd@gnu.org>
4081
4082 * make-docfile.c (write_c_args): Print newlines as spaces.
4083
0dac6924
AI
40842001-01-06 Andrew Innes <andrewi@gnu.org>
4085
4086 * makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
4087 of *.pdb.
4088
3e99d3b4
GM
40892001-01-03 Paul Eggert <eggert@twinsun.com>
4090
290afd83 4091 * rcs2log: Avoid security hole allowing attacker to
3e99d3b4
GM
4092 cause user of rcs2log to overwrite arbitrary files, fixing
4093 a bug reported by Morten Welinder.
4094
4095 Don't put "exit 1" at the end of the exit trap; it's
4096 ineffective in POSIX shells.
4097
d6bb0c0d
GM
40982001-01-02 Gerd Moellmann <gerd@gnu.org>
4099
eec54bd7
SM
4100 * ebrowse.c (yyerror): Change to take two arguments.
4101 Add prototype. Change callers.
d6bb0c0d 4102
d5c00476 41032001-01-02 Eli Zaretskii <eliz@is.elta.co.il>
315f5865
EZ
4104
4105 * ebrowse.c (enter_namespace, main): Cast variables to shut up
4106 compiler warnings.
4107 (yyerror): Change parameter declarations to be of type long, so
4108 that they can take pointers on 64-bit platforms.
4109
4110 * emacsclient.c (main): Remove unused local variable statbfr.
4111 (main) <homedir>: Make its declaration conditional on
4112 SERVER_HOME_DIR, to avoid compiler warnings.
4113
4114 * emacsserver.c (main) <homedir>: Make its declaration conditional
4115 on SERVER_HOME_DIR, to avoid compiler warnings.
4116
4117 * fakemail.c (readline): Cast buffer to "long *" to pacify
4118 over-zealous compilers.
4119
7c89ea61
EZ
41202000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
4121
4122 * etags.c (canonicalize_filename) [DOS_NT]: Fix last change.
4123
a6768cc5
GM
41242000-12-15 Gerd Moellmann <gerd@gnu.org>
4125
4126 * ebrowse.c (operator_name): Cast argument of isalpha to
4127 unsigned char.
4128
4129 * etags.c (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
4130 Use them throughout instead of ctype functions/macros.
4131 (lowcase): Cast to unsigned char.
4132 (UPCASE): New macro.
4133 (canonicalize_filename): Use UPCASE instead toupper.
4134
4135 * fakemail.c (get_keyword): Make sure that isspace and
4136 similar aren't called with a negative argument.
4137
70de49cc
DL
41382000-12-13 Dave Love <fx@gnu.org>
4139
4140 * ebrowse.c (ensure_scope_buffer_room): Fix xrealloc call.
4141
4e8b894c
AI
41422000-12-06 Andrew Innes <andrewi@gnu.org>
4143
4144 * makefile.w32-in (LOCAL_FLAGS): Remove -DVERSION flag, since we
4145 don't know the real version, and I can't seem to get the quoting
4146 right in all circumstances.
4147
4148 * ebrowse.c (VERSION): Provide default definition, like etags.c
4149 does, because Windows build can't snarf this from version.el.
4150
88257bc8
AI
41512000-11-30 Andrew Innes <andrewi@gnu.org>
4152
4153 * makefile.w32-in ($(BLD)/ebrowse.exe): Use tabs not spaces.
4154 (install): Ditto.
4155
d19249e7
JR
41562000-11-23 Jason Rumney <jasonr@gnu.org>
4157
4158 * makefile.w32-in: Add targets for ebrowse.exe.
4159 (LOCAL_FLAGS): Add -DVERSION flag.
4160
7df6adc3
DL
41612000-09-25 Dave Love <fx@gnu.org>
4162
4163 * sorted-doc.c: Include config.h.
4164 [!HAVE_STDLIB_H]: Declare malloc.
4165
fe83b953
AI
41662000-09-14 Andrew Innes <andrewi@gnu.org>
4167
4168 * makefile.w32-in: Revert to Unix line endings.
4169
517699ca
DL
41702000-09-04 Dave Love <fx@gnu.org>
4171
4172 * movemail.c (index, rindex): Prototype conditionally.
4173
f8803e97
AI
41742000-09-03 Andrew Innes <andrewi@gnu.org>
4175
4176 * makefile.w32-in: Change to DOS line endings.
4177
f72adc12
EZ
41782000-09-01 Eli Zaretskii <eliz@is.elta.co.il>
4179
4034f3a8 4180 * movemail.c (toplevel): Remove redundant fcntl.h.
f72adc12
EZ
4181 [!F_OK]: Provide default definitions only after including both
4182 fcntl.h and unistd.h.
4183
f678f592
DL
41842000-08-29 Dave Love <fx@gnu.org>
4185
4186 * movemail.c: Revert previous change.
4187
5b671d04
EZ
41882000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
4189
4190 * Makefile.in (profile, make-docfile, hexl): Depend on config.h.
4191
6fa86045
DL
41922000-08-28 Dave Love <fx@gnu.org>
4193
4194 * movemail.c (toplevel) [HAVE_STRING_H]: Include string.h.
4195 (toplevel) [HAVE_STRINGS_H]: Include strings.h.
4196
746d9caf
AI
41972000-08-22 Andrew Innes <andrewi@gnu.org>
4198
4199 * ntlib.h (WIN32): Remove unnecessary definition.
4200 (sleep): Make argument unsigned long.
4201 (_WINSOCK_H): Undefine so normal winsock definitions can be used.
4202
4203 * ntlib.c (sleep): Make argument unsigned long.
4204
4205 * movemail.c (main) [WINDOWSNT]: Force binary mode for fileio.
4206
4207 * makefile.w32-in: New file.
4208
3b541489
EZ
42092000-08-20 Eli Zaretskii <eliz@is.elta.co.il>
4210
4211 * etags.c (canonicalize_filename) [DOS_NT]: Upcase the first
4212 letter only if it is a drive letter.
4213
e5acf0ca
GM
42142000-07-14 Gerd Moellmann <gerd@gnu.org>
4215
b166dcd8 4216 * ebrowse.c (xrealloc, xmalloc): Rename from yrealloc and ymalloc.
e5acf0ca
GM
4217
4218 * etags.c (xmalloc, xrealloc): Make externally visible, for use
4219 by alloca.o.
4220
02ce3e80 4221 * Makefile.in (alloca.o): Add -Demacs so that alloca will use xmalloc.
e5acf0ca 4222
4b92c49a
GM
42232000-07-10 Gerd Moellmann <gerd@gnu.org>
4224
4225 * ebrowse.c (yylex): Accept string literals with newlines in them.
4226 (process_pp_line): Handle case of string literal with newline
4227 in it in replacement text, which counts as continuing the
4228 replacement text in GNU C.
4229
831a6cb0
GM
42302000-07-02 Gerd Moellmann <gerd@gnu.org>
4231
4232 * ebrowse.c (token_string): Add missing tokens.
4233 (parm_list): Handle case of qualified pointers.
4234
53245ee2
DL
42352000-06-23 Dave Love <fx@gnu.org>
4236
4237 * ebrowse.c: Move config.h before other includes (which may use
4238 feature tests).
4239
dcbf2cd2
JM
42402000-06-14 Jim Meyering <meyering@lucent.com>
4241
4242 * grep-changelog: Fix typos in comments. Remove trailing blanks.
4243
f1c7754a
JR
42442000-06-11 Jason Rumney <jasonr@gnu.org>
4245
4246 * makefile.nt: Add targets for ebrowse.
4247
4248 * ebrowse.c [WINDOWS_NT]: Use stricmp instead of strcasecmp to
4249 compare filenames.
4250
5f1aea9a
GM
42512000-06-06 Gerd Moellmann <gerd@gnu.org>
4252
b166dcd8
KC
4253 * ebrowse.c (ymalloc): Rename from xmalloc.
4254 (yrealloc): Rename from xrealloc.
5f1aea9a 4255
5bf244f1
DL
42562000-05-21 Dave Love <fx@gnu.org>
4257
4258 * movemail.c: Include config.h, not ../src/config.h.
4259 (Errmsg): Bump length.
4260
4261 * pop.c (ERROR_MAX): Increase to 160.
4262
ec82fb2f
GM
42632000-05-04 Gerd Moellmann <gerd@gnu.org>
4264
4265 * ebrowse.c (DEFAULT_OUTFILE): Set to `BROWSE'.
4266
5c922ea7
EZ
42672000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
4268
02ce3e80
SM
4269 * ebrowse.c (PATH_LIST_SEPARATOR) [__MSDOS__ || WINDOWSNT]:
4270 Define to semi-colon.
5c922ea7 4271 (FILENAME_EQ): New macro, for comparing file names.
02ce3e80 4272 (add_member_decl, add_global_decl, add_member_defn): Use FILENAME_EQ.
5c922ea7
EZ
4273 (process_file): Don't assume that fread always reads as many bytes
4274 as it was told to (DOS-style CR-LF text files fail this logic).
4275 (open_file): Allocate enough space for path->path plus the file
4276 name and the slash.
4277
6142fdcb 42782000-04-19 Dave Love <fx@gnu.org>
97052c63
DL
4279
4280 * etags.c (Texinfo_functions): New function.
4281 (lang_names): Install it.
4282 (Texinfo_suffixes): New variable.
4283
cb9215e4
GM
42842000-04-19 Gerd Moellmann <gerd@gnu.org>
4285
4286 * ebrowse.c (xmalloc, xrealloc): Rewritten.
4287 (declaration): Remove parameter IS_EXTERN.
4288 (class_definition): Remove unused variable.
4289
be0dbdab
GM
42902000-04-09 Gerd Moellmann <gerd@gnu.org>
4291
4292 * Makefile.in (INSTALLABLES): Add ebrowse.
4293 (ebrowse): New target.
4294
4295 * ebrowse.c: New file.
4296
c5aa0fc2
AS
42972000-03-29 Andreas Schwab <schwab@suse.de>
4298
4299 * make-docfile.c (scan_lisp_file): Also look for `defsubst'.
4300
d054101f
GM
43012000-03-02 Gerd Moellmann <gerd@gnu.org>
4302
07e99590 4303 * etags.c (lisp_suffixes): Add `LSP'.
d054101f 4304
880820fe 43052000-02-10 Francesco Potortì <pot@gnu.org>
71cbb895 4306
eec54bd7 4307 * etags.c (iswhite): Redefine not to consider '\0' as white
71cbb895
FP
4308 space, and use it throughout in place of isspace, thus preventing a
4309 potential signed char to int conversion problem.
10d1d0af 4310 (MSDOS): #undefine before redefining.
71cbb895 4311
880820fe 43122000-02-04 Francesco Potortì <pot@gnu.org>
71cbb895
FP
4313
4314 * etags.c (many functions): Add prototypes.
4315
97fa0cc8
DL
43162000-02-10 Dave Love <fx@gnu.org>
4317
4318 * etags.c (pfnote, new_pfnote, C_entries, prolog_pred)
4319 (erlang_func): Add `static' to definitions to keep pcc happy.
4320
880820fe 43212000-01-31 Francesco Potortì <pot@gnu.org>
e4100b7f
FP
4322
4323 * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
4324 (get_compressor_from_suffix, process_file): Use MSDOS in if clause.
4325 (etags_strchr, etags_strrchr): Use const char * and int as arguments.
4326 (getenv, getcwd): Only declare them if necessary.
4327 (EMACS_NAME): New constant macro.
4328 (print_version): Use it.
4329 (P_) [__STDC__]: Macro for defining function prototypes.
e4100b7f 4330
19e262bd 43312000-01-18 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
e4100b7f
FP
4332
4333 * etags.c [WINDOWSNT]: #include <direct.h>
4334
19e262bd 43352000-01-18 Martin Buchholz <martin@xemacs.org>
e4100b7f 4336
19e262bd
FP
4337 * etags.c (all functions): Made them static.
4338 (all functions): Write prototypes.
e4100b7f 4339
55e30d2a
RS
43402000-01-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4341
4342 * movemail.c (main): Improve error message if can't create lock file.
4343
c60ee5e7 43442000-01-28 Eric Hanchrow <offby1@blarg.net>
875c1439
GM
4345
4346 * emacsclient.c (socket_status): New function.
02ce3e80 4347 (main): If $LOGNAME or $USER exist and differ from our euid, look
875c1439
GM
4348 for a socket based on the UID associated with the name.
4349
e4936aa9
GM
43502000-01-12 Han-Wen Nienhuys <hanwen@cs.uu.nl>
4351
4352 * emacsclient.c: Add option -a EDITOR and environment variable
4353 ALTERNATE_EDITOR. Exec this editor if we fail to contact Emacs.
4354
f0131492 43551999-12-10 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
791a9087
GM
4356
4357 * movemail.c (popmail): Allow mailbox specifications of the
4358 form `po:username:hostname'.
4359
880820fe 43601999-11-19 Francesco Potortì <pot@gnu.org>
e2081362
FP
4361
4362 * etags.c (_GNU_SOURCE): Define only if undefined.
4363 (get_scheme): Declaration deleted.
02ce3e80 4364 (main): Error was called with an integer as second arg, instead of
e2081362
FP
4365 a char pointer.
4366 (canonicalize_filename): Bug removed.
4367
43681999-11-18 Dave Love <d.love@dl.ac.uk>
4369
4370 * etags.c (C_entries): Rename label `intoken', avoiding K&R
4371 lossage from name clash with macro.
4372
b05d3bee
GM
43731999-11-13 Gerd Moellmann <gerd@gnu.org>
4374
4375 * Makefile.in (b2m): Add dependency on GETOPTDEPS.
4376
cb3a6c48
GM
43771999-11-03 Gerd Moellmann <gerd@gnu.org>
4378
4379 * etags.c (print_help): Change email address to send bugs to.
4380
6088b51f 43811999-11-01 Francesco Potortì <pot@gnu.org>
1c478461
FP
4382
4383 * etags.c: Add suffix psw for PSWrap.
4384 (L_getit): Generalize a "cp!=' '" into "!isspace(*cp)".
4385 (Postscript_functions): Add code for PSWrap.
4386 (Scheme_functions): Use local pointer and new get_tag function.
4387 (get_tag): New name for old get_scheme.
4388 (process_file): Do not free NULL when file does not exist.
4389 (typdef): ttypedefseen renamed to tkeyseen, new label ttypeseen.
4390 (C_entries): Modifications that make --members tag even inside
4391 typedefs and C nested structs (one level only).
eec54bd7 4392 (consider_token): Correct a bug which prevented tagging of enum
1c478461 4393 constants.
eec54bd7 4394 (C_stab_entry): Add if, for, while, switch, return as
1c478461
FP
4395 st_C_ignore. This makes it simpler to work when cblev!=0.
4396
02ce3e80 4397 * etags.c (C_entries): Tag member function declarations when
1c478461
FP
4398 --declarations is used.
4399
4400 * etags.c (C_entries, consider_token): C++ `operator' now is
4401 tagged in most cases.
e1dbe924 4402 As before, :: is not recognized if surrounded by spaces.
1c478461
FP
4403
4404 * etags.c (relative_filename): Account for DOS file names such
4405 that is impossible to make one relative to another.
4406
4407 * etags.c (sym_type): New st_C_extern tag.
4408 (gperf input): Use it for spotting external declarations.
a7c29764 4409 (print_help): Document the new behavior of --declarations.
1c478461
FP
4410 (fvextern): New global variable.
4411 (consider_token, C_entries): Use it.
4412
4413 * etags.c (HAVE_GETCWD) [WINDOWSNT]: Define if undefined.
4414 (etags_getcwd): Remove test for WINDOWSNT.
4415
4416 * etags.c (process_file) [MSDOS]: If foo.c.gz is not found, try
4417 foo.cgz, foo.cz, etc.
4418
4419 * etags.c (declarations): New global switch.
4420 (longopts): Describe it.
4421 (print_help): Document it.
4422 (C_entries): Use it.
4423 (process_file): Don't process a file twice.
4424
4425 * etags.c (Fortran_functions): No tags for "procedure".
4426
44271999-11-01 Eli Zaretskii <eliz@is.elta.co.il>
4428
4429 * etags.c (get_compressor_from_suffix): Second argument EXTPTR, if
4430 non-zero, returns a pointer to where the extension begins; callers
4431 changed.
4432 [MSDOS]: Support DOS file names by handling e.g. foo.cgz as if it
4433 were foo.c.gz.
4434
880820fe 44351999-11-01 Francesco Potortì <pot@gnu.org>
1c478461
FP
4436
4437 * etags.c (sym_type, C_stab_entry): New constant st_C_operator.
4438 (fvdev): New constant foperator.
4439 (consider_token): Use it to get "operator" in C++.
4440 (C_entries): Extend length of operator@ function name.
4441 (C_entries): Use foperator when necessary.
4442
4443 * etags.c (main) [!ETAGS_REGEXPS]: Do not call free_patterns.
4444
4445 * etags.c (compressor): New struct for compressed files.
4446 (get_compressor_from_suffix): New function.
4447 (get_language_from_suffix): Use it. Also, semantics changed.
4448 (process_file): Consider compressed files, close file.
4449 (find_entries): Use different call arg for get_language_from_suffix,
4450 don't close file.
4451
4452 * etags.c (main): Call free_tree.
4453 (find_entries): Do not free curfile.
4454 (pfnote): Cosmetic change: NULL and '\0' where appropriate.
4455 (prolog_pred, erlang_func, substitute): Cast strlen to int when
4456 comparing.
4457 (canonicalize_filename): Shut up compiler warning.
4458 (Perl_functions): Make tag significant.
4459
44601999-11-01 Dave Love <d.love@dl.ac.uk>
4461
4462 * etags.c (longopts, optstring): New option --ignore-case-regex (-c).
4463 (argument_type): New member at_icregexp.
4464 (lc_trans): New global.
4465 (main): Fill lc_trans. Process -c args.
4466 (add_regex): New arg determining whether to use translation table.
4467 (analyse_regex): New arg. Use it for add_regex.
4468
880820fe 44691999-11-01 Francesco Potortì <pot@gnu.org>
1c478461
FP
4470
4471 * etags.c (init): Cosmetic change: NULL --> '\0'.
4472 (erlang_attribute): Bug corrected (uninitialized variable).
4473 (filename_is_absolute): New function replaces absolutefn macro and
02ce3e80 4474 corrects a bug. All callers changed.
1c478461
FP
4475 (canonicalize_filename): New function.
4476 (process_file, etags_getcwd, absolute_dirname): Use it.
b166dcd8 4477 (relative_filename, absolute_filename): Remove var shadowing.
1c478461 4478 (C_entries, Pascal_functions): Add fake initializations to keep
02ce3e80 4479 compilers quiet.
1c478461
FP
4480 (TeX_functions, Prolog_functions, Erlang_functions): Cleanup.
4481
4482 * etags.c (xrnew): New macro. All callers of xrealloc changed.
4483 (language): New typedef (was struct lang_entry).
4484 (curlang): New global variable.
02ce3e80 4485 (node): Typedef renamed from NODE.
1c478461
FP
4486 (linebuffer): New typedef (was struct linebuffer).
4487 (pattern): New typedef (was struct pattern). Some members added.
4488 Now used as element of a linked list.
4489 (patterns, num_patterns): Global variables deleted.
4490 (p_head): New global variable.
a64387ee 4491 (forced_lang): New global variable (replaces lang_func).
02ce3e80
SM
4492 (get_language_from_name, get_language_from_interpreter)
4493 (get_language_from_suffix): Semantics changed. All callers changed.
1c478461 4494 (last_node): New global variable.
02ce3e80
SM
4495 (free_tree, add_node, put_entries, total_size_of_entries):
4496 Change name of local vars to avoid clashes with typedef node.
1c478461
FP
4497 (number_len): Rewritten for elegance.
4498 (token): New typedef replaces TOKEN.
4499 (analyse_regex, add_regex): Rewritten for new functionality.
4500 (free_patterns): New function called from main and add_regex.
4501 (initbuffer, readline_internal, readline, grow_linebuffer):
02ce3e80 4502 Change name of local vars to avoid clashes with typedef linebuffer.
1c478461
FP
4503 (readline): Rewritten for new functionality.
4504
ecc54057 4505 * etags.c (Scheme_suffixes): New suffix ".ss".
1c478461
FP
4506 (print_help): --globals is now used for more than C-type languages.
4507 (Perl_functions): Tag global variables ("my" and "local").
4508
4509 * etags.c (print_help): Some messages clarified.
4510 (LOOP_ON_INPUT_LINES): New macro.
02ce3e80
SM
4511 (just_read_file, Fortran_functions, Asm_labels, Perl_functions)
4512 (Python_functions, Cobol_paragraphs, Pascal_functions)
4513 (Lisp_functions, Postscript_functions, Scheme_functions)
4514 (TeX_functions, Prolog_functions, Erlang_functions): Use it.
4515 (Cobol_paragraphs, Postscript_functions, TeX_functions)
4516 (Prolog_functions, Erlang_functions): Use a local variable instead
1c478461
FP
4517 of the global variable dbp.
4518 (Pascal_functions, L_isquote, Scheme_functions): Use GNU coding
4519 standard indentation.
4520
02ce3e80
SM
4521 * etags.c (Python_suffixes, lang_names, Python_functions):
4522 Python support.
1c478461 4523 (skip_spaces, skip_non_spaces): Utility functions.
02ce3e80
SM
4524 (find_entries, takeprec, getit, Fortran_functions, Perl_functions)
4525 (Python_functions, L_getit, Lisp_functions, Scheme_functions)
4526 (prolog_pred, erlanf_func, erlang_attribute): Use them.
61b108cc 4527 (eat_white): Delete.
1c478461
FP
4528
4529 * etags.c (CHAR, init): Keep into account non US-ASCII
4530 characters and compilers with default signed chars.
4531 (L_getit): Tag "(defstruct (foo", "(defun (operator" and similar
4532 constructs.
ecc54057 4533 (C_stab_entry): "interface" in Java behaves like "class".
1c478461 4534
ecc54057 4535 * etags.c (HAVE_NTGUI) [WINDOWSNT]: #undef if HAVE_CONFIG_H.
1c478461
FP
4536 (main): Put interval syntax here.
4537 (add_regex): And remove it from here.
4538
4539 * etags.c (suggest_asking_for_help): Provide a
4540 meaningful help message with and without LONG_OPTIONS.
4541
d07529f3 4542 * etags.c (<io.h>) [MSDOS]: Include it, don't include string.h.
1c478461
FP
4543 <stdlib.h, string.h>: Don't test MSDOS when including them.
4544 (white, nonam, endtk): Like elsewhere, use \r instead of \013.
4545 (put_entries): Correctly use %ld instead of %d in printf.
4546
d07529f3 4547 * etags.c (<unistd.h>) [HAVE_UNISTD_H]: Include conditionally, else
1c478461
FP
4548 declare getcwd if HAVE_GETCWD.
4549 (consider_token): Dead break instruction removed.
4550
4ee9629e
PE
45511999-10-19 Paul Eggert <eggert@twinsun.com>
4552
4553 Add support for large files. Merge glibc 2.1.2.
1c478461 4554
4ee9629e 4555 * b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
d07529f3 4556 * movemail.c, pop.c:
4ee9629e
PE
4557 Do not include <stdlib.h>, as <config.h> does this now.
4558
4559 * b2m.c, emacsserver.c, etags.c, profile.c:
4560 Include <config.h> before any system include files.
1c478461 4561
4ee9629e 4562 * emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
d07529f3 4563 * test-distrib.c:
4ee9629e
PE
4564 (read, write, open, close): Do not undef.
4565
4566 * getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
4567 (const): Do not define if HAVE_CONFIG_H; that's config.h's job.
4568
4569 * getopt.h: Adopt glibc 2.1.2.
1c478461 4570
93c8d183
DL
45711999-10-15 Dave Love <fx@gnu.org>
4572
4573 * Makefile.in (pop.o): Depend on config.h.
4574
b358f91c
GM
45751999-10-11 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4576
4577 * pop.c: Use "pop3" as the POP service name on all platforms,
4578 instead of using "pop" on Unix and "pop3" on Windows NT. "pop3"
4579 has been the standard service name since RFC 1340 was published in
4580 July 1992, so I think it's safe to start using it by default.
4581
362bc2da
DL
45821999-09-27 Dave Love <fx@gnu.org>
4583
4584 * make-docfile.c (scan_lisp_file): Fix typo causing infloop.
4585
74e4cb59
PR
45861999-09-19 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4587
4588 * make-docfile.c (scan_lisp_file): Fix previous changes;
4589 swallow CRLF like just CR or just LF.
4590
362bc2da
DL
45911999-09-03 Richard Stallman <rms@gnu.org>
4592
4593 * make-docfile.c: Include config.h not ../src/config.h.
4594 (main, fopen, chdir): Add #undef.
4595 (read_c_string, scan_c_file, skip_white, read_lisp_symbol)
4596 (scan_lisp_file): Handle \r like \n.
4597
45981999-08-30 Andreas Schwab <schwab@gnu.org>
4599
4600 * make-docfile.c, fakemail.c: Include <stdlib.h> if available.
4601
4602 * emacsserver.c: Include <stdlib.h> if available. Don't declare
4603 errno if it's a macro.
4604
4605 * test-distrib.c: Include <unistd.h> if available.
4606
46071999-08-29 Richard Stallman <rms@gnu.org>
4608
4609 * emacsclient.c (print_help_and_exit): Mention --version.
4610
46111999-08-25 Richard M. Stallman <rms@gnu.org>
4612
4613 * emacsclient.c (decode_options): Update version output.
4614 (print_help_and_exit): Update bug report address.
4615
46161999-08-13 Richard M. Stallman <rms@gnu.org>
4617
4618 * emacsclient.c (main): Move the dynamic allocation of
4619 system_name outside of the SERVER_HOME_DIR conditional.
4620 * emacsserver.c (main): Likewise.
4621
46221999-08-10 Gerd Moellmann <gerd@gnu.org>
4623
4624 * grep-changelog: New.
4625 * Makefile.in (INSTALLABLE_SCRIPTS): Add it.
4626
46271999-07-12 Richard Stallman <rms@gnu.org>
4628
4629 * Version 20.4 released.
4630
46311999-06-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
4632
1c478461 4633 * Makefile.in (clean): Remove fns*.el.
362bc2da
DL
4634
46351999-06-23 Dave Love <fx@gnu.org>
4636
4637 * etags.c (erlang_attribute): Fix undefined variable usage (after
4638 Potorti).
4639
86e888c2 46401999-05-02 Andrew Innes <andrewi@gnu.org>
362bc2da
DL
4641
4642 * movemail.c (main) [WINDOWSNT]: Call ftruncate, which is now
4643 mapped to _chsize.
4644
46451999-04-29 Richard M. Stallman <rms@gnu.org>
4646
4647 * emacsclient.c (main, both versions): Use quote_file_name on cwd.
4648
46491999-03-30 Dave Love <fx@gnu.org>
4650
4651 * sorted-doc.c (main): Split up tables. Modify the preamble
4652 somewhat.
4653
46541999-03-05 Geoff Voelker <voelker@cs.washington.edu>
4655
4656 * makefile.nt: Remove common multiple file compilation commands.
4657
46581999-02-26 Richard Stallman <rms@gnu.org>
4659
362bc2da
DL
4660 * Makefile.in (yow): Depend on epaths.h, not paths.h.
4661
4662 * yow.c: Refer to epaths.h.
4663
46641999-02-22 Simon Josefsson <jas@pdc.kth.se>
4665
4666 * emacsserver.c (perror_1, fatal_error): Don't compile unless needed.
4667
46681999-01-27 Andrew Innes <andrewi@gnu.org>
4669
4670 * makefile.nt: Do make version comparison as strings.
4671
46721999-01-25 Richard Stallman <rms@gnu.org>
4673
4674 * emacsclient.c (xmalloc): Fix previous change.
4675
46761999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
4677
4678 * emacsclient.c (xmalloc): Declare to return long.
4679
46801999-01-22 Geoff Voelker <voelker@cs.washington.edu>
4681
4682 * etags.c (etags_getcwd, absolute_filename) [DOS_NT]: Canonicalize
4683 the case of the drive letter.
4684
46851999-01-15 Richard Stallman <rms@psilocin.ai.mit.edu>
4686
4687 * emacsserver.c (main): Eliminate arbitrary limit on
4688 length of system_name.
4689
4690 * emacsclient.c (main): Eliminate arbitrary limit on
4691 length of system_name.
4692 (xmalloc): Define unconditionally.
4693
46941999-01-12 Darrin B. Jewell <jewell@mit.edu>
4695
4696 * etags.c (relative_filename): Stop backward search at beginning
4697 of string, since non-Unix systems can have absolute paths with no
4698 initial slash.
4699
47001998-12-08 Geoff Voelker <voelker@cs.washington.edu>
4701
b0b19974 4702 * makefile.nt: Do string comparison of _NMAKE_VER.
362bc2da 4703
c60ee5e7 47041998-11-03 Theodore Jump <tjump@cais.com>
362bc2da
DL
4705
4706 * makefile.nt: Compile multiple source files when possible.
4707
47081998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
4709
4710 * Makefile.in: Replace tabs with spaces
4711 when they might confuse some Make versions.
4712
47131998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
4714
4715 * emacsclient.c (main): Null-terminate system_name.
4716
4717 * emacsserver.c (main): Null-terminate system_name.
4718
47191998-09-21 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4720
4721 * movemail.c (popmail, pop_retr) [MAIL_USE_POP]: When displaying
4722 an error message from POP, mention that it's from POP, to
4723 distinguish it from local error messages.
4724
47251998-09-04 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4726
4727 * movemail.c [MAIL_USE_POP]: Add the "-r" flag to reverse the
4728 order of messages downloaded from a POP server (e.g., if the
4729 server stores messages in mailboxes in reverse order).
4730
47311998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
4732
4733 * Version 20.3 released.
4734
47351998-08-11 Paul Eggert <eggert@twinsun.com>
4736
4737 * rcs2log: Update copyright date and bug report address.
4738 (initialize_fullname): Prefer getent if available.
4739
47401998-07-30 Paul Eggert <eggert@twinsun.com>
4741
290afd83 4742 * Makefile.in (REGEXPDEPS, regex.o):
362bc2da 4743 Prepend $(srcdir)/ to rule dependencies outside this dir.
1c478461 4744
362bc2da
DL
47451998-06-09 Andrew Innes <andrewi@harlequin.co.uk>
4746
4747 * etags.c (etags_getcwd) [WINDOWSNT]: Use getcwd on Windows.
4748
47491998-06-06 Richard Stallman <rms@psilocin.ai.mit.edu>
4750
4751 * Makefile.in: Properly terminate a comment.
4752
47531998-06-01 Andrew Innes <andrewi@mescaline.gnu.org>
4754
4755 * movemail.c (sys_wait): Rename to wait.
4756
4757 * ntlib.h: Undefine _WINSOCKAPI_.
4758
4759 * makefile.nt (LOCAL_FLAGS): Define HAVE_CONFIG_H.
4760
47611998-05-30 Geoff Voelker <voelker@cs.washington.edu>
4762
4763 * ntlib.c (getppid): Look for EM_PARENT_PROCESS_ID.
4764
47651998-05-01 Andrew Innes <andrewi@harlequin.co.uk>
4766
b166dcd8
KC
4767 * movemail.c [WINDOWSNT]: Undefine DISABLE_DIRECT_ACCESS.
4768 Force all file i/o to be in binary mode. Include ntlib.h.
362bc2da
DL
4769
47701998-04-27 Andreas Schwab <schwab@delysid.gnu.org>
4771
4772 * make-docfile.c: Include <unistd.h> for chdir.
4773
47741998-04-25 Richard Stallman <rms@psilocin.gnu.org>
4775
4776 * etags.c (TEX_decode_env): Don't free the value getenv returns.
4777
47781998-04-17 Geoff Voelker <voelker@cs.washington.edu>
4779
4780 * makefile.nt (obj): Update with new files in src.
4781 (clean): Delete patch scratch files, optimized compilation dir.
4782
47831998-04-08 Dave Love <fx@gnu.org>
4784
4785 * emacsclient.c: Move inclusion of unistd.h to top, else fails on
4786 Irix6, at least.
4787
47881998-04-06 Andreas Schwab <schwab@gnu.org>
4789
4790 Silence -Wimplicit:
4791 * movemail.c: Move cancelations up. Include <stdlib.h> if
4792 available.
4793 * fakemail.c (_XOPEN_SOURCE): Define for declaration of cuserid.
4794 (parse_header): Explicitly declare return type.
4795 * emacsserver.c: Include <unistd.h> if available.
4796 (main, handle_signals, perror_1, fatal_error): Explicitly declare
4797 return types. Add forward declarations.
4798 * emacsclient.c: Include <stdlib.h> and <unistd.h> if available.
4799 Don't declare geteuid.
b166dcd8
KC
4800 (print_help_and_exit): Change return type to void.
4801 Forward declare it.
362bc2da
DL
4802 * b2m.c: Include <stdlib.h> if available.
4803 (main): Explicitly declare return type.
4804
362bc2da
DL
48051998-04-03 Richard Stallman <rms@psilocin.gnu.org>
4806
4807 * etags.c (put_entries): Use %ld.
4808
4809 * b2m.c (fatal): Declare the arg.
4810
48111998-03-26 Richard Stallman <rms@psilocin.gnu.org>
4812
b166dcd8 4813 * pop.c (pop_getline): Rename from getline.
362bc2da
DL
4814
48151998-03-05 Richard Stallman <rms@psilocin.gnu.org>
4816
4817 * Makefile.in (install): Use INSTALL_STRIP with INSTALL_PROGRAM
4818 for the utilities.
4819
48201998-01-23 Dave Love <d.love@dl.ac.uk>
4821
4822 * etags.c (getit, Cobol_paragraphs, Pascal_functions,
4823 Postscript_functions, prolog_pred, erlang_func, erlang_attribute):
4824 Always make named tags.
4825 (Fortran_functions): Grok BLOCK DATA.
4826
48271998-01-23 Andreas Schwab <schwab@gnu.org>
4828
4829 * movemail.c (main): Fix interwoven brace and cpp conditional
4830 nesting.
4831
362bc2da
DL
48321997-12-03 Paul Eggert <eggert@delysid.gnu.org>
4833
cb438d6e
JB
4834 * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which quotes
4835 with a '>' any lines starting with "From " read from the POP server,
4836 but leave the code in place, wrapped in #ifdef
362bc2da 4837 MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
b166dcd8
KC
4838 because it turns out that something is depending on it.
4839 Change suggested by Paul Eggert <eggert@twinsun.com>.
362bc2da
DL
4840 Convert the character \037 (^_) at the beginning of a line into
4841 the character '^' followed by the character '_', because otherwise
4842 Emacs can't parse the resulting file as a valid BABYL file.
4843 Change suggested by Paul Eggert <eggert@twinsun.com>.
4844
48451997-12-03 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4846
4847 * movemail.c, pop.c, pop.h: Allow messages retrieved from the POP
4848 server to contain embedded nulls.
4849
48501997-12-02 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
1c478461 4851
362bc2da
DL
4852 * movemail.c (mbx_write) [MAIL_USE_POP]: Disable the code which
4853 quotes with a '>' any lines starting with "From " read from the
4854 POP server, but leave the code in place, wrapped in #ifdef
4855 MOVEMAIL_QUOTE_POP_FROM_LINES, in case we have to restore it later
b166dcd8
KC
4856 because it turns out that something is depending on it.
4857 Change suggested by Paul Eggert <eggert@twinsun.com>.
362bc2da
DL
4858
4859 Convert the character \037 (^_) at the beginning of a line into
4860 the character '^' followed by the character '_', because otherwise
4861 Emacs can't parse the resulting file as a valid BABYL file.
4862 Change suggested by Paul Eggert <eggert@twinsun.com>.
4863
48641997-11-22 Richard Stallman <rms@gnu.org>
4865
4866 * b2m.c: Include getopt.h.
4867 (main): Use getopt_long to handle --version and --help.
4868
4869 * Makefile.in (b2m): Define VERSION. Link with $(GETOPTOBJS).
4870
48711997-10-31 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4872
b166dcd8
KC
4873 * pop.c (fullwrite): Get rid of an extra call to write.
4874 Problem pointed out by Chiaki Ishikawa.
362bc2da
DL
4875
48761997-10-16 Dave Love <d.love@dl.ac.uk>
4877
ecc54057
JB
4878 * etags.c (L_getit): Always make named tags so that Emacs
4879 completion on symbols containing `:' etc. works.
4880 (get_scheme): Likewise.
362bc2da
DL
4881
48821997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4883
4884 * pop.c: Use system header files instead of declaring C-library
4885 functions explicitly.
4886
48871997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4888
4889 * Version 20.2 released.
4890
48911997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4892
4893 * Version 20.1 released.
4894
48951997-09-02 Andrew Innes <andrewi@harlequin.co.uk>
4896
4897 * makefile.nt (movemail.exe): Link wsock32.lib before LIBS.
4898
4899 * ntlib.c (getpid): Delete function.
4900
49011997-08-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
4902
4903 * make-docfile.c (scan_lisp_file): Handle custom-declare-variable.
4904
49051997-08-26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
4906
4907 * emacsclient.c [HAVE_SYSVIPC]: Include errno.h, as in the other case.
4908 (main) [!BSD_SYSTEM]: Fix error message for getcwd failure.
4909
49101997-08-14 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4911
4912 * emacsserver.c (main): Use SOCKLEN_TYPE for fromlen, if it is defined.
4913
49141997-08-13 Kazushi (Jam) Marukawa <jam@poboxes.com>
4915
4916 * profile.c (get_time): Cast arg to fprintf.
4917
4918 * hexl.c (main): Use %08lx instead of %08x in printf because the
4919 variable named addresses is long.
4920
49211997-08-08 Geoff Voelker <voelker@cs.washington.edu>
4922
4923 * makefile.nt (lisp): Update paths to lisp files that have moved.
4924
49251997-08-08 Andrew Innes <andrewi@harlequin.co.uk>
4926
4927 * makefile.nt (ctags.obj): New target.
4928 (etags.obj, getopt.obj, make-docfile.obj): Update dependencies.
4929
4930 * ntlib.h: Add includes.
4931 Undo definitions of crt routines from config.h.
4932
49331997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4934
4935 * etags.c (Yacc_suffixes, Asm_suffixes): Add some alternatives.
4936
49371997-07-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4938
4939 * pop.c: Support auto-configuration of both Kerberos V4 and
ecc54057
JB
4940 Kerberos V5 for movemail, including detection of V4 and V5 header
4941 files and libraries.
362bc2da 4942 Include <string.h> when STDC_HEADERS is defined, to get
ecc54057 4943 declarations of string functions.
362bc2da 4944 [KERBEROS5] (socket_connection): Support the current MIT Kerberos
ecc54057 4945 V5 API rather than the old one.
362bc2da 4946 [KERBEROS] (socket_connection): Change a constant name from
ecc54057
JB
4947 SOCKET_ERROR to POP_SOCKET_ERROR to avoid a namespace conflict
4948 with a constant in a header file.
362bc2da
DL
4949
4950 * Makefile.in: Support auto-configuration of both Kerberos V4 and
ecc54057
JB
4951 Kerberos V5 for movemail, including detection of V4 and V5 header
4952 files and libraries.
362bc2da
DL
4953
49541997-07-17 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4955
4956 * fakemail.c [HAVE_UNISTD_H]: Include unistd.h.
4957
4958 * etags.c [HAVE_UNISTD_H]: Include unistd.h.
1c478461 4959
362bc2da
DL
49601997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4961
4962 * emacsclient.c [C_ALLOCA] (xmalloc): New function.
4963
49641997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4965
4966 * movemail.c (rindex): Add declaration.
4967
d57727c9 49681997-07-01 Geoff Voelker <voelker@cs.washington.edu>
362bc2da
DL
4969
4970 * makefile.nt (GETOPTOBJS, GETOPTDEFS, MOVEMAILOBJS): Define.
4971 (movemail.exe): Depend upon and link with getopt files.
4972 (obj): Include new source files.
4973 (FACE_SUPPORT, MOUSE_SUPPORT, FLOAT_SUPPORT, WINNT_SUPPORT): Define.
4974 (lisp): Include new and reorganized elisp files.
4975
49761997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
4977
4978 * Makefile.in (blessmail): Find blessmail.el in mail subdirectory.
4979
49801997-06-25 Paul Eggert <eggert@twinsun.com>
4981
4982 * rcs2log: Don't assign to $0 in awk; some awks don't allow this.
4983
49841997-06-14 Karl Heuer <kwzh@gnu.ai.mit.edu>
4985
4986 * b2m.c (readline): Terminate buffer properly when EOF seen.
4987 Test for valid pointer before dereferencing it.
4988
880820fe 49891997-05-30 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
4990
4991 * Makefile.in (etags): Remove -DETAGS_REGEXPS, because now it is
4992 defined inside etags.c if HAVE_CONFIG_H is defined.
4993
880820fe 49941997-05-29 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da 4995
ecc54057 4996 * etags.c (logical): Type name changed to bool.
362bc2da
DL
4997 (ETAGS_REGEXPS, LONG_OPTIONS) [HAVE_CONFIG_H]: #define them.
4998 (<getopt.h>) [LONG_OPTIONS]: Include conditionally.
4999 (getopt_long) [!LONG_OPTIONS]: Redefine as macro.
5000 (main): Accepted options depend on ETAGS_REGEXPS and LONG_OPTIONS.
5001 (longopts): New long options without short counterpart are
5002 globals, members, no-globals, no-members. Regexp options are now
5003 defined conditionally to ETAGS_REGEXPS.
5004 (print_help): Updated.
5005
880820fe 50061997-05-22 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5007
5008 * etags.c (C_entries): Use "." instead of "::" for Java.
5009 (consider_token): is_func renamed to is_func_or_var.
5010 (C_entries): is_func renamed to funorvar.
e1dbe924 5011 (C_entries): Initialize tok.named.
362bc2da
DL
5012 (sym_type, C_stab_entry, consider_token): st_C_ignore is used to
5013 get rid of "import", "package" and "friend".
b166dcd8
KC
5014 (fvdef): Rename from funcdef. Also some constants renamed.
5015 All users changed.
362bc2da
DL
5016 (C_entries): Make separate tags for variables separated by comma.
5017 (globals, members): New flags.
5018 (main, C_entries): Use them.
5019 (make_C_tag, C_entries): Make tok a global variable.
1c478461 5020
880820fe 50211997-05-16 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5022
5023 * etags.c (funcdef): New vignore constant.
5024 (consider_token, C_entries): Use it to tag global variables.
5025 (print_help): Update for global variables.
5026 (consider_token, C_entries): Set the len member of token_name.
5027 (prolog_pred): Cleanup according to GNU coding standards.
5028 (Cobol_suffixes, lang_names, Cobol_paragraphs): Cobol support.
b166dcd8 5029 (prolog_white, erlang_white): Rename to eat_white, callers changed.
362bc2da 5030
880820fe 50311997-05-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5032
5033 * etags.c (CHARS, CHAR): New constant and macro.
5034 (iswhite, begtoken, intoken, endtoken): Use them.
5035 (notinname, _nin, nonam): New macro, array, string.
5036 (init): Cleanup and init _nin.
5037 (new_pfnote): New function.
5038 (make_C_tag) [traditional_tag_style]: Use it.
10d1d0af 5039 (traditional_tag_style): Constant set to TRUE for now.
362bc2da 5040
880820fe 50411997-05-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5042
5043 * etags.c (C_entries, Pascal_functions): Cleanup.
5044 (TeX_functions): NULL as a function arg needs a cast.
5045 (Erlang_functions, erlang_func, erlang_attribute): Cleanup.
5046
880820fe 50471997-05-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5048
5049 * etags.c (TeX_functions): Cleaned up.
61b108cc 5050 (tex_getit): Remove.
362bc2da
DL
5051
50521997-05-13 Paul Eggert <eggert@twinsun.com>
5053
5054 * rcs2log (files): When computing arguments automatically, ignore
ecc54057 5055 non-files within the RCS subdirectory.
362bc2da 5056
880820fe 50571997-05-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5058
5059 * etags.c (C_JAVA): New #define.
5060 (Cjava_suffixes): .java is Java.
5061 (Cjava_entries): New function.
5062 (lang_names): Add Java.
5063 (sym_type): Add st_C_javastruct for Java.
5064 (C_stab_entry): Add `extends' and `implements' keywords.
e1dbe924 5065 (consider_token, C_entries): Recognize Java structures.
362bc2da 5066
880820fe 50671997-05-12 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da 5068
7877f373
JB
5069 * etags.c (Cplusplus_suffixes): .pdb is PostScript with C syntax.
5070 (Postscript_suffixes): .ps is PostScript.
5071 (lang_names): Add postscript.
362bc2da
DL
5072 (Postscript_functions): New function.
5073 (TEX_decode_env): Close minor memory leak.
5074 (just_read_file): Correct the char number of the tag.
5075
50761997-05-11 Paul Eggert <eggert@twinsun.com>
5077
5078 * rcs2log (loginFullnameMailaddrs, logins, rlog_options, files):
ecc54057
JB
5079 Don't prepend $nl since this causes some shells to generate the
5080 empty string when IFS is $nl.
362bc2da 5081 (printlogline): Use SOH (octal code 1), not CR, since some
ecc54057 5082 PC-based shells mishandle CR.
362bc2da
DL
5083 (initialize_fullname): Set NIS_PATH to the empty string before invoking
5084 nismatch, in case it's set to some nonstandard value.
1c478461 5085
362bc2da
DL
50861997-05-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
5087
5088 * pop.c (getline): Don't miss CRLF pairs when the CR and LF are
5089 read in separate blocks.
5090
880820fe 50911997-04-30 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5092
5093 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
5094 (struct linebuffer): New member `len' is the length of the string.
5095 (find_entries, Pascal_functions, TeX_functions, TEX_getit):
5096 Use it instead of strlen.
5097 (TEX_getit): Declare and define unconditionally as static.
5098 (TeX_functions): Use if instead of #if TeX_named_tokens.
5099 (add_regex): Set RE_INTERVALS flag for regex compilation.
5100 (substitute): Code cleanup.
5101 (readline_internal): Code cleanup, set new member `len'.
5102 (readline): Bug corrected.
5103
51041997-04-23 Geoff Voelker <voelker@cs.washington.edu>
5105
5106 * makefile.nt: Change references of windowsnt.h to ms-w32.h.
5107 (obj): Change references of nt*.c files to w32*.c files.
5108
880820fe 51091997-04-15 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5110
5111 * etags.c (xnew): Add support for debugging with chkmalloc.
5112 (error): Use this instead of printf whenever possible.
e1dbe924 5113 (main): Only call xnew after having initialized progname.
362bc2da
DL
5114 (substitute): Bad memory corruption error corrected.
5115
880820fe 51161997-04-08 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5117
5118 * etags.c (add_regex): Undo previous change.
5119 (relative_filename): Small memory leak closed.
5120 (absolute_filename): Cleaned up the code, possibly closing a bug.
5121 (absolute_dirname): Always return a newly allocated string.
1c478461 5122
362bc2da
DL
51231997-03-21 Paul Eggert <eggert@twinsun.com>
5124
5125 * rcs2log (files): Ignore files in RCS directory whose names are
ecc54057
JB
5126 of the form ,*, or *_; they are probably RCS lock files.
5127 Also, ignore files named .rcsfreeze.log or .rcsfreeze.ver;
362bc2da
DL
5128 they are used by rcsfreeze.
5129
880820fe 51301997-03-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da 5131
2f2c687b 5132 * etags.c (add_regex): Reset *putbuf before using it.
362bc2da
DL
5133
51341997-02-23 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
5135
5136 * movemail.c (popmail): Remove some unnecessary function
5137 declarations.
5138 (popmail, pop_retr): Since popmail always passes mbx_write and mbf
5139 into pop_retr, there's no reason to pass in mbx_write, and the
5140 file argument can be declared FILE * explicitly. This fixes a
5141 compilation problem on systems with 64-bit pointers.
5142
51431997-02-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
5144
5145 * movemail.c: Delete duplicate inclusion of fcntl.h
5146 and duplicate #undefs of open, read, write, close.
5147
51481997-01-20 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
5149
5150 * movemail.c (main): Do not display "[POP-password]" in the usage
5151 message when movemail is compiled without POP support.
5152 (main, popmail): Add the optional "-p" argument, which causes
5153 movemail to leave mail in the inbox after copying it into the
5154 output file.
1c478461 5155
362bc2da
DL
5156 * Makefile.in (movemail): Link with getopt.
5157
51581997-01-20 Paul Eggert <eggert@twinsun.com>
5159
ecc54057 5160 * rcs2log (--help, --version): New options, per GNU coding standards.
362bc2da
DL
5161 (Copyright, Help, Id): New variables, for above.
5162 (rlog): Use -q option with cvs log, to avoid useless chatter.
5163
5164 Treat logs of "Initial revision" (RCS) or "file F was initially added
5165 on branch B." (CVS) as if they said "New file.", for consistency with
5166 change log entries.
5167
51681997-01-01 Paul Eggert <eggert@twinsun.com>
5169
5170 * vcdiff (PATH): Add /usr/xpg4/bin,
5171 where XPG4 SCCS hangs out in Solaris 2.5.
5172 (sid1): Don't use bare -r, since XPG4 `get' does not allow it.
5173
51741996-12-19 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
5175
5176 * etags.c (streq, strneq): Use == NULL rather than !.
5177
51781996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
5179
5180 * Makefile.in (LIBMAIL): New macro. Conditionally includes -lmail.
ecc54057 5181 (movemail): Use LIBMAIL, to link against -lmail.
362bc2da
DL
5182
5183 * movemail.c: Include maillock.h (conditionally).
5184 Remove a redundant inclusion of <stdio.h>.
5185 (MAIL_USE_MAILLOCK): New macro, conditionally defined.
5186 (main): Add variable spool_name.
5187 Support the usage of maillock and mailunlock to
ecc54057 5188 lock and unlock mailboxes.
362bc2da
DL
5189 (mail_spool_name): New function.
5190
5191 * movemail.c: Fix an uninitialized variable which could cause
ecc54057
JB
5192 movemail to exit with an error status incorrectly on systems which
5193 use lock files rather than a system locking function to lock
5194 mailboxes.
362bc2da
DL
5195
51961996-12-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
5197
5198 * pop.c (socket_connection): Free realhost after using it.
5199
880820fe 52001996-12-04 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5201
5202 * etags.c (C_entries): Test tok.valid. This handles some
5203 particular cases involving function declarations that failed.
5204
52051996-11-22 Charles Hannum <mycroft@gnu.ai.mit.edu>
1c478461 5206
362bc2da
DL
5207 * pop.c (socket_connection):
5208 gethostbyname may return a pointer to static data.
5209 krb_realmofhost can clobber it. So copy it.
5210
880820fe 52111996-11-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5212
5213 * etags.c (pfnote, fatal, error): Callers using a NULL pointer
5214 must cast it to (char *) because we have no prototypes.
5215 (make_C_tag): Macro deleted, new function.
5216 (C_entries): Calls to make_C_tag macro changed to call function.
5217
880820fe 52181996-11-13 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5219
5220 * etags.c (grow_linebuffer): New function.
5221 (GROW_LINEBUFFER): Macro deleted. All callers changed.
5222 (make_tag): Macro renamed to make_C_tag. All callers changed.
5223 (<stdlib.h>, <string.h>) [STDC_HEADERS]: New #include's.
5224 (Prolog_functions): prolog_skip_comment was called with wrong
5225 number of arguments.
6088b51f 5226 (xrealloc): fatal was called with wrong number of arguments.
362bc2da 5227
880820fe 52281996-11-08 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5229
5230 * etags.c (relative_filename): Bug corrected.
5231 (etags_getcwd): Avoid warning of unused variable.
b166dcd8 5232 (C_entries, consider_token): Add support for enum labels.
362bc2da
DL
5233
52341996-11-03 Paul Eggert <eggert@twinsun.com>
5235
5236 * rcs2log: When processing cvs log output, remove `Attic/' from
ecc54057 5237 repository file names.
362bc2da
DL
5238
52391996-10-22 Karl Heuer <kwzh@gnu.ai.mit.edu>
5240
5241 * emacsserver.c: Fix 1996-09-02 change.
5242
52431996-10-12 Paul Eggert <eggert@twinsun.com>
5244
5245 * rcs2log (rlog_options): Look for ' option' rather than 'unknown
ecc54057 5246 option', since CVS says 'invalid option'.
362bc2da
DL
5247 (datearg): Use the empty string, not '-d>1970-01-01', to extract all
5248 revisions, since some hosts reject 1970-01-01 when east of UTC.
5249 (date): Remove.
5250
52511996-10-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
5252
5253 * etags.c (etags_getcwd) [WINDOWSNT]: Convert backslashes to slashes.
5254
880820fe 52551996-10-02 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5256
5257 * etags.c (print_version): Print copyright info.
5258
5259 * etags.c (print_help): Print the bug reporting address.
5260 (main): Use return as the last instruction, instead of exit.
5261
5262 * etags.c (main): Don't open the tags file in cxref mode.
5263
52641996-09-29 Dave Love <d.love@dl.ac.uk>
5265
5266 * rcs2log (date): Make default format acceptable to CVS post v1.8
ecc54057 5267 as well as earlier CVSs and RCS.
362bc2da
DL
5268
52691996-09-29 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
5270
5271 * movemail.c (main): If the lock call fails with EBUSY or
5272 EAGAIN, retry a few times.
5273
52741996-09-25 Paul Eggert <eggert@twinsun.com>
5275
5276 * rcs2log (rlog_options): Use $rlog, not rlog, when deciding
ecc54057 5277 whether to append -zLT.
362bc2da
DL
5278
52791996-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
5280
5281 * fakemail.c: Replaced symbol BSD with BSD_SYSTEM.
5282 * emacsclient.c, movemail.c: Likewise.
5283
52841996-09-09 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
5285
5286 * emacsclient.c (longopts): Change nowait to no-wait.
5287 (print_help_and_exit): Fix option name; upcase metavars.
5288
52891996-09-06 Erik Naggum <erik@naggum.no>
5290
5291 * emacsserver.c (main): Declare `fromlen' as size_t.
5292
52931996-09-02 Eli Zaretskii <eliz@is.elta.co.il>
5294
5295 * etags.c (etags_getcwd): Use getcwd if available even if MSDOS.
5296
52971996-09-02 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
5298
5299 * emacsclient.c (quote_file_name): Quote with &, not \.
5300 Quote `-' only at start of file name. Terminate the value string.
5301
5302 * emacsserver.c: Include signal.h properly;
5303 delete the duplicate includes for it.
5304
5305 * emacsserver.c: On fatal signal, delete socket-file:
5306 * emacsserver.c: Include signal.h.
ecc54057 5307 (xmalloc, fatal, error): New functions.
362bc2da
DL
5308 (delete_socket, handle_signals): New functions.
5309 (progname, socket_name): New variables.
194d44e7 5310 [HAVE_SOCKETS] (main): Call handle_signals; set the new variables.
362bc2da
DL
5311
53121996-09-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
5313
5314 * emacsclient.c (quote_file_name): New function.
5315 (main, both versions): Use quote_file_name.
5316 (decode_options): Don't return a value.
5317 (main, both versions): Use optind.
5318 Don't check for -nowait here.
1c478461 5319
362bc2da
DL
5320 * emacsclient.c (decode_options): New function.
5321 (main, both versions): Call decode_options.
5322 (print_help_and_exit): New function.
5323 (VERSION): New macro.
5324
5325 * Makefile.in (emacsclient): Link with getopt.
5326 Add -DVERSION so emacsclient knows its version number.
5327
53281996-08-31 Geoff Voelker <voelker@cs.washington.edu>
5329
5330 * makefile.nt (lisp): Include dos-nt.elc.
5331
53321996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
5333
5334 * Makefile.in (blessmail): Use $srcdir to find blessmail.el.
5335
53361996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
5337
5338 * emacsclient.c (both versions): Handle -nowait and --nowait
5339 by sending data to the server.
5340
53411996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
5342
5343 * Makefile.in (INSTALL_STRIP): New variable.
5344 (${archlibdir}): Use INSTALL_STRIP.
5345
5346 * Makefile.in (MOVE_LIBS): Use conditionals on KERBEROS,
5347 HAVE_LIBKRB, HAVE_LIBDES, HAVE_LIBCOM_ERR to set it up.
5348
5349 * pop.c: Reverse conditional in previous change.
5350
53511996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
5352
5353 * pop.c: Include des.h krb.h with no dir name if SOLARIS2.
5354
53551996-08-24 Paul Eggert <eggert@twinsun.com>
5356
5357 * rcs2log: Use ISO 8601 date format, with time zone appended
5358 if change-log-time-zone-rule is non-nil, instead of
5359 traditional Unix date format.
5360
5361 (datearg): When computing default from ChangeLog, handle ISO format
5362 dates in addition to old-fashioned dates from Emacs 19.31 and earlier.
5363 Don't worry about hh:mm:ss since the resolution is now by day.
10d1d0af 5364 Use empty datearg, not empty rlog_options, to decide whether to pass
362bc2da
DL
5365 "$datearg" option to $rlog.
5366 (logTZ): New variable, set to TZ specified by change-log-time-zone-rule.
5367 (month_data): Remove `mo'; no longer needed.
10d1d0af 5368 (rlog_options): Use -zLT for localtime output, if `rlog' supports it.
362bc2da
DL
5369
5370 Match `revision' line of rlog output more accurately.
5371
5372 Add -c, -v options.
5373
53741996-08-23 Eli Zaretskii <eliz@is.elta.co.il>
5375
5376 * hexl.c: Include <config.h>, so DOS_NT is defined on MSDOS.
5377
53781996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
5379
5380 * Version 19.33 released.
5381
53821996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
5383
5384 * Version 19.32 released.
5385
53861996-07-23 Andrew Innes <andrewi@harlequin.co.uk>
5387
5388 * etags.c (readline_internal) [DOS_NT]: Don't include CRs when
5389 computing character positions in source files.
5390
53911996-07-16 Andrew Innes <andrewi@harlequin.co.uk>
5392
5393 * makefile.nt (clean): Use OBJDIR macro.
5394
53951996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
5396
5397 * cvtmail.c, sorted-doc.c, yow.c, emacsserver.c: Undo previous change.
5398
c60ee5e7 53991996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
362bc2da 5400
ecc54057 5401 * cvtmail.c, sorted-doc.c, yow.c [__GNU_LIBRARY__]: Use <string.h>.
362bc2da
DL
5402 * emacsserver.c (main) [__GNU_LIBRARY__]: Use size_t for fromlen.
5403 * etags.c, fakemail.c, profile.c: Declare main as int, not void.
5404
54051996-07-15 Andrew Innes <andrewi@harlequin.co.uk>
5406
5407 * ntlib.h: Correct return type of getwd.
5408 * ntlib.c (getwd): Correct return type.
5409
54101996-07-02 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
5411
5412 * emacsserver.c (main) [HAVE_SOCKETS]: Call rewind before writing
5413 to infile.
5414
54151996-07-01 Andrew Innes <andrewi@harlequin.co.uk>
5416
5417 * makefile.nt: Remove all references to wakeup.
5418
880820fe 54191996-06-28 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5420
5421 * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
5422 explicit, mutable, typename.
5423
54241996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
5425
5426 * emacsclient.c (main) [HAVE_SOCKETS]: Use two separate stdio
5427 streams, one for sending and one for reading the reply.
5428
54291996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
5430
5431 * Makefile.in (timer, timer.o, getdate.o, $(srcdir)/getdate.c)
5432 (wakeup): Target deleted.
5433 (UTILITIES): Delete wakeup and timer.
5434
5435 * wakeup.c, timer.c, getdate.y, getdate.c: Files deleted.
5436
54371996-06-11 Geoff Voelker <voelker@cs.washington.edu>
5438
5439 * etags.c (etags_getcwd) [DOS_NT]: Change conditional to MSDOS only.
5440 * makefile.nt (ETAGS_CFLAGS): Define HAVE_GETCWD macro.
5441
54421996-06-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
5443
5444 * etags.c (main): Copy cwd when appending slash.
5445
54461996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
5447
5448 * Version 19.31 released.
5449
880820fe 54501996-05-17 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5451
5452 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
5453 (Pascal_functions): Increase linecharno by the correct number of
5454 chars, inline the GET_NEW_LINE macro and delete its definition.
5455
c60ee5e7 54561996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
362bc2da
DL
5457
5458 * makefile.nt (OBJDIR, BLD): Remove macro definitions.
5459
c60ee5e7 54601996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
362bc2da
DL
5461
5462 * makefile.nt (LOCAL_FLAGS): Include path to NT shadow includes.
6088b51f 5463 (movemail.exe, fakemail.exe): Now built under Win32.o.
362bc2da
DL
5464
5465 * ntlib.c: Include ntlib.h.
5466 (nt_sleep): Rename to sleep.
5467 (getwd): Return directory.
5468 (getlogin, cuserid, getuid, setuid, getpwuid, getpass, fchown,
5469 sys_ctime, sys_fopen): New functions.
5470
5471 * ntlib.h: New file.
5472
54731996-04-29 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
5474
b166dcd8 5475 * pop.c (SEND, RECV): Rename from send, recv.
362bc2da
DL
5476 (pop_open, pop_trash): Make the trash_started code unconditional.
5477 (socket_connection): Delete casts to void.
5478
54791996-04-28 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
5480
b166dcd8
KC
5481 * movemail.c (DIRECTORY_SEP, IS_DIRECTORY_SEP):
5482 Definitions copied from lisp.h.
362bc2da
DL
5483
54841996-04-22 Andrew Innes <andrewi@harlequin.co.uk>
5485
5486 * fakemail.c [WINDOWSNT]: Include ntlib.h.
5487
5488 * hexl.c [DOSNT]: Include fcntl.h.
5489 [WINDOWSNT]: Include io.h.
5490 (main) [MSDOS]: Change conditional to DOS_NT.
5491
5492 * movemail.c (access, unlink) [WINDOWSNT]: Macros undefined.
5493 (fork, syswait, DISABLE_DIRECT_ACCESS) [WINDOWSNT]: Macros defined.
5494 [WINDOWSNT]: Include locking.h.
5495 (main): Update usage message. Use IS_DIRECTORY_SEP.
5496 (main) [DISABLE_DIRECT_ACCESS]: Don't check access if defined.
5497 (main) [WINDOWSNT]: Invoke locking instead of flock.
5498 (main) [MAIL_USE_SYSTEM_LOCK && WINDOWSNT]: Emulate ftruncate.
5499 (main) [MAIL_USE_POP]: Pass password to popmail if used.
5500 Include winsock.h; don't include unix inet headers.
5501 (popmail): Add password argument and pass it to pop_open.
5502 Open output file in binary mode.
5503
5504 * pop.c [WINDOWSNT]: Include winsock.h and ntlib.h.
1c478461 5505 Macro SOCKET_ERROR undefined.
362bc2da
DL
5506 Don't declare h_errno.
5507 [!WINDOWSNT]: Define macros recv and send.
5508 [!WINDOWSNT] (POP_SERVICE): Change to pop3.
5509 (pop_open) [WINDOWSNT]: Initialize trash_started.
5510 (have_winsock) [WINDOWSNT]: New variable.
5511 (socket_connection) [WINDOWSNT]: Initialize winsock.
5512 (socket_connection): Use closesocket instead of close.
5513 (getline): Use recv instead of read.
5514 (fullwrite): Use send instead of write.
5515 (pop_trash): Use closesocket instead of close.
5516 (pop_trash) [WINDOWSNT]: Cleanup winsock.
5517 Check if being called recursively by sendline.
5518
5519 * pop.h (struct _popserver): New field trash_started.
5520
5521 * wakeup.c [HAVE_CONFIG_H]: Only include config.h when defined.
5522
55231996-04-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5524
5525 * hexl.c (main) [DJGPP v2]: Don't change to binary for a tty.
5526
55271996-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5528
5529 * etags.c [WINDOWSNT]: Include io.h.
5530
55311996-04-10 Geoff Voelker <voelker@cs.washington.edu>
5532
5533 * makefile.nt (CTAGSOBJ): Compile with regexp support.
5534
55351996-04-09 Eli Zaretskii <eliz@is.elta.co.il>
5536
5537 * hexl.c [DJGPP v2]: Include io.h.
5538 (main) [DJGPP v2]: Switch standard streams to binary with setmode.
5539
5540 * b2m.c (main) [MSDOS]: Switch standard streams to binary under
5541 DJGPP v2.
5542
55431996-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5544
5545 * etags.c (absolute_filename): Use absolutefn.
5546
55471996-03-31 Eli Zaretskii <eliz@is.elta.co.il>
5548
5549 * etags.c (absolutefn) [DOS_NT]: Support Novell drives whose drive
5550 letter isn't an alphabetic character.
5551 (main) [DOS_NT]: Use binary mode on redirected `stdout'.
5552 (process_file) [DOS_NT]: Convert all slashes to forward style.
5553 (absolute_filename) [DOS_NT]: Emit error message for relative
5554 paths with a drive letter.
5555 (absolute_filename) [DOS_NT]: Handle absolute pathnames with
5556 DOS/NT drive letters which try to reference the parent of the root.
5557 (absolute_dirname) [DOS_NT]: Convert all slashes to forward style.
5558
55591996-03-27 Geoff Voelker <voelker@cs.washington.edu>
5560
5561 * makefile.nt: Change uses of del to $(DEL).
5562
880820fe 55631996-03-22 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5564
5565 * etags.c (just_read_file): Reset lineno and charno on entry.
5566
55671996-03-15 Anders Lindgren <andersl@csd.uu.se>
5568
58179cce 5569 * etags.c: Prolog language totally rewritten.
ecc54057 5570 (Prolog_functions): Rewritten from scratch.
61b108cc 5571 (skip_comment, prolog_getit): Remove.
ecc54057
JB
5572 (prolog_skip_comment): New function, like old skip_comment.
5573 (prolog_pred, prolog_atom, prolog_white): New functions.
5574 (erlang_func, erlang_attributes): Forward declarations added.
5575 (erlang_atom): Check if backslash ends line inside quoted atom.
362bc2da 5576
880820fe 55771996-03-14 Francesco Potortì <F.Potorti@cnuce.cnr.it>
362bc2da
DL
5578
5579 * etags.c (absolutefn): DOS_NT version corrected.
5580 (main): Append "/" to the dir name only if not already there.
5581 (print_help): Explain the absolute/relative file name issue.
1c478461 5582
362bc2da
DL
55831996-03-08 Anders Lindgren <andersl@csd.uu.se>
5584
10d1d0af
JB
5585 * etags.c: New Language Erlang added.
5586 (Erlang_functions, erlang_func, erlang_attribute, erlang_atom)
5587 (erlang_white): New functions.
362bc2da
DL
5588 (Erlang_suffixes): New suffix list.
5589 (lang_names): Erlang entry added.
5590 (prolog_getit): Accepts headers spanning several lines.
5591 Always name tags.
b166dcd8 5592 (Prolog_functions): Remove incorrect compensation for
362bc2da
DL
5593 newline characters.
5594 (readline_internal): Zero-terminate last line.
5595
55961996-03-20 Mike Long <mike.long@analog.com>
5597
5598 * b2m.c (main): Initialize progname variable before using it.
5599 Quote `username' in From_ header.
5600
56011996-03-18 Geoff Voelker <voelker@cs.washington.edu>
5602
5603 * ntlib.c (getpid): New function.
5604
56051996-02-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
5606
5607 * emacsclient.c (main, both definitions):
5608 Print a newline for normal termination.
5609
56101996-02-21 Noah Friedman <friedman@prep.ai.mit.edu>
5611
5612 * tcp.c (main): Convert port to network byte order.
5613
56141996-01-20 Karl Heuer <kwzh@gnu.ai.mit.edu>
5615
5616 * pop.c (pop_retrieve, getline): Avoid type clashes.
5617
56181996-01-19 Karl Heuer <kwzh@gnu.ai.mit.edu>
5619
5620 * etags.c (enum sym_type, anonymous enum): Delete final comma.
5621
56221996-01-15 Paul Eggert <eggert@twinsun.com>
5623
5624 * rcs2log (initialize_fullname): Add support for NIS+.
5625 (hostname): Fully qualify the default hostname with the domainname
5626 if the hostname lacks a `.'.
5627
362bc2da
DL
56281996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
5629
5630 * etags.c (consider_token): Fix typo in expression.
5631
56321996-01-04 Paul Eggert <eggert@twinsun.com>
5633
5634 * etags.c (substitute): Fix spelling in message.
5635
56361996-01-03 George V. Reilly <georger@microcrafts.com>
5637
5638 * makefile.nt (etags, ctags): Compile with regexp support.
5639 (make-docfile, wakeup, etags, ctags, hexl): Ensure build
5640 subdirectory exists before compiling.
1c478461 5641
362bc2da
DL
56421996-01-02 Karl Heuer <kwzh@gnu.ai.mit.edu>
5643
5644 * emacsserver.c (main): Do chmod based on existing permission.
5645
56461995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5647
5648 * Makefile.in (install): Turn on read/execute permission.
5649
56501995-12-03 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
5651
5652 * Makefile.in (LIB_STANDARD_LIBSRC): Use this instead of LIB_STANDARD.
5653 (LOADLIBES): Use LIB_STANDARD_LIBSRC.
5654
56551995-12-01 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
5656
b166dcd8 5657 * Makefile.in (THIS_IS_MAKEFILE): Rename from THIS_IS_YMAKEFILE.
362bc2da 5658
880820fe 56591995-12-07 Francesco Potortì <pot@cnuce.cnr.it>
362bc2da
DL
5660
5661 * etags.c (pfnote): Don't make a tag for ctags if there is no name.
5662 (getit, Asm_labels, Perl_functions, Pascal_functions, L_getit,
5663 get_scheme, prolog_getit): Name the tag in ctags mode.
5664 (pfnote): Truncate ctags lines to 50 chars, like it worked once.
5665 (Perl_interpreters): Accept "@PERL@" as an interpreter.
5666 (suggest_asking_for_help): New function.
5667 (main, get_language_from_name): Use suggest_asking_for_help.
5668 (main): Let get_language_from_name make language existence check.
5669 (streq, strneq): Check the arguments #if DEBUG.
5670
880820fe 56711995-12-06 Francesco Potortì <pot@cnuce.cnr.it>
362bc2da
DL
5672
5673 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
b166dcd8
KC
5674 (gperf): Add keywords for Objective C and GNU macros.
5675 (sym_type): Add values to account for Objective C and GNU macros.
362bc2da
DL
5676 (begtk): The '@' character can start a token.
5677 (objdef, methodlen, objtag): New variables for Objective C.
b166dcd8 5678 (consider_token, C_entries): Add code for Objective C.
362bc2da
DL
5679 (plain_C_suffixes): Add .m and .lm for Objective C.
5680 (Yacc_suffixes): Add .ym for Objective yacc.
5681 (GROW_LINEBUFFER): New macro.
5682 (consider_token, C_entries, Pascal_functions): Use the new macro.
5683 (consider_token): Take one more argument. Caller changed.
5684 (consider_token): Use the hashing function to spot GNU macros.
5685 (C_entries): Consider // as a comment start even in plain C for
5686 the sake of Objective C parsing.
5687
880820fe 56881995-12-04 Francesco Potortì <pot@cnuce.cnr.it>
362bc2da 5689
2f2c687b 5690 * Makefile.in (ctags): Depend on etags only for simplicity;
ecc54057 5691 compile with regexp support enabled.
362bc2da
DL
5692
56931995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5694
5695 * Version 19.30 released.
5696
56971995-11-22 Geoff Voelker <voelker@cs.washington.edu>
5698
5699 * makefile.nt (DOC, clean): Don't use switches to del not
5700 supported by Windows 95.
5701
57021995-11-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5703
5704 * Makefile.in (regex.o): Depend on ../src/config.h.
5705
57061995-11-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5707
5708 * Makefile.in (LIB_STANDARD): Extract this as in src/Makefile.in.
5709 (LOADLIBES): Use LIB_STANDARD.
5710
57111995-11-07 Kevin Gallo <kgallo@microsoft.com>
5712
5713 * makefile.nt (DOC): Include strings from w32term.c, w32xfns.c,
5714 w32fns.c, w32faces.c, w32select.c, w32menu.c, w32reg.c; remove
5715 Windows 95 conditional.
5716
880820fe 57171995-11-06 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5718
b166dcd8
KC
5719 * etags.c (get_lang_from_name, get_lang_from_interpreter)
5720 (get_lang_from_suffix): New functions.
362bc2da
DL
5721 (get_language): Function deleted.
5722 (lang_entry): Two members added to struct.
5723 (lang_names): Reflect the new layout of lang_entry.
5724 (print_language_names, main, find_entries): Use the new functions.
5725 (find_entries): Look at the first line for #! if no language.
5726 (C_entries): Invalidate the token when funcdef is reset.
5727 (Perl_functions): New function.
5728 (lang_suffixes): .pl and .pm are Perl suffixes.
5729
880820fe 57301995-11-02 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5731
5732 * etags.c (lowcase): Use the standard tolower function.
5733 (substitute): Remove some wrong and some useless code related with
a64387ee 5734 escape '\' character in regexp replacement string.
b166dcd8 5735 (TEX_defenv): Add part, appendix, entry, index. Remove typeout.
362bc2da
DL
5736 (lang_suffixes): New suffixes: .hpp for C++; .f90 for Fortran;
5737 .bib, .ltx, .TeX for TeX (.bbl, .dtx removed); .ml for Lisp;
5738 .prolog for prolog (.pl removed).
5739 (massage_name, etags_getcwd): Use lowcase instead of tolower.
b166dcd8 5740 (C_entries, find_entries): Add comments about memory leakage.
362bc2da
DL
5741 (add_node): Dead code removed.
5742
57431995-10-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5744
5745 * Makefile.in (getdate.o, movemail.o): Specify -Demacs.
5746 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Delete -Demacs.
5747
57481995-08-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5749
5750 * test-distrib.c: Add #undef for open, close, read, write.
5751
57521995-08-23 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
5753
5754 * test-distrib.c [HAVE_CONFIG_H]: Include config.h.
5755 [! O_RDONLY]: Define it to zero.
5756 (main): Use O_RDONLY instead of explicit zero.
5757
880820fe 57581995-08-17 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5759
5760 * etags.c (Pascal_functions): Close comment bug corrected.
5761 (add_node): Correctly compare node file names.
5762 (Pascal_functions): Correctly allocate and free memory for tline.
5763 (pfnote): Put the definition of fp in the innermost block.
5764 (NODE): `named' member removed.
5765 (pfnote, free_tree, put_entries, total_size_of_entries): Do not
1c478461 5766 use the `named' member, check whether `name' is NULL instead.
362bc2da
DL
5767 (pfnote): `named' argument removed, all callers changed.
5768 (getit, Asm_labels, Pascal_functions, L_getit, get_scheme,
5769 TeX_functions, TEX_getit, prolog_getit): Useless string allocation
1c478461 5770 removed from pfnote call, some code cleanup.
362bc2da
DL
5771 (relative_filename): Free temporary space allocated by concat.
5772
57731995-08-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5774
5775 * Makefile.in (getdate.c): New target.
5776 (getdate.o): Just compile getdate.c.
5777
57781995-08-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
5779
5780 * fakemail.c (xrealloc): Change cast to match return type.
5781
57821995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5783
5784 * fakemail.c (xmalloc, xrealloc): Use return-type long *.
5785
57861995-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5787
5788 * movemail.c (main): Fix previous change.
5789 Add error check for empty OUTNAME.
5790
57911995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5792
5793 * movemail.c (main): Mention lock file name in error message.
5794
57951995-07-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5796
5797 * profile.c (gettimeofday): New function, defined if necessary.
5798
57991995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5800
5801 * Makefile.in: Renamed from Makefile.in.in.
5802 (distclean): Delete Makefile.c, not Makefile.in.
5803
58041995-07-17 Michael Shields <shields@tembel.org>
5805
5806 * Makefile.in.in (tags): Synonym for `TAGS'.
5807
58081995-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
5809
5810 * Makefile.in.in (install, maybe-blessmail): Don't cd ..;
5811 configure has already set $(INSTALL) to the proper relative path.
5812
362bc2da
DL
58131995-07-08 Paul Eggert <eggert@twinsun.com>
5814
5815 * rcs2log (datearg): Separate date from time with comma, not space,
5816 to work around CVS 1.5 bug.
5817 (CVSROOT): Don't abort when unset if repository is absolute.
5818
58191995-07-07 Paul Eggert <eggert@twinsun.com>
5820
5821 * rcs-checkin, rcs2log, vcdiff:
5822 Replace `#!/bin/sh' with `#! /bin/sh', for benefit of systems
5823 that interpret `#! /' as a 4-byte magic number.
5824
58251995-06-29 Jonathan I. Kamens <jik@cam.ov.com>
5826
5827 * movemail.c (main) [MAIL_USE_POP]: When a user specifies a
5828 mailbox with "po:mailbox", the mailbox is everything after the
5829 "po:" prefix.
5830
58311995-06-28 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5832
5833 * emacsserver.c: Make all error messages start with `Error: '.
ecc54057 5834 (fatal_error, perror_1): New functions, use throughout.
362bc2da
DL
5835
58361995-06-28 Paul Eggert <eggert@twinsun.com>
5837
5838 * rcs2log (CVSROOT, repository):
5839 Allow remote repositories a la CVS 1.4.
5840
880820fe 58411995-06-27 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 5842
2f2c687b
JB
5843 * etags.c (plain_C_entries): New function.
5844 (lowcase): New macro.
5845 (tail, Fortran_functions, Pascal_functions): Use new macro lowcase.
5846 (lang_suffixes): New suffix ".pc" for Pro*C files.
5847 (consider_token): Don't tag all tokens beginning with DEFUN & Co..
5848 (tail): Look for the end of the token when comparing.
5849 (takeprec): Since now tail behaves differently, use strneq.
362bc2da
DL
5850
58511995-06-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5852
5853 * movemail.c (main): Add newline in usage message.
5854
58551995-06-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5856
5857 * make-docfile.c (scan_file): Make sure it never looks at filename[-1].
5858
880820fe 58591995-06-21 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5860
5861 * etags.c (find_entries): Rewind before rereading the input file.
5862
58631995-06-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5864
5865 * Version 19.29 released.
5866
5867 * make-docfile.c (main) [MSDOS]: Do set _fmode.
5868 This undoes part of the previous change.
5869
58701995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5871
5872 * make-docfile.c (main): On MSDOS, don't change stdout
5873 to binary, and insist on an -o option.
5874
58751995-06-13 Geoff Voelker <voelker@cs.washington.edu>
5876
5877 * etags.c (process_file,absolute_filename): Handle filenames
5878 starting with a drive letter.
5879
5880 * makefile.nt (install): Copy wakeup.exe properly.
5881
58821995-06-08 Karl Heuer <kwzh@gnu.ai.mit.edu>
5883
5884 * make-docfile.c [MSDOS]: #undef chdir.
5885
58861995-06-04 Paul Eggert <eggert@twinsun.com>
5887
5888 * rcs2log (output_authors): Allow ':' in time zone,
5889 as per ISO 8601 and RCS 5.6.8 beta.
5890
880820fe 58911995-05-29 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5892
5893 * etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
5894 compatibility problems.
5895
58961995-05-26 Richard Stallman <rms@gnu.ai.mit.edu>
5897
5898 * etags.c (etags_getcwd): Don't use #elif.
5899 Have just one function body.
5900
59011995-05-25 Geoff Voelker <voelker@cs.washington.edu>
5902
5903 * makefile.nt (LIBS): Use BASE_LIBS.
5904 (make-docfile.exe,hexl.exe,wakeup.exe,etags.exe): Don't depend
5905 upon LIBS.
5906 (DOC): Use del instead of rm.
5907 (DOC) [WINDOWS95]: Use DOC.
5908 (clean): Handle MSVC aux files.
5909 (config.h,paths.h): Use $(CP) instead of cp.
5910 (config.h): Use $(CONFIG_H)
5911 (make-docfile.obj): Depend upon config.h.
5912 Clean up comments.
5913
880820fe 59141995-05-23 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
5915
5916 * etags.c (etags_getcwd): Use /bin/pwd instead of pwd because the
5917 former gives the true path even in the presence of simlinks.
5918
59191995-05-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5920
5921 * movemail.c (main): Increase lock timeout to five minutes.
5922
59231995-05-06 Geoff Voelker <voelker@cs.washington.edu>
5924
5925 * makefile.nt (obj): Use .c files.
5926
59271995-05-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5928
5929 * make-docfile.c: Include config.h.
5930 (NO_SHORTNAMES): New definition.
5931 (xmalloc): Return long *.
5932
5933 * etags.c (C_entries): Cast result of xrealloc.
5934 (xmalloc, xrealloc): Declare them to return long *.
5935
5936 * b2m.c (xmalloc, xrealloc): Declare them long *.
5937
5938 * movemail.c (xmalloc): Declare it to return long *.
5939
59401995-04-30 Paul Eggert <eggert@twinsun.com>
5941
5942 * rcs2log (datearg): If rlog options are specified explicitly,
5943 omit the implicit '-d>DATE' option.
5944 (repository, rlog): Allow absolute paths to CVS repositories.
5945 Look only at the first line of CVS/Repository.
5946
59471995-04-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
5948
5949 * Makefile.in.in (extraclean): Depend on maintainer-clean, not
5950 realclean.
5951
59521995-04-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5953
5954 * Makefile.in.in [REGEXP_IN_LIBC] (REGEXPOBJ, REGEXPDEPS):
5955 Alternative (empty) definitions.
5956
59571995-04-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5958
5959 * emacsclient.c (main): Add argv[0] to an error message.
5960
59611995-04-13 Karl Heuer <kwzh@gnu.ai.mit.edu>
5962
5963 * emacsclient.c (main): Improve error handling.
5964 * cvtmail.c (main, skip_to_lf): Improve error handling.
5965 (sysfail): New function.
5966
5967 * b2m.c (main): Check for trailing ", " before trying to delete it.
5968
59691995-04-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
5970
5971 * Makefile.in.in (all): Build test-distrib and make-docfile.
5972
5973 * make-docfile.c (scan_c_file): At end, restore file name last char
5974 to its original value.
5975
59761995-04-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5977
5978 * emacsclient.c, emacsserver.c: Test NO_SOCKETS_IN_FILE_SYSTEM.
5979
59801995-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5981
b166dcd8 5982 * Makefile.in.in (BASE_CFLAGS): Rename from ALLOCA_CFLAGS.
362bc2da
DL
5983 (alloca.o, regex.o): Use BASE_CFLAGS.
5984
59851995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5986
5987 * emacsclient.c [Berkeley sockets version] (main): Declare getcwd.
5988
59891995-04-04 Karl Heuer <kwzh@gnu.ai.mit.edu>
5990
5991 * Makefile.in.in (aixcc, aixcc.c): Targets deleted.
b166dcd8 5992 (SOURCES, distclean): Remove obsolete references to aixcc.
362bc2da
DL
5993
59941995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
5995
5996 * aixcc.lex: File deleted--surely obsolete now.
5997
59981995-03-23 Paul Eggert <eggert@twinsun.com>
5999
6000 * rcs2log (output_authors): Replace /[/]/ by /[\/]/, for
6001 portability to mawk and nawk.
6002
60031995-03-21 Paul Eggert <eggert@twinsun.com>
6004
6005 * rcs2log: Treat -u "login:fullname:mailaddr" as if it were
6006 -u "login<tab>fullname<tab>mailaddr".
6007
60081995-03-21 Paul Eggert <eggert@twinsun.com>
6009
6010 * rcs2log: Add -u "login<tab>fullname<tab>mailaddr" option, which
6011 replaces the (now obsolescent) -n login fullname mailaddr option.
6012 Add -R option for recursive rlog.
07655e62 6013 (AWK): New environment variable (default `awk') for awk program name.
362bc2da
DL
6014 (output_authors, tab, loginFullnameMailaddrs, recursive): New vars.
6015 Quote authors and fullnames correctly.
6016 Don't omit path from repository root when logging CVS files.
6017
60181995-03-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6019
6020 * emacsclient.c, emacsserver.c: Use BSD sockets whenever available,
6021 even if HAVE_SYSVIPC.
6022 * emacsclient.c (main): Use getcwd if not BSD.
6023
880820fe 60241995-03-13 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6025
2f2c687b 6026 * etags.c (process_file): Free (filename) after using it.
362bc2da
DL
6027 (readline_internal): Do not access the char before start of line.
6028
880820fe 60291995-02-22 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6030
e1dbe924
PE
6031 * etags.c (C_entries): token_saved removed. Initialize tok.valid and
6032 savetok.valid. Mark token as valid when it is initialized.
362bc2da
DL
6033 (make_tag): Make token only if token is valid and reset validity.
6034 (CNL_SAVE_DEFINEDEF): Test for savetok.valid instead of token_saved.
b166dcd8 6035 (TOKEN): Add a new member: valid.
362bc2da 6036
880820fe 60371995-02-15 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6038
6039 * etags.c (C_entries): Bug corrected in xrealloc of token_str.
6040 (main): Do not read twice the last filename in the stdin file list.
6041
880820fe 60421995-02-14 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6043
e1dbe924 6044 * etags.c (C_entries): Initialize the new members of TOKEN.
362bc2da
DL
6045 (C_entries): Do not allocate a new space for each token found by
6046 consider_token. Let make_tag do that instead.
6047 (make_tag): Since now TOKEN has memory of where it is taken from,
6048 this new macro substitutes both make_tag_from_new_lb and
6049 make_tag_from_oth_lb. All callers changed.
6050 (TOKEN): Add linepos and buffer members.
e1dbe924
PE
6051 (main): Initialize token_str.
6052 (lang_extensions): Recognize .c++ and .h++ as C++ file suffixes.
362bc2da
DL
6053 (token_str): New global variable used by C_entries.
6054
60551995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
6056
b166dcd8 6057 * Makefile.in.in (maintainer-clean): Rename from realclean.
362bc2da 6058
880820fe 60591995-02-01 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6060
e1dbe924 6061 * etags.c (pfnote): Initialize been_warned in the node.
b166dcd8 6062 (C_entries): Remove a speed hack for the sake of clarity.
362bc2da 6063
880820fe 60641995-01-18 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6065
6066 * etags.c (longopts, print_help, main): Use -I as abbreviation
6067 for the --ignore-indentation option.
6068 (main): Do not print an error message for unknown options.
6069
880820fe 60701995-01-12 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6071
61b108cc 6072 * etags.c (FILEPOS, GET_CHARNO, GET_FILEPOS, max, LINENO): Delete.
194d44e7
JB
6073 (append_to_tagfile, typedefs, typedefs_and_cplusplus)
6074 (constantypedefs, update, vgrind_style, no_warnings)
6075 (cxref_style, cplusplus, noindentypedefs): Were int, now logical.
362bc2da
DL
6076 (permit_duplicates): Was a var, now a #define.
6077 (filename_lb): Was global, now local to main.
6078 (main): Open the tag file when in cxref mode.
6079 Use a BUFSIZ size buffer for making the shell commands.
6080 Look at the return value from the system routine.
6081 Exit when cannot open the tag file.
6082 (process_file): Open the file and pass the FILE* to find_entries.
6083 (find_entries): Now void, because does not open the file itself.
6084 (pfnote): Recovering from lack of memory does not work. Removed.
6085 Use savenstr and simplify the code.
6086 (free_tree): Only free the name space if node is named.
6087 (structtag): Now a pointer, not a fixed length array of chars.
6088 (consider_token): Don't take a token as argument. Use savenstr
6089 when saving a tag in structtag. Callers changed.
6090 (TOKEN): Structure changed. Now used only in C_entries.
61b108cc 6091 (TOKEN_SAVED_P, SAVE_TOKEN, RESTORE_TOKEN): Delete.
362bc2da 6092 (C_entries): nameb and savenameb deleted. Use dinamic allocation.
61b108cc 6093 (pfcnt): Delete. Users updated.
194d44e7
JB
6094 (getit, Asm_labels, Pascal_functions, L_getit, get_scheme)
6095 (TEX_getit, prolog_getit): Use dinamic allocation for storing
362bc2da
DL
6096 the tag instead of a fixed size buffer.
6097
60981995-01-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6099
6100 * movemail.c (main): Skip past the colon in inname.
6101
880820fe 61021995-01-10 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6103
6104 * etags.c (pfatal): New function.
6105 (main, etags_getcwd): Use pfatal.
6106 (etags_getcwd): Corrected another bug in the HAVE_GETCWD version.
6107
880820fe 61081995-01-10 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6109
6110 * etags.c (Lang_function): Use void instead to declare the
6111 language functions, because many compilers are buggy.
6112 (etags_getcwd): Fix the previous fix on the #else branch.
6113 (readline_internal): Discard possible \r before \n here.
6114 (C_entries): Do not deal with \r here: undo previous fix.
6115
880820fe 61161995-01-09 Francesco Potortì (pot@fly)
362bc2da
DL
6117
6118 * b2m.c (concat, xmalloc, xrealloc, readline, xnew): Four new
6119 functions and a macro that allow the program to work on input
6120 lines of whatever length. Copied from etags.c.
6121 (fatal): Print a fatal error message and exit.
6122 (main): Use the new functions. Fixed a bug that made a \037 char
6123 appear at the end of the output.
6124
61251995-01-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6126
6127 * etags.c (C_entries): Ignore carriage return at end of line.
6128
61291994-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6130
6131 * fakemail.c (xmalloc, xrealloc): Add casts.
6132 (add_field): Handle <...> and "..." syntax.
6133 (setup_files, get_keyword): Clean up parens and line breaks.
6134 (args_size): Likewise.
6135
61361994-12-21 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
6137
6138 * yow.c: Include program name in error messages.
6139
61401994-12-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6141
6142 * make-docfile.c (scan_lisp_file): Handle dynamic doc strings.
6143 (xmalloc, fatal, error): New functions.
6144 (progname): New variable.
6145 (main): Set progname.
6146
61471994-12-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6148
6149 * emacsclient.c, emacsserver.c [HAVE_SYSVIPC]: Include sys/utsname.h.
6150 (main): If socket/mqueue name is in home dir, add in the host name.
6151 Rename .emacs_server to .emacs-server....
6152
61531994-12-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6154
6155 * emacsclient.c [!HAVE_SYSVIPC] (main): Fix error message diction.
6156
880820fe 61571994-11-22 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6158
2f2c687b
JB
6159 * etags.c (print_help): Print --regex usage for ctags also.
6160 (main): Use -h in addition to -H as abbreviation for --help.
362bc2da 6161
880820fe 61621994-11-16 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6163
6164 * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
6165 is compiled if this is defined. The new functions and variables
6166 added #ifdef ETAGS_REGEXP are not listed in this ChangeLog.
6167 [VMS]: All VMS specific code previously contained in
6168 etags-vmslib.c is now included here, modified for dealing with
6169 language and regex options intermixed with filenames.
6170 (header_file): Global variable deleted.
6171 (Lang_Function): New typedef. All language parser functions
6172 changed to this new type.
6173 (string_numeric_p, substr, prestr): Functions deleted.
6174 (readline_internal): Does the job that readline did previously.
6175 (longopts): --language and --regex options added.
6176 (lang_names, lang_extensions, lang_func, print_language_names):
6177 New structures, variables and functions for choosing languages.
6178 (print_help): Help strings updated. Calls print_language_names.
6179 (argument_type, ARGUMENT): Typedefs for dealing with language and
6180 regex options intermixed with filenames.
b166dcd8 6181 (main): Change the way of dealing with arguments on the command
362bc2da
DL
6182 line to deal with language and regex options intermixed with
6183 filenames.
6184 (get_language, default_C_entries, Cplusplus_entries,
6185 Cstar_entries, Yacc_entries, just_read_file): New functions.
6186 (find_entries): Use the new method for choosing the language.
6187 (Pascal_functions): Allow intermixing of comment styles.
6188 (prolog_getit, skip_comment): Rewritten for speed.
6189 (readline): Rewritten to deal with regexps.
6190
880820fe 61911994-11-16 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6192
6193 * etags.c (<errno.h>): #include added.
6194 (etags_getcwd): Check return value from getcwd.
6195
61961994-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6197
6198 * profile.c (TV1, TV2): Use EMACS_TIME as type.
6199 (get_time): Use EMACS_SUB_TIME.
6200
d57727c9 62011994-10-30 Geoff Voelker <voelker@cs.washington.edu>
362bc2da
DL
6202
6203 * ntlib.c: New file.
6204 * makefile.nt: New file.
6205
6206 * make-docfile.c (main) [WINDOWSNT]: Set _fmode and stdout to O_BINARY.
6207 [WINDOWSNT]: Include the NT headers.
6208 (READ_TEXT, READ_BINARY): Test DOS_NT, not MSDOS.
6209
6210 * etags.c (main, etags_getcwd): Test DOS_NT instead of MSDOS.
6211 [WINDOWSNT]: Include some NT headers.
6212
62131994-10-24 Jonathan I. Kamens (jik@cam.ov.com)
6214
6215 * pop.c (getline): When a search of already-read input for CRLF
6216 fails, store the fact that we've searched it and don't search it
6217 again after reading more data.
6218
6219 * pop.c (getline): When determining whether or not it's necessary
6220 to grow the input buffer, take into account the null that's stored
6221 at the end of already-read input in the buffer.
6222
880820fe 62231994-10-21 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6224
2f2c687b 6225 * etags.c (prestr, substr): Return a logical type.
362bc2da 6226 (consider_token): Comment out "EXFUN". Use "DEFUN" instead of "DEF".
2f2c687b 6227 (consider_token): Set funcdef to fignore when a DEFUN is met.
362bc2da
DL
6228 (C_entries): Now we can use Tom Hageman patch for extern "C".
6229
62301994-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6231
6232 * movemail.c: PopServer renamed to popserver throughout.
6233
62341994-10-20 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
6235
6236 * etags.c: Don't declare malloc, since we include config.h.
6237 * fakemail.c: Likewise.
6238
62391994-10-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6240
6241 * movemail.c: Don't declare malloc.
6242
62431994-10-19 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
6244
6245 * rcs-checkin: Use test -r instead of < to check readability, to
ecc54057 6246 avoid syntax error.
362bc2da
DL
6247
62481994-10-19 Jonathan I. Kamens (jik@cam.ov.com)
6249
6250 * pop.c: Only include ../src/config.h if HAVE_CONFIG_H is
6251 defined, and if HAVE_CONFIG_H isn't defined, define
6252 MAIL_USE_POP always (so that this file can be included in
6253 other programs besides emacs).
6254
6255 * pop.c: Only declare h_errno if HAVE_H_ERRNO isn't defined or
6256 HAVE_CONFIG_H isn't defined.
6257
6258 * pop.c (find_crlf, getline): Instead of using strstr, use a
6259 custom function for finding CRLF.
6260 (my_strstr): Function deleted.
6261
62621994-10-17 Jonathan I. Kamens (jik@cam.ov.com)
6263
6264 * pop.c (getline): Fix a segfault because of passing a
6265 non-null-terminated string into strstr(). Fix from
6266 djm@va.pubnix.com (David J. MacKenzie).
6267
6268 * pop.c: Don't include <string.h> and <strings.h>.
6269
b166dcd8
KC
6270 * pop.c: Include <des.h> before <krb.h>, rather than after.
6271 They should be interchangeable, and indeed the inclusion is done in
362bc2da
DL
6272 both orders in various files in the Kerberos 4 library sources,
6273 but djm@va.pubnix.com (David J. MacKenzie) reports that BSDI
6274 requires that <des.h> be included first, and I don't see any harm
6275 in changing the order.
6276
6277 * pop.c: Include ../src/config.h, to get HAVE_STRING_H and
6278 STDC_HEADERS, if they're defined. Undef open, read, write and
6279 close after including it.
6280
62811994-10-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6282
6283 * pop.c: Fix mismatch in conditionals.
6284
6285 * make-docfile.c (main): Don't process one input file twice.
6286 Never use exit code > 1.
6287
6288 * pop.c (open, close, read, write): Add #undefs.
6289
6290 * pop.c: Don't declare malloc, realloc, free.
6291 Include ../src/config.h.
6292 Don't include string.h or strings.h.
6293 Include des.h before krb.h.
6294 Do declare my_strstr.
6295 (getline): Really use my_strstr.
6296 Leave one empty place in server->buffer,
6297 and put a null at the end of the data in it.
6298
62991994-10-17 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
6300
b166dcd8
KC
6301 * emacsserver.c [SYSV_IPC] (main): Catch SIGHUP as well.
6302 Don't call kill with pid 0. Handle EINTR when receiving messages.
362bc2da
DL
6303
63041994-10-17 Karl Heuer <kwzh@gnu.ai.mit.edu>
6305
6306 * Makefile.in.in (regex.o): Use full path to find regex.c.
6307
880820fe 63081994-10-17 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 6309
2f2c687b
JB
6310 * Makefile.in.in (etags): Add dependency on regex.o, link with it.
6311 (REGEXPOBJ, REGEXPDEPS, regex.o): Target and macros added.
362bc2da
DL
6312
63131994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
6314
6315 * Makefile.in.in (DONT_INSTALL): Remove make-path.
6316 (${archlibdir}): Use mkinstalldirs instead.
6317
6318 * movemail.c: Make functions that return nothing void, not
6319 implicitly int.
6320 (main): Improve usage message.
6321 (error): Write to stderr, not stdout.
6322
e43b1141
GM
6323 * b2m.c, cvtmail.c, digest-doc.c, emacsclient.c, emacsserver.c:
6324 * etags.c, fakemail.c, hexl.c, make-docfile.c, profile.c, sorted-doc.c:
6325 * test-distrib.c, timer.c, wakeup.c, yow.c: Eliminate some -Wall
6326 warnings from unused variables and implicitly declared functions.
362bc2da
DL
6327
63281994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6329
6330 * Makefile.in.in (clean): rm DOC* and *.tab.[ch].
6331 (distclean): Not here.
6332
b166dcd8 6333 * Makefile.in.in (libexecdir): Rename from libdir.
362bc2da 6334
880820fe 63351994-10-11 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6336
6337 * etags.c (C_entries): Name the #define's that are macros.
6338
63391994-10-10 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
6340
6341 * emacsserver.c [! SYSVIPC] (main): Fix uses of FD_* macros:
6342 fd_set arg is a pointer, descriptor arg comes first.
6343
880820fe 63441994-09-29 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6345
e1dbe924
PE
6346 * etags.c (C_entries): Recognize typedef of ANSI style functions.
6347 (C_entries): Recognize #define inside a struct.
362bc2da
DL
6348 (C_entries): ANSI tells that preprocessor commands do not have to
6349 start on the first column.
6350 (print_help): Documentation corrected for -d and -D.
6351 (white, endtk): ANSI tells the vertical tab is a separator.
6352
63531994-09-24 Jonathan I. Kamens (jik@gza-client1.aktis.com)
6354
6355 * Makefile.in.in (MOVE_FLAGS, MOVE_LIBS): New variables.
6356 (pop.o, movemail.o): New targets.
6357 (movemail): Link in pop.o and movemail.o. Use MOVE_LIBS, MOVE_FLAGS.
6358
6359 * pop.c, pop.h: New files.
6360
6361 * movemail.c: Improve POP code, move most of it into a separate file.
6362 (mbx_delimit_end, mbx_delimit_begin): Check for errors.
6363 (mbx_write): Check for errors and for From line.
6364 (pop_retr, popmail): Use subroutines in pop.c to do the real work.
6365 (get_errmsg, multiline, getline, putline, pop_stat, pop_command)
6366 (pop_init): Functions deleted.
6367
63681994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
6369
6370 * make-path.c (touchy_mkdir): Make dir ugo+rx even if it isn't new.
6371 Rename path to dirname.
6372
63731994-09-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6374
6375 * Makefile.in.in (UTILITIES):
6376 Remove test-distrib, make-docfile, make-path.
6377 (DONT_INSTALL): New variable--list those files here.
6378 (clean): Delete the files in DONT_INSTALL.
6379
63801994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6381
6382 * b2m.c (from, labels, data): Use MAX_DATA_LEN as length.
6383 (main): Use fgets, not gets.
6384
63851994-09-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6386
6387 * timer.c: Don't declare malloc.
6388
63891994-09-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
6390
6391 * emacsserver.c (FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already
6392 defined, use simple 32-bit versions of these macros.
6393 (main) [HAVE_SOCKETS & !HAVE_SYSVIPC]: Use these macros.
6394
c60ee5e7 63951994-09-16 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
362bc2da
DL
6396
6397 * etags.c (etags_getcwd): Use getcwd if available.
6398
63991994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6400
6401 * Version 19.27 released.
6402
64031994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6404
6405 * Version 19.26 released.
6406
64071994-08-15 Paul Eggert <eggert@twinsun.com>
6408
6409 * rcs2log: Add support for CVS.
6410 Work with `rlog's that output ISO 8601 dates.
6411
64121994-08-09 Lawrence R. Dodd <dodd@roebling.poly.edu>
6413
6414 * rcs2log: Use <> to delimit email address.
6415
64161994-08-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6417
6418 * emacsserver.c [SYSV_IPC] (main): Make a separate process
6419 so we can listen for multiple requests.
6420
64211994-08-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6422
6423 * movemail.c: Include config.h first thing.
6424
64251994-08-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6426
6427 * emacsserver.c (main): Add casts to avoid warnings.
6428
64291994-07-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6430
6431 * Makefile.in.in (${archlibdir}): Compare the proper dir
6432 before installing the scripts.
6433
64341994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6435
6436 * emacsclient.c (main): New local var progname saves argv[0].
6437
64381994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6439
6440 * emacsclient.c (main): Don't actually modify argv[0].
6441 Modify a copy instead.
6442
64431994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
6444
6445 * profile.c (reset_watch, get_time): Use EMACS_GET_TIME.
6446 (tzp): Var deleted.
6447
6448 * Makefile.in.in: Add #undef alloca.
6449
64501994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6451
6452 * timer.c (xmalloc): New function.
6453
64541994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6455
6456 * Makefile.in.in (ALLOCA_CFLAGS): New variable.
6457 (alloca.o): New target.
6458
64591994-07-08 Dave Love (d.love@dl.ac.uk)
6460
e1dbe924 6461 * etags.c (takeprec): Recognize `character*(*) function'.
362bc2da 6462
880820fe 64631994-07-08 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6464
ecc54057
JB
6465 * etags.c (main): Don't barf on obsolete -t and -T switches.
6466 (main): Print an explicative message when a switch is not known.
362bc2da
DL
6467
64681994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6469
6470 * hexl.c: Don't declare exit or perror.
6471
6472 * emacsserver.c (main): Don't declare geteuid.
6473 Don't declare getenv if convex.
6474
64751994-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6476
6477 * Makefile.in.in (test-distrib): Use ALL_CFLAGS.
6478
880820fe 64791994-06-03 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da
DL
6480
6481 * etags.c (absolute_filename): Remove infinite loop bug when
6482 accessing files in directories whose name begins with a dot.
6483
880820fe 64841994-06-03 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da
DL
6485
6486 * etags.c (etags_getcwd): Delete the trailing newline from cwd.
6487
64881994-06-01 Morten Welinder (terra@diku.dk)
6489
6490 * yow.c (rootrelativepath) [MSDOS]: Define, expanding to dynamic
6491 location of data directory.
6492
64931994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6494
6495 * Version 19.25 released.
6496
64971994-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6498
6499 * Makefile.in.in (distclean): Delete Makefile, Makefile.in, blessmail.
6500
65011994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6502
6503 * Makefile.in.in (blessmail): Don't depend on ../src/emacs.
6504
65051994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6506
6507 * Version 19.24 released.
6508
65091994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6510
6511 * make-docfile.c (write_c_args): Put `default' in upper case.
6512
65131994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6514
6515 * etags.c (etags_getcwd): Cast result of popen.
6516 (popen): Declaration deleted.
6517
65181994-05-17 Karl Heuer (kwzh@gnu.ai.mit.edu)
6519
6520 * etags.c [!MSDOS]: Declare popen.
6521
65221994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6523
6524 * b2m.c (main): Avoid crash if argc is 1.
6525
65261994-05-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6527
6528 * Version 19.23 released.
6529
6530 * Makefile.in.in (blessmail): Specify directory for blessmail.el.
6531
65321994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6533
6534 * Makefile.in.in (maybe-blessmail): Mention bless-mail is in lib-src.
6535
65361994-05-05 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
6537
6538 * Makefile.in.in: Fix out of date comment.
6539
65401994-05-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6541
6542 * Makefile.in.in: Put in a separator for where to start cpp procssing.
6543 Move all autoconf substitutions above that point.
6544 Above that point, use Make-style comments.
6545 This goes with changes in ../configure.in.
6546
65471994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6548
6549 * Makefile.in.in (maybe-blessmail): New target to print the blessmail
6550 warning message.
6551 (${archlibdir}): Don't do it here. Don't depend on blessmail.
6552
65531994-05-02 Karl Heuer (kwzh@gnu.ai.mit.edu)
6554
6555 * Makefile.in.in (${archlibdir}): Be lenient about wc output format.
6556
65571994-05-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6558
6559 * Makefile.in.in (${archlibdir}): Don't run blessmail; instead
6560 print advice to run it, if it has anything significant to do.
6561 And only if MOVEMAIL_NEEDS_BLESSING.
6562 (blessmail): Use emacs, not temacs.
b166dcd8 6563 (configuration): Rename from configname.
362bc2da
DL
6564
65651994-04-30 Morten Welinder (terra@diku.dk)
6566
6567 * etags.c (find_entries): Treat `*.cpp' as C++ files.
6568
65691994-04-30 Morten Welinder (terra@diku.dk)
6570
6571 * etags.c [MSDOS]: #include <sys/param.h> for the following.
6572 [MSDOS] (etags_getcwd): Define simple MSDOS version without spawning
6573 a shell.
6574
65751994-04-29 Morten Welinder (terra@diku.dk)
6576
6577 * hexl.c [MSDOS]: Don't define proto type for exit.
6578
65791994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6580
6581 * b2m.c: Don't include string.h or strings.h.
6582
65831994-04-27 Karl Heuer (kwzh@gnu.ai.mit.edu)
6584
6585 * Makefile.in.in: C_SWITCH_SYSTEM and C_SWITCH_MACHINE are now cpp
6586 symbols, not make variables.
6587
65881994-04-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6589
6590 * Makefile.in.in (etags, ctags): Make VERSION a string constant.
6591 * etags.c (print_version): Print VERSION as a string.
6592
65931994-04-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6594
6595 * fakemail.c (readline): Fix updating of p when buffer grows.
6596
65971994-04-20 Karl Heuer (kwzh@gnu.ai.mit.edu)
6598
6599 * Makefile.in.in (blessmail): New target.
6600 ${archlibdir}: Use blessmail when installing movemail.
6601
66021994-04-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6603
6604 * fakemail.c (readline): When extending the buffer,
6605 calculate end afresh using the new size.
6606
880820fe 66071994-04-18 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 6608
2f2c687b 6609 * etags.c (main, print_help): Eliminate the -F option.
362bc2da 6610
880820fe 66111994-04-18 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 6612
2f2c687b 6613 * etags.c (absolute_filename): Compare against '\0' instead of NULL.
362bc2da
DL
6614
66151994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6616
6617 * Makefile.in.in: Renamed from Makefile.in.
6618 Makefile.in is now generated from it, and then preprocessed.
6619 Change comments to C syntax.
6620 Include config.h.
6621 (LIBS_SYSTEM, LIBS_MACHINE): Define as empty if not defined.
6622 (LOADLIBES): Define from LIBS_SYSTEM and LIBS_MACHINE.
6623
66241994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6625
6626 * movemail.c [HAVE_UNISTD_H]: Include unistd.h.
6627
880820fe 66281994-04-12 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da
DL
6629
6630 * etags.c (etags_getcwd): Initialize bufsize.
6631
66321994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6633
6634 * profile.c (gettimeofday): If system doesn't have this, define it
6635 to give a fatal error.
6636
66371994-04-11 Karl Heuer (kwzh@gnu.ai.mit.edu)
6638
6639 * movemail.c (main): Use setuid, not seteuid.
6640
66411994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6642
6643 * etags.c: #undef static.
6644
880820fe 66451994-04-08 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 6646
b166dcd8 6647 * etags.c (outf, outfiledir): Rename to tagf, tagfiledir.
2f2c687b 6648 (PF_funcs, Asm_funcs, L_funcs, PAS_funcs, TEX_funcs)
b166dcd8 6649 (Scheme_funcs, prolog_funcs): Rename to Fortran_functions,
362bc2da
DL
6650 Asm_labels, Lisp_functions, Pascal_functions, Scheme_functions,
6651 TeX_functions, Prolog_functions.
2f2c687b
JB
6652 (inf): No more a global variable.
6653 (C_entries): Take 2nd parameter `inf' instead of using the global one.
e1dbe924 6654 (find_entries): Add the cp1 var for optimization.
b166dcd8 6655 (find_entries): Add more suffixes for assembler files.
362bc2da
DL
6656 (Asm_funcs): Now finds labels even without an ending colon.
6657
880820fe 66581994-03-30 Francesco Potortì (pot@fly.cnuce.cnr.it)
362bc2da 6659
2f2c687b
JB
6660 * etags.c (main): Use etags_getcwd for compatibility.
6661 (etags_getcwd): New function.
362bc2da
DL
6662
66631994-03-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6664
6665 * Makefile.in (etags, ctags): Pass -D for VERSION.
6666
880820fe 66671994-03-25 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6668
61b108cc 6669 * etags.c (emacs_tags_format, ETAGS): Remove. Use CTAGS instead.
2f2c687b
JB
6670 (main): Don't allow the use of -t and -T in etags mode.
6671 (print_help): Don't show options enabled by default.
6672 (print_version): Show the emacs version number if VERSION is #defined.
6673 (find_entries): Add "ss" as suffix for Chez Scheme.
362bc2da 6674
880820fe 66751994-03-23 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6676
2f2c687b 6677 * etags.c (cwd, outfiledir): Vars added.
362bc2da
DL
6678 (relative_filename, absolute_filename, absolute_dirname):
6679 functions added to compute filenames in tags files.
2f2c687b 6680 (process_file): Filenames in tags file are relative to the
362bc2da 6681 directory where the tags file is (useful with the -o option).
e1dbe924 6682 (main): Initialize the outfiledir var.
b166dcd8 6683 (TYPEDST): Add the `tignore' value.
2f2c687b 6684 (C_entries): Corrected various small bugs.
362bc2da
DL
6685
66861994-03-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6687
6688 * Makefile.in (UTILITIES): `env' deleted.
6689 (env): Target deleted.
6690 * env.c: File deleted.
1c478461 6691
362bc2da
DL
66921994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6693
6694 * Makefile.in (install, ${archlibdir}): Switch back to ..
6695 before running INSTALL_PROGRAM.
6696
880820fe 66971994-03-14 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6698
b166dcd8 6699 * etags.c (TYPEDST): Add the `tignore' value.
2f2c687b 6700 (C_entries): Corrected various bugs, now correctly parses the
362bc2da
DL
6701 `extern "C" {' construction (patch by Tom R.Hageman).
6702
67031994-03-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6704
6705 * b2m.c: Use <...> to include config.h.
6706 Don't include stdlib.h.
6707
177c0ea7 67081994-03-03 Heiko Muenkel (muenkel@tnt.uni-hannover.de)
362bc2da
DL
6709
6710 * b2m.c (main): Change delimiter from "^L" to "^_^L".
6711 Allow for text following "BABYL OPTIONS:".
6712 Add --help option. Use argv[0] in error messages.
6713
67141994-03-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6715
6716 * emacsclient.c (main) [HAVE_SYSVIPC]:
6717 Make msgp->mtext longer if necessary.
6718 On HPUX, error if it's more than 512 chars.
6719
67201994-02-26 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
6721
6722 * etags-vmslib.c: Use GPL.
6723 * emacstool.c: Use GPL.
6724 * fakemail.c: Update GPL.
6725
6726 * make-path.c (main): Return 1 on error, not -1.
6727 Update GPL.
6728
6729 * cvtmail.c: Declare malloc, realloc, xmalloc, xrealloc, getenv.
6730 (xmalloc, xrealloc): Return char *, not int.
6731 (error): Write to stderr, not stdout.
6732 Update GPL.
6733
67341994-02-23 Karl Heuer (kwzh@gnu.ai.mit.edu)
6735
6736 * profile.c (main, get_time): Don't crash on invalid input.
6737
67381994-02-22 Karl Heuer (kwzh@gnu.ai.mit.edu)
6739
6740 * profile.c (get_time): Simplify; avoid calling index.
2f2c687b 6741 (main): Exit on EOF.
362bc2da 6742
880820fe 67431994-02-17 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6744
a64387ee 6745 * etags.c (--absolute-pathnames): Option removed.
362bc2da
DL
6746
67471994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6748
6749 * fakemail.c (put_line): Don't break the line if it all fits.
6750
880820fe 67511994-02-14 Francesco Potortì (pot@fly)
362bc2da 6752
b166dcd8 6753 * etags.c (absolute_pathnames, cwd): Add global vars.
2f2c687b 6754 (longopts, print_help, main, process_file): Put absolute filenames
362bc2da 6755 in the tag file if the -A --absolute-pathnames option is used.
10d1d0af 6756 (print_help): Alphabetically order the options.
2f2c687b 6757 (malloc, realloc, strcpy, strncpy, strcmp): Remove extern declar.
362bc2da
DL
6758
67591994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6760
6761 * Makefile.in (C_SWITCH_MACHINE): Get this from autoconf.
6762 (ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use C_SWITCH_MACHINE.
6763
67641994-02-07 Christian Lynbech (lynbech@avignon)
6765
6766 * emacsserver.c (main) [HAVE_SYSVIPC]: Reverse test of fork value.
6767
67681994-02-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6769
6770 * Makefile.in (UTILITIES): Mention profile.
6771 (profile): New target.
6772
6773 * profile.c: New file.
6774
67751994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
c60ee5e7 6776
88c71720 6777 * make-docfile.c: Make the argument list output look more like the
c60ee5e7 6778 Lisp docstrings do.
88c71720 6779 (write_c_args): Take new arg FUNC. Make output
362bc2da
DL
6780 look like lisp call prototypes: (function ARG1 ARG2), upcasing args.
6781 (scan_c_file): Pass BUF to write_c_args for FUNC arg.
6782
880820fe 67831994-01-14 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
6784
6785 * etags.c (stab_entry, stab_create, stab_find, stab_search,
61b108cc 6786 stab_type, add_keyword, C_reate_stab, C_create_stabs): Delete.
362bc2da 6787 Use gperf generated hash table instead of linked list.
61b108cc 6788 (C_stab_entry, hash, in_word_set, get_C_stab, C_symtype): Add.
362bc2da 6789 Mostly code generated by gperf.
b166dcd8 6790 (consider_token): Remove unused parameter `lp'.
2f2c687b 6791 (PF_funcs, getit): Allow subroutine and similar declarations
362bc2da 6792 to span multiple lines.
2f2c687b
JB
6793 (C_entries): Check for newline if inchar to avoid bus errors.
6794 (process_file, find_entries): Distinguish among nonexistent
362bc2da
DL
6795 and not regular file.
6796
67971994-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6798
6799 * timer.c: Include errno.h; don't include fasync.h.
6800 (schedule): Don't return a value.
6801 (sigcatch): Reestablish the handler first.
6802 (getevent): Always call notify at the end.
6803 (notify): Defer alarms around the whole body of function.
6804
68051994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6806
6807 * timer.c (main): Don't request SIGIO, and don't handle it.
6808 Loop calling getevent.
6809 (sigcatch): Delete code to handle SIGIO.
6810 if defer_alarms is set, don't call notify, just set alarm_deferred.
1c478461 6811 (getevent): Use read, not getchar. Handle EINTR and EAGAIN.
362bc2da
DL
6812 Set defer_alarms around realloc and schedule.
6813 If alarm_deferred gets set, call notify.
6814 Likewise if this event is the only pending event.
6815 Make buf and buf_size global variables.
6816 Don't malloc buf if it is already non-zero.
6817 (schedule): Just exit if run out of memory.
6818 Return the number of events.
6819 (signal) [_CX_UX]: Add #undef.
6820
68211994-01-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6822
6823 * timer.c [USG] (SIGIO): Define as SIGPOLL.
6824 (main) [USG]: Do ioctl to enable SIGPOLL.
6825
68261994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6827
6828 * timer.c: Don't declare sys_errlist; declare strerror instead.
6829 (schedule, main): Call strerror instead of using sys_errlist.
6830 * movemail.c (get_errmsg, pfatal_with_name, pfatal_and_delete):
6831 Call strerror instead of using sys_errlist.
6832 * env.c (main): Call strerror instead of using sys_errlist.
6833 * emacsclient.c: Don't declare sys_errlist; declare strerror instead.
6834 (main): Call strerror instead of using sys_errlist.
6835 * emacsclient.c [! HAVE_STRERROR] (strerror): Define the function.
6836 * env.c [! HAVE_STRERROR] (strerror): Likewise.
6837 * timer.c [! HAVE_STRERROR] (strerror): Likewise.
6838 * movemail.c [! HAVE_STRERROR] (strerror): Likewise.
6839
68401994-01-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6841
6842 * hexl.c: Fix up whitespace. Get rid of spurious casts to void.
6843
6844 * movemail.c (malloc): Don't declare it.
6845 (xmalloc): Cast result of malloc.
6846 (strcpy): Don't declare it.
6847
68481993-11-14 Morten Welinder (terra@diku.dk)
6849
6850 * hexl.c [MSDOS]: Use binary file modes for non-text side of pipe.
6851 (main): Use fclose to close file opened by fopen.
6852
6853 * fakemail.c (main) [MSDOS]: Dummy stub just to make the file compile.
6854
6855 * movemail.c [MSDOS]: #undef `access'.
6856
6857 * b2m.c (main) [MSDOS]: Open all files as binary.
6858 * etags.c (main) [MSDOS]: Open all files as binary.
6859
6860 * make-docfile.c [MSDOS]: Use text/binary mode as appropriate.
6861 (scan_c_file, scan_lisp_file): Extra parameter for the mode to open
6862 with.
6863
68641994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6865
6866 * Makefile.in (ALL_CFLAGS): Include LDFLAGS.
6867 Use ALL_CFLAGS in all the rules that compile and link with one cmd.
6868 (LINK_CFLAGS): New variable.
6869 (timer): Use LINK_CFLAGS.
6870
68711993-12-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6872
6873 * movemail.c: Include syswait.h.
6874 Fork a subprocess and use it to copy the mail file.
6875
68761993-12-07 Richard Stallman (rms@srarc2)
6877
6878 * make-docfile.c (scan_lisp_file): Don't add newline at end of string.
6879
68801993-12-04 Richard Stallman (rms@srarc2)
6881
6882 * movemail.c (main): When making tempname, cast result of xmalloc.
6883 Include room for EXXXXXX in the size.
6884 Don't use result of strcpy.
6885
68861993-12-03 Paul Eggert (eggert@twinsun.com)
6887
6888 * vcdiff: Add --brief option.
6889
68901993-12-02 Richard Stallman (rms@srarc2)
6891
6892 * Makefile.in (${archlibdir}, install): Use $(INSTALL_PROGRAM)
6893 for all executables and scripts.
6894
68951993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6896
6897 * Version 19.22 released.
6898
68991993-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6900
6901 * Makefile.in (mostlyclean): Make it distinct from clean.
6902
69031993-11-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6904
6905 * Makefile.in (${archlibdir}): Don't do chown or chgrp.
6906
69071993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6908
6909 * Version 19.21 released.
6910
6911 * Makefile.in (install): Don't change mode or group when installing.
6912
6913 * etags.c (FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
6914
69151993-11-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6916
6917 * make-docfile.c (read_c_string): For "", concatenate the two strings.
6918
6919 * movemail.c (main): Fix error message text.
6920
69211993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
6922
6923 * Version 19.20 released.
6924
177c0ea7 69251993-11-08 Tom Hageman (tom@basil.icce.rug.nl)
362bc2da 6926
ecc54057 6927 * etags.c (C_entries): Keep track of ()-parenthesis level so that
362bc2da
DL
6928 functions returning a pointer to a function, a la `signal', can be
6929 parsed. This also required new state `fstartlist' to `FUNCST'.
6930 (SAVE_TOKEN, RESTORE_TOKEN, TOKEN_SAVED_P): 1-deep token save stack.
2f2c687b 6931 (C_entries, CNL): Use it to isolate preprocessor directive processing
362bc2da 6932 from the other state engines.
2f2c687b 6933 (begtk): Add '~', for C++ class destructors.
362bc2da 6934
880820fe 69351993-11-02 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6936
b166dcd8 6937 * etags.c (consider_token): Remove unused variable firsttok.
2f2c687b 6938 (prolog_getit): Call pfnote with the right number of arguments.
362bc2da
DL
6939
69401993-10-19 Paul Eggert (eggert@twinsun.com)
6941
6942 * rcs2log (printlogline): Don't generate lines containing only
6943 white space.
6944
69451993-10-04 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6946
6947 * Makefile.in (${archlibdir}):
6948 Install ${SCRIPTS} from ${srcdir}, not cwd.
6949
69501993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6951
6952 * Makefile.in: Fixed typos or brainos of whoever thought `@' was
6953 the comment character.
6954
880820fe 69551993-10-01 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 6956
2f2c687b 6957 * etags.c (process_file): Dead code removed.
362bc2da 6958 (S_ISREG): #define it using S_IFREG if not defined.
2f2c687b 6959 (process_file): Regular files have nothing to do with symlinks.
362bc2da 6960
f0131492 69611993-09-28 Brian J. Fox (bfox@ai.mit.edu)
362bc2da
DL
6962
6963 * Makefile.in (${archlibdir}): Install ${SCRIPTS} from ${srcdir}, not
6964 from current directory. Only chmod and chgrp files that we
6965 installed, which excludes ${INSTALLABLE_SCRIPTS}. They go in
6966 ${bindir}.
b166dcd8 6967 (INSTALLFLAGS): Delete definition, since it is an unused variable
362bc2da
DL
6968 now.
6969
f0131492 69701993-09-27 Brian J. Fox (bfox@ai.mit.edu)
362bc2da 6971
b166dcd8
KC
6972 * Makefile.in (INSTALL, INSTALL_PROGRAM, INSTALL_DATA):
6973 Let configure figure out the correct values for these variables.
362bc2da 6974
f0131492 69751993-09-14 Brian J. Fox (bfox@ai.mit.edu)
362bc2da 6976
10d1d0af 6977 * Makefile.in (archlibdir): Only install executables internally
362bc2da
DL
6978 used by emacs; don't install bindir binaries here.
6979
69801993-09-24 Paul Eggert (eggert@twinsun.com)
6981
6982 * rcs2log: Add -h, -n, -r options.
6983 By default, look for *,v files as well as RCS/*,v files.
6984 Use $TMPDIR (default /tmp) instead of /tmp.
6985
880820fe 69861993-09-20 Francesco Potortì (pot@fly)
362bc2da 6987
e1dbe924 6988 * etags.c (C_entries): is_func is initialized here instead of in
362bc2da
DL
6989 consider_token for the sake of the yacc rules section.
6990 (C_entries): Now class, struct, enum, union and typedef produce
6991 named tags.
6992
69931993-09-11 Roland McGrath (roland@baalperazim.gnu.ai.mit.edu)
6994
6995 * yow.c: Include <src/paths.h>, instead of "src/paths.h".
6996
69971993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
6998
88c71720
KS
6999 * Makefile.in: Support configuring in a different directory when
7000 ${srcdir} has already been configured.
7001 (ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir}
7002 -I${srcdir}/../src.
362bc2da
DL
7003 (b2m, movemail, fakemail, env, emacsserver, emacsclient,
7004 getdate.o, timer.o, timer): Remove `-I${srcdir}/../src', since it
7005 is already in CPP_FLAGS.
7006 * etags.c, emacsclient.c, wakeup.c, timer.c, b2m.c, fakemail.c,
7007 movemail.c, emacsserver.c: Include <config.h> instead of "config.h".
7008
70091993-08-25 Paul Eggert (eggert@twinsun.com)
7010
75f1671a 7011 * rcs2log: Change /{/ to /\{/ for POSIX ERE compatibility;
362bc2da
DL
7012 otherwise, HP awk complains.
7013
7014 * vcdiff: Append /usr/ccs/bin and /usr/sccs to PATH, since these
7015 are common hangouts for SCCS commands.
7016
70171993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7018
7019 * Version 19.19 released.
7020
70211993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7022
7023 * Makefile.in (make-path): Dep on config.h.
7024
70251993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7026
7027 * b2m.c (TRUE, FALSE): Don't define if already defined.
7028
70291993-08-09 Paul Eggert (eggert@twinsun.com)
7030
7031 * rcs2log (awkscript):
7032 Some sites put comma-separated junk after the fullname.
7033 Remove it, but leave "Bill Gates, Jr" alone.
7034 Remove the junk from fullnames like "0000-Admin(0000)".
7035
70361993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7037
7038 * Version 19.18 released.
7039
880820fe 70401993-08-04 Francesco Potortì (pot@spiff.gnu.ai.mit.edu)
362bc2da 7041
e1dbe924 7042 * etags.c (L_isdef, L_isquote, L_getit): Small optimizations.
2f2c687b
JB
7043 (L_funcs): The (foo::defmumble stuff now should work.
7044 (consider_token): Function returned random value--corrected.
7045 (C_entries): Corrected == versus = typo.
362bc2da
DL
7046
70471993-08-01 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
7048
7049 * etags.c (put_entries): For NODE->rewritten, put pattern before
7050 \177 and name after, not vice versa.
7051
70521993-08-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7053
7054 * timer.c (main): Generate a SIGIO as soon as we've initialized.
7055
880820fe 70561993-07-30 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 7057
b166dcd8 7058 * etags.c (FINCST): Add the fignore status. Means we are
362bc2da
DL
7059 after the parameter list and before the open curly brace.
7060 Allows correct parsing of C++ constructors.
2f2c687b
JB
7061 (C_entries, consider_token): Make use of fignore.
7062 (consider_token): Reset funcdef when next_token_is_func: when in
362bc2da 7063 ctags mode makes DEFVAR and others work better.
e1dbe924 7064 (L_isquote): Function that recognizes the "(quote" string.
2f2c687b 7065 (L_getit): Ignore quoting via "'" or "(quote". Useful for defalias.
362bc2da
DL
7066
70671993-07-29 Paul Eggert (eggert@twinsun.com)
7068
7069 * rcs-checkin: Don't check whether a file is readable until we have
7070 decided not to ignore it.
7071
70721993-07-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7073
7074 * Makefile.in (etags): Depend on ../src/config.h.
7075
7076 * emacsserver.c: Include types.h before file.h.
7077
70781993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7079
7080 * Makefile.in (install): Use .n, not .new, for temporary filenames.
7081
70821993-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7083
ecc54057 7084 * Version 19.17 released.
362bc2da
DL
7085
70861993-07-15 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7087
7088 * etags.c (print_help): Break up the very long strings containing
7089 the help message into shorter strings, to placate chintzy C
7090 compilers which can't handle strings that long.
7091
7092 * wakeup.c: Use CPP tangle from autoconf manual to #include the
7093 correct combination of <time.h> and <sys/time.h>.
7094
880820fe 70951993-07-08 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 7096
b166dcd8 7097 * etags.c (alloca): Remove all references to it.
2f2c687b
JB
7098 (main): Now calls xnew instead of alloca for portability.
7099 (../src/config.h): Included only if HAVE_CONFIG_H.
7100 (const): Void definition removed--config.h takes care of it.
362bc2da 7101
880820fe 71021993-07-08 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 7103
2f2c687b 7104 * etags.c (consider_token): Was `==', now is `='.
362bc2da
DL
7105 (consider_token): DEFUNs now treated like funcs in ctags mode.
7106
61b108cc 7107 * etags.c (LEVEL_OK_FOR_FUNCDEF): Remove.
2f2c687b 7108 (C_entries): Optimized the test that used LEVEL_OK_FOR_FUNCDEF.
b166dcd8 7109 (C_entries): Remove a piece of useless code.
2f2c687b 7110 (C_entries): Making typedef tags is delayed until a semicolon
362bc2da
DL
7111 is met. This handles "typedef int X, Y, Z;" correctly.
7112
71131993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
7114
7115 * Version 19.16 released.
7116
7117 * b2m.c: #include <sys/types.h>.
7118 (ltoday): Declare this to be time_t.
7119
71201993-06-30 Paul Eggert (eggert@twinsun.com)
7121
7122 * vcdiff: Add -q option.
7123
71241993-06-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7125
7126 * etags.c: #include "config.h" and the alloca CPP tangle before
7127 #including the system headers and getopt.h. AIX requires the
7128 #pragma to come before any actual C code.
7129
71301993-06-21 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7131
7132 * Makefile.in (ctags): Depend on etags, so that parallel makes
7133 don't write etags.o files on top of each other.
7134
71351993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7136
7137 * version 19.15 released.
7138
71391993-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7140
7141 * etags.c (add_node): Move var last_node to file scope.
7142
71431993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7144
7145 * Version 19.14 released.
7146
71471993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7148
ecc54057 7149 Bring mumbleclean targets into conformance with GNU coding standards.
362bc2da
DL
7150 * Makefile.in (distclean): Call clean to do most of the work.
7151 Delete aixcc.c and TAGS.
7152 (realclean): Just call distclean.
1c478461 7153
362bc2da
DL
7154 * Makefile.in: Remember, spaces are not tabs.
7155
71561993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7157
7158 * Makefile.in (CPP_CFLAGS): New variable.
7159 Use it instead of ALL_CFLAGS when compiling a .c file.
7160 (getopt.o, getopt1.o): Add explicit compilation commands.
7161
71621993-06-10 Mark D. Baushke (mdb@cisco.com)
7163
7164 * etags.c: Reinstate old -f option as an alias for -o for
7165 installed base uses.
7166
71671993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7168
7169 * emacsserver.c (main): When we're passing a `struct sockaddr_un'
7170 to bind or accept, cast the pointer, to avoid warnings on systems
7171 which declare prototypes for this.
7172 * emacsclient.c (main): Same.
7173
7174 * Makefile.in (YACC): New variable, to be set by top-level Makefile.
7175
71761993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7177
7178 * Version 19.13 released.
7179
7180 * wakeup.c: Include sys/types.h, too; I think that's where time_t
7181 comes from, not sys/time.h.
7182
71831993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7184
7185 * wakeup.c: Include sys/time.h.
7186
7187 * etags.c: #undef static.
7188
7189 * Version 19.12 released.
7190
7191 * Makefile.in (all): Exclude INSTALLABLE_SCRIPTS and SCRIPTS from deps.
7192
71931993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7194
7195 * Version 19.11 released.
7196
7197 * timer.c [LINUX]: #undef signal.
7198 * emacsserver.c: #undef signal.
7199
72001993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7201
7202 * wakeup.c (main): Make when a time_t.
7203
72041993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7205
ecc54057 7206 * Makefile.in (${archlibdir}): Use `(cd foo && pwd)' instead of
a64387ee 7207 `(cd foo ; pwd)' to get the canonical name of a directory; cd
362bc2da
DL
7208 might fail, and have pwd print out the current directory.
7209
7210 * movemail.c [MAIL_USE_POP] (main): Don't use non-portable
7211 string-handling functions.
7212
72131993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7214
7215 * Version 19.10 released.
7216
72171993-05-29 Paul Eggert (eggert@twinsun.com)
7218
7219 * rcs2log: When given no file arguments, inspect RCS/.* as well
7220 as RCS/*. Don't report an error if RCS is empty or nonexistent.
7221
72221993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7223
7224 * Makefile.in (timer): Link with $(LOADLIBES).
7225
72261993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7227
7228 * fakemail.c (put_line): Don't output \n\t unless more text follows.
7229
72301993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
7231
7232 * etags.c: Replace the CPP tangle for alloca with the one from the
7233 autoconf documentation, since that's working elsewhere.
7234
72351993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
7236
7237 * Makefile.in (ALL_CFLAGS): Add "-I.", so the system and machine
7238 description files can find their ancestors.
7239
72401993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7241
7242 * Makefile.in (install): Get the scripts from ${srcdir},
7243 unlike the executables.
6088b51f 7244 (ALL_CFLAGS): Add -I../src.
362bc2da
DL
7245
72461993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
7247
7248 * Version 19.9 released.
7249
72501993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7251
7252 * Makefile.in (install): Do install the programs listed in
7253 INSTALLABLE_SCRIPTS. Make the renaming loop use INSTALLABLES and
7254 INSTALLABLE_SCRIPTS, instead of writing the programs out.
7255
7256 * Makefile.in (ALL_CFLAGS): Include -I${srcdir}.
7257 (getopt.o, getopt1.c): Use ${srcdir} as appropriate.
7258
72591993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7260
7261 * etags.c: Include ../src/config.h.
7262
7263 * Makefile.in (install): Don't handle INSTALLABLE_SCRIPTS
7264 in first loop. Delete files from bindir before installing new ones.
7265 (ALL_CFLAGS): Use ${srcdir} to find .../src dir.
7266
72671993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7268
7269 * Version 19.8 released.
7270
7271 * make-docfile.c: Doc fix.
7272
72731993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7274
7275 * tcp.c: Fix comment syntax at top of file.
7276 (main): Don't call htons with the port number.
7277
72781993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7279
7280 * Makefile.in (timer.o, sorted-doc.c): Link with alloca.o, if it's
1c478461 7281 appropriate.
362bc2da
DL
7282
7283 * Makefile.in (install): Refer to the variables INSTALLABLES and
7284 INSTALLABLE_SCRIPTS, instead of writing them out.
7285
72861993-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7287
7288 * make-path.c (main): Return 0.
7289
72901993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
7291
ecc54057 7292 * Version 19.7 released.
362bc2da
DL
7293
72941993-05-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7295
7296 * make-docfile.c (scan_lisp_file): Recognize defalias like fset.
7297
72981993-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7299
7300 * tcp.c: New file.
7301
73021993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7303
7304 * Makefile.in (.c.o): Make the rule start with a tab, not spaces.
7305
73061993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
7307
7308 * timer.c (notify): Don't call sighold or sigrelse; they're USG
7309 only. We should really fix this later, but let's just make it
7310 compile for now.
7311
7312 Install patches from David J. Mackenzie to make the srcdir option
7313 work.
7314 * Makefile.in (srcdir, VPATH): Get this value from the top-level
7315 Makefile.
7316 (INSTALLABLES): Split this into two lists - INSTALLABLES and
7317 INSTALLABLE_SCRIPTS.
7318 (INSTALLABLE_SCRIPTS): New list.
7319 (EXECUTABLES): Include INSTALLABLE_SCRIPTS.
7320 (${archlibdir}): The scripts to be installed live in the source
7321 tree, not in the object tree.
7322 (test-distrib): Note that the data file lives in the source tree,
7323 not the object tree.
7324 (GETOPTDEPS): Note that getopt.h lives in the source tree.
7325 (all other targets): Change references to source files to use
7326 ${srcdir}, except for config.h, which lives in the object dir.
7327 (timer.o): Note that this depends on ../src/config.h.
7328 * make-docfile.c (main): Add a -d option, to tell it where to find
7329 the source files.
7330 * test-distrib.c (main): Take the name of the distribution file to
7331 test from the command line.
7332
10d1d0af 7333 * timer.c: Fix misspellings of get_date function's name.
362bc2da
DL
7334
73351993-05-12 Roland McGrath (roland@geech.gnu.ai.mit.edu)
7336
7337 * etags.c (main):
7338 Don't require that there be input files if -i switches were given.
7339
73401993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7341
7342 The GNU coding standards specify that CFLAGS should be left for
7343 users to set.
7344 * Makefile.in (CFLAGS): Put this in the "things configure might
7345 edit" section, and have it default to -g.
7346 (ALL_CFLAGS): New variable, set to all the flags which should be
7347 passed to compilations. Replace all other uses of CFLAGS with
7348 ALL_CFLAGS.
7349 (.c.o): New rule, to pass ALL_CFLAGS to compilations.
7350
7351 * Makefile.in (DEFS): Remove this; it's always just going to be
7352 "-DHAVE_CONFIG_H -Demacs".
7353
73541993-05-03 Paul Eggert (eggert@twinsun.com)
7355
7356 * rcs2log: mawk, SunOS 4.1.3 nawk, and Ultrix/MKS nawk all barf on
7357 /[/]/, so change it to /[\/]/. This should work on all
75f1671a 7358 POSIX-compliant awks. It's slightly wrong with traditional awk,
362bc2da
DL
7359 since it matches \ too, but that's a minor problem compared to awk
7360 syntax errors.
7361
73621993-05-01 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
7363
7364 * Makefile.in (ALLOCA): New variable, whose value we should
7365 inherit from the top-level makefile.
7366 (etags, ctags): Include ALLOCA in the list of object files that
7367 these executables depend on and link.
7368
73691993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7370
b166dcd8 7371 * Makefile.in (DEFS): Rename from CONFIG_CFLAGS.
362bc2da
DL
7372
73731993-04-07 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
7374
7375 * make-docfile.c (write_c_args): Print an argument named "defalt"
7376 as "default".
7377
73781993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
7379
7380 * Makefile.in (C_SWITCH_SYSTEM): New variable.
7381 (CFLAGS): Include C_SWITCH_SYSTEM in the flags to pass to the
7382 compiler.
7383
880820fe 73841993-03-22 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 7385
2f2c687b
JB
7386 * etags.c (YACC): Flag added to c_ext.
7387 (c_ext): No more a synonim for c_ext&C_PLPL because of YACC.
7388 (find_entries): Consistently use streq when reasonable.
7389 (find_entries): A .y file is a yacc file.
362bc2da 7390 (get_C_stab): c_ext becomes c_ext&C_PLPL.
2f2c687b
JB
7391 (C_entries): Logical cplpl means c_ext&C_PLPL.
7392 (C_entries): Logical yacc_rules means we are after the first %%.
b166dcd8 7393 (C_entries): Add logic for yacc files.
362bc2da 7394
880820fe 73951993-03-16 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da
DL
7396
7397 * etags.c (C_entries): ':' case moved to the second switch.
2f2c687b 7398 (C_entries): Do not examine token if structdef==scolonseen.
362bc2da
DL
7399 (consider_token): structtag set to null string for enum.
7400
880820fe 74011993-03-12 Francesco Potortì (pot@cnuce.cnr.it)
362bc2da 7402
2f2c687b
JB
7403 * etags.c (GET_COOKIE): And related macros removed.
7404 (logical): Is now int, no more a char.
7405 (reg): Define deleted.
61b108cc
SM
7406 (isgood, _gd, notgd): Delete.
7407 (gotone): Delete.
2f2c687b 7408 (TOKEN): Member linestart removed.
61b108cc 7409 (linepos, prev_linepos, lb1): Delete.
2f2c687b 7410 (main): Call initbuffer on lbs array instead of lb1.
e1dbe924 7411 (init): Remove the initialization of the logical _gd array.
2f2c687b 7412 (find_entries): A .sa suffix means assembler file.
362bc2da
DL
7413 (C_create_stab): "auto", "void", "extern", "static" are st_C_typespec.
7414 All C state machines rewritten.
2f2c687b
JB
7415 (C_entries): Complete rewrite.
7416 (condider_token): Complete rewrite.
61b108cc 7417 (getline): Delete.
362bc2da 7418
880820fe 74191993-03-01 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
362bc2da 7420
b166dcd8 7421 * etags.c (C_entries): Add the quotednl logical variable.
362bc2da
DL
7422 Used for parsing of #define's spanning multiple lines.
7423
880820fe 74241993-02-23 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
362bc2da
DL
7425
7426 * etags.c (C_entries): Save the definedef status even when a
7427 newline is met inside a string.
7428
74291993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
7430
b166dcd8 7431 * Makefile.in (EXECUTABLES): Add rcs-checkin.
362bc2da
DL
7432
7433 * Makefile.in (unlock, relock): New productions.
7434
74351993-03-16 Paul Eggert (eggert@twinsun.com)
7436
7437 * rcs2log: Some awks don't understand "\r". Code around this.
7438 Unfortunately this requires putting a carriage return in the
7439 source code. Don't assume that rlog will tolerate times like
7440 `10:10:60'; RCS 5.7 won't allow this.
7441
74421993-03-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7443
7444 * timer.c (main): Set the ownership of the stdin file descriptor
7445 to the current process. Print error messages if either of the
7446 fcntl's fails.
7447
7448 * timer.c (sigcatch): Declare this to return SIGTYPE (defined in
7449 ../src/config.h), not void.
7450
74511993-03-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7452
7453 * b2m.c (main): Don't exit upon reading a blank line.
7454
880820fe 74551993-03-01 Francesco Potortì (pot@fly.CNUCE.CNR.IT)
362bc2da
DL
7456
7457 * etags.c (C_entries): New local variable quotednl. Used for
7458 parsing of #define's spanning multiple lines.
7459
7460 * etags.c (C_entries): Save the definedef status
7461 even when a newline is met inside a string.
7462
74631993-02-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7464
7465 * timer.c (notify): Initialize waitfor properly.
7466
880820fe 74671993-02-22 Francesco Potortì (pot@CNUCE.CNR.IT)
362bc2da
DL
7468
7469 * etags.c (C_entries): Don't reset definedef when a newline inside a
7470 comment is met.
7471
74721993-01-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7473
7474 * etags.c (find_entries): If filename ends in .f or .for,
7475 don't try anything but Fortran.
7476
74771993-01-08 Michael I Bushnell (mib@geech.gnu.ai.mit.edu)
7478
7479 * timer.c (notify): Flush stdout after writing message to avoid lossage
7480 on terminals.
7481
7482 (notify): Also, write a newline after the token.
7483
74841992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7485
7486 * Makefile.in (exec_prefix): New variable.
7487 (bindir, libdir): Use it instead of `prefix'.
7488
7489 * Makefile.in (CFLAGS): #define HAVE_CONFIG_H, too.
7490
7491 * Makefile.in (libdir): Default to ${prefix}/lib.
b166dcd8 7492 (archlibdir): Adjust to match.
362bc2da
DL
7493
7494 * Makefile.in (distclean): Don't delete backup or autosave files.
7495 (extraclean): Like realclean, but does delete backup and autosave
7496 files.
7497
7498 * Makefile.in (realclean): Ignore errors from rm.
7499
7500 * Makefile.in (distclean): Don't bother to delete ../arch-lib;
7501 that doesn't exist anymore.
7502
75031992-12-11 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7504
7505 * Makefile.in (prefix, bindir, libdir, srcdir): New variables, as
7506 described in the top-level Makefile.
7507 (UTILITIES): Add make-path to the list of utility programs.
7508 (../arch-lib): Replaced by the ${archlibdir} target, which places
7509 the executables in their permanent home.
7510 (install, install.sysv, install.xenix): Consolidated into one
7511 target which should work under all circumstances, modulo a few
7512 ignored error messages.
7513
7514 * make-docfile.c (scan_c_file): Since DEFVAR_PER_BUFFER now takes
7515 a different number of arguments than other DEFVARs, recognize it
7516 specially, and expect the right number of commas.
7517
75181992-12-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7519
7520 * make-path.c: New program, to help with the installation process.
7521 * Makefile.in (make-path): New target.
7522
7523 * make-path.c (touchy_mkdir): Remove debugging output.
7524
75251992-11-05 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7526
b166dcd8 7527 * Makefile.in (getdate.o): Add explicit target for this, so we
362bc2da
DL
7528 can indicate that it depends on ../src/config.h.
7529
75301992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
7531
7532 * Makefile.in (CONFIG_CFLAGS): Let the configure script edit this
7533 instead of CFLAGS.
7534 (CFLAGS): Add -Demacs and -I../src to CONFIG_CFLAGS to produce this.
7535
75361992-09-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7537
7538 * getdate.y: Correctly recognize Mt. Xinu BSD running on an HP
7539 9000/300 as BSD; don't include both <sys/time.h> and <time.h> on
7540 that system.
7541
7542 * Makefile.in (arch-lib): Give rm the `-f' option.
7543
75441992-09-28 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7545
7546 * make-docfile.c (write_c_args): Rewritten to correctly print
7547 &optionals before the first identifier, but after the first paren.
7548 This code used to just wait for commas or spaces; now it notices
7549 identifier boundaries.
7550
75511992-09-26 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
7552
7553 * rcs2log: When getting date, use %02d instead of %.2d in awk printf.
7554
75551992-09-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7556
7557 * make-docfile.c (write_c_args): Print the argument lists properly
7558 when the first argument is optional.
7559
75601992-09-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7561
7562 * sorted-doc.c (main): Redefine special chars to use fonts tensy, teni.
7563 Redefine @item. Set catcode of +.
7564
75651992-08-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7566
7567 * emacsclient.c (main): Set IPC_CREAT in msgget call.
7568
75691992-08-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7570
7571 * etags.c (TEX_funcs): Keep just 1 of two redundant nested loops.
7572 (TEX_decode_env): Make `tab' one element longer.
7573
75741992-08-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7575
7576 * etags.c (PF_funcs): Recognize the "entry" keyword.
7577
75781992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7579
7580 * Makefile.in: Add rcs2log and vcdiff to the list of utilities.
7581
75821992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7583
7584 * timer.c (events): Rather than having slots marked as in use or
7585 out of use by the `token' field, keep all pending events at the
7586 beginning of the array. When we delete an event in the middle of
7587 the array, we move the last event into its place.
7588 (num_events): New variable.
7589 (schedule): It is now cheaper to find a free event slot;
7590 events[num_events] is the first free slot.
7591 (notify): Scan events[0 .. num_events-1], instead of the whole
7592 array. When an event fires, move the last event in the array into
7593 its spot. Use num_events to determine whether or not there are
7594 any pending events, not wait_for.
b166dcd8 7595 (getevent): Delete unused variable `ep'.
362bc2da
DL
7596 (sigcatch): It's now easier to find all the active events.
7597 (main): Initialize num_events.
7598
7599 * etags.c: Rather than fret about which systems have index and
7600 which systems have strchr, and how to tell the difference between
7601 them, we just write out our own versions. Big deal.
7602 (index, rindex): Extern declarations removed.
7603 (NEED_INDEX, NEED_RINDEX): Special hacks for hpux removed.
7604 (etags_index, etags_rindex): New declarations.
7605 (process_file, find_entries, pfnote, TEX_funcs, TEX_decode_env,
7606 TEX_getit, substr): Use the etags_*index functions, rather than
7607 the native *index functions.
b166dcd8 7608 (rindex, index): Rename to etags_rindex and tags_rindex, and
362bc2da
DL
7609 made them unconditionally defined, rather than having them depend
7610 on NEED_*INDEX.
7611
7612 * etags.c (savenstr): Add declaration for this at top of file.
7613 (TEX_decode_env): Don't declare it local to this function.
7614
7615 * b2m.c: #include "../src/config.h", so we can test for the USG
7616 macro, and decide whether to include <string.h> or <strings.h>.
7617 * Makefile.in: Note that b2m.c depends on ../src/config.h.
7618
76191992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7620
7621 * timer.c: Reformatted according to the GNU coding standards.
7622 Removed arbitrary limits on the number of events queued and the
7623 length of the tokens used to identify them.
7624 Removed casts to (void).
7625 Removed debugging printfs; they clutter the code, and the need
7626 can be better filled using a real debugger.
7627
76281992-08-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7629
7630 * timer.c: Installed new version from Eric Raymond; this is more
7631 portable, since it doesn't try to use SIGIO.
7632
76331992-07-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7634
7635 * emacsclient.c (main): If we can't find the socket in this
7636 person's home directory, print a message which asks if they've
7637 started the server, instead of just printing the message from
7638 sys_errmsg; Cygnus finds that people are much less confused by
7639 this.
7640
76411992-07-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7642
7643 * etags.c: Rather than defining "notdef" when "hpux" is #defined,
7644 so that index and rindex get defined, why don't we actually
7645 control index and rindex using symbols called "NEED_INDEX" and
7646 "NEED_RINDEX", and define them if hpux is defined? Isn't that a
7647 little more readable than defining something whose name implies
7648 that it's not?
7649
76501992-07-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7651
7652 * movemail.c: Merged changes from Jamie Zawinski's byte compiler
7653 distribution:
7654 Miscellaneous doc fixes.
1c478461 7655 (skip_white, read_lisp_symbol): New functions.
362bc2da
DL
7656 (scan_lisp_file): Instead of using long hairy strings of ifs, call
7657 read_lisp_symbol and then see what we got. Call skip_white
7658 instead of writing out a loop to do its job. Correctly extract
7659 docstrings from "defmacro" declarations.
7660
76611992-06-25 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7662
7663 * movemail.c (strcpy): Declare this to return char *.
7664
76651992-06-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7666
7667 * etags.c (C_entries): When we find a C++ comment, do actually
7668 skip to the end of the line; do a 'break' instead of a 'continue'.
7669
76701992-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7671
7672 * etags.c (getit): Add missing parenthesis to expression which
7673 decides if this token is an identifier.
7674
76751992-06-04 Roland McGrath (roland@geech.gnu.ai.mit.edu)
7676
7677 * etags.c (consider_token): Recognize `ENTRY' macro used in libc.
7678
76791992-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7680
7681 * etags.c (put_entries): Always put space between name and line num.
7682
76831992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
7684
7685 * etags.c (getit): Parenthesize &&/|| expression to avoid gcc
7686 warning.
7687 (LEVEL_OK_FOR_FUNCDEF): Ditto.
7688
76891992-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
7690
7691 * make-docfile.c (write_c_args): Pass both arguments to putc.
7692
76931992-05-10 Roland McGrath (roland@albert.gnu.ai.mit.edu)
7694
b166dcd8 7695 * etags.c (C_entries): Fix reading of "..." strings.
362bc2da
DL
7696 (consider_token): Recognize `SYSCALL' and `PSEUDO' macros, used in
7697 the C library source.
7698
7699 * etags.c (C_entries): When we see a backslash inside a quoted
7700 string, skip to the next character. This allows us to correctly
7701 deal with strings containing quotes.
7702
77031992-05-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7704
7705 * make-docfile.c (write_c_args): Print the C argument names as
7706 they would be written in Elisp; print '_' as '-'.
7707
77081992-05-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7709
7710 * movemail.c [POP]: Get user name via getpwuid.
7711
77121992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7713
2f2c687b 7714 * Makefile.in: Flags in CC invocations rearranged for no reason.
362bc2da
DL
7715
77161992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7717
10d1d0af 7718 * etags.c (print_help): Remember not to embed raw newlines in
362bc2da
DL
7719 strings - end the lines with `\n\'.
7720
77211992-04-17 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7722
b166dcd8 7723 * timer.c (getevent): Remove declaration of memcpy; since
362bc2da
DL
7724 different systems have different return types, and we're not even
7725 using the return type anyway, it wasn't doing us any good.
7726
77271992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7728
7729 * emacsserver.c (msgcatch): Use the SIGTYPE macro to declare the
7730 type of this function.
7731
77321992-04-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7733
7734 * ChangeLog: Since the old etc contents have been split into etc
7735 and lib-src, the old etc's ChangeLog has been duplicated in the
7736 new etc and lib-src. That means that each contains complete and
7737 coherent information, although each contains extraneous
1c478461 7738 information.
362bc2da
DL
7739
77401992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7741
290afd83 7742 * etags.c: "--no-warning" option renamed to "--no-warn",
362bc2da
DL
7743 to be consistent with other GNU programs, like makeinfo.
7744
290afd83 7745 * Makefile: Renamed to Makefile.in; the configure script
362bc2da
DL
7746 will edit this to produce Makefile.
7747
77481992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7749
7750 * etags.c (print_help, print_version): New functions.
7751 (main): Options added to support them.
7752
7753 * etags.c (longopts): New array of long names for the options.
7754 (main): Recognize them.
7755
77561992-04-06 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7757
b166dcd8 7758 * etags.c (C_entries): Remove comment saying that \" in a string
362bc2da
DL
7759 isn't recognized as magic, because it is correctly handled.
7760
7761 * getopt.c, getopt.h: New files, from GNU C library.
7762 * etags.c: Rewritten to use getopt.
7763 #include "getopt.h".
7764 (file_num): Variable deleted; its role is now played by getopt's
7765 optind.
7766 (main): Argument processing loop rewritten to call getopt to get
7767 next option. Options which take parameters (-o and -i) rewritten
b166dcd8
KC
7768 to get parameter from optarg instead of argv[1].
7769 Filename preprocessing loop and update command changed similarly.
362bc2da
DL
7770 * Makefile (etags, ctags): Depend on and link with getopt.h,
7771 getopt.o, and getopt1.o.
7772 (getopt.o, getopt1.o): New targets for the GNU getopt routines.
7773
7774 * etags.c (outfflag): Variable deleted; it is non-zero iff outfile
7775 is non-zero.
7776
7777 (main): In the argument processing loop, the 'goto next_arg'
7778 statements are breaking out of the switch statement in exactly the
7779 same way that a simple 'break' statement would; replace the gotos
7780 with breaks, and remove the label.
7781
77821992-04-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7783
7784 * etags.c (C_entries): Clear tydef and next_token_is_func at start.
7785 (consider_token): Move next_token_is_func to global.
7786
77871992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7788
7789 * Makefile: Conform with GNU coding standards:
7790 (mostlyclean): New target, synonymous with clean.
7791 (TAGS, check): New targets.
7792 (INSTALL, INSTALLFLAGS): New variables.
7793
77941992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7795
ecc54057 7796 * lib-src/Makefile, etc/MACHINES, etc/NEWS: Changed references to
362bc2da
DL
7797 `config.emacs' to `configure'.
7798
7799 * lib-src/Makefile: Adjusted for renaming of share-lib to etc.
7800 * etc/MACHINES: Same.
7801
78021992-03-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
7803
7804 * movemail.c (main): Allow tempname to be as long as necessary,
7805 instead of limiting it to 39 characters.
7806
7807 * movemail.c (main): Move declaration of buf from top of function
7808 to local block surrounding the copy loop. This makes it less
7809 likely to be confused with the buf used by the code which checks the
7810 permissions on outname's directory.
7811
78121992-03-20 Jim Kingdon (kingdon@albert.gnu.ai.mit.edu)
7813
7814 * SERVICE: Remove my entry.
7815
78161992-03-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
7817
7818 * Makefile (emacstool, nemacstool, xvetool): Use ${CFLAGS}, not
7819 hardcoded -g.
7820
7821 * movemail.c (xmalloc): Return char *, not int.
7822 (main) [!MAIL_USE_FLOCK]: Add a new conditional, MAIL_UNLINK_SPOOL,
7823 that is off by default -- normally don't unlink the mail spool
7824 file, just empty it. Pass creat mode 0600, not 0666.
7825
dff28924 78261992-02-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
362bc2da
DL
7827
7828 * Makefile (../arch-lib): Depend on ${EXECUTABLES}.
7829 (all): Instead of here.
7830 (install): Don't use the -s option, since people need symbols to
7831 debug code.
7832
dff28924 78331992-01-19 Eric Youngdale (youngdale@v6550c.nrl.navy.mil)
362bc2da
DL
7834
7835 * etags-vmslib.c (fn_exp): Add type cast.
7836
78371992-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
7838
7839 * movemail.c: Changes in comments.
7840
dff28924 78411992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
362bc2da
DL
7842
7843 * Makefile: Make the distclean target erase the DOC files from
7844 ../share-lib and the executables from ../arch-lib.
7845
dff28924 78461992-01-09 Jim Blandy (jimb@pogo.cs.oberlin.edu)
362bc2da
DL
7847
7848 * emacsclient.c: #include <sys/stat.h>
7849 (main): Do declare statbfr.
7850
dff28924 78511991-12-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7852
7853 * emacsserver.c, emacsclient.c [BSD]: Use either /tmp or ~
7854 for the socket, depending on SERVER_HOME_DIR.
7855 If using /tmp, put host name in the socket name.
7856
7857 * movemail.c (pfatal_and_delete): New function.
7858 (main, popmail): Use it.
7859 (popmail): Close output before deleting messages.
7860 Check for error on close and on fsync.
7861 Use `fatal' where appropriate.
7862 (main): Remove (void).
7863
7864 * aixcc.lex: New file. Not officially part of Emacs.
7865 * Makefile: Rules for that.
7866
dff28924 78671991-12-04 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
362bc2da
DL
7868
7869 * yow.c (main): Rename all references to PATH_EXEC to PATH_DATA.
7870
7871 * etags.c (main): Properly cast call to alloca that initializes
7872 included_files.
7873
78741991-08-17 Roland McGrath (roland@geech.gnu.ai.mit.edu)
7875
7876 * etags.c (files_are_tag_tables): Remove global var.
7877 (process_file): Don't test it. Also remove hack checking for a
7878 file named "TAGS".
7879 (main): -i now takes an arg which is the name of a file to include.
7880 Collect these names and emit include tags for them after processing
7881 all the argument files.
7882
dff28924 78831991-07-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7884
7885 * wakeup.c: Terminate if parent goes away.
7886
dff28924 78871991-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7888
7889 * etags.c (C_entries): Process token before handling end of line.
7890 When inner loops reach end of line, just back up.
7891 Let the real end of line processing happen in just one place.
a64387ee 7892 (consider_token): Likewise.
362bc2da 7893
dff28924 78941991-04-11 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
362bc2da
DL
7895
7896 * etags.c (TEX_mode): Skip comments while scanning the text to see
7897 which escape character this file uses.
7898
dff28924 78991991-03-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
362bc2da
DL
7900
7901 * emacsserver.c [USG]: Terminate if msgrcv fails.
7902
dff28924 79031991-03-03 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7904
7905 * emacsserver.c [BSD]: Check for errors on stdin after scanf.
7906
dff28924 79071991-01-25 Jim Blandy (jimb@churchy.ai.mit.edu)
362bc2da
DL
7908
7909 * make-docfile: Find the arguments to a C function correctly,
b166dcd8
KC
7910 by not ignoring the character that read_c_string returns.
7911 Don't even try to find argument names for functions that take MANY
362bc2da
DL
7912 or UNEVALLED arguments, since they're a figment of the docstring's
7913 imagination.
7914
dff28924 79151991-01-14 Jim Blandy (jimb@churchy.ai.mit.edu)
362bc2da
DL
7916
7917 * make-docfile: Read the .elc files generated by the new byte
7918 compiler.
7919
dff28924 79201990-12-31 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7921
7922 * refcard.tex: Use cm fonts, not am, in multi-column mode.
7923
dff28924 79241990-11-29 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7925
7926 * movemail.c (mbx_delimit_begin): Put space before `unseen'.
7927
dff28924 79281990-11-27 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7929
7930 * Makefile (install*): No need to install wakeup.
7931
dff28924 79321990-11-26 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7933
7934 * Makefile (install*): Install emacsclient like etags.
7935
dff28924 79361990-11-13 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7937
7938 * movemail.c (error): Handle 3 args.
7939 (main): Don't check input access if using pop.
7940
dff28924 79411990-10-16 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7942
7943 * etags.c (find_entries): Check for numbers after Scheme suffix.
7944
dff28924 79451990-10-14 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7946
7947 * termcap.dat (vt200-80): Fix ke and ks to frob flag 1.
7948
dff28924 79491990-10-09 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7950
7951 * Makefile (nemacstool, xvetool): New targets.
7952
dff28924 79531990-09-26 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7954
7955 * emacsclient.c: Include errno.h and define related variables.
7956
dff28924 79571990-09-23 Richard Stallman (rms@mole.ai.mit.edu)
362bc2da
DL
7958
7959 * emacsclient.c: Change usage message.
7960
dff28924 79611990-08-30 David Lawrence (tale@pogo.ai.mit.edu)
362bc2da 7962
ecc54057 7963 * emacs.1: Add break before -nw option.
362bc2da 7964
dff28924 79651990-08-19 David J. MacKenzie (djm@apple-gunkies)
362bc2da
DL
7966
7967 * qsort.c: Replace with GNU version.
7968
dff28924 79691990-08-14 David J. MacKenzie (djm@apple-gunkies)
362bc2da
DL
7970
7971 * wakeup.c: New program replacing loadst.c.
7972
dff28924 79731990-08-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7974
7975 * emacsclient.c [USG]: Pass msgsnd only 4 args.
7976
dff28924 79771990-08-09 David J. MacKenzie (djm@pogo.ai.mit.edu)
362bc2da
DL
7978
7979 * etags.c: Rename `flag' variables for what they do instead of
7980 which option character sets them.
7981
dff28924 79821990-05-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7983
7984 * loadst.c (main): Conditional to get load average on Apollo.
7985
dff28924 79861990-05-22 Joseph Arceneaux (jla@churchy.ai.mit.edu)
362bc2da
DL
7987
7988 * emacsserver.c: Set the permission on the socket to 0600.
7989
dff28924 79901990-03-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
7991
7992 * emacsclient.c [BSD]: Print clean message for failing getwd.
7993
dff28924 79941990-03-20 David Lawrence (tale@pogo.ai.mit.edu)
362bc2da
DL
7995
7996 * getdate.y: Use the getdate.y from GNU tar for timer.
7997
dff28924 79981990-03-18 Jim Kingdon (kingdon@pogo.ai.mit.edu)
362bc2da
DL
7999
8000 * emacsclient.c (main): Don't put brackets around "filename" in
8001 usage message. It isn't optional.
8002
dff28924 80031990-03-14 Joseph Arceneaux (jla@churchy.ai.mit.edu)
362bc2da 8004
a64387ee 8005 * etags.c (getit): Recognize '$' as beginning identifiers.
362bc2da 8006
dff28924 80071990-02-22 David Lawrence (tale@pogo.ai.mit.edu)
362bc2da
DL
8008
8009 * emacsserver.c: Renamed from server.c.
8010 * Makefile: Reference emacsserver rather than server.
8011 * MACHINES: Doc fix for new emacsserver name.
8012
dff28924 80131990-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8014
8015 * emacsclient.c: Print program name in error messages.
8016
dff28924 80171990-01-19 David Lawrence (tale@cocoa-puffs)
362bc2da
DL
8018
8019 * timer.c, getdate.y (new files) and Makefile:
194d44e7
JB
8020 Sub-process support for run-at-time in timer.el.
8021 Doesn't yet work correctly for USG.
362bc2da 8022
dff28924 80231990-01-10 Jim Kingdon (kingdon@pogo)
362bc2da
DL
8024
8025 * MACHINES: Add HP 300 running BSD.
8026
dff28924 80271990-01-02 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8028
8029 * yow.c: Dynamically allocate buffer; skip header before random
8030 choice to avoid bias toward first item.
8031
dff28924 80321989-12-24 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8033
8034 * etags.c (readline): Separate out init of `pend'.
8035
dff28924 80361989-12-17 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8037
8038 * etags.c: Undo changes relating to isgoodhdr.
8039
dff28924 80401989-12-16 Mosur Mohan (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8041
8042 * etags.c (isgoodhdr): New macro.
8043 (_gdh, notgdh): New variable used by that.
8044 (init): Initialize _gdh.
8045 (find_entries): Set header_file.
8046 (consider_token): Use isgoodhdr if in header file.
8047
8048 * etags.c (total_size_of_entries):
8049 Was miscalculating by 1 in rewritten case.
8050
8051 * etags.c (PAS_funcs): One arg to pfnote was missing.
8052
dff28924 80531989-12-05 Joseph Arceneaux (jla@spiff)
362bc2da
DL
8054
8055 * MACHINES: Change for the ULTRIX entry.
8056
dff28924 80571989-11-21 Joseph Arceneaux (jla@spiff)
362bc2da
DL
8058
8059 * etags.c (process_file): If file is not regular, return.
8060
dff28924 80611989-11-06 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8062
8063 * loadst.c (main): Handle FIXUP_KERNEL_SYMBOL_ADDR.
8064
dff28924 80651989-10-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8066
8067 * loadst.c (load_average): If HAVE_GETLOADAVG, use getloadavg.
8068 (main): If HAVE_GETLOADAVG, don't call `nlist'.
8069
dff28924 80701989-10-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8071
8072 * etags.c (consider_token): Allow any number of typespec keywords
8073 after `typedef', before new type name.
8074 (enum sym_type): Add st_C_typespec.
8075 (C_create_stab): Put typespec kwds in table.
8076
dff28924 80771989-08-27 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
362bc2da
DL
8078
8079 * etags.c (main): Don't depend on name invoked by.
8080 If CTAGS is not defined, assume it is ETAGS.
8081
dff28924 80821989-07-31 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8083
8084 * etags.c (L_funcs): Allow package name in define construct,
8085 as in (foo::defmumble name-defined ...).
8086
dff28924 80871989-07-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8088
8089 * etags.c (find_entries): Stupid bug testing for C filename suffixes.
8090
8091 * Makefile (yow): Depends on ../src/paths.h.
8092
dff28924 80931989-07-04 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
362bc2da
DL
8094
8095 * etags.c: Fix compilation by moving Pascal after Fortran.
8096
dff28924 80971989-06-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8098
8099 * movemail.c [USG]: Define F_OK, etc., if not found in header.
8100
dff28924 81011989-05-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8102
8103 * hexl.c: New file, supports hexl-mode.
8104
dff28924 81051989-05-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8106
8107 * movemail.c: New compilation flag MAIL_USE_MMDF.
8108
dff28924 81091989-05-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8110
8111 * emacsclient.c: Use BSD code whenever HAVE_SOCKETS.
8112 * server.c: Likewise.
8113
8114 * make-docfile.c (scan_c_file): Output argument names at end of string.
8115 (write_c_args): New subroutine.
8116
dff28924 81171989-04-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8118
8119 * movemail.c: Report failure of flock.
8120
dff28924 81211989-04-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8122
8123 * etags.c (find_entries): Allow multi-letter extensions for fortran.
8124
dff28924 81251989-04-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da 8126
2f2c687b 8127 * loadst.c: On bsd4.3, use gettimeofday instead of CPUSTATES.
362bc2da 8128
dff28924 81291989-03-15 Jeff Peck (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8130
8131 * emacstool.c: setenv IN_EMACSTOOL=t, TERM=sun, TERMCAP=.
8132
30a7ee9f 8133 * emacstool.1: Update to document environment variables.
362bc2da 8134
dff28924 81351989-02-21 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8136
8137 * etags.c (PAS_funcs): New function by Mosur Mohan.
8138
8139 * movemail.c: On sysv, include unistd.h.
8140
dff28924 81411989-02-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8142
8143 * b2m.c: New file.
8144
dff28924 81451989-02-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da 8146
6088b51f 8147 * etags.c: Prolog support from Sunichirou Sugou.
362bc2da 8148
dff28924 81491989-02-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8150
8151 * Makefile (clean): New target.
8152
dff28924 81531989-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8154
8155 * fakemail.c (put_line): Break header lines at 79 cols.
8156
dff28924 81571989-01-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8158
8159 * etags.c: Greatly rewritten by Sam Kendall for C++ support and for
8160 multiple tags per line.
8161
dff28924 81621989-01-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8163
8164 * movemail.c: Check access before doing real work.
8165 Check that outfile is in a writable directory.
8166 On fatal error, delete the lock file.
8167
dff28924 81681988-12-31 Richard Mlynarik (mly@rice-chex.ai.mit.edu)
362bc2da 8169
ecc54057 8170 * env.c: Add decl for my-index
6088b51f 8171 * etags.c (file-entries): .oak => scheme.
362bc2da 8172
dff28924 81731988-12-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8174
8175 * movemail.c: Use `access' to check input and output files.
8176
dff28924 81771988-12-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8178
8179 * emacsclient.c (main): Ignore all of CWD before first slash.
8180
dff28924 81811988-12-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8182
8183 * etags.c (readline): Double linebuffer->size outside the xrealloc.
8184
dff28924 81851988-12-22 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8186
8187 * server.c, emacsclient.c: Don't try to use gid_t; it isn't defined.
8188 * server.c: chmod the socket to 0700.
8189
dff28924 81901988-12-09 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8191
8192 * fakemail.c (main): Let env var FAKEMAILER override pgm to run.
8193 (add_field): Delete comments and turn `<', `>' to spaces
8194 in header lines.
8195 (USE_FAKEMAIL): New customization macro says to make fakemail
8196 not be a no-op even on a BSD system.
8197
dff28924 81981988-12-01 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8199
8200 * etags.c (consider_token): Skip comments just like whitespace.
8201 Notice `struct', etc. and set strtag for those tokens.
8202 Return 1 for the token following `struct' if an open-brace follows it.
8203 (C_entries): Special handling of token following `struct'
8204 needed because we have probably advanced to the following line
8205 to find the `{'.
8206 (main): New option `T' sets tflag and strflag.
8207 Set both of them by default if eflags.
8208
dff28924 82091988-11-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8210
8211 * movemail.c: Do fsync before closing output.
8212
dff28924 82131988-11-29 Richard Mlynarik (mly@pickled-brain.ai.mit.edu)
362bc2da 8214
ecc54057
JB
8215 * movemail.c: Better error message when can't create tempname.
8216 This file needs a great deal of extra error-checking and lucid reporting...
362bc2da 8217
dff28924 82181988-11-16 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8219
8220 * etags.c: Support assembler code for .s and .a files.
8221 (getit): Allow underscore in a tag.
8222
dff28924 82231988-11-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8224
8225 * movemail.c: Close output and check errors before deleting input.
8226
dff28924 82271988-10-01 Richard Stallman (rms@apple-gunkies.ai.mit.edu)
362bc2da
DL
8228
8229 * emacsclient.c [SYSVIPC]: Compute cwd only once; decide properly
8230 whether to prefix it. Handle line number args.
8231
dff28924 82321988-09-24 Richard Stallman (rms@gluteus.ai.mit.edu)
362bc2da 8233
2f2c687b 8234 * etags.c (main): Default setting of eflag was backwards.
362bc2da 8235
dff28924 82361988-09-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8237
8238 * etags.c: New option -i. -f renamed -o.
8239 `-' as input file means read input file names from stdin.
8240 -i spec'd or input file named TAGS means the input file is another
8241 tag table; output an "include" line for it.
8242
dff28924 82431988-09-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8244
8245 * Makefile: New vars DESTDIR, BINDIR, LIBDIR, MANDIR, MANEXT.
8246 New targets install, install.sysv, install.xenix.
8247 This makefile is now responsible for installing executables
8248 and documentation from this directory into system directories.
8249
dff28924 82501988-09-16 Richard Stallman (rms@corn-chex.ai.mit.edu)
362bc2da
DL
8251
8252 * server.c, emacsclient.c (main): Compute socket name from euid.
8253
dff28924 82541988-08-04 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8255
8256 * emacsclient.c: Args like +DIGITS are passed through unchanged.
8257
dff28924 82581988-07-12 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8259
8260 * server.c: If both BSD and HAVE_SYSVIPC, use the latter.
8261 * emacsclient.c: Likewise.
8262 In the HAVE_SYSVIPC alternative, if BSD, use getwd instead of getcwd.
8263
dff28924 82641988-06-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8265
8266 * etags.c: Handle `typedef struct foo {' (price@mcc.com).
07655e62 8267 (istoken): New string-comparison macro.
362bc2da
DL
8268 (consider_token): New arg `level'. New state `tag_ok' in `tydef'.
8269
dff28924 82701988-06-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8271
8272 * etags.c: Changes for VMS.
8273 Always define ETAGS on VMS.
8274 Define macros GOOD and BAD for success and failure exit codes.
c4cc8b9a 8275 (begtk, intk): Allow `$' in identifiers.
362bc2da
DL
8276 (main): Don't support -B, -F or -u on VMS.
8277 Alternate loop for scanning filename arguments.
8278 (system): Delete definition of this function.
8279
8280 * etags-vmslib.c (system): Undefine this; VMS now provides it.
8281
dff28924 82821988-06-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
362bc2da
DL
8283
8284 * loadst.c: Prevent multiple-def errors on BSD and BSD4_3
8285 around include of param.h. (Like fns.c.)
8286
dff28924 82871988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
8288
8289 * loadst.c (load_average): Move load-average code to this new fn.
8290 Add conditionals to compute load ave on UMAX.
8291
dff28924 82921988-05-14 Richard Stallman (rms@lucky-charms.ai.mit.edu)
362bc2da
DL
8293
8294 * loadst.c: Change DK_HEADER_FILE to DKSTAT_HEADER_FILE
8295 with opposite sense.
8296
dff28924 82971988-05-13 Chris Hanson (cph@kleph)
362bc2da 8298
b166dcd8
KC
8299 * emacsclient.c: Delete references to unused variable `out'.
8300 This caused a bus error when used under hp-ux.
362bc2da 8301
dff28924 83021988-05-06 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
8303
8304 * loadst.c: Control dk.h conditional with DK_HEADER_FILE.
8305
dff28924 83061988-05-04 Richard Stallman (rms@rice-krispies.ai.mit.edu)
362bc2da
DL
8307
8308 * etags.c (find_entries): `.t' or `.sch' means scheme code.
8309
dff28924 83101988-04-29 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
8311
8312 * loadst.c: Add BSD4_3 conditional for file dk.h instead of dkstat.h.
8313
dff28924 83141988-04-28 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
362bc2da
DL
8315
8316 * movemail.c: #undef close, since config can #define it on V.3.
2f2c687b 8317 * emacsclient.c, fakemail.c, loadst.c, server.c: Likewise.
362bc2da 8318
dff28924 83191988-04-26 Richard Stallman (rms@lucky-charms.ai.mit.edu)
362bc2da
DL
8320
8321 * etags.c (TEX_mode, etc.): Remove superfluous backslashes from
8322 invalid escape sequences such as `\{'.
8323
8324 * loadst.c: Add `sequent' conditional for file dk.h.
8325
dff28924 83261988-03-20 Richard M. Stallman (rms@wilson)
362bc2da 8327
2f2c687b 8328 * server.c [not BSD and not HAVE_SYSVIPC]: Fix error message.
362bc2da 8329
2f2c687b 8330 * loadst.c (main) [XENIX]: Use /usr/spool/mail, not /usr/mail.
6922b018
KH
8331
8332;; Local Variables:
880820fe 8333;; coding: utf-8
6922b018 8334;; End:
2a34a036 8335
acaf905b 8336 Copyright (C) 1988-1999, 2001-2012 Free Software Foundation, Inc.
5b87ad55
GM
8337
8338 This file is part of GNU Emacs.
8339
294981c7 8340 GNU Emacs is free software: you can redistribute it and/or modify
5b87ad55 8341 it under the terms of the GNU General Public License as published by
294981c7
GM
8342 the Free Software Foundation, either version 3 of the License, or
8343 (at your option) any later version.
5b87ad55
GM
8344
8345 GNU Emacs is distributed in the hope that it will be useful,
8346 but WITHOUT ANY WARRANTY; without even the implied warranty of
8347 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8348 GNU General Public License for more details.
8349
8350 You should have received a copy of the GNU General Public License
294981c7 8351 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.