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