XEmacs 21.4.7 "Economic Science".
[chise/xemacs-chise.git.1] / lib-src / ChangeLog
1 2002-05-04  Stephen J. Turnbull  <stephen@xemacs.org>
2
3         * XEmacs 21.4.7 "Economic Science" is released.
4
5 2001-12-17  Stephen J. Turnbull  <stephen@xemacs.org>
6
7         * XEmacs 21.4.6 "Common Lisp" is released.
8
9 2001-10-23  Stephen J. Turnbull  <stephen@xemacs.org>
10
11         * XEmacs 21.4.5 "Civil Service" is released.
12
13 2001-07-28  Stephen J. Turnbull  <stephen@xemacs.org>
14
15         * XEmacs 21.4.4 "Artificial Intelligence" is released.
16
17 2001-04-17  Isaac Hollander  <ysh@mindspring.com>
18
19         * gnuserv.c (setup_table): fix 2 signed/unsigned mismatches
20         * gnuslib.c (connect_to_internet_server): fix signed/unsigned mismatch
21
22 2001-05-17  Stephen J. Turnbull  <stephen@xemacs.org>
23
24         * XEmacs 21.4.3 "Academic Rigor" is released.
25
26 2001-05-10  Stephen J. Turnbull  <stephen@xemacs.org>
27
28         * XEmacs 21.4.2 "Developer-Friendly Unix APIs" is released.
29
30 2001-04-20  Ben Wing  <ben@xemacs.org>
31
32         * .cvsignore: Added stuff for Windows.
33
34 2001-04-19  Stephen J. Turnbull  <stephen@xemacs.org>
35
36         * XEmacs 21.4.1 "Copyleft" is released.
37
38 2001-04-16  Stephen J. Turnbull  <stephen@xemacs.org>
39
40         * XEmacs 21.4.0 "Solid Vapor" is released.
41
42 2001-04-14  Stephen J. Turnbull  <stephen@xemacs.org>
43
44         * XEmacs 21.2.47 "Zephir" is released.
45
46 2000-08-01  Jon Schewe  <jpschewe@eggplant.mtu.net>
47
48         * gnuclient.c (filename_expand): Let Cygwin convert Windows path
49         to Unix.
50
51 2001-03-23  Stephen J. Turnbull  <stephen@xemacs.org>
52
53         * gnuserv.h: Document TMPDIR lossage if client/server values differ.
54
55 2001-03-21  Martin Buchholz <martin@xemacs.org>
56
57         * XEmacs 21.2.46 "Urania" is released.
58
59 2001-03-19  Andy Piper  <andy@xemacs.org>
60
61         * installexe.sh: use bash by default.
62
63 2001-03-09  William M. Perry  <wmperry@aventail.com>
64
65         * gnuclient.c: The Great GTK Merge.
66
67 2000-08-10  Ben Wing  <ben@xemacs.org>
68
69         * update-elc.sh: deleted (retroactively).  replaced by update-elc-2.el,
70         which does the same thing but in a platform-independent way.
71
72 2001-02-23  Martin Buchholz <martin@xemacs.org>
73
74         * XEmacs 21.2.45 "Thelxepeia" is released.
75
76 2001-02-11  Martin Buchholz  <martin@xemacs.org>
77
78         * Makefile.in.in: Cleanup.
79         Fixes bug: all must depend on make-dump-id.
80         Don't install make-path; only used at build time.
81         Avoid duplicating file lists for maintainability.
82         (PUBLIC_INSTALLABLE_SCRIPTS): More logical naming.
83         (PUBLIC_INSTALLABLE_EXES): Likewise.
84         (PUBLIC_INSTALLABLES): Likewise.
85         (PRIVATE_INSTALLABLE_SCRIPTS): More logical naming.
86         (PRIVATE_INSTALLABLE_EXES): Likewise.
87         (PRIVATE_INSTALLABLES): Likewise.
88         (SCRIPTS): Likewise.
89         (EXES): New.
90         (PROGS): New.
91         (SOURCES): Remove.
92         (BUILD_UTILITIES): New.  Non-installed utilities.
93         (INSTALL_GNUSERV): New.
94         (unlock): Remove obsolete target.
95         (relock): Remove obsolete target.
96         (aixcc.c): Remove.  Obsolete.
97         * aixcc.lex:  Remove.  Obsolete.
98
99 2001-02-12  Martin Buchholz  <martin@xemacs.org>
100
101         * make-dump-id.c (main): No longer #include dump-id.h.
102
103 2001-02-08  Martin Buchholz  <martin@xemacs.org>
104
105         * gnuserv.c (permitted): Compiler warning fixes.
106
107 2001-02-08  Martin Buchholz <martin@xemacs.org>
108
109         * XEmacs 21.2.44 "Thalia" is released.
110
111 2001-01-31  Francesco Potorti`  <pot@gnu.org>
112
113         * etags.c: [NDEBUG] #undef assert and #define it as ((void)0), for
114         the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc).
115         (C_entries): Tag token renamed to still_in_token because sunos4
116         pcc wants to expand it as the token() macro even though it has no
117         arguments.
118
119 2001-01-30  Francesco Potorti`  <pot@gnu.org>
120
121         * etags.c: [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and
122         #define it for the sake of Xemacs.
123         [WINDOWSNT]: #undef HAVE_NTGUI even if built without
124         HAVE_CONFIG_H.  This change only affects a standalone etags.
125         [WINDOWSNT]: #undef DOS_NT and #define it even if built with
126         HAVE_CONFIG_H.  This change does nothing in Emacs, as DOS_NT is
127         always defined when HAVE_CONFIG_H and WINDOWS are both defined.
128         [!HAVE_UNISTD_H]: use defined(WINDOWSNT) instead of the bare
129         WINDOWSNT, as this is the correct way to use it.
130
131 2001-01-28  Francesco Potorti`  <pot@gnu.org>
132
133         * etags.c: Be capable to parse nested struct-like structures.
134         (structdef, structtag): Struct state machine revisited.
135         (struct tok): Revisited.
136         (cstack, nestlev, instruct): New struct and macros.
137         (pushclass_above, popclass_above, write_classname): New functions
138         for dealing with nested class names, inspired by Mykola Dzyuba.
139         (consider_token, make_C_tag, C_entries): Many changes for dealing
140         with arbitrarily nested structures.
141         (etags_getcwd): #if MSDOS, not #ifdef MSDOS!
142         (C_entries): Consider templates in C++.
143         (sym_type): New constant st_C_class for detecting "class" also in
144         C mode.
145         (C_AUTO): New macro for automatic detection of C++.
146         (consider_token): Automatic set C++ mode.
147         (C_entries): New security check for yacc.
148         (print_language_names, print_help): Mention the autodetect
149         feature, do not show help for the -C option, now mostly useless.
150         (C_entries): Tag C++ forward declarations if --declarations.
151         (C_entries): Don't be fooled by things like XDEFUN.
152         (consider_token): Discard asm pseudo function.
153
154 2001-01-25  Francesco Potorti`  <pot@gnu.org>
155
156         * etags.c (struct tok): Renamed from struct token.
157         (token): Renamed from tok.
158         (structtype): Make it a local variable.
159         [DEBUG]: Use assert.
160         (xrnew): Change the synopsis.
161         (typedefs_or_cplusplus): Renamed from typedefs_and_cplusplus.
162         (grow_linebuffer): Don't call xrnew when not needed.
163         (token): buffer renamed to line.
164         (C_entries): Three calls to inibuffer moved here from main.
165         (C_entries): Removed all references to var methodlen, delete it.
166         (linebuffer_setlen): Was grow_buffer, now also sets len.
167         (consider_token, C_entries, Pascal_functions): Use it.
168         (C_entries): Preventing problems relative to extern "C".
169         (C_entries): Can tag more than one variable or func separated by
170         comma when --declarations is used.
171         (C_entries): More accurate tagging of members and declarations.
172         (yacc_rules): Was global, made local to C_entries.
173         (next_token_is_func): Removed.
174         (fvdef): New constants fdefunkey, fdefunname.
175         (consider_token, C_entries): Use them.
176         (C_entries): Build proper lisp names for Emacs DEFUNs.
177
178 2001-01-15  Francesco Potorti`  <pot@gnu.org>
179
180         * etags.c (print_language_names): Print filenames in addition to
181         suffixes.
182
183 2001-01-12  Francesco Potorti`  <pot@gnu.org>
184
185         * etags.c (get_language_from_langname): Renamed from
186         get_language_from_name.
187         (get_language_from_filename): Renamed from
188         get_language_from_suffix.  Now first looks for the complete file
189         name.
190         (language): New member char **filenames.
191         (Makefile_filenames): List of possible filenames for makefiles.
192         (lang_names): Added a NULL member for every entry, added an entry
193         for makefiles.
194         (Makefile_targets): New function, inspired by Assar Westerlund
195         <assar@sics.se>.
196
197 2000-11-07  Francesco Potorti`  <pot@gnu.org>
198
199         * etags.c (Texinfo_nodes): Renamed from Texinfo_fuctions and made
200         it conformant to the style of the rest of the code.
201
202 2000-02-10  Francesco Potorti`  <pot@gnu.org>
203
204         * etags.c (iswhite): Redefined not to consider '\0' as white
205         space, and use it throughout in place of isspace, thus preventing a
206         potential signed char to int conversion problem.
207         (MSDOS): #undefine befere redefining
208
209 2000-02-04  Francesco Potorti`  <pot@gnu.org>
210
211         * etags.c (many functions): Add prototypes.
212
213 2000-01-31  Francesco Potorti`  <pot@gnu.org>
214
215         * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise.
216         (get_compressor_from_suffix, process_file): Use MSDOS in if clause.
217         (etags_strchr, etags_strrchr): Use const char * and int as arguments.
218         (getenv, getcwd): Only declare them if necessary.
219         (EMACS_NAME): New constant macro.
220         (print_version): Use it.
221         (P_) [__STDC__]: Macro for defining function prototypes.
222
223 2001-02-06  Martin Buchholz  <martin@xemacs.org>
224
225         * gnuclient.c:
226         * gnuserv.c:
227         * gnuslib.c:
228         * pop.c:
229         Remove use of BSD-specific types.
230         s/u_(char|short|int_long)/unsigned $1/g
231         Remove pointless casts.
232
233 2001-01-28  Martin Buchholz  <martin@xemacs.org>
234
235         * gnuclient.c (get_current_working_directory): Use HAVE_GETCWD.
236         warning: getwd() possibly used unsafely, consider using getcwd().
237
238 2001-01-26  Martin Buchholz <martin@xemacs.org>
239
240         * XEmacs 21.2.43 "Terspichore" is released.
241
242 2001-01-23  Jan Vroonhof  <jan@xemacs.org>
243
244         * gnuserv.c: Add version number to object file.
245
246 2001-01-20  Klaus Frank <klausf@i3.informatik.rwth-aachen.de>
247
248         * gnuserv.c (permitted): Completed the checks of the authentication
249         data length, replaced memcmp() by constant-time comparision.
250
251 2001-01-20  Martin Buchholz <martin@xemacs.org>
252
253         * XEmacs 21.2.42 "Poseidon" is released.
254
255 2001-01-17  Martin Buchholz <martin@xemacs.org>
256
257         * XEmacs 21.2.41 "Polyhymnia" is released.
258
259 2001-01-08  Martin Buchholz <martin@xemacs.org>
260
261         * XEmacs 21.2.40 is released.
262
263 2000-12-31  Martin Buchholz <martin@xemacs.org>
264
265         * XEmacs 21.2.39 is released.
266
267 2000-12-05  Martin Buchholz <martin@xemacs.org>
268
269         * XEmacs 21.2.38 is released.
270
271 2000-11-13  Yoshiki Hayashi  <yoshiki@xemacs.org>
272
273         * Makefile.in.in: Define emacs iff it's necessary.
274
275 2000-11-14  Martin Buchholz <martin@xemacs.org>
276
277         * XEmacs 21.2.37 is released.
278
279 2000-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
280
281         * make-po.c (BUFSIZE): Increase value to 32768.
282
283 2000-10-04  Martin Buchholz <martin@xemacs.org>
284
285         * XEmacs 21.2.36 is released.
286
287 2000-09-30  Martin Buchholz  <martin@xemacs.org>
288
289         * gnuserv.c (main): Warning removal.
290
291 2000-09-27  Martin Buchholz  <martin@xemacs.org>
292
293         * ellcc.c: Make global variables static.  Avoids warnings on AIX.
294
295         * fakemail.c (make_file_preface): Use standard type time_t.
296         Actually check that the 25th char returned from ctime is '\n'.
297
298 2000-09-19  Martin Buchholz  <martin@xemacs.org>
299
300         * *: Spelling mega-patch
301
302 2000-09-12  Martin Buchholz  <martin@xemacs.org>
303
304         * gnuclient.c (main):
305         * hexl.c (usage):
306         Use `Usage', not `usage', in Usage messages.
307
308 2000-07-15  Ben Wing  <ben@xemacs.org>
309
310         * etags.c (add_regex): added commented out code for use figuring
311         out Windows quoting problems.
312         * hexl.c (main): fixed warnings about possible used uninitialized.
313
314 2000-07-19  Martin Buchholz <martin@xemacs.org>
315
316         * XEmacs 21.2.35 is released.
317
318 2000-07-12  Martin Buchholz  <martin@xemacs.org>
319
320         * gnuserv.c:
321         (handle_internet_request): 
322         (handle_unix_request): 
323         (internet_init): 
324         Use socklen_t instead of int or size_t.
325
326 2000-07-11  Martin Buchholz  <martin@xemacs.org>
327
328         * hexl.c (usage): Use full ANSI C prototypes.
329
330 2000-07-05  Craig Lanning  <lanning@scra.org>
331
332         * Makefile.in.in (INSTALL_DATA):
333         * Makefile.in.in (UTILITIES):
334         * Makefile.in.in (GETOPTDEPS):
335         * Makefile.in.in (i):
336         mingw support: don't try to build gnuclient, add
337         support for building and installing minitar
338
339 2000-06-10  Ben Wing  <ben@xemacs.org>
340
341         * Makefile.in.in (INSTALLABLES_BASE):
342         * Makefile.in.in (ootags_args):
343         * Makefile.in.in (yow):
344         Build i.exe.
345         Don't build run*.exe.
346         
347         * b2m.c:
348         * b2m.c (main):
349         * ellcc.c (main):
350         * etags.c:
351         * etags.c (main):
352         * etags.c (get_compressor_from_suffix):
353         * etags.c (process_file):
354         * etags.c (readline_internal):
355         * etags.c (etags_getcwd):
356         * etags.c (relative_filename):
357         * etags.c (absolute_filename):
358         * etags.c (filename_is_absolute):
359         * etags.c (canonicalize_filename):
360         * fakemail.c:
361         * fakemail.c (make_file_preface):
362         * getopt.c:
363         * getopt.h:
364         * gnuclient.c:
365         * gnuclient.c (filename_expand):
366         * gnuserv.h:
367         * gnuserv.h (PATCHLEVEL):
368         * hexl.c:
369         * hexl.c (main):
370         * make-docfile.c:
371         * make-docfile.c (APPEND_BINARY):
372         * make-docfile.c (main):
373         * make-dump-id.c:
374         * mmencode.c:
375         * mmencode.c (fromqp):
376         * mmencode.c (main):
377         * movemail.c:
378         * movemail.c (main):
379         * movemail.c (popmail):
380         * ootags.c:
381         * ootags.c (main):
382         * ootags.c (readline_internal):
383         * ootags.c (etags_getcwd):
384         * ootags.c (absolute_filename):
385         * ootags.c (filename_is_absolute):
386         * ootags.c (canonicalize_filename):
387         * pop.c:
388         * pop.c (DONT_ENCAPSULATE):
389         * pop.c (pop_open):
390         * pop.c (socket_connection):
391         * pop.c (pop_trash):
392         * profile.c (gettimeofday):
393         * wakeup.c:
394         * yow.c (rootrelativepath):
395         Remove MSDOS support, converting to WIN32_NATIVE where necessary.
396         WINDOWSNT -> WIN32_NATIVE.
397         __CYGWIN32__ -> CYGWIN.
398         DOS_NT -> WIN32_NATIVE.
399         Remove unused NO_SHORTNAMES.
400         Changes for removed nt\inc.
401
402 2000-06-07  Ben Wing  <ben@xemacs.org>
403
404         * run.c, run.h, run.rc: Removed.  We no longer need these for
405         building runxemacs.exe, and it's questionable at best whether
406         rungnuclient.exe was ever used or is even needed.  The correct
407         solution is just to make gnuclient.exe a windows program and
408         use the gnuattach script to run 'i gnuclient.exe'.  Not that
409         gnuclient currently works under Windows native in any case.
410
411 2000-05-28  Martin Buchholz <martin@xemacs.org>
412
413         * XEmacs 21.2.34 is released.
414
415 2000-05-11  Ben Wing  <ben@xemacs.org>
416
417         * i.c (get_command): fix unused var warning.
418         
419         * make-docfile.c (MDGET):
420         * make-docfile.c (read_c_string):
421         rewrite and reindent -- handle closing doc string comment that's
422         not at beg of line.
423
424 2000-05-01  Martin Buchholz <martin@xemacs.org>
425
426         * XEmacs 21.2.33 is released.
427
428 2000-04-19  Martin Buchholz  <martin@xemacs.org>
429
430         * gnuclient.c (initialize_signals): Always use full ANSI prototypes.
431
432 2000-04-06  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
433
434         * i.c: New file, source for the i utility.
435
436 2000-03-22  Mike Alexander  <mta@arbortext.com>
437
438         * make-dump-id.c (gettimeofday): new (Windows only)
439
440 2000-03-20  Martin Buchholz <martin@xemacs.org>
441
442         * XEmacs 21.2.32 is released.
443
444 2000-03-20  Martin Buchholz  <martin@xemacs.org>
445
446         * make-dump-id.c: Use config.h and systime.h for portability.
447
448 2000-02-20  Olivier Galibert  <galibert@pobox.com>
449
450         * make-dump-id.c: Added.
451
452         * Makefile.in.in: Add support for make-dump-id.
453
454 2000-03-12  Ben Wing  <ben@xemacs.org>
455
456         * etags.c (canonicalize_filename): fixed a problem with gratuitous
457         capitalization of file names under MS Windows. 
458
459 2000-02-23  Martin Buchholz <martin@xemacs.org>
460
461         * XEmacs 21.2.31 is released.
462
463 2000-02-21  Martin Buchholz <martin@xemacs.org>
464
465         * XEmacs 21.2.30 is released.
466
467 2000-02-16  Martin Buchholz <martin@xemacs.org>
468
469         * XEmacs 21.2.29 is released.
470
471 2000-02-13  Martin Buchholz  <martin@xemacs.org>
472
473         * etags.c: Upgrade to version 13.44.
474         Only added (unsigned char) casts to calls like isspace (*cp).
475
476 2000-02-07  Martin Buchholz <martin@xemacs.org>
477
478         * XEmacs 21.2.28 is released.
479
480 2000-02-06  Martin Buchholz  <martin@xemacs.org>
481
482         * getopt.h:
483         * fakemail.c:
484         * gnuslib.c:
485         * sorted-doc.c:
486         * yow.c:
487         * cvtmail.c:
488         * movemail.c:
489         * gnuclient.c:
490         ANSIfy. Use coding standards for function definitions.
491         Make C++-compilable. Modified from patch by Zack Weinberg.
492
493 2000-01-26  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>
494
495         * hexl.c: Removed MSDOS code; set binary I/O flags for NT.
496
497 2000-01-18  Martin Buchholz <martin@xemacs.org>
498
499         * XEmacs 21.2.27 is released.
500
501 2000-01-18  Martin Buchholz  <martin@xemacs.org>
502
503         * ootags.c: Ansify.
504         * etags.c:
505         * getopt.c:
506         * cvtmail.c:
507         Remove declarations of ANSI errno, getenv(), malloc().
508
509 2000-01-13  Martin Buchholz  <martin@xemacs.org>
510
511         * movemail.c (main): 
512         * make-docfile.c (write_c_args): 
513         Simple compiler warning fixes.
514
515 2000-01-09  Martin Buchholz  <martin@xemacs.org>
516
517         * *.[ch]: Change <../src/config.h> to <config.h>
518         * ellcc.c: Always use <...> to #include files not in `.'
519         * Makefile.in.in: Use safer -I paths.
520         Use $(top_srcdir) instead of $(srcdir)/../src
521         Add warning comment.
522
523 2000-01-08  Martin Buchholz  <martin@xemacs.org>
524
525         * movemail.c: Warning removal.
526
527 2000-01-06  Norbert Koch  <norbert@s.netic.de>
528
529         * movemail.c: Typo fix.
530
531 2000-01-03  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
532
533         * movemail.c: Overhaul of the locking code.
534
535 2000-01-03  Martin Buchholz  <martin@xemacs.org>
536
537         * etags.c (etags_strrchr): Ansify.
538         (etags_strchr): Ansify.
539         (get_compressor_from_suffix): Remove warning, make code cleaner.
540
541 1999-12-31  Martin Buchholz <martin@xemacs.org>
542
543         * XEmacs 21.2.26 is released.
544
545 1999-12-24  Martin Buchholz <martin@xemacs.org>
546
547         * XEmacs 21.2.25 is released.
548
549 1999-12-21  Martin Buchholz  <martin@xemacs.org>
550
551         * fakemail.c (cuserid): ((expr)) ==> (expr)
552
553         * fakemail.c (xmalloc): ANSIfy.
554
555 1999-12-14  Martin Buchholz  <martin@xemacs.org>
556
557         * config.values.sh: Only update config.values.in if changed.
558         No external dependencies except perl.
559         No temporary files.
560
561 1999-12-14  Martin Buchholz <martin@xemacs.org>
562
563         * XEmacs 21.2.24 is released.
564
565 1999-12-13  Martin Buchholz  <martin@xemacs.org>
566
567         * etags.c: Fix warning: `_GNU_SOURCE' redefined.
568
569 1999-12-07  Martin Buchholz <martin@xemacs.org>
570
571         * XEmacs 21.2.23 is released.
572
573 1999-11-29  Andreas Jaeger  <aj@suse.de>
574
575         * Makefile.in.in (INSTALLABLE_SCRIPTS): Removed pstogif.
576         pstogif: Moved to package tm.
577
578 1999-11-29  XEmacs Build Bot <builds@cvs.xemacs.org>
579
580         * XEmacs 21.2.22 is released
581
582 1999-11-28  Martin Buchholz <martin@xemacs.org>
583
584         * XEmacs 21.2.21 is released.
585
586 1999-11-20  Martin Buchholz  <martin@xemacs.org>
587
588         * process-gnu-depends.sh: Deleted.  Obsolete.
589         * process-depends.sh: Deleted.  Obsolete.
590
591 1999-11-20  Jan Vroonhof  <jan@xemacs.org>
592
593         * Makefile.in.in (instvardir): Added. From
594         Jeff Miller <jmiller@smart.net>
595
596 1999-11-19  Martin Buchholz  <martin@xemacs.org>
597
598         * etags.c: Upgrade to pot etags version 13.33.
599         Make `etags --version' print out `XEmacs', not `GNU Emacs'
600
601 1999-11-17  Martin Buchholz  <martin@xemacs.org>
602
603         * etags.c (canonicalize_filename): Typo fix
604
605 1999-11-05  Martin Buchholz  <martin@xemacs.org>
606
607         * etags.c:
608         * ../etc/etags.1:
609         * ../etc/NEWS:
610         Upgrade to etags version 13.32.
611         etags.c has warnings removed, in addition.
612
613 1999-11-15  Martin Buchholz  <martin@xemacs.org>
614
615         * gnuserv.c (ipc_spawn_watchdog): Use pid_t instead of int.
616
617 1999-11-10  XEmacs Build Bot <builds@cvs.xemacs.org>
618
619         * XEmacs 21.2.20 is released
620
621 1999-11-04  Martin Buchholz  <martin@xemacs.org>
622
623         * gnuserv.c (handle_response): Warning suppression
624
625 1999-09-27  Martin Buchholz  <martin@xemacs.org>
626
627         * ellcc.c:
628         ANSIfy.
629         Remove MSDOS cruft.
630         Remove WINDOWS cruft.
631         Remove VMS cruft.
632         (main): The wrong number of bytes were being read during argument
633         processing.
634         Delete ANSI imitations like ellcc_strchr().
635         Call functions with the right number of arguments.
636         Fix a typo.
637         Make functions static.
638         Remove compiler warnings.
639
640 1999-09-22  Martin Buchholz  <martin@xemacs.org>
641
642         * cvtmail.c (main): ANSIfy
643         * digest-doc.c (main): ANSIfy
644         * hexl.c (main): ANSIfy
645
646         * make-path.c: Remove declaration for errno.
647         * mmencode.c (nextcharin): ANSIfy
648         * movemail.c (pop_retr): ANSIfy
649
650 1999-07-30  Gleb Arshinov  <gleb@cs.stanford.edu>
651
652         * pop.c (pop_quit): use CLOSESOCKET() instead of close()
653
654         * run.c (build_cmdline): Fix NT native build unreferenced variable
655         warning
656         (WinMain): Fix release mode build unreferenced variable warning
657
658 1999-07-30  XEmacs Build Bot <builds@cvs.xemacs.org>
659
660         * XEmacs 21.2.19 is released
661
662 1999-07-22  SL Baur  <steve@miho>
663
664         * Makefile.in.in (datadir): Add.
665         From Jeff Miller <jmiller@smart.net>
666
667 1999-07-13  XEmacs Build Bot <builds@cvs.xemacs.org>
668
669         * XEmacs 21.2.18 is released
670
671 1999-06-22  XEmacs Build Bot <builds@cvs.xemacs.org>
672
673         * XEmacs 21.2.17 is released
674
675 1999-06-11  XEmacs Build Bot <builds@cvs.xemacs.org>
676
677         * XEmacs 21.2.16 is released
678
679 1999-06-04  XEmacs Build Bot <builds@cvs.xemacs.org>
680
681         * XEmacs 21.2.15 is released
682
683 1999-06-03  SL Baur  <steve@steve1.m17n.org>
684
685         * Makefile.in.in: Move .PHONY up to force execution of `all'.
686
687 1999-05-14  XEmacs Build Bot <builds@cvs.xemacs.org>
688
689         * XEmacs 21.2.14 is released
690
691 1999-05-14  SL Baur  <steve@gneiss.etl.go.jp>
692
693         * update-elc.sh (ignore_pattern): Correct ignore_dirs/ignore=dirs
694         european keyboard fuckage.
695
696 1999-05-03  Hrvoje Niksic  <hniksic@srce.hr>
697
698         * update-elc.sh (ignore_pattern): Installation.el is dead.
699
700 1999-05-03  Hrvoje Niksic  <hniksic@srce.hr>
701
702         * gnuclient.c: Include <sysfile.h> instead of <../src/sysfile.h>.
703
704         * Makefile.in.in (cppflags): Add -I$(top_srcdir)/src.
705
706 1999-04-29  Andy Piper  <andy@xemacs.org>
707
708         * make-docfile.c: build fixes for mingw32.
709         * movemail.c: ditto.
710         * run.c: ditto.
711         * yow.c: ditto.
712         * profile.c: ditto.
713         (gettimeofday): new function copied from nt.c.
714
715         * fakemail.c (make_file_preface): make buildable under windows.
716
717         * Makefile.in.in: fix some build targets for when we are building
718         on a windows platform.
719
720 1999-03-12  giacomo boffi  <giacomo.boffi@polimi.it>
721
722         * sorted-doc.c: corrected the outdated or plainly wrong
723         texinfo headers. Broken up the mega-@table that crashes (at
724         least RedHat's) TeX with:
725          "! TeX capacity exceeded, sorry [save size=4000]."
726
727 1999-03-12  XEmacs Build Bot <builds@cvs.xemacs.org>
728
729         * XEmacs 21.2.13 is released
730
731 1999-03-10  Martin Buchholz  <martin@xemacs.org>
732
733         * fakemail.c (add_a_stream): Always use full ANSI prototypes.
734
735 1999-03-06  Martin Buchholz  <martin@xemacs.org>
736
737         * fakemail.c (main): Ansify.
738         (xmalloc): Ansify.
739         (xrealloc): Ansify.
740         (get_keyword): use paranoid casts ((int) (unsigned char) c) for
741         islower, toupper, isspace.
742
743 1999-03-05  XEmacs Build Bot <builds@cvs.xemacs.org>
744
745         * XEmacs 21.2.12 is released
746
747 1999-03-01  XEmacs Build Bot <builds@cvs.xemacs.org>
748
749         * XEmacs 21.2.11 is released
750
751 1999-02-17  SL Baur  <steve@xemacs.org>
752
753         * update-elc.sh (ignore_dirs): Ignore lisp/mule subdirectory when
754         running latin-1 XEmacs.  Eliminate 20.4 bundled kludges.
755         * update-custom.sh (ignore_dirs): Ditto.
756
757 1999-02-15  Martin Buchholz  <martin@xemacs.org>
758
759         * update-elc.sh:
760         * update-autoloads.sh:
761         * update-custom.sh:
762         - improved automounter tmp directory support.
763         - support 4 (!) empirically discovered automounter conventions
764
765 1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>
766
767         * XEmacs 21.2.10 is released
768
769 1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>
770
771         * XEmacs 21.2.9 is released
772
773 1999-01-27  Martin Buchholz  <martin@xemacs.org>
774
775         * movemail.c (strerror): Must be NON-static, since it is used by
776         the POP code, which got moved to a separate file.
777
778 1999-01-11  Damon Lipparelli  <lipp@primus.com>
779
780         * Makefile.in.in: use ellcc (not ellc) everywhere
781
782 1999-01-10  J. Kean Johnston  <jkj@sco.com>
783
784         * Makefile.in.in: Include moduledir and sitemoduledir as defined
785         by configure.
786         - Install ellcc if we're supporting shared objects
787         - Rules and dependancies for ellcc
788
789         * ellcc.c: New file. Front end to the compiler for making modules.
790
791         * ellcc.h.in: New file. Contains path definitions used by ellcc.
792
793         * make-docfile.c (main): Add check for -E argument used by ellcc.
794
795         * make-docfile.c: Changed output format when in -E mode.
796
797 1998-12-28  Martin Buchholz <martin@xemacs.org>
798
799         * XEmacs 21.2.8 is released.
800
801 1998-12-24  Martin Buchholz <martin@xemacs.org>
802
803         * XEmacs 21.2.7 is released.
804
805 1998-12-17  Andy Piper  <andy@xemacs.org>
806
807         * pop.c (pop_open): disable use of getpass() which doesn't exist under NT.
808
809         * movemail.c: mess with includes so that it builds under native NT.
810
811         * pop.c: mess with includes so that it builds under native NT.
812         From Fabrice Popineau <popineau@ese-metz.fr>
813
814 1998-12-16  Andy Piper  <andy@xemacs.org>
815
816         * XEmacs 21.2.6 is released
817
818 1998-12-05  XEmacs Build Bot <builds@cvs.xemacs.org>
819
820         * XEmacs 21.2.5 is released
821
822 1998-11-28  SL Baur  <steve@altair.xemacs.org>
823
824         * XEmacs 21.2-beta4 is released.
825
826 1998-10-14  Andy Piper  <andyp@parallax.co.uk>
827
828         * Makefile.in.in (movemail): add getopt.o to objects to link with.
829
830         * movemail.c (main): rewrite to use getopt(). Add options for
831         order reversal, progress output, regexp matching and message
832         deletion.
833         (popmail): add some optional verbose messages. Use pop_search_top
834         for getting messages. Make message deletion optional. Delete all
835         messages at the end rather than on a message my message basis.
836         (pop_search_top): new function. Looks for messages matching regexp.
837         (compile_regex): new function stolen from etags.
838
839 1998-10-15  SL Baur  <steve@altair.xemacs.org>
840
841         * XEmacs 21.2-beta3 is released.
842
843 1998-10-12  SL Baur  <steve@altair.xemacs.org>
844
845         * lib-src/gnudepend.pl: Use /usr/bin/perl.
846         * Makefile.in.in (INSTALLABLE_SCRIPTS): Remove send-pr, install-sid.
847         (GEN_SCRIPTS): Ditto.
848         Delete TM_SCRIPTS.
849
850 1998-10-11  SL Baur  <steve@altair.xemacs.org>
851
852         * tm-au:
853         * tm-file:
854         * tm-html:
855         * tm-image:
856         * tm-mpeg:
857         * tm-plain:
858         * tm-ps:
859         * tmdecode: packaged.
860
861 1998-10-10  SL Baur  <steve@altair.xemacs.org>
862
863         * install-sid:
864         * send-pr:  Packaged
865
866 1998-10-01  Jan Vroonhof  <vroonhof@math.ethz.ch>
867
868         * gnuclient.c (filename_expand): Don't forget to copy the
869         filename under UNIX.
870
871 1998-09-29  SL Baur  <steve@altair.xemacs.org>
872
873         * XEmacs 21.2-beta2 is released.
874
875 1998-09-08  Raymond Toy  <toy@rtp.ericsson.se>
876
877         * gnuclient.c (filename_expand): Added better recognition of
878         absolute pathnames for CYGWIN.  Convert absolute pathnames with
879         drive letters to something xemacs can handle.
880
881 1998-07-19  SL Baur  <steve@altair.xemacs.org>
882
883         * XEmacs 21.2-beta1 is released.
884
885 1998-07-15  SL Baur  <steve@altair.xemacs.org>
886
887         * update-elc.sh (ignore_pattern): Add very-early-lisp.el as
888         something to never bytecompile.
889
890 1998-07-12  SL Baur  <steve@altair.xemacs.org>
891
892         * XEmacs 21.0-pre5 is released.
893
894 1998-07-09  SL Baur  <steve@altair.xemacs.org>
895
896         * XEmacs 21.0-pre4 is released.
897
898 1998-06-16  Jan Vroonhof  <vroonhof@math.ethz.ch>
899
900         * gnuclient.c (main): Use disconnect_from_server to read & echo
901         result.
902
903 1998-06-15  Andy Piper  <andyp@parallax.co.uk>
904
905         * Makefile.in.in: add xemacs icon to the runemacs executable.
906
907 1998-06-12  Jim Radford  <radford@robby.caltech.edu>
908
909         * gnuclient.c (initialize_signals): Don't pass SIGHUP to XEmacs.
910
911 1998-06-04  Andy Piper  <andyp@parallax.co.uk>
912
913         * Makefile.in.in (runemacs): add runemacs as a build target if
914         HAVE_MS_WINDOWS is defined. move cpp stuff up slightly so that
915         build targets can benefit from it.
916
917 1998-05-31  Kirill M. Katsnelson  <kkm@kis.ru>
918
919         * wakeup.c (sleep): Added NT preprocessor quirkfest.
920         (main): Exit when fflush() fails on stdout.
921
922 1998-05-30  Kirill M. Katsnelson  <kkm@kis.ru>
923
924         * getopt.c: Undefine getpid before redefinition.
925
926         * make-docfile.c: Added <io.h> when compiling on NT
927
928         * movemail.c: Ditto.
929         (main): Declare some auto variables only when DISABLE_DIRECT_ACCESS
930         is undefined, so they are actually used, to supress compilation
931         warnings.
932
933 1998-05-16  SL Baur  <steve@altair.xemacs.org>
934
935         * etags.c (C_entries): Avoid short circuiting comparisons on
936         characters that may appear in C++ operator constructs.
937
938         * ootags.c (C_entries): Commentary change.
939
940         * Makefile.in.in (PKG_SCRIPTS): Remove add-little-package.sh.
941
942 1998-05-11  Martin Buchholz  <martin@xemacs.org>
943
944         * Makefile.in.in:
945         - Adjust for luser's CDPATH being set to something weird.
946         - Take into account bash 2.02's tendency to print the cwd when
947           using CDPATH.  Always use `cd ./foo' instead of `cd foo'.
948         - fix the run-temacs target to use $(DUMPENV)
949         - fix the run-puremacs target to use $(DUMPENV)
950         - fix the `depend' target to properly $(RM) the right files
951         - Generate a better TAGS file for XEmacs' lisp code using
952           hand-crafted regexps.
953         - Use standard coding conventions for modules/Makefile.in
954
955 1998-05-07  Andy Piper  <andyp@parallax.co.uk>
956
957         * update-elc.sh: test x && y loses in the presence of set -e, use
958         if instead.
959
960 1998-05-06  SL Baur  <steve@altair.xemacs.org>
961
962         * Makefile.in.in (INSTALLABLES): Add ootags.
963         (ootags): New rule.
964
965         * ootags.c: New file.
966         (C_entries): Annotate changes neeeded for increased OO-Browser
967         context.
968
969 1998-05-05  Jeff Miller <jmiller@smart.net>
970
971         * Makefile.in.in: Fix blessmail target.
972
973 1998-05-05  SL Baur  <steve@altair.xemacs.org>
974
975         * Makefile.in.in (etags_args): Back out -DOO_BROWSER
976
977         * etags.c: Revert to CVS version 1.11 (pre OO-browser additions).
978
979 1998-05-04  SL Baur  <steve@altair.xemacs.org>
980
981         * etags.c (C_entries): Fix order typo.
982         (C_entries): Restore previous test.
983
984 Wed Apr 22 12:59:35 1998  Andy Piper  <andyp@parallax.co.uk>
985
986         * installexe.sh: fix to use -f instead of -e file and fix shift
987         typo.
988
989 1998-04-22  SL Baur  <steve@altair.xemacs.org>
990
991         * etags.c: Unconditionally define OO_BROWSER.
992
993         * update-elc.sh: Tighten up regexp on uname -r output.
994         From Marcus Thiessel <thiessel@tmbbwtx.bbn.hp.com>
995
996 1998-04-19  Jan Vroonhof  <vroonhof@math.ethz.ch>
997
998         * gnuclient.c (main): Read eval from from stdin if just "-batch"
999         is given.
1000         * gnudoit: Support this.
1001         * gnuserv.1: Document this behavior.
1002
1003 1998-04-18  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
1004
1005         * etags.c (C_entries): Add parentheses.
1006
1007         * etags-vmslib.c: Remove.  It's not needed anymore.
1008
1009 Fri Apr 17 12:59:35 1998  Andy Piper  <andyp@parallax.co.uk>
1010
1011         * installexe.sh: New file.
1012
1013 1998-04-17  Olivier Galibert  <galibert@pobox.com>
1014
1015         * etags.c (print_help): Correct typo.
1016
1017 1998-04-16  SL Baur  <steve@altair.xemacs.org>
1018
1019         * Makefile.in.in: Add -DOO_BROWSER to etags arguments.
1020
1021         * etags.c: Synch with InfoDock.
1022
1023         * update-autoloads.sh: Don't attempt to eval `make-special' stuffs
1024         anymore.  They are no longer used.
1025         * update-custom.sh: Always check in lisp/.
1026
1027 1998-03-18  Jan Vroonhof  <vroonhof@math.ethz.ch>
1028
1029         * gnuclient.c (main): Do not copy string unnecessary in (too)
1030         small buffers.
1031
1032 1998-03-02  SL Baur  <steve@altair.xemacs.org>
1033
1034         * update-elc.sh: Change all -q -no-site-file to -vanilla
1035
1036 1998-02-27  SL Baur  <steve@altair.xemacs.org>
1037
1038         * update-elc.sh (ignore_pattern): Add Installation.el, remove old
1039         stuff from 20.4.
1040
1041 Tue Feb 17 12:50:37 1998  Andy Piper  <andyp@parallax.co.uk>
1042
1043         * lib-src/Makefile.in.in: make sure clean removes msw executables
1044
1045 1998-02-24  SL Baur  <steve@altair.xemacs.org>
1046
1047         * gnuserv.h: Enable USE_TMPDIR.
1048
1049 1998-02-23  Glynn Clements  <glynn@sensei.co.uk>
1050
1051         * gnuclient.c (main): initialise variable `tmpdir' from the TMPDIR
1052         environment variable.
1053
1054         * gnuserv.c (various): replace hardcoded references to /tmp with
1055         the value of `tmpdir'.
1056         (main): initialise variable `tmpdir' from the TMPDIR
1057         environment variable.
1058
1059         * gnuserv.h: include (commented-out) definition of USE_TMPDIR.
1060         Add `extern char *tmpdir'.
1061
1062         * gnuslib.c (various): replace hardcoded references to /tmp with
1063         the value of `tmpdir'.
1064
1065 1998-02-15  SL Baur  <steve@altair.xemacs.org>
1066
1067         * getopt.c (_getopt_internal): Add braces for clarity.
1068
1069 1998-01-13  Martin Buchholz  <martin@xemacs.org>
1070
1071         * lib-src/add-little-package.sh:
1072         * lib-src/add-big-package.sh:
1073         Use proper paranoid quoting for sh variables.
1074         -batch implies -q.
1075
1076 Thu Jan 08 09:42:36 1998    <andyp@parallax.co.uk>
1077
1078         * gnuserv.h: only set UNIX_DOMAIN_SOCKETS if HAVE_SYS_UN_H is
1079         set.
1080
1081         * gnuserv.c: tidy up so that it builds when we don't have
1082         UNIX_DOMAIN_SOCKETS.
1083
1084 1998-01-07  SL Baur  <steve@altair.xemacs.org>
1085
1086         * update-elc.sh (ignore_pattern): Replace -vanilla with `-q
1087         -no-site-file'.
1088         * update-autoloads.sh (dirs): Ditto.
1089         * update-custom.sh (dirs): Ditto.
1090
1091 1997-12-18  SL Baur  <steve@altair.xemacs.org>
1092
1093         * update-elc.sh (mule_p): Remove skk's special treatment.
1094
1095 1997-12-09  SL Baur  <steve@altair.xemacs.org>
1096
1097         * update-elc.sh (ignore_pattern): Correct paths of files that
1098         should not be bytecompiled, and remove dead files.
1099
1100 1997-12-02  SL Baur  <steve@altair.xemacs.org>
1101
1102         * update-elc.sh (mule_p): Update for addition of SKK.
1103
1104         * update-autoloads.sh (mule_p): Update ignore_dirs for
1105         lisp/language and lisp/skk.
1106         * update-custom.sh (mule_p): Ditto.
1107
1108 1997-11-29  Jeff Miller <jmiller@smart.net>
1109
1110         * Makefile.in.in: Changed path to blessmail.el for blessmail target
1111           to match new lisp directory layout.
1112
1113 1997-11-27  SL Baur  <steve@altair.xemacs.org>
1114
1115         * update-elc.sh: Obliterate usage of make_special, since nothing
1116         requires it any more.
1117
1118 1997-11-23  SL Baur  <steve@altair.xemacs.org>
1119
1120         * update-elc.sh (BYTECOMP): cleantree.el has been moved.
1121
1122 1997-11-18  Colin Rafferty  <craffert@ml.com>
1123
1124         * update-elc.sh (prune_vc): Made it ignore any directory that
1125         starts with a period.
1126
1127 1997-11-16  SL Baur  <steve@altair.xemacs.org>
1128
1129         * gnuserv.c (main): make return type int.
1130         Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de>
1131
1132         * fakemail.c (main): Ditto.
1133
1134 1997-11-13  SL Baur  <steve@altair.xemacs.org>
1135
1136         * pop.c: Add includes from movemail.c so standard functions get
1137         declared.
1138         (pop_retrieve): Return NULL if falling off the end of the
1139         function.
1140
1141         * movemail.c: Hide declarations of popmail(), mbx_write(),
1142         mbc_delimit_begin(), and mbx_delimit_end() behind MAIL_USE_POP
1143         guard.
1144         (pop_retr): Change 4th parameter to void *.
1145
1146 1997-11-02  SL Baur  <steve@altair.xemacs.org>
1147
1148         * update-custom.sh (dirs): Remove packaged directories.
1149
1150         * update-elc.sh (ignore_pattern): Hyperbole, oobr and ilisp are
1151         now packaged.
1152
1153         * update-autoloads.sh (mule_p): Hyperbole and oobr are now
1154         packaged.
1155
1156 1997-10-30  SL Baur  <steve@altair.xemacs.org>
1157
1158         * update-autoloads.sh (mule_p): EFS has been packaged.
1159         * update-elc.sh (make_special_commands): Ditto.
1160
1161         * update-elc.sh: VM has been packaged.
1162
1163         * update-autoloads.sh: Add directory language
1164
1165 1997-10-23  SL Baur  <steve@altair.xemacs.org>
1166
1167         * update-elc.sh (BYTECOMP): Specify -vanilla
1168         * update-autoloads.sh (dirs): Ditto.
1169         * update-custom.sh (dirs): Ditto.
1170
1171 1997-10-10  Martin Buchholz  <mrb@eng.sun.com>
1172
1173         * config.values.in:  Run config.values.sh
1174
1175 1997-10-09  SL Baur  <steve@altair.xemacs.org>
1176
1177         * Makefile.in.in (PKG_SCRIPTS): Add new package manipulation
1178         scripts.
1179
1180         * add-little-package.sh: New file.  Support script to install
1181         single file packages.
1182
1183         * Makefile.in.in (distclean): Reverse change -- do not remove
1184         config.values.in.
1185         Suggested by: Martin Buchholz <mrb@Eng.Sun.COM>
1186
1187 1997-10-06  SL Baur  <steve@altair.xemacs.org>
1188
1189         * Makefile.in.in (distclean): Remove config.values.in.
1190         From Martin Buchholz <mrb@Eng.Sun.COM>
1191
1192 1997-10-04  SL Baur  <steve@altair.xemacs.org>
1193
1194         * update-autoloads.sh (mule_p): W3 is a package now.
1195
1196 1997-09-30  SL Baur  <steve@altair.xemacs.org>
1197
1198         * update-elc.sh (ignore_pattern): Don't attempt bytecompiling
1199         lisp/leim/quail/tibetan.el and lisp/language/tibet-util.el.
1200
1201 1997-09-29  SL Baur  <steve@altair.xemacs.org>
1202
1203         * update-elc.sh (mule_p): Ignore mu/latex-math-symbol.el if we're
1204         not building with Mule.
1205
1206 1997-09-27  Hrvoje Niksic  <hniksic@srce.hr>
1207
1208         * update-custom.sh: New file.
1209
1210         * update-autoloads.sh: Minor fixes.
1211
1212 1997-08-11  Jeff Miller <jmiller@smart.net>
1213         * Makefile.in.in:  Added a test for system-type equal to linux to
1214         lisp/paths.el.  Mail spool dir should be /var/spool/mail.
1215
1216         * cleaned up lib-src/Makefile.in.in regarding targets blessmail and
1217         maybe-blessmail. Added target do-blessmail.  Makefile.in.in was also
1218         missing a variable called "configuration. This messed up archilibdir.
1219
1220         * Added highlighting to text suggesting to do "make gzip-el" in top
1221         level Makefile.in.  Added code to do make maybe-blessmail after a
1222         make install is done.
1223
1224 1997-08-07  Jan Vroonhof  <vroonhof@math.ethz.ch>
1225
1226         * gnuclient.c (main): Made help string correspond to options.
1227
1228 1997-08-01  SL Baur  <steve@altair.xemacs.org>
1229
1230         * Makefile.in.in (distclean): Remove config.values here only.
1231
1232 1997-07-27  SL Baur  <steve@altair.xemacs.org>
1233
1234         * Makefile.in.in (UTILITIES): Add config.values so it can be
1235         cleared away by `make distclean'.
1236
1237 1997-07-21  SL Baur  <steve@altair.xemacs.org>
1238
1239         * update-elc.sh (make_special_commands): Remove processing for
1240         Gnus and AUCTeX.
1241
1242 1997-07-19  SL Baur  <steve@altair.xemacs.org>
1243
1244         * update-elc.sh (mule_p): Do not attempt to bytecompile
1245         char-table.el and chartblxmas.el.
1246
1247 1997-07-08  Steven L Baur  <steve@altair.xemacs.org>
1248
1249         * update-elc.sh (cc-mode): Don't give cc-mode special treatment.
1250
1251         * update-autoloads.sh (cc-mode): Don't give cc-mode special
1252         treatment.
1253
1254         * rcs2log: Synch with Emacs/Mule zeta.
1255
1256 1997-07-03  Steven L Baur  <steve@altair.xemacs.org>
1257
1258         * update-elc.sh (make_special_commands): Fix building of ilisp so
1259         custom-load.elc gets built.
1260
1261 1997-06-27  Steven L Baur  <steve@altair.xemacs.org>
1262
1263         * update-autoloads.sh:  Major rework.  Avoid looking at MULE
1264         directories if not running XEmacs/Mule.
1265         - Look into all Mule directories for building autoloads.
1266
1267         * update-elc.sh (make_special_commands): Fix handling of
1268         bytecompilation of AUCTeX to avoid looking at tex-jp.el if not
1269         running MULE.
1270
1271 1997-06-24  Steven L Baur  <steve@altair.xemacs.org>
1272
1273         * gnuattach: Needed executable bit set.
1274         Suggested by Kyle Jones <kyle_jones@wonderworks.com>
1275
1276         * update-elc.sh (ignore_pattern): lisp/language/ethiopic byte
1277         compiles now.
1278
1279 1997-06-24  MORIOKA Tomohiko  <morioka@jaist.ac.jp>
1280
1281         * update-autoloads.sh: Search lisp/mule/.
1282
1283 1997-06-20  Steven L Baur  <steve@altair.xemacs.org>
1284
1285         * gnuattach: Readd as warning script.
1286
1287         * Makefile.in.in (INSTALLABLE_SCRIPTS): Readd Gnuattach.
1288         From Hrvoje Niksic <hniksic@srce.hr>
1289
1290 1997-06-13  Steven L Baur  <steve@altair.xemacs.org>
1291
1292         * update-elc.sh (mule_p): Ignore lisp/language when building
1293         non-Mule.
1294         (ignore_pattern): Ignore Languages we don't support yet.
1295
1296 1997-06-02  Steven L Baur  <steve@altair.xemacs.org>
1297
1298         * update-elc.sh (ignore_dirs): Handle ported Quail (LEIM).
1299
1300 Tue May 20 23:22:00 1997  Steven L Baur  <steve@altair.xemacs.org>
1301
1302         * update-autoloads.sh (dirs): Remove obsolete directory lisp/vms
1303         from exclusion list (it doesn't exist any more).  Remove
1304         lisp/eterm from exclusion list of directories searched for
1305         autoloads.
1306
1307 Thu May  1 15:26:20 1997  Steven L Baur  <steve@altair.xemacs.org>
1308
1309         * update-elc.sh (mule_p): Test for mule bombs with change in format
1310         of new output of featurep.
1311
1312 Fri Apr 25 09:12:04 1997  Steven L Baur  <steve@altair.xemacs.org>
1313
1314         * pstogif: Use Martin Buchholz magic to automagically find perl
1315         interpreter.
1316
1317 Tue Apr  8 03:08:22 1997  Steven L Baur  <steve@altair.xemacs.org>
1318
1319         * Makefile.in.in: C Comment out Make comments.  No snide comments
1320         from me, no sir.
1321
1322 Tue Apr  1 12:26:53 1997  Steven L Baur  <steve@altair.xemacs.org>
1323
1324         * Makefile.in.in: Added stuff for updated movemail.c.
1325
1326 Sat Mar 29 16:57:01 1997  Steven L Baur  <steve@altair.xemacs.org>
1327
1328         * send-pr (GNATS_ADDR): Use xemacs.org as submission address.
1329         (DATADIR): Allow for DATADIR to be passed in as an environment
1330         variable.
1331
1332 Sun Mar 23 15:57:19 1997  Steven L Baur  <steve@altair.xemacs.org>
1333
1334         * update-elc.sh (make_special_commands): Use target of x20 for efs.
1335
1336 Wed Mar 19 10:38:04 1997  Steven L Baur  <steve@altair.xemacs.org>
1337
1338         * Makefile.in.in (SCRIPTS): Link gzip-el.sh in --srcdir
1339         configuration.
1340
1341 Tue Mar 18 17:49:14 1997  Steven L Baur  <steve@altair.xemacs.org>
1342
1343         * update-elc.sh (EMACS): Removed $XEMACS backdoor.  We will make
1344         the .elcs *only* with the freshly built XEmacs.
1345
1346 Mon Mar 17 10:12:03 1997  Steven L Baur  <steve@altair.xemacs.org>
1347
1348         * Makefile.in.in (INSTALLABLE_SCRIPTS): Add install-sid and
1349         send-pr (from GNATS).
1350
1351         * update-elc.sh (prune_vc): Use full path to cleantree.el.
1352         (NUMTOCOMPILE): Remove useless rule to recompile out-of-date .elcs.
1353
1354 Sun Mar 16 21:13:29 1997  Steven L Baur  <steve@altair.xemacs.org>
1355
1356         * install-sid: New file (GNATS integration).
1357
1358         * send-pr: New file (GNATS integration).
1359
1360 Fri Mar 14 17:59:57 1997  Steven L Baur  <steve@altair.xemacs.org>
1361
1362         * update-elc.sh (ignore_dirs): Build VM with `make autoload'.
1363
1364 Wed Mar  5 18:07:57 1997  Steven L Baur  <steve@altair.xemacs.org>
1365
1366         * gzip-el.sh: New file.  Courtesy of Jeff Miller and Hrvoje Niksic.
1367
1368         * update-elc.sh (els): Remove out of date .elcs before building.
1369
1370 Tue Mar  4 18:45:10 1997  Martin Buchholz  <mrb@eng.sun.com>
1371
1372         * update-elc.sh (els): No more special treatment for vm.elc.
1373
1374 Wed Feb 26 18:17:59 1997  Steven L Baur  <steve@altair.xemacs.org>
1375
1376         * make-docfile.c (next_extra_elc): New function.
1377         (main): Use it.  Implementation of `-i' parameter to pass a list
1378         of site-loaded lisp files.
1379
1380 Wed Feb 19 18:24:49 1997  Steven L Baur  <steve@altair.xemacs.org>
1381
1382         * update-elc.sh: Added lisp/auctex.
1383
1384 Thu Feb 13 11:32:47 1997  Steven L Baur  <steve@altair.xemacs.org>
1385
1386         * Makefile.in.in: Install pstogif script.
1387
1388 Sun Dec 29 17:16:45 1996  Martin Buchholz  <mrb@eng.sun.com>
1389
1390         * update-elc.sh (make_special_commands): Make ilisp be a little
1391         smarter about recompilation.
1392
1393 Wed Dec 18 20:22:55 1996  Martin Buchholz  <mrb@eng.sun.com>
1394
1395         * mmencode.c: Don't declare index().
1396
1397         * Makefile.in.in: Documentation changes.
1398
1399         * update-elc.sh: Portability Fix.
1400
1401 Thu Dec  5 15:41:53 1996  Martin Buchholz  <mrb@Eng.Sun.COM>
1402
1403         * update-elc.sh: Corrections to protect against too smart /bin/sh'es.
1404