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