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