Mercurial > hg > xemacs-beta
annotate lib-src/ChangeLog @ 5050:6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
-------------------- ChangeLog entries follow: --------------------
ChangeLog addition:
2010-02-20 Ben Wing <ben@xemacs.org>
* configure.ac (XE_COMPLEX_ARG):
Correct doc of --quick-build: It also doesn't check for Lisp shadows.
src/ChangeLog addition:
2010-02-20 Ben Wing <ben@xemacs.org>
* EmacsFrame.c:
* EmacsFrame.c (EmacsFrameRecomputeCellSize):
* alloca.c (i00afunc):
* buffer.c:
* buffer.c (MARKED_SLOT):
* buffer.c (complex_vars_of_buffer):
* cm.c:
* cm.c (cmcheckmagic):
* console.c:
* console.c (MARKED_SLOT):
* device-x.c:
* device-x.c (x_get_visual_depth):
* emacs.c (sort_args):
* eval.c (throw_or_bomb_out):
* event-stream.c:
* event-stream.c (Fadd_timeout):
* event-stream.c (Fadd_async_timeout):
* event-stream.c (Frecent_keys):
* events.c:
* events.c (Fdeallocate_event):
* events.c (event_pixel_translation):
* extents.c:
* extents.c (process_extents_for_insertion_mapper):
* fns.c (Fbase64_encode_region):
* fns.c (Fbase64_encode_string):
* fns.c (Fbase64_decode_region):
* fns.c (Fbase64_decode_string):
* font-lock.c:
* font-lock.c (find_context):
* frame-x.c:
* frame-x.c (x_wm_mark_shell_size_user_specified):
* frame-x.c (x_wm_mark_shell_position_user_specified):
* frame-x.c (x_wm_set_shell_iconic_p):
* frame-x.c (x_wm_set_cell_size):
* frame-x.c (x_wm_set_variable_size):
* frame-x.c (x_wm_store_class_hints):
* frame-x.c (x_wm_maybe_store_wm_command):
* frame-x.c (x_initialize_frame_size):
* frame.c (delete_frame_internal):
* frame.c (change_frame_size_1):
* free-hook.c (check_free):
* free-hook.c (note_block_input):
* free-hook.c (log_gcpro):
* gccache-gtk.c (gc_cache_lookup):
* gccache-x.c:
* gccache-x.c (gc_cache_lookup):
* glyphs-gtk.c:
* glyphs-gtk.c (init_image_instance_from_gdk_pixmap):
* glyphs-x.c:
* glyphs-x.c (extract_xpm_color_names):
* insdel.c:
* insdel.c (move_gap):
* keymap.c:
* keymap.c (keymap_lookup_directly):
* keymap.c (keymap_delete_inverse_internal):
* keymap.c (accessible_keymaps_mapper_1):
* keymap.c (where_is_recursive_mapper):
* lisp.h:
* lstream.c (make_lisp_buffer_stream_1):
* macros.c:
* macros.c (pop_kbd_macro_event):
* mc-alloc.c (remove_page_from_used_list):
* menubar-x.c:
* menubar-x.c (set_frame_menubar):
* ralloc.c:
* ralloc.c (obtain):
* ralloc.c (relinquish):
* ralloc.c (relocate_blocs):
* ralloc.c (resize_bloc):
* ralloc.c (r_alloc_free):
* ralloc.c (r_re_alloc):
* ralloc.c (r_alloc_thaw):
* ralloc.c (init_ralloc):
* ralloc.c (Free_Addr_Block):
* scrollbar-x.c:
* scrollbar-x.c (x_update_scrollbar_instance_status):
* sunplay.c (init_device):
* unexnt.c:
* unexnt.c (read_in_bss):
* unexnt.c (map_in_heap):
* window.c:
* window.c (real_window):
* window.c (window_display_lines):
* window.c (window_display_buffer):
* window.c (set_window_display_buffer):
* window.c (unshow_buffer):
* window.c (Fget_lru_window):
if (...) ABORT(); ---> assert();
More specifically:
if (x == y) ABORT (); --> assert (x != y);
if (x != y) ABORT (); --> assert (x == y);
if (x > y) ABORT (); --> assert (x <= y);
etc.
if (!x) ABORT (); --> assert (x);
if (x) ABORT (); --> assert (!x);
DeMorgan's Law's applied and manually simplified:
if (x && !y) ABORT (); --> assert (!x || y);
if (!x || y >= z) ABORT (); --> assert (x && y < z);
Checked to make sure that assert() of an expression with side
effects ensures that the side effects get executed even when
asserts are disabled, and add a comment about this being a
requirement of any "disabled assert" expression.
* depend:
* make-src-depend:
* make-src-depend (PrintDeps):
Fix broken code in make-src-depend so it does what it was always
supposed to do, which was separate out config.h and lisp.h and
all the files they include into separate variables in the
depend part of Makefile so that quick-build can turn off the
lisp.h/config.h/text.h/etc. dependencies of the source files, to
speed up recompilation.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sat, 20 Feb 2010 05:05:54 -0600 |
parents | 422b4b4fb2a6 |
children | d555581e3cba 06dd936cde16 |
rev | line source |
---|---|
5030 | 1 2010-02-11 Vin Shelton <acs@xemacs.org> |
2 | |
3 * winclient.c: Bump connection retries to 20 because some people | |
4 have long startup files. | |
5 (openConversation): If CreateProcess cannot find | |
6 xemacs.exe, try again with the name of the version-specific | |
7 executable. This is useful because the cygwin version of XEmacs | |
8 doesn't install an xemacs.exe executable. | |
9 (parseCommandLine): Fix tracker issue 675 - add current directory | |
10 to filenames under cygwin. | |
11 | |
4950
c50b0b3c7b8d
Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
12 2010-01-26 Ben Wing <ben@xemacs.org> |
c50b0b3c7b8d
Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
13 |
c50b0b3c7b8d
Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
14 * make-msgfile.lex: Vague hacking on this file, insert a comment |
c50b0b3c7b8d
Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
15 about what should be done if we ever want this to work. |
c50b0b3c7b8d
Random changes to make-msgfile.lex
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
16 |
4932 | 17 2010-01-24 Ben Wing <ben@xemacs.org> |
18 | |
19 * fakemail.c (args_size): | |
20 * fakemail.c (parse_header): | |
21 * ootags.c (C_entries): | |
22 Fix warnings about possible use of uninitialized vars. | |
23 | |
4911 | 24 2010-02-01 Vin Shelton <acs@xemacs.org> |
25 | |
26 * make-mswin-unicode.pl: Add description of override. | |
27 | |
4903
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
28 2010-01-30 Ben Wing <ben@xemacs.org> |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
29 |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
30 * make-mswin-unicode.pl: |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
31 Make it possible to specify an overridden prototype in cases where |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
32 either Cygwin or Visual Studio has errors in their headers that |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
33 can be corrected by falling back to a less qualified type (typically |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
34 without const). |
70089046adef
fix compile problems in intl-encap* under VS6
Ben Wing <ben@xemacs.org>
parents:
4894
diff
changeset
|
35 |
4894
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
36 2010-01-28 Jerry James <james@xemacs.org> |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
37 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
38 * Makefile.in.in: Remove make-msgfile and make-po rules. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
39 * make-msgfile.c: Removed, obsolete code. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
40 * make-po.c: Removed, obsolete code. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4875
diff
changeset
|
41 |
4875
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
42 2010-01-15 Ben Wing <ben@xemacs.org> |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
43 |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
44 * make-mswin-unicode.pl: |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
45 Process the command `review'. Cause an error to happen if we try to |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
46 use the command, indicating that the command needs review to determine |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
47 how to handle it. |
49de55c09f18
add "review" lines in intl-encap-win32.c for all unseen functions in processed headers
Ben Wing <ben@xemacs.org>
parents:
4874
diff
changeset
|
48 |
4874
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
49 2010-01-15 Ben Wing <ben@xemacs.org> |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
50 |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
51 * make-mswin-unicode.pl: |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
52 Various fixes to get this to work when using the Cygwin header files |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
53 in /usr/include/w32api instead of the VC++ ones: |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
54 -- Use /usr/include/w32api as default; don't assume that a passed-in |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
55 directory always ends in .../include. |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
56 -- Add `const' to list of known type modifiers. |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
57 -- If function already seen, warn but don't generate twice. |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
58 -- Eliminate `extern' from return type modifiers. |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
59 -- Cosmetic: When eliminating APIENTRY, also eliminate following |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
60 whitespace. |
4c3f5e1ecbeb
ChangeLog for previous patch: regenerate intl-auto-encap-win32.c
Ben Wing <ben@xemacs.org>
parents:
4850
diff
changeset
|
61 |
4850
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4785
diff
changeset
|
62 2010-01-13 Ben Wing <ben@xemacs.org> |
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4785
diff
changeset
|
63 |
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4785
diff
changeset
|
64 * fix-perms.sh: New file. |
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4785
diff
changeset
|
65 |
4785
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
66 2009-12-21 Jerry James <james@xemacs.org> |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
67 |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
68 * Makefile.in.in: Remove rules for building yow. |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
69 * yow.c: Removed. |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
70 |
4782
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
71 2009-12-18 Jerry James <james@xemacs.org> |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
72 |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
73 * Makefile.in.in: Don't install rcs-checkin. |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
74 * rcs-checkin: Remove obsolete file. |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
75 |
4781
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4774
diff
changeset
|
76 2009-12-18 Jerry James <james@xemacs.org> |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4774
diff
changeset
|
77 |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4774
diff
changeset
|
78 * installexe.sh: Add copyright and GPL v2 or later header with |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4774
diff
changeset
|
79 permission of Andy Piper. |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4774
diff
changeset
|
80 |
4774
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
81 2009-12-15 Jerry James <james@xemacs.org> |
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
82 |
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
83 * ad2c: Add GPL v2 or later notice with permission of George Ferguson. |
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
84 See the xemacs-beta thread beginning with message |
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
85 <870180fe0912090940mac19378ydab5b5a04bf06cf8@mail.gmail.com>. |
26a007fa2f4c
Add GPL v2 or later notice to lib-src/ad2c with George Ferguson's permission.
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
86 |
4773
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
87 2009-12-15 Jerry James <james@xemacs.org> |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
88 |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
89 * Makefile.in.in: Remove build dependency and rule for wakeup. Thanks |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
90 to Mats Lidell for the patch. |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
91 |
4771
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
92 2009-12-10 Jerry James <james@xemacs.org> |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
93 |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
94 * gnudepend.pl: Remove obsolete file. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
95 * leditcfns.c: Ditto. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
96 * wakeup.c: Ditto. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4768
diff
changeset
|
97 |
4768
0f5bee973a7b
Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
98 2009-12-08 Sjoerd Mullender <sjoerd@acm.org> |
0f5bee973a7b
Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
99 |
0f5bee973a7b
Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
100 * etags.c (absolute_filename): Use memmove instead of strcpy to move |
0f5bee973a7b
Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
101 characters within a string. |
0f5bee973a7b
Etags: use memmove instead of strcpy to move characters within a string. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
102 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
103 2009-11-10 Jerry James <james@xemacs.org> |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
104 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
105 * fakemail.c (MAIL_PROGRAM_NAME): No s&m files define this now, so |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
106 make it unconditional. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
107 (main): Make mail_program_name const, since it is never read, and drop |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
108 a bogus cast as a result. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
109 * gnuclient.c (main): Remove reference to hp9000s300. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
110 * gnuserv.h: BSD4_1 is not defined on any supported system. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4722
diff
changeset
|
111 |
4722
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
112 2009-10-26 Jerry James <james@xemacs.org> |
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
113 |
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
114 * insert-data-in-exec.c: Add BSD header, with permission of |
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
115 Olivier Galibert. See xemacs-beta message with ID |
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
116 <20091013224104.GA2573@dspnet.fr.eu.org>. |
dfc9fe46c294
Add BSD header to lib-src/insert-data-in-exec.c, with permission of Olivier
Jerry James <james@xemacs.org>
parents:
4684
diff
changeset
|
117 |
4684
15c42a3f4065
Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents:
4665
diff
changeset
|
118 2009-08-15 It's me FKtPp ;) <m_pupil@yahoo.com.cn> |
15c42a3f4065
Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents:
4665
diff
changeset
|
119 |
15c42a3f4065
Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents:
4665
diff
changeset
|
120 * gnuclient.c (main): Do not set start point position if user |
15c42a3f4065
Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents:
4665
diff
changeset
|
121 didn't requested to do so |
15c42a3f4065
Do not move cursor position in gnuclient started buffer if user did
It's me FKtPp \;) <m_pupil@yahoo.com.cn>
parents:
4665
diff
changeset
|
122 |
4665
f3a65dff1912
Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
123 2009-07-28 Stephen Turnbull <stephen@xemacs.org> |
f3a65dff1912
Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
124 |
f3a65dff1912
Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
125 * make-docfile.c (write_c_args): Parse UNUSED and USED_IF right. |
f3a65dff1912
Fix UNUSED and USED_IF parsing in make-docfile.c.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
126 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4539
diff
changeset
|
127 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4539
diff
changeset
|
128 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4539
diff
changeset
|
129 * XEmacs 21.5.29 "garbanzo" is released. |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4539
diff
changeset
|
130 |
4539
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
131 2008-12-27 Aidan Kehoe <kehoea@parhasard.net> |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
132 |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
133 * make-docfile.c (main): Allow more than one -d argument, followed |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
134 by a directory to change to. |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
135 (put_filename): Don't strip directory information; with previous |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
136 change, allows retrieval of Lisp function and variable origin |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
137 files from #'built-in-symbol-file relative to lisp-directory. |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
138 (scan_lisp_file): Don't add an extraneous newline after the file |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
139 name, put_filename has added the newline already. |
061e030e3270
Fix some bugs in load-history construction, built-in symbol file names.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4467
diff
changeset
|
140 |
4467
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4464
diff
changeset
|
141 2008-05-21 Aidan Kehoe <kehoea@parhasard.net> |
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4464
diff
changeset
|
142 |
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4464
diff
changeset
|
143 * make-mswin-unicode.pl: |
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4464
diff
changeset
|
144 Check %WindowsSdkDir%, %MSSddk% for the Windows header files too. |
23ef20edf6ba
Check %WindowsSdkDir%, %MSSddk% for the Windows header files too.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4464
diff
changeset
|
145 |
4464
61aff09a7589
Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents:
4456
diff
changeset
|
146 2008-05-14 Vin Shelton <acs@xemacs.org> |
61aff09a7589
Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents:
4456
diff
changeset
|
147 |
61aff09a7589
Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents:
4456
diff
changeset
|
148 * winclient.c: Create CONNECT_RETRIES and increase retry count |
61aff09a7589
Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents:
4456
diff
changeset
|
149 from 5 to 10. |
61aff09a7589
Increase DDE connection retries because waiting for XEmacs to start
Vin Shelton <acs@xemacs.org>
parents:
4456
diff
changeset
|
150 |
4456
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
151 2008-05-13 Aidan Kehoe <kehoea@parhasard.net> |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
152 |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
153 * make-docfile.c (scan_file): |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
154 Pass READ_BINARY to scan_lisp_file, scan_c_file; avoids an |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
155 assertion failure with Visual C++ 2005 Express Edition, and is |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
156 logically more coherent, given that our Lisp and C files are saved |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
157 with Unix line endings. |
c785f98c6737
Pass READ_BINARY to scan_lisp_file, scan_c_file in make-docfile.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4147
diff
changeset
|
158 |
4147 | 159 2007-08-27 Mike Sperber <mike@xemacs.org> |
160 | |
161 * config.values.in (datarootdir): Add. | |
162 | |
4118 | 163 2007-08-12 Mike Sperber <mike@xemacs.org> |
164 | |
165 * Makefile.in.in (datarootdir): Add. | |
166 | |
3993 | 167 2007-05-29 Stephen J. Turnbull <stephen@xemacs.org> |
168 | |
4032 | 169 * etags.c: Sync to pot_etags_version 17.33. |
3993 | 170 Reverts part of 2007-03-24 patch: no longer displays |
171 pot_etags_version in usage message. | |
172 | |
3983 | 173 2007-05-22 Jerry James <james@xemacs.org> |
174 | |
175 * ellcc.c (do_init_mode): Plug memory leak. | |
176 | |
3975 | 177 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
178 | |
179 * XEmacs 21.5.28 "fuki" is released. | |
180 | |
3877 | 181 2007-03-24 Stephen J. Turnbull <stephen@xemacs.org> |
182 | |
183 * etags.c (print_version): More precise version info. Suggested | |
184 by Steve Youngs. | |
185 (print_help): Use #ifdef; PRINT_UNDOCUMENTED_OPTIONS_HELP may be | |
186 undefined. | |
187 | |
3876 | 188 2007-03-24 Stephen J. Turnbull <stephen@xemacs.org> |
189 | |
190 * etags.c: Sync to pot_etags_version 17.26. | |
191 | |
3728 | 192 2006-11-24 Benson Margulies <benson@dchbk.us> |
193 | |
194 * make-mswin-unicode.pl: allow for lower case header file names in | |
195 the current platform SDK. | |
196 | |
3651 | 197 2006-08-11 Jerry James <james@xemacs.org> |
198 | |
199 * pop.h: Sync with Emacs. | |
200 * pop.c: Ditto. | |
201 | |
3556 | 202 2006-08-08 Jerry James <james@xemacs.org> |
203 | |
204 * gnuslib.c (disconnect_from_server): shutdown() has been fine on | |
205 Linux for a long time now; use it. Also, don't use length to | |
206 access the buffer unless it is positive, not just nonzero. | |
207 * gnuclient.c (filename_expand): Initialize the last array element | |
208 to get a valid C string in case of overflow. Use strncat to avoid | |
209 buffer overruns. | |
210 * gnuclient.c (main): Use strncpy to avoid buffer overruns. | |
211 | |
3524 | 212 2006-07-21 Stephen J. Turnbull <stephen@xemacs.org> |
213 | |
3529 | 214 * etags.c: Xemacs -> XEmacs. |
3524 | 215 |
3517 | 216 2006-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
217 | |
218 * etags.c: Sync to pot_etags_version 17.19. | |
219 | |
3503 | 220 2006-07-07 Jerry James <james@xemacs.org> |
221 | |
222 * config.values.in: Regenerate. | |
223 | |
3402 | 224 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
225 | |
226 * XEmacs 21.5.27 "fiddleheads" is released. | |
227 | |
3368 | 228 2006-04-29 Aidan Kehoe <kehoea@parhasard.net> |
229 | |
230 * make-docfile.c: | |
231 * make-docfile.c (put_filename): | |
232 * make-docfile.c (scan_c_file): | |
233 * make-docfile.c (scan_lisp_file): | |
234 Record file name information for built-in symbols. Based on the | |
235 FSF's implementation of same. | |
236 | |
3323 | 237 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
238 | |
239 * XEmacs 21.5.26 "endive" is released. | |
240 | |
3259 | 241 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
242 | |
243 * XEmacs 21.5.25 "eggplant" is released. | |
244 | |
3150 | 245 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
246 | |
247 * XEmacs 21.5.24 "dandelion" is released. | |
248 | |
3090 | 249 2005-11-22 Malcolm Purvis <malcolmp@xemacs.org> |
250 | |
251 * etags.c: Update to author version 17.15. | |
252 | |
3083 | 253 2005-11-22 Ben Wing <ben@xemacs.org> |
254 | |
255 * Makefile.in.in: | |
256 Ignore errors from rm during clean. | |
257 | |
3062 | 258 2005-11-13 Ben Wing <ben@xemacs.org> |
259 | |
260 * Makefile.in.in: | |
261 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
262 Do some refactoring for cleanliness. | |
263 | |
3031 | 264 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
265 | |
266 * XEmacs 21.5.23 "daikon" is released. | |
267 | |
2993 | 268 2005-10-13 Ben Wing <ben@xemacs.org> |
269 | |
270 * i.c: | |
271 * mmencode.c: | |
272 Always include config.h first. | |
273 * winclient.c: | |
274 Move include of windows.h after config.h. | |
275 | |
2940 | 276 2005-09-18 Mike Alexander <mta@arbortext.com> |
277 | |
278 * installexe.sh: Don't add an exe extention to a file that already | |
279 has one. Patch from Rick Rankin. | |
280 | |
2931 | 281 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
282 | |
283 * XEmacs 21.5.22 "cucumber" is released. | |
284 | |
2835 | 285 2005-06-28 Marcus Crestani <crestani@xemacs.org> |
286 | |
287 * .cvsignore: Add insert-data-in-exec. | |
288 | |
2791 | 289 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
290 | |
291 * XEmacs 21.5.21 "corn" is released. | |
292 | |
2720 | 293 2005-04-01 Marcus Crestani <crestani@xemacs.org> |
294 | |
295 The new allocator. | |
296 | |
297 DUMP_IN_EXEC: | |
298 | |
299 * Makefile.in.in: Only compile insert-data-in-exec if | |
300 DUMP_IN_EXEC is defined. | |
301 | |
2687 | 302 2005-03-25 Andrey Slusar <anrays@gmail.com> |
303 | |
304 * fakemail.c (CURRENT_USER): Define it if FreeBSD version is >= | |
305 400000. Also, when FreeBSD version is >= 400000 geteuid returns | |
306 uid_t instead of unsigned short. | |
307 | |
2653 | 308 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
309 | |
310 * XEmacs 21.5.20 "cilantro" is released. | |
311 | |
2651 | 312 2005-03-07 Malcolm Purvis <malcolmp@xemacs.org> |
313 | |
314 * config.values.in: | |
315 * config.values.sh (FileContents): Different regex for autoconf | |
316 2.59. | |
317 | |
2603 | 318 2004-12-19 Stephen J. Turnbull <stephen@xemacs.org> |
319 | |
320 * make-docfile.c (write_c_args): Handle UNUSED, USED_IF macros. | |
321 (scan_c_file): Handle nested parens in DEFUN argument lists. | |
322 | |
2594 | 323 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
324 | |
325 * XEmacs 21.5.19 "chives" is released. | |
326 | |
2584 | 327 2005-01-29 Vin Shelton <acs@xemacs.org> |
328 | |
329 * movemail.c (popmail): Pass error string as format parameter | |
330 instead of as part of format string. Security fixes for | |
331 CAN-2005-0100. | |
332 | |
2554 | 333 2005-02-03 Jerry James <james@xemacs.org> |
334 | |
335 * etags.c: Update to author version 17.11. | |
336 | |
2509 | 337 2005-01-26 Ben Wing <ben@xemacs.org> |
338 | |
339 * fakemail.c (main): Add args to fix warning. | |
340 | |
2502 | 341 2005-01-25 Ben Wing <ben@xemacs.org> |
342 | |
343 * insert-data-in-exec.c (main): | |
344 Need to open everything as binary. | |
345 | |
2426 | 346 2004-12-06 Ben Wing <ben@xemacs.org> |
347 | |
348 * i.c (pump): | |
349 Undo change of 2003-03-06. It causes truncation of output at the end. | |
350 | |
2424 | 351 2004-12-06 Ben Wing <ben@xemacs.org> |
352 | |
353 * gnuclient.c: | |
354 * gnuclient.c (get_current_working_directory): | |
355 * gnuclient.c (filename_expand): | |
356 * gnuclient.c (main): | |
357 Use QXE_PATH_MAX. | |
358 | |
2421 | 359 2004-12-05 Ben Wing <ben@xemacs.org> |
360 | |
361 * make-docfile.c (main): | |
362 * make-docfile.c (scan_c_file): | |
363 Use QXE_PATH_MAX. | |
364 | |
2377 | 365 2004-11-08 Stephen J. Turnbull <stephen@xemacs.org> |
366 | |
367 * ellcc.h.in: Use XE_CFLAGS, not CFLAGS. | |
368 | |
2367 | 369 2004-10-14 Ben Wing <ben@xemacs.org> |
370 | |
371 * digest-doc.c (main): | |
372 * make-dump-id.c (main): | |
373 * profile.c: | |
374 * profile.c (main): | |
375 * sorted-doc.c (main): | |
376 Add proper decls for main(). | |
377 | |
378 * make-msgfile.c: | |
379 Document that this is old junk. | |
380 Move proposal to text.c. | |
381 | |
382 * make-msgfile.lex: | |
383 Move proposal to text.c. | |
384 | |
385 * make-mswin-unicode.pl: | |
386 Convert error-generating code so that the entire message will | |
387 be seen as a single unrecognized token. | |
388 | |
389 | |
2346 | 390 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
391 | |
392 * XEmacs 21.5.18 "chestnut" is released. | |
393 | |
2325 | 394 2004-10-07 Jerry James <james@xemacs.org> |
395 | |
396 * etags.c: Update to author version 17.6. | |
397 | |
2286 | 398 2004-09-14 Jerry James <james@xemacs.org> |
399 | |
400 * digest-doc.c (main): Remove unused argc and argv. | |
401 * fakemail.c (main): Ditto. | |
402 * make-dump-id.c (main): Ditto. | |
403 * profile.c (main): Ditto. | |
404 * sorted-doc.c (main): Ditto. | |
405 * gnuclient.c (tell_emacs_to_resume): Mark unused parameters. | |
406 * gnuserv.c (main): Ditto. | |
407 * make-docfile.c (write_c_args): Ditto. | |
408 * pop.c (socket_connection): Ditto. | |
409 | |
2225 | 410 2004-08-10 Jerry James <james@xemacs.org> |
411 | |
412 * etags.c: Update to author version 16.56. | |
413 | |
2022 | 414 2004-04-17 Olivier Galibert <galibert@pobox.com> |
415 | |
416 * insert-data-in-exec.c (main): Fix error message. | |
417 | |
2015 | 418 2003-12-07 Olivier Galibert <galibert@pobox.com> |
419 | |
420 * Makefile.in.in (insert-data-in-exec): Added target. | |
421 | |
422 * insert-data-in-exec.c: Added. | |
423 | |
1964 | 424 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
425 | |
426 * XEmacs 21.5.17 "chayote" is released. | |
427 | |
1886 | 428 2004-01-21 Jerry James <james@xemacs.org> |
429 | |
430 * Makefile.in.in (mmencode): Pass $(ldflags) to the compiler. | |
431 * Makefile.in.in (make-path): Ditto. | |
432 | |
1743 | 433 2003-10-13 Jerry James <james@xemacs.org> |
434 | |
435 * ellcc.c: Remove attribute definitions, include new compiler.h | |
436 instead, and change existing uses to match new definitions. | |
437 | |
1716 | 438 2003-09-26 Steve Youngs <youngs@xemacs.org> |
439 | |
440 * XEmacs 21.5.16 "celeriac" is released. | |
441 | |
1706 | 442 2003-09-21 Jerry James <james@xemacs.org> |
443 | |
444 * ellcc.c (do_init_mode): Do not mangle external symbols in the | |
445 generated doc file with C++ so that emodules.c can find them. | |
446 | |
1688 | 447 2003-09-15 Jerry James <james@xemacs.org> |
448 | |
449 * make-dump-id.c (main): Output separate declaration and | |
450 definition for dump_id. | |
451 | |
1665 | 452 2003-09-03 Steve Youngs <youngs@xemacs.org> |
453 | |
454 * XEmacs 21.5.15 "celery" is released. | |
455 | |
1663 | 456 2003-08-29 Nickolay Pakoulin <npak@ispras.ru> |
457 | |
458 * make-dump-id.c (main): Set "C" linking rule for dump_id | |
459 | |
1618 | 460 2003-06-30 Andrew Begel <abegel@CS.Berkeley.EDU> |
461 | |
462 * make-docfile.c (write_c_args): Escape newlines that arise in the | |
463 C argument list, and comment on synch with Emacs. | |
464 | |
1510 | 465 2003-06-01 Steve Youngs <youngs@xemacs.org> |
466 | |
467 * XEmacs 21.5.14 "cassava" is released. | |
468 | |
1506 | 469 2003-05-29 Jerry James <james@xemacs.org> |
470 | |
471 * ellcc.c: Rationalize and repair use of GCC function attributes. | |
472 | |
1473 | 473 2003-05-10 Steve Youngs <youngs@xemacs.org> |
474 | |
475 * XEmacs 21.5.13 "cauliflower" is released. | |
476 | |
1431 | 477 2003-04-24 Steve Youngs <youngs@xemacs.org> |
478 | |
479 * XEmacs 21.5.12 "carrot" is released. | |
480 | |
1349 | 481 2003-02-09 Ville Skyttä <scop@xemacs.org> |
482 | |
483 * config.values.in (pkgdir): Remove (unused). | |
484 | |
1346 | 485 2003-03-06 Ben Wing <ben@xemacs.org> |
486 | |
487 * i.c: | |
488 * i.c (pump): | |
489 Sleep between calls to check for I/O, since these calls are non-blocking. | |
490 | |
1307 | 491 2003-02-16 Steve Youngs <youngs@xemacs.org> |
492 | |
493 * XEmacs 21.5.11 "cabbage" is released. | |
494 | |
1269 | 495 2003-01-14 Jerry James <james@xemacs.org> |
496 | |
497 * ellcc.c (do_compile_mode): Search XEmacs directories first for | |
498 include files. Thanks to Raymond Toy. | |
499 | |
1238 | 500 2003-01-28 Steve Youngs <youngs@xemacs.org> |
501 | |
502 * rcs2log: Synch to GNU version. | |
503 | |
1187 | 504 2003-01-04 Steve Youngs <youngs@xemacs.org> |
505 | |
506 * XEmacs 21.5.10 "burdock" is released. | |
507 | |
1123 | 508 2002-11-27 Ben Wing <ben@xemacs.org> |
509 | |
510 * .cvsignore: | |
511 Add .idb, .ilk for MS Windows VC++. | |
512 | |
1111 | 513 2002-11-17 Ben Wing <ben@xemacs.org> |
514 | |
515 * ellcc.c (do_init_mode): | |
516 Use full prototypes. | |
517 | |
518 * ellcc.h.in: | |
519 Use the correct user-specified compiler. | |
520 | |
521 * make-docfile.c: | |
522 * make-docfile.c (read_c_string): | |
523 * make-docfile.c (scan_c_file): | |
524 Fix shadowing warnings. NOTE: This was already fixed | |
525 awhile ago, but reverted by Jerry. Please be careful. | |
526 | |
996 | 527 2002-08-08 Jerry James <james@xemacs.org> |
528 | |
529 * config.values.in: Regenerate. | |
530 * ellcc.c: A thorough cleanup to eliminate potential buffer | |
531 overruns and null pointer dereferences, make some global variables | |
532 local, add braces for clarity, etc., using hints supplied by | |
533 splint. | |
534 * ellcc.c (EXEC_GROW_SIZE): New constant for dynamic allocation. | |
535 * ellcc.c (xrealloc): New function. | |
536 * ellcc.c (xstrdup): New function. | |
537 * ellcc.c (fatal): Use varargs for flexibility. | |
538 * ellcc.c (add_string): New function for abstracting the addition | |
539 of a string to the exec_argv array. | |
540 * ellcc.c (add_to_argv): Use add_string. Improve whitespace | |
541 handling. Recode finite state machine as a clearer while loop. | |
542 * ellcc.c (do_compile_mode): Use new functions. | |
543 * ellcc.c (do_link_mode): Ditto. | |
544 * ellcc.c (do_init_mode): Ditto. Default to in-source | |
545 make-docfile. | |
546 | |
981 | 547 2002-08-30 Steve Youngs <youngs@xemacs.org> |
548 | |
549 * XEmacs 21.5.9 "brussels sprouts" is released. | |
550 | |
978 | 551 2002-08-21 Jerry James <james@xemacs.org> |
552 | |
553 * gnuserv.h: Revert previous patch. Include syssignal.h instead | |
554 of signal.h. | |
555 * tcp.c: Include config.h, and substitute syssignal.h for | |
556 signal.h. | |
557 | |
954 | 558 2002-08-02 Jerry James <james@xemacs.org> |
559 | |
560 * gnuserv.h: Include signal.h early to define NSIG before config.h | |
561 is included. | |
562 | |
933 | 563 2002-07-27 Steve Youngs <youngs@xemacs.org> |
564 | |
565 * XEmacs 21.5.8 "broccoli" is released. | |
566 | |
930 | 567 2002-07-15 Jerry James <james@xemacs.org> |
568 | |
569 * make-docfile.c: Change whitespace and organization to reduce the | |
570 size of the diff against FSF Emacs sources and synch to Emacs 21.2. | |
571 Remove unused DO_REALLOC. | |
572 Mark XEmacs changes and additions more clearly. | |
573 Reintroduce previously deleted Emacs code inside #if 0 ... #endif. | |
574 * make-docfile.c (next_extra_elc): Replace goto with do-while. | |
575 * make-docfile.c (main): Put XEmacs-only args in one place. | |
576 * make-docfile.c (write_c_args): Change buff to buf to match | |
577 Emacs. Replace pointer arithmetic with simpler array syntax. | |
578 * make-docfile.c (scan_c_file): Note that DEFSIMPLE and DEFPRED no | |
579 longer exist. Correct the "name too long" test (off by one). | |
580 Die with message if a DEFUN has no docstring instead of hanging. | |
581 * make-docfile.c (scan_lisp_file): Introduce while loops used in | |
582 Emacs sources to skip consecutive blank lines. | |
583 | |
920 | 584 2002-07-14 Adrian Aichner <adrian@xemacs.org> |
585 | |
586 * etags.c: It's XEmacs, not Xemacs. | |
587 | |
894 | 588 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
589 | |
590 * XEmacs 21.5.7 "broccoflower" is released. | |
591 | |
881 | 592 2002-05-29 Greg Steuck <greg-xemacs-patches@nest.cx> |
593 | |
594 * gnuclient.c: Makes it possible again to #undef | |
595 INTERNET_DOMAIN_SOCKETS in lib-src/gnuserv.h and get a functional | |
596 gnuserv which is only accessible through UNIX_DOMAIN_SOCKETS. | |
597 | |
853 | 598 2002-05-28 Ben Wing <ben@xemacs.org> |
599 | |
600 * make-docfile.c (scan_c_file): | |
601 * make-docfile.c (scan_lisp_file): | |
602 Fix places where we forget to check for EOF. | |
603 | |
826 | 604 2002-05-05 Ben Wing <ben@xemacs.org> |
605 | |
606 * i.c: | |
607 * i.c (skip_executable_name): | |
608 * i.c (main): | |
609 Create an inheritable event and pass it on to XEmacs, so that ^C | |
610 can be handled properly. Intercept ^C and signal the event. | |
611 "Stop Build" in VC++ now works. | |
612 | |
814 | 613 2002-04-14 Ben Wing <ben@xemacs.org> |
614 | |
615 * make-docfile.c: | |
616 * make-docfile.c (next_extra_elc): | |
617 * make-docfile.c (again): Removed. | |
618 * make-docfile.c (main): | |
619 * make-docfile.c (getc_iso2022): | |
620 * make-docfile.c (MDGET): | |
621 * make-docfile.c (read_c_string): | |
622 * make-docfile.c (write_c_args): | |
623 * make-docfile.c (scan_c_file): | |
624 * make-docfile.c (read_lisp_symbol): | |
625 * make-docfile.c (scan_lisp_file): | |
626 Add basic support for handling ISO 2022 doc strings -- we parse | |
627 the basic charset designation sequences so we know whether we're | |
628 in ASCII and have to pay attention to end quotes and such. | |
629 | |
630 Reformat code according to coding standards. | |
631 | |
804 | 632 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
633 | |
634 * XEmacs 21.5.6 "bok choi" is released. | |
635 | |
800 | 636 2002-03-31 Ben Wing <ben@xemacs.org> |
637 | |
638 * make-mswin-unicode.pl: Don't be fucked up by CRLF. Output code | |
639 to force errors when nonintercepted Windows calls issued. | |
640 | |
778 | 641 2002-03-14 Jonathan Harris <jhar@tardis.ed.ac.uk> |
642 | |
643 * make-mswin-unicode.pl: Pick up location of include files from | |
644 MSVCDIR environment variable. | |
645 Add --includedir command-line option. | |
646 Remove 'dir' command. | |
647 | |
776 | 648 2002-03-15 Ben Wing <ben@xemacs.org> |
649 | |
650 * Makefile.in.in (blessmail): | |
651 * Makefile.in.in (maybe-blessmail): | |
652 Use -no-packages to avoid problems with package files shadowing | |
653 core files (e.g. unicode.el in mule-ucs). | |
654 | |
774 | 655 2002-03-12 Ben Wing <ben@xemacs.org> |
656 | |
3322 | 657 * The Great Mule Merge of March 2002: |
658 see node by that name in the Internals Manual. | |
774 | 659 |
768 | 660 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
661 | |
662 * XEmacs 21.5.5 "beets" is released. | |
663 | |
725 | 664 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
665 | |
666 * XEmacs 21.5.4 "bamboo" is released. | |
667 | |
715 | 668 2001-12-24 Yoshiki Hayashi <yoshiki@xemacs.org> |
669 | |
670 * etags.c: Define __P if not already defined. | |
671 | |
709 | 672 2001-12-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
673 | |
674 * Makefile.in.in (etags_args): Define EMACS_NAME to XEmacs. | |
675 | |
676 * etags.c: Sync with pot version 14.28. | |
677 Additional change for XEmacs to define PTR macro. | |
678 | |
679 2001-12-12 Francesco Potorti` <pot@gnu.org> | |
680 | |
681 * etags.c (PHP_functions): New function by Diez B. Roggisch, | |
682 heavily adapted by me, for parsing PHP. | |
683 (LOOKING_AT): New macro. | |
684 (Perl_functions, Python_functions, PHP_functions) | |
685 (Scheme_functions, Texinfo_nodes): Use it. | |
686 (Perl_functions): Use strneq. | |
687 (prolog_pred): Renamed to prolog_pr. | |
688 (prolog_pr): Recognise Prolog rules (thanks to Geert Kloosterman) | |
689 in addition to predicates. | |
690 [ETAGS_REGEXPS] [!HAVE_CONFIG_H] [__CYGWIN__]: Prevent | |
691 unmodified compile, as Cygwin's regex.h is incompatible with us | |
692 (thanks to Markus Hoenicka). | |
693 [!HAVE_CONFIG_H] [!__STDC__]: #define const as the empty string. | |
694 | |
654 | 695 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
696 | |
697 * XEmacs 21.5.3 "asparagus" is released. | |
698 | |
647 | 699 2001-06-24 Ben Wing <ben@xemacs.org> |
700 | |
701 * gnuserv.c (permitted): | |
702 * gnuserv.c (setup_table): | |
703 * gnuslib.c (connect_to_internet_server): | |
704 * make-docfile.c (scan_c_file): | |
705 * mmencode.c (fromqp): | |
706 * movemail.c: | |
707 * movemail.c (main): | |
708 * movemail.c (xmalloc): | |
709 * ootags.c (prolog_pred): | |
710 * ootags.c (erlang_func): | |
711 * yow.c (yow): | |
712 Fix unsigned warnings. See src/ChangeLog for details. | |
713 | |
641 | 714 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
715 | |
716 * XEmacs 21.5.2 "artichoke" is released. | |
717 | |
613 | 718 2001-06-10 Ben Wing <ben@xemacs.org> |
719 | |
720 * cvtmail.c: | |
721 * fakemail.c: | |
722 * gnuserv.c: | |
723 * gnuserv.c (handle_ipc_request): | |
724 * gnuserv.h: | |
725 * gnuslib.c: | |
726 * make-msgfile.c: | |
727 * make-path.c: | |
728 * pop.c: | |
729 * pop.h: | |
730 * profile.c: | |
731 * tcp.c: | |
732 Rename 'GNU Emacs' to XEmacs in the copyright. | |
733 Fix comments in similar ways. | |
734 | |
735 * digest-doc.c (main): | |
736 * sorted-doc.c (main): | |
737 Fix program and author name to reflect XEmacs. | |
738 | |
567 | 739 2001-05-06 Karl M. Hegbloom <karlheg@hegbloom.net> |
740 | |
741 * movemail.c (lock_dot): Use mkstemp if available | |
742 | |
558 | 743 2001-05-23 Ben Wing <ben@xemacs.org> |
744 | |
745 * pop.c (socket_connection): | |
746 Remove BROKEN_CYGWIN. | |
747 | |
543 | 748 2001-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
749 | |
750 * config.values.sh: lisp/utils?/config.el -> lisp/config.el. | |
751 | |
531 | 752 2001-05-12 Ben Wing <ben@xemacs.org> |
753 | |
754 * etags.c: | |
755 * etags.c (print_help): | |
756 * etags.c (sym_type): | |
757 * etags.c (TOTAL_KEYWORDS): | |
758 * etags.c (hash): | |
759 * etags.c (in_word_set): | |
760 * etags.c (consider_token): | |
761 * etags.c (C_entries): | |
762 * etags.c (add_regex): | |
763 new version from Francesco. | |
764 | |
523 | 765 2001-05-09 Ben Wing <ben@xemacs.org> |
766 | |
767 * etags.c (add_regex): | |
768 temporary fix to avoid crashes with new regex code. | |
769 | |
522 | 770 2001-05-09 Martin Buchholz <martin@xemacs.org> |
771 | |
772 * XEmacs 21.5.1 "anise" is released. | |
773 | |
502 | 774 2001-04-29 Ben Wing <ben@xemacs.org> |
775 | |
776 * gnuclient.c (filename_expand): Warning fix. | |
777 | |
479 | 778 2001-04-20 Ben Wing <ben@xemacs.org> |
779 | |
780 * .cvsignore: Added stuff for Windows. | |
781 | |
472 | 782 2001-04-18 Martin Buchholz <martin@xemacs.org> |
783 | |
784 * XEmacs 21.5.0 "alfalfa" is released. | |
785 | |
464 | 786 2000-08-01 Jon Schewe <jpschewe@eggplant.mtu.net> |
787 | |
788 * gnuclient.c (filename_expand): Let Cygwin convert Windows path | |
789 to Unix. | |
790 | |
791 2001-03-23 Stephen J. Turnbull <stephen@xemacs.org> | |
792 | |
793 * gnuserv.h: Document TMPDIR lossage if client/server values differ. | |
794 | |
462 | 795 2001-03-21 Martin Buchholz <martin@xemacs.org> |
796 | |
797 * XEmacs 21.2.46 "Urania" is released. | |
798 | |
799 2001-03-19 Andy Piper <andy@xemacs.org> | |
800 | |
801 * installexe.sh: use bash by default. | |
802 | |
803 2001-03-09 William M. Perry <wmperry@aventail.com> | |
804 | |
805 * gnuclient.c: The Great GTK Merge. | |
806 | |
807 2000-08-10 Ben Wing <ben@xemacs.org> | |
808 | |
809 * update-elc.sh: deleted (retroactively). replaced by update-elc-2.el, | |
810 which does the same thing but in a platform-independent way. | |
811 | |
460 | 812 2001-02-23 Martin Buchholz <martin@xemacs.org> |
813 | |
814 * XEmacs 21.2.45 "Thelxepeia" is released. | |
815 | |
816 2001-02-11 Martin Buchholz <martin@xemacs.org> | |
817 | |
818 * Makefile.in.in: Cleanup. | |
819 Fixes bug: all must depend on make-dump-id. | |
820 Don't install make-path; only used at build time. | |
821 Avoid duplicating file lists for maintainability. | |
822 (PUBLIC_INSTALLABLE_SCRIPTS): More logical naming. | |
823 (PUBLIC_INSTALLABLE_EXES): Likewise. | |
824 (PUBLIC_INSTALLABLES): Likewise. | |
825 (PRIVATE_INSTALLABLE_SCRIPTS): More logical naming. | |
826 (PRIVATE_INSTALLABLE_EXES): Likewise. | |
827 (PRIVATE_INSTALLABLES): Likewise. | |
828 (SCRIPTS): Likewise. | |
829 (EXES): New. | |
830 (PROGS): New. | |
831 (SOURCES): Remove. | |
832 (BUILD_UTILITIES): New. Non-installed utilities. | |
833 (INSTALL_GNUSERV): New. | |
834 (unlock): Remove obsolete target. | |
835 (relock): Remove obsolete target. | |
836 (aixcc.c): Remove. Obsolete. | |
837 * aixcc.lex: Remove. Obsolete. | |
838 | |
839 2001-02-12 Martin Buchholz <martin@xemacs.org> | |
840 | |
841 * make-dump-id.c (main): No longer #include dump-id.h. | |
842 | |
458 | 843 2001-02-08 Martin Buchholz <martin@xemacs.org> |
844 | |
845 * gnuserv.c (permitted): Compiler warning fixes. | |
846 | |
847 2001-02-08 Martin Buchholz <martin@xemacs.org> | |
848 | |
849 * XEmacs 21.2.44 "Thalia" is released. | |
850 | |
851 2001-01-31 Francesco Potorti` <pot@gnu.org> | |
852 | |
853 * etags.c: [NDEBUG] #undef assert and #define it as ((void)0), for | |
854 the sake of some buggy assert.h (e.g. in MinGW and sunos4 pcc). | |
855 (C_entries): Tag token renamed to still_in_token because sunos4 | |
856 pcc wants to expand it as the token() macro even though it has no | |
857 arguments. | |
858 | |
859 2001-01-30 Francesco Potorti` <pot@gnu.org> | |
860 | |
861 * etags.c: [WIN32-NATIVE]: #undef MSDOS, #undef WINDOWSNT and | |
920 | 862 #define it for the sake of XEmacs. |
458 | 863 [WINDOWSNT]: #undef HAVE_NTGUI even if built without |
864 HAVE_CONFIG_H. This change only affects a standalone etags. | |
865 [WINDOWSNT]: #undef DOS_NT and #define it even if built with | |
866 HAVE_CONFIG_H. This change does nothing in Emacs, as DOS_NT is | |
867 always defined when HAVE_CONFIG_H and WINDOWS are both defined. | |
868 [!HAVE_UNISTD_H]: use defined(WINDOWSNT) instead of the bare | |
869 WINDOWSNT, as this is the correct way to use it. | |
870 | |
871 2001-01-28 Francesco Potorti` <pot@gnu.org> | |
872 | |
873 * etags.c: Be capable to parse nested struct-like structures. | |
874 (structdef, structtag): Struct state machine revisited. | |
875 (struct tok): Revisited. | |
876 (cstack, nestlev, instruct): New struct and macros. | |
877 (pushclass_above, popclass_above, write_classname): New functions | |
878 for dealing with nested class names, inspired by Mykola Dzyuba. | |
879 (consider_token, make_C_tag, C_entries): Many changes for dealing | |
880 with arbitrarily nested structures. | |
881 (etags_getcwd): #if MSDOS, not #ifdef MSDOS! | |
882 (C_entries): Consider templates in C++. | |
883 (sym_type): New constant st_C_class for detecting "class" also in | |
884 C mode. | |
885 (C_AUTO): New macro for automatic detection of C++. | |
886 (consider_token): Automatic set C++ mode. | |
887 (C_entries): New security check for yacc. | |
888 (print_language_names, print_help): Mention the autodetect | |
889 feature, do not show help for the -C option, now mostly useless. | |
890 (C_entries): Tag C++ forward declarations if --declarations. | |
891 (C_entries): Don't be fooled by things like XDEFUN. | |
892 (consider_token): Discard asm pseudo function. | |
893 | |
460 | 894 2001-01-25 Francesco Potorti` <pot@gnu.org> |
458 | 895 |
896 * etags.c (struct tok): Renamed from struct token. | |
897 (token): Renamed from tok. | |
898 (structtype): Make it a local variable. | |
899 [DEBUG]: Use assert. | |
900 (xrnew): Change the synopsis. | |
901 (typedefs_or_cplusplus): Renamed from typedefs_and_cplusplus. | |
902 (grow_linebuffer): Don't call xrnew when not needed. | |
903 (token): buffer renamed to line. | |
904 (C_entries): Three calls to inibuffer moved here from main. | |
905 (C_entries): Removed all references to var methodlen, delete it. | |
906 (linebuffer_setlen): Was grow_buffer, now also sets len. | |
907 (consider_token, C_entries, Pascal_functions): Use it. | |
908 (C_entries): Preventing problems relative to extern "C". | |
909 (C_entries): Can tag more than one variable or func separated by | |
910 comma when --declarations is used. | |
911 (C_entries): More accurate tagging of members and declarations. | |
912 (yacc_rules): Was global, made local to C_entries. | |
913 (next_token_is_func): Removed. | |
914 (fvdef): New constants fdefunkey, fdefunname. | |
915 (consider_token, C_entries): Use them. | |
916 (C_entries): Build proper lisp names for Emacs DEFUNs. | |
917 | |
460 | 918 2001-01-15 Francesco Potorti` <pot@gnu.org> |
458 | 919 |
920 * etags.c (print_language_names): Print filenames in addition to | |
921 suffixes. | |
922 | |
923 2001-01-12 Francesco Potorti` <pot@gnu.org> | |
924 | |
925 * etags.c (get_language_from_langname): Renamed from | |
926 get_language_from_name. | |
927 (get_language_from_filename): Renamed from | |
928 get_language_from_suffix. Now first looks for the complete file | |
929 name. | |
930 (language): New member char **filenames. | |
931 (Makefile_filenames): List of possible filenames for makefiles. | |
932 (lang_names): Added a NULL member for every entry, added an entry | |
933 for makefiles. | |
934 (Makefile_targets): New function, inspired by Assar Westerlund | |
935 <assar@sics.se>. | |
936 | |
460 | 937 2000-11-07 Francesco Potorti` <pot@gnu.org> |
458 | 938 |
939 * etags.c (Texinfo_nodes): Renamed from Texinfo_fuctions and made | |
940 it conformant to the style of the rest of the code. | |
941 | |
942 2000-02-10 Francesco Potorti` <pot@gnu.org> | |
943 | |
944 * etags.c (iswhite): Redefined not to consider '\0' as white | |
945 space, and use it throughout in place of isspace, thus preventing a | |
946 potential signed char to int conversion problem. | |
947 (MSDOS): #undefine befere redefining | |
948 | |
460 | 949 2000-02-04 Francesco Potorti` <pot@gnu.org> |
458 | 950 |
951 * etags.c (many functions): Add prototypes. | |
952 | |
460 | 953 2000-01-31 Francesco Potorti` <pot@gnu.org> |
458 | 954 |
955 * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise. | |
956 (get_compressor_from_suffix, process_file): Use MSDOS in if clause. | |
957 (etags_strchr, etags_strrchr): Use const char * and int as arguments. | |
958 (getenv, getcwd): Only declare them if necessary. | |
959 (EMACS_NAME): New constant macro. | |
960 (print_version): Use it. | |
961 (P_) [__STDC__]: Macro for defining function prototypes. | |
962 | |
963 2001-02-06 Martin Buchholz <martin@xemacs.org> | |
964 | |
965 * gnuclient.c: | |
966 * gnuserv.c: | |
967 * gnuslib.c: | |
968 * pop.c: | |
969 Remove use of BSD-specific types. | |
970 s/u_(char|short|int_long)/unsigned $1/g | |
971 Remove pointless casts. | |
972 | |
973 2001-01-28 Martin Buchholz <martin@xemacs.org> | |
974 | |
975 * gnuclient.c (get_current_working_directory): Use HAVE_GETCWD. | |
976 warning: getwd() possibly used unsafely, consider using getcwd(). | |
977 | |
456 | 978 2001-01-26 Martin Buchholz <martin@xemacs.org> |
979 | |
980 * XEmacs 21.2.43 "Terspichore" is released. | |
981 | |
982 2001-01-23 Jan Vroonhof <jan@xemacs.org> | |
983 | |
984 * gnuserv.c: Add version number to object file. | |
985 | |
986 2001-01-20 Klaus Frank <klausf@i3.informatik.rwth-aachen.de> | |
987 | |
988 * gnuserv.c (permitted): Completed the checks of the authentication | |
989 data length, replaced memcmp() by constant-time comparision. | |
990 | |
454 | 991 2001-01-20 Martin Buchholz <martin@xemacs.org> |
992 | |
993 * XEmacs 21.2.42 "Poseidon" is released. | |
994 | |
452 | 995 2001-01-17 Martin Buchholz <martin@xemacs.org> |
996 | |
997 * XEmacs 21.2.41 "Polyhymnia" is released. | |
998 | |
450 | 999 2001-01-08 Martin Buchholz <martin@xemacs.org> |
1000 | |
1001 * XEmacs 21.2.40 is released. | |
1002 | |
448 | 1003 2000-12-31 Martin Buchholz <martin@xemacs.org> |
1004 | |
1005 * XEmacs 21.2.39 is released. | |
1006 | |
446 | 1007 2000-12-05 Martin Buchholz <martin@xemacs.org> |
1008 | |
1009 * XEmacs 21.2.38 is released. | |
1010 | |
1011 2000-11-13 Yoshiki Hayashi <yoshiki@xemacs.org> | |
1012 | |
1013 * Makefile.in.in: Define emacs iff it's necessary. | |
1014 | |
444 | 1015 2000-11-14 Martin Buchholz <martin@xemacs.org> |
1016 | |
1017 * XEmacs 21.2.37 is released. | |
1018 | |
442 | 1019 2000-09-01 Katsumi Yamaoka <yamaoka@jpl.org> |
1020 | |
1021 * make-po.c (BUFSIZE): Increase value to 32768. | |
1022 | |
1023 2000-10-04 Martin Buchholz <martin@xemacs.org> | |
1024 | |
1025 * XEmacs 21.2.36 is released. | |
1026 | |
1027 2000-09-30 Martin Buchholz <martin@xemacs.org> | |
1028 | |
1029 * gnuserv.c (main): Warning removal. | |
1030 | |
1031 2000-09-27 Martin Buchholz <martin@xemacs.org> | |
1032 | |
1033 * ellcc.c: Make global variables static. Avoids warnings on AIX. | |
1034 | |
1035 * fakemail.c (make_file_preface): Use standard type time_t. | |
1036 Actually check that the 25th char returned from ctime is '\n'. | |
1037 | |
1038 2000-09-19 Martin Buchholz <martin@xemacs.org> | |
1039 | |
1040 * *: Spelling mega-patch | |
1041 | |
1042 2000-09-12 Martin Buchholz <martin@xemacs.org> | |
1043 | |
1044 * gnuclient.c (main): | |
1045 * hexl.c (usage): | |
1046 Use `Usage', not `usage', in Usage messages. | |
1047 | |
1048 2000-07-15 Ben Wing <ben@xemacs.org> | |
1049 | |
1050 * etags.c (add_regex): added commented out code for use figuring | |
1051 out Windows quoting problems. | |
1052 * hexl.c (main): fixed warnings about possible used uninitialized. | |
1053 | |
1054 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
1055 | |
1056 * XEmacs 21.2.35 is released. | |
1057 | |
1058 2000-07-12 Martin Buchholz <martin@xemacs.org> | |
1059 | |
1060 * gnuserv.c: | |
1061 (handle_internet_request): | |
1062 (handle_unix_request): | |
1063 (internet_init): | |
1064 Use socklen_t instead of int or size_t. | |
1065 | |
1066 2000-07-11 Martin Buchholz <martin@xemacs.org> | |
1067 | |
1068 * hexl.c (usage): Use full ANSI C prototypes. | |
1069 | |
1070 2000-07-05 Craig Lanning <lanning@scra.org> | |
1071 | |
1072 * Makefile.in.in (INSTALL_DATA): | |
1073 * Makefile.in.in (UTILITIES): | |
1074 * Makefile.in.in (GETOPTDEPS): | |
1075 * Makefile.in.in (i): | |
1076 mingw support: don't try to build gnuclient, add | |
1077 support for building and installing minitar | |
1078 | |
1079 2000-06-10 Ben Wing <ben@xemacs.org> | |
1080 | |
1081 * Makefile.in.in (INSTALLABLES_BASE): | |
1082 * Makefile.in.in (ootags_args): | |
1083 * Makefile.in.in (yow): | |
1084 Build i.exe. | |
1085 Don't build run*.exe. | |
1086 | |
1087 * b2m.c: | |
1088 * b2m.c (main): | |
1089 * ellcc.c (main): | |
1090 * etags.c: | |
1091 * etags.c (main): | |
1092 * etags.c (get_compressor_from_suffix): | |
1093 * etags.c (process_file): | |
1094 * etags.c (readline_internal): | |
1095 * etags.c (etags_getcwd): | |
1096 * etags.c (relative_filename): | |
1097 * etags.c (absolute_filename): | |
1098 * etags.c (filename_is_absolute): | |
1099 * etags.c (canonicalize_filename): | |
1100 * fakemail.c: | |
1101 * fakemail.c (make_file_preface): | |
1102 * getopt.c: | |
1103 * getopt.h: | |
1104 * gnuclient.c: | |
1105 * gnuclient.c (filename_expand): | |
1106 * gnuserv.h: | |
1107 * gnuserv.h (PATCHLEVEL): | |
1108 * hexl.c: | |
1109 * hexl.c (main): | |
1110 * make-docfile.c: | |
1111 * make-docfile.c (APPEND_BINARY): | |
1112 * make-docfile.c (main): | |
1113 * make-dump-id.c: | |
1114 * mmencode.c: | |
1115 * mmencode.c (fromqp): | |
1116 * mmencode.c (main): | |
1117 * movemail.c: | |
1118 * movemail.c (main): | |
1119 * movemail.c (popmail): | |
1120 * ootags.c: | |
1121 * ootags.c (main): | |
1122 * ootags.c (readline_internal): | |
1123 * ootags.c (etags_getcwd): | |
1124 * ootags.c (absolute_filename): | |
1125 * ootags.c (filename_is_absolute): | |
1126 * ootags.c (canonicalize_filename): | |
1127 * pop.c: | |
1128 * pop.c (DONT_ENCAPSULATE): | |
1129 * pop.c (pop_open): | |
1130 * pop.c (socket_connection): | |
1131 * pop.c (pop_trash): | |
1132 * profile.c (gettimeofday): | |
1133 * wakeup.c: | |
1134 * yow.c (rootrelativepath): | |
1135 Remove MSDOS support, converting to WIN32_NATIVE where necessary. | |
1136 WINDOWSNT -> WIN32_NATIVE. | |
1137 __CYGWIN32__ -> CYGWIN. | |
1138 DOS_NT -> WIN32_NATIVE. | |
1139 Remove unused NO_SHORTNAMES. | |
1140 Changes for removed nt\inc. | |
1141 | |
1142 2000-06-07 Ben Wing <ben@xemacs.org> | |
1143 | |
1144 * run.c, run.h, run.rc: Removed. We no longer need these for | |
1145 building runxemacs.exe, and it's questionable at best whether | |
1146 rungnuclient.exe was ever used or is even needed. The correct | |
1147 solution is just to make gnuclient.exe a windows program and | |
1148 use the gnuattach script to run 'i gnuclient.exe'. Not that | |
1149 gnuclient currently works under Windows native in any case. | |
1150 | |
1151 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
1152 | |
1153 * XEmacs 21.2.34 is released. | |
1154 | |
1155 2000-05-11 Ben Wing <ben@xemacs.org> | |
1156 | |
1157 * i.c (get_command): fix unused var warning. | |
1158 | |
1159 * make-docfile.c (MDGET): | |
1160 * make-docfile.c (read_c_string): | |
1161 rewrite and reindent -- handle closing doc string comment that's | |
1162 not at beg of line. | |
1163 | |
1164 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
1165 | |
1166 * XEmacs 21.2.33 is released. | |
1167 | |
1168 2000-04-19 Martin Buchholz <martin@xemacs.org> | |
1169 | |
1170 * gnuclient.c (initialize_signals): Always use full ANSI prototypes. | |
1171 | |
1172 2000-04-06 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1173 | |
1174 * i.c: New file, source for the i utility. | |
1175 | |
1176 2000-03-22 Mike Alexander <mta@arbortext.com> | |
1177 | |
1178 * make-dump-id.c (gettimeofday): new (Windows only) | |
1179 | |
1180 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
1181 | |
1182 * XEmacs 21.2.32 is released. | |
1183 | |
1184 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
1185 | |
1186 * make-dump-id.c: Use config.h and systime.h for portability. | |
1187 | |
1188 2000-02-20 Olivier Galibert <galibert@pobox.com> | |
1189 | |
1190 * make-dump-id.c: Added. | |
1191 | |
1192 * Makefile.in.in: Add support for make-dump-id. | |
1193 | |
1194 2000-03-12 Ben Wing <ben@xemacs.org> | |
1195 | |
1196 * etags.c (canonicalize_filename): fixed a problem with gratuitous | |
1197 capitalization of file names under MS Windows. | |
1198 | |
1199 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
1200 | |
1201 * XEmacs 21.2.31 is released. | |
1202 | |
1203 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
1204 | |
1205 * XEmacs 21.2.30 is released. | |
1206 | |
1207 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
1208 | |
1209 * XEmacs 21.2.29 is released. | |
1210 | |
1211 2000-02-13 Martin Buchholz <martin@xemacs.org> | |
1212 | |
1213 * etags.c: Upgrade to version 13.44. | |
1214 Only added (unsigned char) casts to calls like isspace (*cp). | |
1215 | |
440 | 1216 2000-02-07 Martin Buchholz <martin@xemacs.org> |
1217 | |
1218 * XEmacs 21.2.28 is released. | |
1219 | |
1220 2000-02-06 Martin Buchholz <martin@xemacs.org> | |
1221 | |
1222 * getopt.h: | |
1223 * fakemail.c: | |
1224 * gnuslib.c: | |
1225 * sorted-doc.c: | |
1226 * yow.c: | |
1227 * cvtmail.c: | |
1228 * movemail.c: | |
1229 * gnuclient.c: | |
1230 ANSIfy. Use coding standards for function definitions. | |
1231 Make C++-compilable. Modified from patch by Zack Weinberg. | |
1232 | |
1233 2000-01-26 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1234 | |
1235 * hexl.c: Removed MSDOS code; set binary I/O flags for NT. | |
1236 | |
438 | 1237 2000-01-18 Martin Buchholz <martin@xemacs.org> |
1238 | |
1239 * XEmacs 21.2.27 is released. | |
1240 | |
1241 2000-01-18 Martin Buchholz <martin@xemacs.org> | |
1242 | |
1243 * ootags.c: Ansify. | |
1244 * etags.c: | |
1245 * getopt.c: | |
1246 * cvtmail.c: | |
1247 Remove declarations of ANSI errno, getenv(), malloc(). | |
1248 | |
1249 2000-01-13 Martin Buchholz <martin@xemacs.org> | |
1250 | |
1251 * movemail.c (main): | |
1252 * make-docfile.c (write_c_args): | |
1253 Simple compiler warning fixes. | |
1254 | |
1255 2000-01-09 Martin Buchholz <martin@xemacs.org> | |
1256 | |
1257 * *.[ch]: Change <../src/config.h> to <config.h> | |
1258 * ellcc.c: Always use <...> to #include files not in `.' | |
1259 * Makefile.in.in: Use safer -I paths. | |
1260 Use $(top_srcdir) instead of $(srcdir)/../src | |
1261 Add warning comment. | |
1262 | |
1263 2000-01-08 Martin Buchholz <martin@xemacs.org> | |
1264 | |
1265 * movemail.c: Warning removal. | |
1266 | |
1267 2000-01-06 Norbert Koch <norbert@s.netic.de> | |
1268 | |
1269 * movemail.c: Typo fix. | |
1270 | |
1271 2000-01-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
1272 | |
1273 * movemail.c: Overhaul of the locking code. | |
1274 | |
1275 2000-01-03 Martin Buchholz <martin@xemacs.org> | |
1276 | |
1277 * etags.c (etags_strrchr): Ansify. | |
1278 (etags_strchr): Ansify. | |
1279 (get_compressor_from_suffix): Remove warning, make code cleaner. | |
1280 | |
436 | 1281 1999-12-31 Martin Buchholz <martin@xemacs.org> |
1282 | |
1283 * XEmacs 21.2.26 is released. | |
1284 | |
434 | 1285 1999-12-24 Martin Buchholz <martin@xemacs.org> |
1286 | |
1287 * XEmacs 21.2.25 is released. | |
1288 | |
1289 1999-12-21 Martin Buchholz <martin@xemacs.org> | |
1290 | |
1291 * fakemail.c (cuserid): ((expr)) ==> (expr) | |
1292 | |
1293 * fakemail.c (xmalloc): ANSIfy. | |
1294 | |
432 | 1295 1999-12-14 Martin Buchholz <martin@xemacs.org> |
1296 | |
1297 * config.values.sh: Only update config.values.in if changed. | |
1298 No external dependencies except perl. | |
1299 No temporary files. | |
1300 | |
1301 1999-12-14 Martin Buchholz <martin@xemacs.org> | |
1302 | |
1303 * XEmacs 21.2.24 is released. | |
1304 | |
1305 1999-12-13 Martin Buchholz <martin@xemacs.org> | |
1306 | |
1307 * etags.c: Fix warning: `_GNU_SOURCE' redefined. | |
1308 | |
430 | 1309 1999-12-07 Martin Buchholz <martin@xemacs.org> |
1310 | |
1311 * XEmacs 21.2.23 is released. | |
1312 | |
1313 1999-11-29 Andreas Jaeger <aj@suse.de> | |
1314 | |
1315 * Makefile.in.in (INSTALLABLE_SCRIPTS): Removed pstogif. | |
1316 pstogif: Moved to package tm. | |
1317 | |
428 | 1318 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
1319 | |
1320 * XEmacs 21.2.22 is released | |
1321 | |
1322 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
1323 | |
1324 * XEmacs 21.2.21 is released. | |
1325 | |
1326 1999-11-20 Martin Buchholz <martin@xemacs.org> | |
1327 | |
1328 * process-gnu-depends.sh: Deleted. Obsolete. | |
1329 * process-depends.sh: Deleted. Obsolete. | |
1330 | |
1331 1999-11-20 Jan Vroonhof <jan@xemacs.org> | |
1332 | |
1333 * Makefile.in.in (instvardir): Added. From | |
1334 Jeff Miller <jmiller@smart.net> | |
1335 | |
1336 1999-11-19 Martin Buchholz <martin@xemacs.org> | |
1337 | |
1338 * etags.c: Upgrade to pot etags version 13.33. | |
1339 Make `etags --version' print out `XEmacs', not `GNU Emacs' | |
1340 | |
1341 1999-11-17 Martin Buchholz <martin@xemacs.org> | |
1342 | |
1343 * etags.c (canonicalize_filename): Typo fix | |
1344 | |
1345 1999-11-05 Martin Buchholz <martin@xemacs.org> | |
1346 | |
1347 * etags.c: | |
1348 * ../etc/etags.1: | |
1349 * ../etc/NEWS: | |
1350 Upgrade to etags version 13.32. | |
1351 etags.c has warnings removed, in addition. | |
1352 | |
1353 1999-11-15 Martin Buchholz <martin@xemacs.org> | |
1354 | |
1355 * gnuserv.c (ipc_spawn_watchdog): Use pid_t instead of int. | |
1356 | |
1357 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1358 | |
1359 * XEmacs 21.2.20 is released | |
1360 | |
1361 1999-11-04 Martin Buchholz <martin@xemacs.org> | |
1362 | |
1363 * gnuserv.c (handle_response): Warning suppression | |
1364 | |
1365 1999-09-27 Martin Buchholz <martin@xemacs.org> | |
1366 | |
1367 * ellcc.c: | |
1368 ANSIfy. | |
1369 Remove MSDOS cruft. | |
1370 Remove WINDOWS cruft. | |
1371 Remove VMS cruft. | |
1372 (main): The wrong number of bytes were being read during argument | |
1373 processing. | |
1374 Delete ANSI imitations like ellcc_strchr(). | |
1375 Call functions with the right number of arguments. | |
1376 Fix a typo. | |
1377 Make functions static. | |
1378 Remove compiler warnings. | |
1379 | |
1380 1999-09-22 Martin Buchholz <martin@xemacs.org> | |
1381 | |
1382 * cvtmail.c (main): ANSIfy | |
1383 * digest-doc.c (main): ANSIfy | |
1384 * hexl.c (main): ANSIfy | |
1385 | |
1386 * make-path.c: Remove declaration for errno. | |
1387 * mmencode.c (nextcharin): ANSIfy | |
1388 * movemail.c (pop_retr): ANSIfy | |
1389 | |
1390 1999-07-30 Gleb Arshinov <gleb@cs.stanford.edu> | |
1391 | |
1392 * pop.c (pop_quit): use CLOSESOCKET() instead of close() | |
1393 | |
1394 * run.c (build_cmdline): Fix NT native build unreferenced variable | |
1395 warning | |
1396 (WinMain): Fix release mode build unreferenced variable warning | |
1397 | |
1398 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1399 | |
1400 * XEmacs 21.2.19 is released | |
1401 | |
1402 1999-07-22 SL Baur <steve@miho> | |
1403 | |
1404 * Makefile.in.in (datadir): Add. | |
1405 From Jeff Miller <jmiller@smart.net> | |
1406 | |
1407 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1408 | |
1409 * XEmacs 21.2.18 is released | |
1410 | |
1411 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1412 | |
1413 * XEmacs 21.2.17 is released | |
1414 | |
1415 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1416 | |
1417 * XEmacs 21.2.16 is released | |
1418 | |
1419 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1420 | |
1421 * XEmacs 21.2.15 is released | |
1422 | |
1423 1999-06-03 SL Baur <steve@steve1.m17n.org> | |
1424 | |
1425 * Makefile.in.in: Move .PHONY up to force execution of `all'. | |
1426 | |
1427 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1428 | |
1429 * XEmacs 21.2.14 is released | |
1430 | |
1431 1999-05-14 SL Baur <steve@gneiss.etl.go.jp> | |
1432 | |
1433 * update-elc.sh (ignore_pattern): Correct ignore_dirs/ignore=dirs | |
1434 european keyboard fuckage. | |
1435 | |
1436 1999-05-03 Hrvoje Niksic <hniksic@srce.hr> | |
1437 | |
1438 * update-elc.sh (ignore_pattern): Installation.el is dead. | |
1439 | |
1440 1999-05-03 Hrvoje Niksic <hniksic@srce.hr> | |
1441 | |
1442 * gnuclient.c: Include <sysfile.h> instead of <../src/sysfile.h>. | |
1443 | |
1444 * Makefile.in.in (cppflags): Add -I$(top_srcdir)/src. | |
1445 | |
1446 1999-04-29 Andy Piper <andy@xemacs.org> | |
1447 | |
1448 * make-docfile.c: build fixes for mingw32. | |
1449 * movemail.c: ditto. | |
1450 * run.c: ditto. | |
1451 * yow.c: ditto. | |
1452 * profile.c: ditto. | |
1453 (gettimeofday): new function copied from nt.c. | |
1454 | |
1455 * fakemail.c (make_file_preface): make buildable under windows. | |
1456 | |
1457 * Makefile.in.in: fix some build targets for when we are building | |
1458 on a windows platform. | |
1459 | |
1460 1999-03-12 giacomo boffi <giacomo.boffi@polimi.it> | |
1461 | |
1462 * sorted-doc.c: corrected the outdated or plainly wrong | |
1463 texinfo headers. Broken up the mega-@table that crashes (at | |
1464 least RedHat's) TeX with: | |
1465 "! TeX capacity exceeded, sorry [save size=4000]." | |
1466 | |
1467 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1468 | |
1469 * XEmacs 21.2.13 is released | |
1470 | |
1471 1999-03-10 Martin Buchholz <martin@xemacs.org> | |
1472 | |
1473 * fakemail.c (add_a_stream): Always use full ANSI prototypes. | |
1474 | |
1475 1999-03-06 Martin Buchholz <martin@xemacs.org> | |
1476 | |
1477 * fakemail.c (main): Ansify. | |
1478 (xmalloc): Ansify. | |
1479 (xrealloc): Ansify. | |
1480 (get_keyword): use paranoid casts ((int) (unsigned char) c) for | |
1481 islower, toupper, isspace. | |
1482 | |
1483 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1484 | |
1485 * XEmacs 21.2.12 is released | |
1486 | |
1487 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1488 | |
1489 * XEmacs 21.2.11 is released | |
1490 | |
1491 1999-02-17 SL Baur <steve@xemacs.org> | |
1492 | |
1493 * update-elc.sh (ignore_dirs): Ignore lisp/mule subdirectory when | |
1494 running latin-1 XEmacs. Eliminate 20.4 bundled kludges. | |
1495 * update-custom.sh (ignore_dirs): Ditto. | |
1496 | |
1497 1999-02-15 Martin Buchholz <martin@xemacs.org> | |
1498 | |
1499 * update-elc.sh: | |
1500 * update-autoloads.sh: | |
1501 * update-custom.sh: | |
1502 - improved automounter tmp directory support. | |
1503 - support 4 (!) empirically discovered automounter conventions | |
1504 | |
1505 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1506 | |
1507 * XEmacs 21.2.10 is released | |
1508 | |
1509 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1510 | |
1511 * XEmacs 21.2.9 is released | |
1512 | |
1513 1999-01-27 Martin Buchholz <martin@xemacs.org> | |
1514 | |
1515 * movemail.c (strerror): Must be NON-static, since it is used by | |
1516 the POP code, which got moved to a separate file. | |
1517 | |
1518 1999-01-11 Damon Lipparelli <lipp@primus.com> | |
1519 | |
1520 * Makefile.in.in: use ellcc (not ellc) everywhere | |
1521 | |
1522 1999-01-10 J. Kean Johnston <jkj@sco.com> | |
1523 | |
1524 * Makefile.in.in: Include moduledir and sitemoduledir as defined | |
1525 by configure. | |
1526 - Install ellcc if we're supporting shared objects | |
1527 - Rules and dependancies for ellcc | |
1528 | |
1529 * ellcc.c: New file. Front end to the compiler for making modules. | |
1530 | |
1531 * ellcc.h.in: New file. Contains path definitions used by ellcc. | |
1532 | |
1533 * make-docfile.c (main): Add check for -E argument used by ellcc. | |
1534 | |
1535 * make-docfile.c: Changed output format when in -E mode. | |
1536 | |
1537 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
1538 | |
1539 * XEmacs 21.2.8 is released. | |
1540 | |
1541 1998-12-24 Martin Buchholz <martin@xemacs.org> | |
1542 | |
1543 * XEmacs 21.2.7 is released. | |
1544 | |
1545 1998-12-17 Andy Piper <andy@xemacs.org> | |
1546 | |
1547 * pop.c (pop_open): disable use of getpass() which doesn't exist under NT. | |
1548 | |
1549 * movemail.c: mess with includes so that it builds under native NT. | |
1550 | |
1551 * pop.c: mess with includes so that it builds under native NT. | |
1552 From Fabrice Popineau <popineau@ese-metz.fr> | |
1553 | |
1554 1998-12-16 Andy Piper <andy@xemacs.org> | |
1555 | |
1556 * XEmacs 21.2.6 is released | |
1557 | |
1558 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1559 | |
1560 * XEmacs 21.2.5 is released | |
1561 | |
1562 1998-11-28 SL Baur <steve@altair.xemacs.org> | |
1563 | |
1564 * XEmacs 21.2-beta4 is released. | |
1565 | |
1566 1998-10-14 Andy Piper <andyp@parallax.co.uk> | |
1567 | |
1568 * Makefile.in.in (movemail): add getopt.o to objects to link with. | |
1569 | |
1570 * movemail.c (main): rewrite to use getopt(). Add options for | |
1571 order reversal, progress output, regexp matching and message | |
1572 deletion. | |
1573 (popmail): add some optional verbose messages. Use pop_search_top | |
1574 for getting messages. Make message deletion optional. Delete all | |
1575 messages at the end rather than on a message my message basis. | |
1576 (pop_search_top): new function. Looks for messages matching regexp. | |
1577 (compile_regex): new function stolen from etags. | |
1578 | |
1579 1998-10-15 SL Baur <steve@altair.xemacs.org> | |
1580 | |
1581 * XEmacs 21.2-beta3 is released. | |
1582 | |
1583 1998-10-12 SL Baur <steve@altair.xemacs.org> | |
1584 | |
1585 * lib-src/gnudepend.pl: Use /usr/bin/perl. | |
1586 * Makefile.in.in (INSTALLABLE_SCRIPTS): Remove send-pr, install-sid. | |
1587 (GEN_SCRIPTS): Ditto. | |
1588 Delete TM_SCRIPTS. | |
1589 | |
1590 1998-10-11 SL Baur <steve@altair.xemacs.org> | |
1591 | |
1592 * tm-au: | |
1593 * tm-file: | |
1594 * tm-html: | |
1595 * tm-image: | |
1596 * tm-mpeg: | |
1597 * tm-plain: | |
1598 * tm-ps: | |
1599 * tmdecode: packaged. | |
1600 | |
1601 1998-10-10 SL Baur <steve@altair.xemacs.org> | |
1602 | |
1603 * install-sid: | |
1604 * send-pr: Packaged | |
1605 | |
1606 1998-10-01 Jan Vroonhof <vroonhof@math.ethz.ch> | |
1607 | |
1608 * gnuclient.c (filename_expand): Don't forget to copy the | |
1609 filename under UNIX. | |
1610 | |
1611 1998-09-29 SL Baur <steve@altair.xemacs.org> | |
1612 | |
1613 * XEmacs 21.2-beta2 is released. | |
1614 | |
1615 1998-09-08 Raymond Toy <toy@rtp.ericsson.se> | |
1616 | |
1617 * gnuclient.c (filename_expand): Added better recognition of | |
1618 absolute pathnames for CYGWIN. Convert absolute pathnames with | |
1619 drive letters to something xemacs can handle. | |
1620 | |
1621 1998-07-19 SL Baur <steve@altair.xemacs.org> | |
1622 | |
1623 * XEmacs 21.2-beta1 is released. | |
1624 | |
1625 1998-07-15 SL Baur <steve@altair.xemacs.org> | |
1626 | |
1627 * update-elc.sh (ignore_pattern): Add very-early-lisp.el as | |
1628 something to never bytecompile. | |
1629 | |
1630 1998-07-12 SL Baur <steve@altair.xemacs.org> | |
1631 | |
1632 * XEmacs 21.0-pre5 is released. | |
1633 | |
1634 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
1635 | |
1636 * XEmacs 21.0-pre4 is released. | |
1637 | |
1638 1998-06-16 Jan Vroonhof <vroonhof@math.ethz.ch> | |
1639 | |
1640 * gnuclient.c (main): Use disconnect_from_server to read & echo | |
1641 result. | |
1642 | |
1643 1998-06-15 Andy Piper <andyp@parallax.co.uk> | |
1644 | |
1645 * Makefile.in.in: add xemacs icon to the runemacs executable. | |
1646 | |
1647 1998-06-12 Jim Radford <radford@robby.caltech.edu> | |
1648 | |
1649 * gnuclient.c (initialize_signals): Don't pass SIGHUP to XEmacs. | |
1650 | |
1651 1998-06-04 Andy Piper <andyp@parallax.co.uk> | |
1652 | |
1653 * Makefile.in.in (runemacs): add runemacs as a build target if | |
1654 HAVE_MS_WINDOWS is defined. move cpp stuff up slightly so that | |
1655 build targets can benefit from it. | |
1656 | |
1657 1998-05-31 Kirill M. Katsnelson <kkm@kis.ru> | |
1658 | |
1659 * wakeup.c (sleep): Added NT preprocessor quirkfest. | |
1660 (main): Exit when fflush() fails on stdout. | |
1661 | |
1662 1998-05-30 Kirill M. Katsnelson <kkm@kis.ru> | |
1663 | |
1664 * getopt.c: Undefine getpid before redefinition. | |
1665 | |
1666 * make-docfile.c: Added <io.h> when compiling on NT | |
1667 | |
1668 * movemail.c: Ditto. | |
1669 (main): Declare some auto variables only when DISABLE_DIRECT_ACCESS | |
1670 is undefined, so they are actually used, to supress compilation | |
1671 warnings. | |
1672 | |
1673 1998-05-16 SL Baur <steve@altair.xemacs.org> | |
1674 | |
1675 * etags.c (C_entries): Avoid short circuiting comparisons on | |
1676 characters that may appear in C++ operator constructs. | |
1677 | |
1678 * ootags.c (C_entries): Commentary change. | |
1679 | |
1680 * Makefile.in.in (PKG_SCRIPTS): Remove add-little-package.sh. | |
1681 | |
1682 1998-05-11 Martin Buchholz <martin@xemacs.org> | |
1683 | |
1684 * Makefile.in.in: | |
1685 - Adjust for luser's CDPATH being set to something weird. | |
1686 - Take into account bash 2.02's tendency to print the cwd when | |
1687 using CDPATH. Always use `cd ./foo' instead of `cd foo'. | |
1688 - fix the run-temacs target to use $(DUMPENV) | |
1689 - fix the run-puremacs target to use $(DUMPENV) | |
1690 - fix the `depend' target to properly $(RM) the right files | |
1691 - Generate a better TAGS file for XEmacs' lisp code using | |
1692 hand-crafted regexps. | |
1693 - Use standard coding conventions for modules/Makefile.in | |
1694 | |
1695 1998-05-07 Andy Piper <andyp@parallax.co.uk> | |
1696 | |
1697 * update-elc.sh: test x && y loses in the presence of set -e, use | |
1698 if instead. | |
1699 | |
1700 1998-05-06 SL Baur <steve@altair.xemacs.org> | |
1701 | |
1702 * Makefile.in.in (INSTALLABLES): Add ootags. | |
1703 (ootags): New rule. | |
1704 | |
1705 * ootags.c: New file. | |
1706 (C_entries): Annotate changes neeeded for increased OO-Browser | |
1707 context. | |
1708 | |
1709 1998-05-05 Jeff Miller <jmiller@smart.net> | |
1710 | |
1711 * Makefile.in.in: Fix blessmail target. | |
1712 | |
1713 1998-05-05 SL Baur <steve@altair.xemacs.org> | |
1714 | |
1715 * Makefile.in.in (etags_args): Back out -DOO_BROWSER | |
1716 | |
1717 * etags.c: Revert to CVS version 1.11 (pre OO-browser additions). | |
1718 | |
1719 1998-05-04 SL Baur <steve@altair.xemacs.org> | |
1720 | |
1721 * etags.c (C_entries): Fix order typo. | |
1722 (C_entries): Restore previous test. | |
1723 | |
1724 Wed Apr 22 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
1725 | |
1726 * installexe.sh: fix to use -f instead of -e file and fix shift | |
1727 typo. | |
1728 | |
1729 1998-04-22 SL Baur <steve@altair.xemacs.org> | |
1730 | |
1731 * etags.c: Unconditionally define OO_BROWSER. | |
1732 | |
1733 * update-elc.sh: Tighten up regexp on uname -r output. | |
1734 From Marcus Thiessel <thiessel@tmbbwtx.bbn.hp.com> | |
1735 | |
1736 1998-04-19 Jan Vroonhof <vroonhof@math.ethz.ch> | |
1737 | |
1738 * gnuclient.c (main): Read eval from from stdin if just "-batch" | |
1739 is given. | |
1740 * gnudoit: Support this. | |
1741 * gnuserv.1: Document this behavior. | |
1742 | |
1743 1998-04-18 Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
1744 | |
1745 * etags.c (C_entries): Add parentheses. | |
1746 | |
1747 * etags-vmslib.c: Remove. It's not needed anymore. | |
1748 | |
1749 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
1750 | |
1751 * installexe.sh: New file. | |
1752 | |
1753 1998-04-17 Olivier Galibert <galibert@pobox.com> | |
1754 | |
1755 * etags.c (print_help): Correct typo. | |
1756 | |
1757 1998-04-16 SL Baur <steve@altair.xemacs.org> | |
1758 | |
1759 * Makefile.in.in: Add -DOO_BROWSER to etags arguments. | |
1760 | |
1761 * etags.c: Synch with InfoDock. | |
1762 | |
1763 * update-autoloads.sh: Don't attempt to eval `make-special' stuffs | |
1764 anymore. They are no longer used. | |
1765 * update-custom.sh: Always check in lisp/. | |
1766 | |
1767 1998-03-18 Jan Vroonhof <vroonhof@math.ethz.ch> | |
1768 | |
1769 * gnuclient.c (main): Do not copy string unnecessary in (too) | |
1770 small buffers. | |
1771 | |
1772 1998-03-02 SL Baur <steve@altair.xemacs.org> | |
1773 | |
1774 * update-elc.sh: Change all -q -no-site-file to -vanilla | |
1775 | |
1776 1998-02-27 SL Baur <steve@altair.xemacs.org> | |
1777 | |
1778 * update-elc.sh (ignore_pattern): Add Installation.el, remove old | |
1779 stuff from 20.4. | |
1780 | |
1781 Tue Feb 17 12:50:37 1998 Andy Piper <andyp@parallax.co.uk> | |
1782 | |
1783 * lib-src/Makefile.in.in: make sure clean removes msw executables | |
1784 | |
1785 1998-02-24 SL Baur <steve@altair.xemacs.org> | |
1786 | |
1787 * gnuserv.h: Enable USE_TMPDIR. | |
1788 | |
1789 1998-02-23 Glynn Clements <glynn@sensei.co.uk> | |
1790 | |
1791 * gnuclient.c (main): initialise variable `tmpdir' from the TMPDIR | |
1792 environment variable. | |
1793 | |
1794 * gnuserv.c (various): replace hardcoded references to /tmp with | |
1795 the value of `tmpdir'. | |
1796 (main): initialise variable `tmpdir' from the TMPDIR | |
1797 environment variable. | |
1798 | |
1799 * gnuserv.h: include (commented-out) definition of USE_TMPDIR. | |
1800 Add `extern char *tmpdir'. | |
1801 | |
1802 * gnuslib.c (various): replace hardcoded references to /tmp with | |
1803 the value of `tmpdir'. | |
1804 | |
1805 1998-02-15 SL Baur <steve@altair.xemacs.org> | |
1806 | |
1807 * getopt.c (_getopt_internal): Add braces for clarity. | |
1808 | |
1809 1998-01-13 Martin Buchholz <martin@xemacs.org> | |
1810 | |
1811 * lib-src/add-little-package.sh: | |
1812 * lib-src/add-big-package.sh: | |
1813 Use proper paranoid quoting for sh variables. | |
1814 -batch implies -q. | |
1815 | |
1816 Thu Jan 08 09:42:36 1998 <andyp@parallax.co.uk> | |
1817 | |
1818 * gnuserv.h: only set UNIX_DOMAIN_SOCKETS if HAVE_SYS_UN_H is | |
1819 set. | |
1820 | |
1821 * gnuserv.c: tidy up so that it builds when we don't have | |
1822 UNIX_DOMAIN_SOCKETS. | |
1823 | |
1824 1998-01-07 SL Baur <steve@altair.xemacs.org> | |
1825 | |
1826 * update-elc.sh (ignore_pattern): Replace -vanilla with `-q | |
1827 -no-site-file'. | |
1828 * update-autoloads.sh (dirs): Ditto. | |
1829 * update-custom.sh (dirs): Ditto. | |
1830 | |
1831 1997-12-18 SL Baur <steve@altair.xemacs.org> | |
1832 | |
1833 * update-elc.sh (mule_p): Remove skk's special treatment. | |
1834 | |
1835 1997-12-09 SL Baur <steve@altair.xemacs.org> | |
1836 | |
1837 * update-elc.sh (ignore_pattern): Correct paths of files that | |
1838 should not be bytecompiled, and remove dead files. | |
1839 | |
1840 1997-12-02 SL Baur <steve@altair.xemacs.org> | |
1841 | |
1842 * update-elc.sh (mule_p): Update for addition of SKK. | |
1843 | |
1844 * update-autoloads.sh (mule_p): Update ignore_dirs for | |
1845 lisp/language and lisp/skk. | |
1846 * update-custom.sh (mule_p): Ditto. | |
1847 | |
1848 1997-11-29 Jeff Miller <jmiller@smart.net> | |
1849 | |
1850 * Makefile.in.in: Changed path to blessmail.el for blessmail target | |
1851 to match new lisp directory layout. | |
1852 | |
1853 1997-11-27 SL Baur <steve@altair.xemacs.org> | |
1854 | |
1855 * update-elc.sh: Obliterate usage of make_special, since nothing | |
1856 requires it any more. | |
1857 | |
1858 1997-11-23 SL Baur <steve@altair.xemacs.org> | |
1859 | |
1860 * update-elc.sh (BYTECOMP): cleantree.el has been moved. | |
1861 | |
1862 1997-11-18 Colin Rafferty <craffert@ml.com> | |
1863 | |
1864 * update-elc.sh (prune_vc): Made it ignore any directory that | |
1865 starts with a period. | |
1866 | |
1867 1997-11-16 SL Baur <steve@altair.xemacs.org> | |
1868 | |
1869 * gnuserv.c (main): make return type int. | |
1870 Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
1871 | |
1872 * fakemail.c (main): Ditto. | |
1873 | |
1874 1997-11-13 SL Baur <steve@altair.xemacs.org> | |
1875 | |
1876 * pop.c: Add includes from movemail.c so standard functions get | |
1877 declared. | |
1878 (pop_retrieve): Return NULL if falling off the end of the | |
1879 function. | |
1880 | |
1881 * movemail.c: Hide declarations of popmail(), mbx_write(), | |
1882 mbc_delimit_begin(), and mbx_delimit_end() behind MAIL_USE_POP | |
1883 guard. | |
1884 (pop_retr): Change 4th parameter to void *. | |
1885 | |
1886 1997-11-02 SL Baur <steve@altair.xemacs.org> | |
1887 | |
1888 * update-custom.sh (dirs): Remove packaged directories. | |
1889 | |
1890 * update-elc.sh (ignore_pattern): Hyperbole, oobr and ilisp are | |
1891 now packaged. | |
1892 | |
1893 * update-autoloads.sh (mule_p): Hyperbole and oobr are now | |
1894 packaged. | |
1895 | |
1896 1997-10-30 SL Baur <steve@altair.xemacs.org> | |
1897 | |
1898 * update-autoloads.sh (mule_p): EFS has been packaged. | |
1899 * update-elc.sh (make_special_commands): Ditto. | |
1900 | |
1901 * update-elc.sh: VM has been packaged. | |
1902 | |
1903 * update-autoloads.sh: Add directory language | |
1904 | |
1905 1997-10-23 SL Baur <steve@altair.xemacs.org> | |
1906 | |
1907 * update-elc.sh (BYTECOMP): Specify -vanilla | |
1908 * update-autoloads.sh (dirs): Ditto. | |
1909 * update-custom.sh (dirs): Ditto. | |
1910 | |
1911 1997-10-10 Martin Buchholz <mrb@eng.sun.com> | |
1912 | |
1913 * config.values.in: Run config.values.sh | |
1914 | |
1915 1997-10-09 SL Baur <steve@altair.xemacs.org> | |
1916 | |
1917 * Makefile.in.in (PKG_SCRIPTS): Add new package manipulation | |
1918 scripts. | |
1919 | |
1920 * add-little-package.sh: New file. Support script to install | |
1921 single file packages. | |
1922 | |
1923 * Makefile.in.in (distclean): Reverse change -- do not remove | |
1924 config.values.in. | |
1925 Suggested by: Martin Buchholz <mrb@Eng.Sun.COM> | |
1926 | |
1927 1997-10-06 SL Baur <steve@altair.xemacs.org> | |
1928 | |
1929 * Makefile.in.in (distclean): Remove config.values.in. | |
1930 From Martin Buchholz <mrb@Eng.Sun.COM> | |
1931 | |
1932 1997-10-04 SL Baur <steve@altair.xemacs.org> | |
1933 | |
1934 * update-autoloads.sh (mule_p): W3 is a package now. | |
1935 | |
1936 1997-09-30 SL Baur <steve@altair.xemacs.org> | |
1937 | |
1938 * update-elc.sh (ignore_pattern): Don't attempt bytecompiling | |
1939 lisp/leim/quail/tibetan.el and lisp/language/tibet-util.el. | |
1940 | |
1941 1997-09-29 SL Baur <steve@altair.xemacs.org> | |
1942 | |
1943 * update-elc.sh (mule_p): Ignore mu/latex-math-symbol.el if we're | |
1944 not building with Mule. | |
1945 | |
1946 1997-09-27 Hrvoje Niksic <hniksic@srce.hr> | |
1947 | |
1948 * update-custom.sh: New file. | |
1949 | |
1950 * update-autoloads.sh: Minor fixes. | |
1951 | |
1952 1997-08-11 Jeff Miller <jmiller@smart.net> | |
1953 * Makefile.in.in: Added a test for system-type equal to linux to | |
1954 lisp/paths.el. Mail spool dir should be /var/spool/mail. | |
1955 | |
1956 * cleaned up lib-src/Makefile.in.in regarding targets blessmail and | |
1957 maybe-blessmail. Added target do-blessmail. Makefile.in.in was also | |
1958 missing a variable called "configuration. This messed up archilibdir. | |
1959 | |
1960 * Added highlighting to text suggesting to do "make gzip-el" in top | |
1961 level Makefile.in. Added code to do make maybe-blessmail after a | |
1962 make install is done. | |
1963 | |
1964 1997-08-07 Jan Vroonhof <vroonhof@math.ethz.ch> | |
1965 | |
1966 * gnuclient.c (main): Made help string correspond to options. | |
1967 | |
1968 1997-08-01 SL Baur <steve@altair.xemacs.org> | |
1969 | |
1970 * Makefile.in.in (distclean): Remove config.values here only. | |
1971 | |
1972 1997-07-27 SL Baur <steve@altair.xemacs.org> | |
1973 | |
1974 * Makefile.in.in (UTILITIES): Add config.values so it can be | |
1975 cleared away by `make distclean'. | |
1976 | |
1977 1997-07-21 SL Baur <steve@altair.xemacs.org> | |
1978 | |
1979 * update-elc.sh (make_special_commands): Remove processing for | |
1980 Gnus and AUCTeX. | |
1981 | |
1982 1997-07-19 SL Baur <steve@altair.xemacs.org> | |
1983 | |
1984 * update-elc.sh (mule_p): Do not attempt to bytecompile | |
1985 char-table.el and chartblxmas.el. | |
1986 | |
1987 1997-07-08 Steven L Baur <steve@altair.xemacs.org> | |
1988 | |
1989 * update-elc.sh (cc-mode): Don't give cc-mode special treatment. | |
1990 | |
1991 * update-autoloads.sh (cc-mode): Don't give cc-mode special | |
1992 treatment. | |
1993 | |
1994 * rcs2log: Synch with Emacs/Mule zeta. | |
1995 | |
1996 1997-07-03 Steven L Baur <steve@altair.xemacs.org> | |
1997 | |
1998 * update-elc.sh (make_special_commands): Fix building of ilisp so | |
1999 custom-load.elc gets built. | |
2000 | |
2001 1997-06-27 Steven L Baur <steve@altair.xemacs.org> | |
2002 | |
2003 * update-autoloads.sh: Major rework. Avoid looking at MULE | |
2004 directories if not running XEmacs/Mule. | |
2005 - Look into all Mule directories for building autoloads. | |
2006 | |
2007 * update-elc.sh (make_special_commands): Fix handling of | |
2008 bytecompilation of AUCTeX to avoid looking at tex-jp.el if not | |
2009 running MULE. | |
2010 | |
2011 1997-06-24 Steven L Baur <steve@altair.xemacs.org> | |
2012 | |
2013 * gnuattach: Needed executable bit set. | |
2014 Suggested by Kyle Jones <kyle_jones@wonderworks.com> | |
2015 | |
2016 * update-elc.sh (ignore_pattern): lisp/language/ethiopic byte | |
2017 compiles now. | |
2018 | |
2019 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
2020 | |
2021 * update-autoloads.sh: Search lisp/mule/. | |
2022 | |
2023 1997-06-20 Steven L Baur <steve@altair.xemacs.org> | |
2024 | |
2025 * gnuattach: Readd as warning script. | |
2026 | |
2027 * Makefile.in.in (INSTALLABLE_SCRIPTS): Readd Gnuattach. | |
2028 From Hrvoje Niksic <hniksic@srce.hr> | |
2029 | |
2030 1997-06-13 Steven L Baur <steve@altair.xemacs.org> | |
2031 | |
2032 * update-elc.sh (mule_p): Ignore lisp/language when building | |
2033 non-Mule. | |
2034 (ignore_pattern): Ignore Languages we don't support yet. | |
2035 | |
2036 1997-06-02 Steven L Baur <steve@altair.xemacs.org> | |
2037 | |
2038 * update-elc.sh (ignore_dirs): Handle ported Quail (LEIM). | |
2039 | |
2040 Tue May 20 23:22:00 1997 Steven L Baur <steve@altair.xemacs.org> | |
2041 | |
2042 * update-autoloads.sh (dirs): Remove obsolete directory lisp/vms | |
2043 from exclusion list (it doesn't exist any more). Remove | |
2044 lisp/eterm from exclusion list of directories searched for | |
2045 autoloads. | |
2046 | |
2047 Thu May 1 15:26:20 1997 Steven L Baur <steve@altair.xemacs.org> | |
2048 | |
2049 * update-elc.sh (mule_p): Test for mule bombs with change in format | |
2050 of new output of featurep. | |
2051 | |
2052 Fri Apr 25 09:12:04 1997 Steven L Baur <steve@altair.xemacs.org> | |
2053 | |
2054 * pstogif: Use Martin Buchholz magic to automagically find perl | |
2055 interpreter. | |
2056 | |
2057 Tue Apr 8 03:08:22 1997 Steven L Baur <steve@altair.xemacs.org> | |
2058 | |
2059 * Makefile.in.in: C Comment out Make comments. No snide comments | |
2060 from me, no sir. | |
2061 | |
2062 Tue Apr 1 12:26:53 1997 Steven L Baur <steve@altair.xemacs.org> | |
2063 | |
2064 * Makefile.in.in: Added stuff for updated movemail.c. | |
2065 | |
2066 Sat Mar 29 16:57:01 1997 Steven L Baur <steve@altair.xemacs.org> | |
2067 | |
2068 * send-pr (GNATS_ADDR): Use xemacs.org as submission address. | |
2069 (DATADIR): Allow for DATADIR to be passed in as an environment | |
2070 variable. | |
2071 | |
2072 Sun Mar 23 15:57:19 1997 Steven L Baur <steve@altair.xemacs.org> | |
2073 | |
2074 * update-elc.sh (make_special_commands): Use target of x20 for efs. | |
2075 | |
2076 Wed Mar 19 10:38:04 1997 Steven L Baur <steve@altair.xemacs.org> | |
2077 | |
2078 * Makefile.in.in (SCRIPTS): Link gzip-el.sh in --srcdir | |
2079 configuration. | |
2080 | |
2081 Tue Mar 18 17:49:14 1997 Steven L Baur <steve@altair.xemacs.org> | |
2082 | |
2083 * update-elc.sh (EMACS): Removed $XEMACS backdoor. We will make | |
2084 the .elcs *only* with the freshly built XEmacs. | |
2085 | |
2086 Mon Mar 17 10:12:03 1997 Steven L Baur <steve@altair.xemacs.org> | |
2087 | |
2088 * Makefile.in.in (INSTALLABLE_SCRIPTS): Add install-sid and | |
2089 send-pr (from GNATS). | |
2090 | |
2091 * update-elc.sh (prune_vc): Use full path to cleantree.el. | |
2092 (NUMTOCOMPILE): Remove useless rule to recompile out-of-date .elcs. | |
2093 | |
2094 Sun Mar 16 21:13:29 1997 Steven L Baur <steve@altair.xemacs.org> | |
2095 | |
2096 * install-sid: New file (GNATS integration). | |
2097 | |
2098 * send-pr: New file (GNATS integration). | |
2099 | |
2100 Fri Mar 14 17:59:57 1997 Steven L Baur <steve@altair.xemacs.org> | |
2101 | |
2102 * update-elc.sh (ignore_dirs): Build VM with `make autoload'. | |
2103 | |
2104 Wed Mar 5 18:07:57 1997 Steven L Baur <steve@altair.xemacs.org> | |
2105 | |
2106 * gzip-el.sh: New file. Courtesy of Jeff Miller and Hrvoje Niksic. | |
2107 | |
2108 * update-elc.sh (els): Remove out of date .elcs before building. | |
2109 | |
2110 Tue Mar 4 18:45:10 1997 Martin Buchholz <mrb@eng.sun.com> | |
2111 | |
2112 * update-elc.sh (els): No more special treatment for vm.elc. | |
2113 | |
2114 Wed Feb 26 18:17:59 1997 Steven L Baur <steve@altair.xemacs.org> | |
2115 | |
2116 * make-docfile.c (next_extra_elc): New function. | |
2117 (main): Use it. Implementation of `-i' parameter to pass a list | |
2118 of site-loaded lisp files. | |
2119 | |
2120 Wed Feb 19 18:24:49 1997 Steven L Baur <steve@altair.xemacs.org> | |
2121 | |
2122 * update-elc.sh: Added lisp/auctex. | |
2123 | |
2124 Thu Feb 13 11:32:47 1997 Steven L Baur <steve@altair.xemacs.org> | |
2125 | |
2126 * Makefile.in.in: Install pstogif script. | |
2127 | |
2128 Sun Dec 29 17:16:45 1996 Martin Buchholz <mrb@eng.sun.com> | |
2129 | |
2130 * update-elc.sh (make_special_commands): Make ilisp be a little | |
2131 smarter about recompilation. | |
2132 | |
2133 Wed Dec 18 20:22:55 1996 Martin Buchholz <mrb@eng.sun.com> | |
2134 | |
2135 * mmencode.c: Don't declare index(). | |
2136 | |
2137 * Makefile.in.in: Documentation changes. | |
2138 | |
2139 * update-elc.sh: Portability Fix. | |
2140 | |
2141 Thu Dec 5 15:41:53 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
2142 | |
2143 * update-elc.sh: Corrections to protect against too smart /bin/sh'es. | |
2144 |