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