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