Mercurial > hg > xemacs-beta
annotate etc/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 | ea7a6c12df45 |
children | 29fb3baea939 |
rev | line source |
---|---|
4798
ea7a6c12df45
Change /usr/lib/X11 paths to /usr/share/X11. See xemacs-patches message with
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
1 2010-01-04 Jerry James <james@xemacs.org> |
ea7a6c12df45
Change /usr/lib/X11 paths to /usr/share/X11. See xemacs-patches message with
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
2 |
ea7a6c12df45
Change /usr/lib/X11 paths to /usr/share/X11. See xemacs-patches message with
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
3 * Emacs.ad: Change /usr/lib/X11 to /usr/share/X11. |
ea7a6c12df45
Change /usr/lib/X11 paths to /usr/share/X11. See xemacs-patches message with
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
4 * xemacs.1: Ditto. |
ea7a6c12df45
Change /usr/lib/X11 paths to /usr/share/X11. See xemacs-patches message with
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
5 |
4782
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
6 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:
4771
diff
changeset
|
7 |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
8 * idd/drop: Remove. |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
9 * idd/dropmsk: Remove. |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
10 |
4771
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4763
diff
changeset
|
11 2009-12-10 Jerry James <james@xemacs.org> |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4763
diff
changeset
|
12 |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4763
diff
changeset
|
13 * sparcworks/SW.Editor.xpm: Remove obsolete file. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4763
diff
changeset
|
14 * sparcworks/sunpro-mailcap: Ditto. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4763
diff
changeset
|
15 * sparcworks: Remove empty directory. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4763
diff
changeset
|
16 |
4763
1de041b8edf7
Add copyright and license information to files authored by Jan Vroonhof.
Jerry James <james@xemacs.org>
parents:
4643
diff
changeset
|
17 2009-12-03 Jerry James <james@xemacs.org> |
1de041b8edf7
Add copyright and license information to files authored by Jan Vroonhof.
Jerry James <james@xemacs.org>
parents:
4643
diff
changeset
|
18 |
1de041b8edf7
Add copyright and license information to files authored by Jan Vroonhof.
Jerry James <james@xemacs.org>
parents:
4643
diff
changeset
|
19 * custom/example-themes/europe-theme.el: |
1de041b8edf7
Add copyright and license information to files authored by Jan Vroonhof.
Jerry James <james@xemacs.org>
parents:
4643
diff
changeset
|
20 * custom/example-themes/example-theme.el: Add copyright and GPL |
1de041b8edf7
Add copyright and license information to files authored by Jan Vroonhof.
Jerry James <james@xemacs.org>
parents:
4643
diff
changeset
|
21 notices as authorized by Jan Vroonhof. |
1de041b8edf7
Add copyright and license information to files authored by Jan Vroonhof.
Jerry James <james@xemacs.org>
parents:
4643
diff
changeset
|
22 |
4643
e9ccbc62f7e7
Don't rely on GDB understanding the Lisp_Type_{Record,Char} enums, gdbinit.in
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
23 2009-06-14 Aidan Kehoe <kehoea@parhasard.net> |
e9ccbc62f7e7
Don't rely on GDB understanding the Lisp_Type_{Record,Char} enums, gdbinit.in
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
24 |
e9ccbc62f7e7
Don't rely on GDB understanding the Lisp_Type_{Record,Char} enums, gdbinit.in
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
25 * gdbinit.in: |
e9ccbc62f7e7
Don't rely on GDB understanding the Lisp_Type_{Record,Char} enums, gdbinit.in
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
26 Supply variables for the Lisp_Type_Record, Lisp_Type_Char |
e9ccbc62f7e7
Don't rely on GDB understanding the Lisp_Type_{Record,Char} enums, gdbinit.in
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
27 type information, for the sake of various versions of GDB that |
e9ccbc62f7e7
Don't rely on GDB understanding the Lisp_Type_{Record,Char} enums, gdbinit.in
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
28 can't take them from the enum vals in the executable. Use those |
e9ccbc62f7e7
Don't rely on GDB understanding the Lisp_Type_{Record,Char} enums, gdbinit.in
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
29 variables instead of the enums. |
e9ccbc62f7e7
Don't rely on GDB understanding the Lisp_Type_{Record,Char} enums, gdbinit.in
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
30 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4495
diff
changeset
|
31 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4495
diff
changeset
|
32 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4495
diff
changeset
|
33 * XEmacs 21.5.29 "garbanzo" is released. |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4495
diff
changeset
|
34 |
4495
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4491
diff
changeset
|
35 2008-08-10 Aidan Kehoe <kehoea@parhasard.net> |
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4491
diff
changeset
|
36 |
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4491
diff
changeset
|
37 * HELLO: Add a coding cookie, now the UTF-8 sequences prevent the |
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4491
diff
changeset
|
38 file being recognised as ISO-2022-7 automatically. |
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4491
diff
changeset
|
39 |
4491
d402d7b18bd8
Revamp the Arabic support. Create greek-iso-8bit-with-esc, arabic-iso-8bit-with-esc.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4429
diff
changeset
|
40 2008-08-05 Aidan Kehoe <kehoea@parhasard.net> |
d402d7b18bd8
Revamp the Arabic support. Create greek-iso-8bit-with-esc, arabic-iso-8bit-with-esc.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4429
diff
changeset
|
41 |
d402d7b18bd8
Revamp the Arabic support. Create greek-iso-8bit-with-esc, arabic-iso-8bit-with-esc.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4429
diff
changeset
|
42 * HELLO: Encode the Arabic using UTF-8 sequences, not ISO-8859-6. |
d402d7b18bd8
Revamp the Arabic support. Create greek-iso-8bit-with-esc, arabic-iso-8bit-with-esc.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4429
diff
changeset
|
43 |
4429
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
44 2008-02-21 Stephen J. Turnbull <stephen@xemacs.org> |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
45 |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
46 * README: Add descriptions of Daniel Polansky's icons. |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
47 |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
48 2008-02-21 Daniel Polansky <danielpolansky@gmail.com> |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
49 |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
50 Two images for one icon for XEmacs, one 16x16 and 32x32. |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
51 Also, a Microsoft Windows icon file is attached. |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
52 Itemized: |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
53 - 16x16 icon in PNG |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
54 - 32x32 icon in PNG |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
55 - Both bundled as a Microsoft Windows icon. |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
56 |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
57 The images are modeled on XEmacs violet logotype, as found at |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
58 http://www.xemacs.org/. The images are copyright (c) 2005 by |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
59 Daniel Polansky, and licensed under GNU General Public Licence V2 |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
60 or later at your option. |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
61 |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
62 * xemacs-X-16.png: |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
63 * xemacs-X-32.png: |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
64 * xemacs-X.ico: |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
65 New files. |
a883e09e54f7
Add Dan Polansky's icons. <87ejayxrsm.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4428
diff
changeset
|
66 |
4428
a2954f0b7507
Improve etc/README.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
67 2008-02-20 Stephen J. Turnbull <stephen@xemacs.org> |
a2954f0b7507
Improve etc/README.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
68 |
a2954f0b7507
Improve etc/README.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
69 * README: Give more accurate descriptions of image files. |
a2954f0b7507
Improve etc/README.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
70 |
4361
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
71 2007-12-26 Stephen J. Turnbull <stephen@xemacs.org> |
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
72 |
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
73 * bundled-packages/README: Document restriction on --with-late-packages. |
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
74 |
4354
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4282
diff
changeset
|
75 2007-12-23 Stephen J. Turnbull <stephen@xemacs.org> |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4282
diff
changeset
|
76 |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4282
diff
changeset
|
77 * bundled-packages/README: Documentation for bundled packages. |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4282
diff
changeset
|
78 * bundled-packages/test.sh: Test suite for bundled packages. |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4282
diff
changeset
|
79 |
4282 | 80 2007-11-22 Vin Shelton <acs@xemacs.org> |
81 | |
82 * photos/vin.png: | |
83 * photos/vinm.png: Updated. | |
84 | |
4204 | 85 2004-12-03 Shyamal Prasad <shyamal@member.fsf.org> |
86 | |
87 * xemacs.1: Now describe $HOME/.xemacs/init.el as the | |
88 preferred init file. Fixed excessive space insertion | |
89 in the description of the '-vanilla' option | |
90 | |
4176 | 91 2007-09-19 Didier Verna <didier@lrde.epita.fr> |
92 | |
93 * photos/dv.png: Remove. | |
94 * photos/didier.png: Add. | |
95 | |
4084 | 96 2007-07-28 Aidan Kehoe <kehoea@parhasard.net> |
97 | |
98 * unicode/unicode-consortium/BIG5.TXT: | |
99 Don't map any characters to U+FFFD; for round trip compatibility, | |
100 map those that were mapped to U+FFFD to the Unicode private use | |
101 area. | |
102 | |
3975 | 103 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
104 | |
105 * XEmacs 21.5.28 "fuki" is released. | |
106 | |
3934 | 107 2007-05-01 Stephen J. Turnbull <stephen@xemacs.org> |
108 | |
109 * gdbinit.in (pobj): Nuke fc_fontset and fc_objectset, add fc_config. | |
110 | |
3876 | 111 2007-03-24 Stephen J. Turnbull <stephen@xemacs.org> |
112 | |
113 * ETAGS.EBNF: Sync to pot_etags_version 17.19. | |
114 * etags.1: Sync to pot_etags_version 17.19. | |
115 * ChangeLog.etags: New. Copy of upstream ChangeLog. | |
116 | |
3803 | 117 2007-01-28 Stephen J. Turnbull <stephen@xemacs.org> |
118 | |
119 Thanks to Mike Fabian <mfabian@suse.de> for bringing the issue | |
120 to my attention. | |
121 | |
122 * unicode/unicode-consortium/COPYING: | |
123 * unicode/unicode-consortium/oreilly.html | |
124 * unicode/unicode-consortium/unicode-consortium.html | |
125 New files clarifying copying conditions for mapping tables. | |
126 | |
127 * unicode/unicode-consortium/GB12345.TXT | |
128 * unicode/unicode-consortium/BIG5.TXT | |
129 * unicode/unicode-consortium/CNS11643.TXT | |
130 * unicode/unicode-consortium/HANGUL.TXT | |
131 * unicode/unicode-consortium/JIS0201.TXT | |
132 * unicode/unicode-consortium/JIS0208.TXT | |
133 * unicode/unicode-consortium/JIS0212.TXT | |
134 * unicode/unicode-consortium/JOHAB.TXT | |
135 * unicode/unicode-consortium/KSC5601.TXT | |
136 * unicode/unicode-consortium/KSX1001.TXT | |
137 * unicode/unicode-consortium/OLD5601.TXT | |
138 * unicode/unicode-consortium/SHIFTJIS.TXT | |
139 Mapping tables downloaded from a Unicode, Inc. URL with | |
140 permissive conditions. | |
141 | |
3767 | 142 2006-12-21 Aidan Kehoe <kehoea@parhasard.net> |
143 | |
144 * unicode/unicode-consortium/8859-7.TXT: | |
4176 | 145 Update the mapping to the 2003 version of ISO 8859-7. |
3767 | 146 |
3674 | 147 2006-11-11 Aidan Kehoe <kehoea@parhasard.net> |
148 | |
149 * NEWS: | |
150 Add information on set-charset-registries, and the change to | |
4176 | 151 define-specifier-tag. |
152 | |
3649 | 153 2006-10-08 Adrian Aichner <adrian@xemacs.org> |
154 | |
155 * TUTORIAL.de: Small rephrasing as suggested by hroptatyr on | |
156 #xemacs. | |
157 | |
3517 | 158 2006-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
159 | |
160 * etags.1: Sync to pot_etags_version 17.19. | |
161 Thanks to Morgon Kanter <morgon@surgo.net>. | |
162 | |
3418 | 163 2006-05-23 Stephen J. Turnbull <stephen@xemacs.org> |
164 | |
165 * gdbinit.in: | |
166 * dbxrc.in: | |
167 Moved from src/. Update FSF address. Improve comments. | |
168 | |
169 * gdbinit.in: Use XCOMM for "don't edit" comment and copyright. | |
170 | |
3402 | 171 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
172 | |
173 * XEmacs 21.5.27 "fiddleheads" is released. | |
174 | |
3323 | 175 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
176 | |
177 * XEmacs 21.5.26 "endive" is released. | |
178 | |
3259 | 179 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
180 | |
181 * XEmacs 21.5.25 "eggplant" is released. | |
182 | |
3150 | 183 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
184 | |
185 * XEmacs 21.5.24 "dandelion" is released. | |
186 | |
3133 | 187 2005-12-10 Malcolm Purvis <malcolmp@xemacs.org> |
188 | |
189 * photos/purvis.png, photos/purvism.png: Updated. | |
190 | |
3077 | 191 2005-11-18 Aidan Kehoe <kehoea@parhasard.net> |
192 | |
193 * HELLO: Add Irish, Tajik. Don't give the local name for the | |
194 latter language, because we don't support CYRILLIC SMALL LETTER | |
195 CHE WITH DESCENDER nor CYRILLIC SMALL LETTER I WITH MACRON by | |
4176 | 196 default. |
3077 | 197 |
3074 | 198 2005-11-16 Malcolm Purvis <malcolmp@xemacs.org> |
199 | |
200 * .cvsignore: New | |
201 | |
3031 | 202 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
203 | |
204 * XEmacs 21.5.23 "daikon" is released. | |
205 | |
2938 | 206 2005-09-17 Malcolm Purvis <malcolmp@xemacs.org> |
207 | |
208 * configure-2.13: Remove. autoconf 2.59 support is stable. | |
209 | |
2931 | 210 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
211 | |
212 * XEmacs 21.5.22 "cucumber" is released. | |
213 | |
2862 | 214 2005-07-17 Aidan Kehoe <kehoea@parhasard.net> |
215 | |
216 * NEWS: Add information on the last argument to event-to-character | |
4176 | 217 being ignored. |
2862 | 218 |
2791 | 219 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
220 | |
221 * XEmacs 21.5.21 "corn" is released. | |
222 | |
2757 | 223 2005-05-05 Aidan Kehoe <kehoea@parhasard.net> |
224 | |
225 * NEWS: reseource -> resources (spelling fix.) | |
226 | |
2681 | 227 2005-03-24 Aidan Kehoe <kehoea@parhasard.net> |
228 | |
4176 | 229 * NEWS: Mention the move to XEmacs as the application class. |
2681 | 230 * sample.Xresources: Emacs as app class -> XEmacs as app class |
231 | |
2679 | 232 2005-03-23 Adrian Aichner <adrian@xemacs.org> |
233 | |
234 * TUTORIAL: Typo fixes from Jon Ericson. | |
235 | |
2653 | 236 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
237 | |
238 * XEmacs 21.5.20 "cilantro" is released. | |
239 | |
2651 | 240 2005-03-11 Malcolm Purvis <malcolmp@xemacs.org> |
241 | |
242 * configure-2.13: Added a copy of the old configure script in case | |
243 of major problems. | |
244 | |
2594 | 245 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
246 | |
247 * XEmacs 21.5.19 "chives" is released. | |
248 | |
2554 | 249 2005-02-03 Jerry James <james@xemacs.org> |
250 | |
251 * ETAGS.EBNF: Update to author version 17.11. | |
252 | |
2537 | 253 2005-01-31 Ben Wing <ben@xemacs.org> |
254 | |
255 Delete stuff that is irrelevant, mislocated or woefully out-of-date. | |
256 | |
257 * GNU: Delete. | |
258 * SERVICE: Delete. | |
259 * ORDERS, ORDERS.EUROPE, ORDERS.JAPAN: Delete. | |
260 * CHARSETS, CODINGS: Delete. | |
261 * DEBUG, LPF, MORE.STUFF, MOTIVATION: Delete. | |
262 * aliases.ksh: Delete. (moved to xemacs-builds/steve) | |
263 * README.HYPERBOLE, README.OO-BROWSER: Delete. | |
264 * chr.png, chrm.png: Move to photos/. | |
265 * check_cygwin_setup.sh: Delete. | |
266 * gnu.xpm, gnu.xbm, sink.xbm: Delete. | |
267 * ms-kermit, ms-kermit-7bit: Delete. | |
268 * TERMS: Delete. | |
269 | |
270 * DISTRIB, FTP, MACHINES, MAILINGLISTS, PACKAGES: | |
271 Delete and move to FAQ. | |
272 | |
273 * BETA: | |
274 Delete and move to man/beta.texi. | |
275 | |
276 * README: Update. | |
277 | |
2513 | 278 2004-11-13 Ben Wing <ben@xemacs.org> |
279 | |
280 * CODING-STANDARDS: Delete and incorporate into Internals manual. | |
281 | |
2437 | 282 2004-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
283 | |
284 * gnuserv.1: Various fixes and improvements. | |
285 * gnuserv.README: Strengthen self-deprecation. | |
286 | |
287 2004-11-22 Adrian Aichner <adrian@xemacs.org> | |
288 | |
289 * TUTORIAL: Typo fixes, courtesy of Andreas Eder | |
290 <Andreas.Eder@gmx.net>. | |
291 | |
2374 | 292 2004-11-07 Malcolm Purvis <malcolmp@xemacs.org> |
293 | |
294 * photos/purvis.png, photos/purvism.png: New files. | |
295 | |
2367 | 296 2004-10-26 Ben Wing <ben@xemacs.org> |
297 | |
298 * BETA: | |
299 * BETA (writing): Removed. | |
300 * BETA (--error-checking): New. | |
301 * BETA (--compiler): New. | |
302 * BETA (--xemacs-compiler): New. | |
303 * BETA (--package-path): New. | |
304 * BETA (--srcdir): New. | |
305 * BETA (--site-prefixes): New. | |
306 * BETA (Mail): | |
307 Rewrite section on configure to indicate what flags are important | |
308 and what not. | |
309 | |
2346 | 310 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
311 | |
312 * XEmacs 21.5.18 "chestnut" is released. | |
313 | |
2325 | 314 2004-10-07 Jerry James <james@xemacs.org> |
315 | |
316 * ETAGS.EBNF: | |
317 * etags.1: | |
318 Update to author version 17.6. | |
319 | |
2291 | 320 2004-04-19 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> |
321 | |
322 * NEWS (Introduction): Rewording. | |
323 (Changes in XEmacs 21.5): New section. | |
324 | |
2225 | 325 2004-08-10 Jerry James <james@xemacs.org> |
326 | |
327 * ETAGS.EBNF: New file. Describes the syntax of an ETAGS file. | |
328 | |
2208 | 329 2004-08-10 Jerry James <james@xemacs.org> |
330 | |
331 * SERVICE: Update to latest version from www.gnu.org. | |
332 | |
2082 | 333 2004-05-15 Malcolm Purvis <malcolmp@xemacs.org> |
334 | |
335 * etc/gtkrc: New file. This is the GTK equivalent of the app-default | |
336 file. | |
337 | |
1973 | 338 2004-03-30 Norbert Koch <viteno@xemacs.org> |
339 | |
340 * PACKAGES: Introduce new packages escreen, xlib, and xwem. | |
341 | |
1964 | 342 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
343 | |
344 * XEmacs 21.5.17 "chayote" is released. | |
345 | |
1959 | 346 2004-03-20 Adrian Aichner <adrian@xemacs.org> |
347 | |
348 * sample.init.el: Typo and copycat fix. | |
349 | |
1809 | 350 2003-11-28 Norbert Koch <viteno@xemacs.org> |
351 | |
352 * PACKAGES (erc): new. | |
353 | |
1796 | 354 2003-11-18 Norbert Koch <viteno@xemacs.org> |
355 | |
356 * PACKAGES (MH-E): Update the MH-E package information string. | |
357 | |
1764 | 358 2003-10-25 Norbert Koch <viteno@xemacs.org> |
359 | |
360 * PACKAGES (riece): New package. | |
361 * PACKAGES (liece): Mark as deprecated. | |
362 | |
1731 | 363 2003-10-02 Steve Youngs <youngs@xemacs.org> |
364 | |
365 * youngs.png, youngsm.png: Removed. | |
366 | |
1716 | 367 2003-09-26 Steve Youngs <youngs@xemacs.org> |
368 | |
369 * XEmacs 21.5.16 "celeriac" is released. | |
370 | |
1665 | 371 2003-09-03 Steve Youngs <youngs@xemacs.org> |
372 | |
373 * XEmacs 21.5.15 "celery" is released. | |
374 | |
1648 | 375 2003-08-28 Steve Youngs <youngs@xemacs.org> |
376 | |
377 * PACKAGES: Update. | |
378 | |
1614 | 379 2003-08-04 Norbert Koch <viteno@xemacs.org> |
380 Stephen J. Turnbull <stephen@xemacs.org> | |
381 | |
382 * PACKAGES: Sync with package-tree contents. Style conformance. | |
383 | |
1557 | 384 2003-07-03 Stephen J. Turnbull <stephen@xemacs.org> |
385 | |
4176 | 386 * etc/README.HYPERBOLE: |
1557 | 387 * etc/README.OO-BROWSER: |
388 Update. | |
389 | |
1547 | 390 2003-05-23 Stephen J. Turnbull <stephen@xemacs.org> |
391 | |
392 * etc/sample.Xresources (menubar and popup fonts): Use X Font Sets. | |
393 | |
1544 | 394 2003-06-29 Norbert Koch <viteno@xemacs.org> |
395 | |
396 * package-index.LATEST.gpg: Official package release. | |
397 | |
1510 | 398 2003-06-01 Steve Youngs <youngs@xemacs.org> |
399 | |
400 * XEmacs 21.5.14 "cassava" is released. | |
401 | |
1504 | 402 2003-05-24 Norbert Koch <viteno@xemacs.org> |
403 | |
404 * package-index.LATEST.gpg: Official package release. | |
405 | |
1473 | 406 2003-05-10 Steve Youngs <youngs@xemacs.org> |
407 | |
408 * XEmacs 21.5.13 "cauliflower" is released. | |
409 | |
1448 | 410 2003-05-03 Steve Youngs <youngs@xemacs.org> |
411 | |
412 * package-index.LATEST.gpg: Updated to current reality. | |
413 | |
414 * package-index.LATEST.pgp: Removed, 21.5 uses | |
4176 | 415 'package-index.LATEST.gpg'. |
1448 | 416 |
1431 | 417 2003-04-24 Steve Youngs <youngs@xemacs.org> |
418 | |
419 * XEmacs 21.5.12 "carrot" is released. | |
420 | |
1389 | 421 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org> |
422 | |
423 * Emacs.ad: Global substition of .Xresources for .Xdefaults. | |
424 * sample.Xresources: Replaces sample.Xdefaults. | |
425 * sample.Xdefaults: Replace contents with pointer to | |
426 sample.Xresources. | |
427 * README: Change name of sample.Xdefaults to sample.Xresources. | |
428 Substitute 21.4 for 21.2. | |
429 | |
1335 | 430 2003-03-03 Ville Skyttä <scop@xemacs.org> |
431 | |
432 * BETA (New packages): Introduce Norbert Koch. | |
433 | |
1307 | 434 2003-02-16 Steve Youngs <youngs@xemacs.org> |
435 | |
436 * XEmacs 21.5.11 "cabbage" is released. | |
437 | |
1301 | 438 2003-02-13 Chris Palmer <chris@nodewarrior.org> |
439 | |
440 * BETA: Fixed typos and made consistent use of <...> for Internet | |
441 addresses. | |
442 | |
1290 | 443 2003-02-12 Jerry James <james@xemacs.org> |
444 | |
445 * photos/james.png, photos/jamesm.png: New files. | |
446 | |
1255 | 447 2003-02-04 Steve Youngs <youngs@xemacs.org> |
448 | |
449 * BETA: '-no-autoloads' implies '-vanilla' so suggest people | |
450 invoke 'xemacs -no-autoloads' when trying to reproduce a bug. | |
451 | |
1250 | 452 2003-02-03 Steve Youngs <youngs@xemacs.org> |
453 | |
454 * BETA: Update. General tidy up and rewrite sections dealing with | |
455 packages and building from scratch. | |
456 | |
1187 | 457 2003-01-04 Steve Youngs <youngs@xemacs.org> |
458 | |
459 * XEmacs 21.5.10 "burdock" is released. | |
460 | |
1099 | 461 2002-11-11 Stephen J. Turnbull <steve@tleepslib.sk.tsukuba.ac.jp> |
462 | |
463 * etc/Emacs.ad (Emacs.bold-italic.attributeFont): Per G. Boffi. | |
464 | |
465 2002-11-04 giacomo boffi <giacomo.boffi@polimi.it> | |
466 | |
467 * sample.Xdefaults (Emacs.default.attributeForeground): Add an | |
468 example of setting the default bold-italic face. | |
469 | |
470 2002-10-30 Katsumi Yamaoka <yamaoka@jpl.org> | |
471 | |
472 * etc/TUTORIAL.ja: Typo fix. | |
473 | |
1071 | 474 2002-10-25 Steve Youngs <youngs@xemacs.org> |
475 | |
476 * TUTORIAL.fr (suivante): Typo fix. | |
477 From juergen stuber <stuberj@mines.inpl-nancy.fr>. | |
478 | |
1099 | 479 2002-10-09 Stephen J. Turnbull <stephen@xemacs.org> |
480 | |
481 * etc/BETA: Improve descriptions of XEmacs Patches; mention Design. | |
482 | |
1042 | 483 2002-09-27 Stephen J. Turnbull <stephen@xemacs.org> |
484 | |
485 * Emacs.ad: Add charsets to *menubar*FontSet and *popup*FontSet. | |
486 | |
984 | 487 2002-08-31 Ville Skyttä <ville.skytta@xemacs.org> |
488 | |
489 * Emacs.ad: Add *menubar*FontSet and *popup*FontSet entries, | |
490 (self-)obtained from Red Hat. | |
491 | |
981 | 492 2002-08-30 Steve Youngs <youngs@xemacs.org> |
493 | |
494 * XEmacs 21.5.9 "brussels sprouts" is released. | |
495 | |
933 | 496 2002-07-27 Steve Youngs <youngs@xemacs.org> |
497 | |
498 * XEmacs 21.5.8 "broccoli" is released. | |
499 | |
929 | 500 2002-07-21 Steve Youngs <youngs@xemacs.org> |
501 | |
502 * package-index.LATEST.pgp: Update. | |
503 | |
504 * package-index.LATEST.gpg: Ditto. | |
505 | |
920 | 506 2002-07-14 Adrian Aichner <adrian@xemacs.org> |
507 | |
508 * xemacs-icon.xpm: It's XEmacs, not Xemacs. | |
509 | |
1099 | 510 2002-07-12 Stephen J. Turnbull <stephen@xemacs.org> |
511 | |
512 * etc/BETA (Large contributions): New section. Reorganize file. | |
513 | |
894 | 514 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
515 | |
516 * XEmacs 21.5.7 "broccoflower" is released. | |
517 | |
853 | 518 2001-03-30 Ben Wing <ben@xemacs.org> |
519 | |
520 * sample.init.el: | |
521 * sample.init.el (Init-kill-entire-line): | |
522 * sample.init.el (describe-foo-at-point): | |
523 * sample.init.el (kill-current-buffer): | |
524 * sample.init.el (kill-current-buffer-and-window): | |
525 * sample.init.el (grep-c-files): Removed. | |
526 * sample.init.el (grep-all-files-history): New. | |
527 * sample.init.el (grep-all-files-omitted-expressions): New. | |
528 * sample.init.el (grep-all-files-omitted-directories): New. | |
529 * sample.init.el (construct-grep-all-files-command): New. | |
530 * sample.init.el (grep-all-files-in-current-directory): New. | |
531 * sample.init.el (grep-lisp-files): Removed. | |
532 * sample.init.el (grep-all-files-in-current-directory-and-below): New. | |
533 * sample.init.el (clear-select): | |
534 * sample.init.el ((control kp-add)): | |
535 * sample.init.el (pause): | |
536 * sample.init.el ((eq system-type 'windows-nt)): | |
537 | |
538 Add documentation for defined functions. Change grep functions to | |
539 be more generally useful. Document more specifically what the | |
540 `menu-force' setting actually does -- what commands are overridden | |
541 and how to access them. | |
542 | |
543 2002-04-22 Hrvoje Niksic <hniksic@xemacs.org> | |
544 | |
545 * photos/hniksic.png, photos/hniksic.png: Update. | |
546 | |
804 | 547 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
548 | |
549 * XEmacs 21.5.6 "bok choi" is released. | |
550 | |
799 | 551 2002-03-30 Steve Youngs <youngs@xemacs.org> |
552 | |
553 * package-index.LATEST.gpg: Update to current reality. | |
554 | |
555 * package-index.LATEST.pgp: Ditto. | |
556 | |
793 | 557 2002-03-25 Ben Wing <ben@xemacs.org> |
558 | |
559 * unicode/unicode-consortium/8859-16.TXT: | |
560 New file. | |
561 | |
562 2002-03-24 Ben Wing <ben@xemacs.org> | |
563 | |
564 * DISTRIB: | |
565 * DISTRIB (donation): Removed. | |
566 Eliminate FSF distribution information; we're not FSF. | |
567 | |
568 2002-03-18 Ben Wing <ben@xemacs.org> | |
569 | |
570 * unicode\mule-ucs\*: New directory, containing translation | |
571 files for the remaining charsets that are not in | |
572 unicode\unicode-consortium but are in mule-ucs. | |
573 | |
574 * unicode\other\*: New directory, containing translation | |
575 files made up on an ad-hoc basis. | |
576 | |
577 * unicode\README: Update. | |
578 | |
579 2001-05-04 Ben Wing <ben@xemacs.org> | |
580 | |
581 * check_cygwin_setup.sh (distdir): Update for current | |
582 Cygwin reality. | |
583 | |
584 * NEWS: Remove kill-whole-line changes. | |
585 | |
586 2001-04-17 Ben Wing <ben@xemacs.org> | |
587 | |
588 * NEWS: More changes. | |
589 | |
590 * sample.init.el (grep-all-files-in-current-directory-and-below): | |
591 Missing argument. | |
592 | |
593 2001-04-15 Ben Wing <ben@xemacs.org> | |
594 | |
595 * NEWS: | |
596 * NEWS (C): | |
597 * NEWS (commands): | |
598 Many, many changes for XEmacs 21.4. | |
599 | |
600 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> | |
601 | |
602 * XEmacs 21.5.5 "beets" is released. | |
603 | |
604 2002-02-28 Stephen J. Turnbull <stephen@xemacs.org> | |
605 | |
606 * TUTORIAL.se: New from Mats Lidell. | |
607 | |
608 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
609 | |
610 * BETA: General update. Fix some broken URLs. | |
611 | |
612 2002-01-23 Jarl Friis <jarl@diku.dk> | |
613 | |
614 * BETA (http): Informing of xemacs-patches mailing list. Added | |
615 note on patch etiquette. | |
616 | |
617 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> | |
618 | |
619 * XEmacs 21.5.4 "bamboo" is released. | |
620 | |
621 2001-05-27 Kazuo Oishi <oishi@n-pl.org> | |
622 | |
623 * xemacs-ja.1: Replace with new translation. | |
624 | |
625 2001-12-29 Steve Youngs <youngs@xemacs.org> | |
626 | |
627 * package-index.LATEST.gpg: Update. | |
628 | |
629 * package-index.LATEST.pgp: Update. | |
630 | |
631 2001-12-18 Jan Vroonhof <jan@xemacs.org> | |
632 | |
633 * photos/jan.png: Add mug shot. | |
634 | |
635 2001-12-03 Didier Verna <didier@xemacs.org> | |
636 | |
637 * NEWS: advertise `C-x r p' (replace-rectangle) in global map. | |
638 | |
639 2001-09-19 Ben Wing <ben@xemacs.org> | |
640 | |
641 * TUTORIAL.de: Translate TERMINOLOGY section for TUTORIAL.de, | |
642 change menu entry separator from / to ->. Change SPC to <Space>. | |
643 | |
644 2001-10-07 Adrian Aichner <adrian@xemacs.org> | |
645 | |
646 * TUTORIAL.de: Update of TUTORIAL.de according to Ben's | |
647 Updates and Syncing with Emacs 21.0.106. | |
648 | |
649 2001-08-21 Adrian Aichner <adrian@xemacs.org> | |
650 | |
651 * BETA (writing): Advertise use of build-report. | |
652 | |
653 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> | |
654 | |
655 * XEmacs 21.5.3 "asparagus" is released. | |
656 | |
657 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> | |
658 | |
659 * XEmacs 21.5.2 "artichoke" is released. | |
660 | |
661 2001-07-26 Stephen J. Turnbull <stephen@xemacs.org> | |
662 | |
663 * MYTHOLOGY, etc/OXYMORONS: Remove. | |
664 etc/VEGETABLES: Copied from xemacs-builds module, file Codenames-21.5. | |
665 Bring codenames into synch with reality. | |
666 | |
667 2001-07-18 Adrian Aichner <adrian@xemacs.org> | |
668 | |
669 * TUTORIAL: Fix minor typo. | |
670 * TUTORIAL.de: Sync with TUTORIAL. | |
671 | |
672 2001-05-24 Yoshiki Hayashi <yoshiki@xemacs.org> | |
673 | |
674 * xemacs-ja.1: Removed. | |
675 | |
676 2001-05-23 Ben Wing <ben@xemacs.org> | |
677 | |
678 * sample.init.el: | |
679 * sample.init.el (Init-safe-require): New. | |
680 * sample.init.el ((fboundp 'pending-delete-mode)): | |
681 * sample.init.el ((eq system-type 'windows-nt)): | |
682 * sample.init.el (dired): | |
683 * sample.init.el ((Init-safe-require 'efs-auto)): | |
684 * sample.init.el (completer): | |
685 * sample.init.el (crypt): | |
686 * sample.init.el (filladapt): | |
687 * sample.init.el ((fboundp 'turn-on-lazy-lock)): | |
688 * sample.init.el ((fboundp 'resize-minibuffer-mode)): | |
689 * sample.init.el ((Init-safe-require 'scroll-in-place)): | |
690 Rewrite to be much more careful about loading features -- now | |
691 it decays gracefully even in the complete absence of packages. | |
692 Also avoid doing obnoxious things when loading efs. | |
693 | |
694 2001-05-10 Paul Stodghill <stodghil@cs.cornell.edu> | |
695 | |
696 * PACKAGES: Update to reflect new package dir tree. | |
697 | |
698 2001-05-15 Steve Youngs <youngs@xemacs.org> | |
699 | |
700 * PACKAGES: Update to reflect new package dir tree. | |
701 | |
702 2001-05-09 Martin Buchholz <martin@xemacs.org> | |
703 | |
704 * XEmacs 21.5.1 "anise" is released. | |
705 | |
706 2001-01-31 Jason R. Mastaler <jason@xemacs.org> | |
707 | |
708 * FTP: Updated FTP mirrors list. | |
709 | |
710 2001-04-18 Martin Buchholz <martin@xemacs.org> | |
711 | |
712 * XEmacs 21.5.0 "alfalfa" is released. | |
713 | |
714 2001-03-30 Ben Wing <ben@xemacs.org> | |
715 | |
716 * sample.init.el: | |
717 * sample.init.el (Init-kill-entire-line): | |
718 * sample.init.el (describe-foo-at-point): | |
719 * sample.init.el (kill-current-buffer): | |
720 * sample.init.el (kill-current-buffer-and-window): | |
721 * sample.init.el (grep-c-files): Removed. | |
722 * sample.init.el (grep-all-files-history): New. | |
723 * sample.init.el (grep-all-files-omitted-expressions): New. | |
724 * sample.init.el (grep-all-files-omitted-directories): New. | |
725 * sample.init.el (construct-grep-all-files-command): New. | |
726 * sample.init.el (grep-all-files-in-current-directory): New. | |
727 * sample.init.el (grep-lisp-files): Removed. | |
728 * sample.init.el (grep-all-files-in-current-directory-and-below): New. | |
729 * sample.init.el (clear-select): | |
730 * sample.init.el ((control kp-add)): | |
731 * sample.init.el (pause): | |
732 * sample.init.el ((eq system-type 'windows-nt)): | |
733 | |
734 Add documentation for defined functions. Change grep functions to | |
735 be more generally useful. Document more specifically what the | |
736 `menu-force' setting actually does -- what commands are overridden | |
737 and how to access them. | |
738 | |
739 2001-03-30 Stephen J. Turnbull <stephen@xemacs.org> | |
740 | |
741 * OXYMORONS: Add 2 oxymorons, clean up numbering, close RFC. | |
742 | |
743 * NEWS: Fix typo. | |
744 | |
745 2001-03-23 Stephen J. Turnbull <stephen@xemacs.org> | |
746 | |
747 * gnuserv.1 (UNIX_DOMAIN_SOCKETS: | |
748 Document TMPDIR lossage in gnuserv/gnuclient. | |
749 | |
750 2001-03-06 Ben Wing <ben@xemacs.org> | |
751 | |
752 * sample.init.el: | |
753 * sample.init.el (Init-kill-entire-line): New. | |
754 Fix to take into account the removed kill-whole-line changes. | |
755 | |
756 2001-03-21 Martin Buchholz <martin@xemacs.org> | |
757 | |
758 * XEmacs 21.2.46 "Urania" is released. | |
759 | |
760 2001-03-15 Stephen J. Turnbull <stephen@xemacs.org> | |
761 | |
762 * OXYMORONS: New file of 21.4 codenames. | |
763 | |
764 2001-03-02 Ben Wing <ben@xemacs.org> | |
765 | |
766 * README: sample.emacs -> sample.init.el. | |
767 | |
768 2001-02-23 Martin Buchholz <martin@xemacs.org> | |
769 | |
770 * XEmacs 21.2.45 "Thelxepeia" is released. | |
771 | |
772 2001-02-10 Martin Buchholz <martin@xemacs.org> | |
773 | |
774 * MACHINES: Rewritten. Bitrot discarded. | |
775 | |
776 2001-02-08 Martin Buchholz <martin@xemacs.org> | |
777 | |
778 * XEmacs 21.2.44 "Thalia" is released. | |
779 | |
780 2001-01-26 Martin Buchholz <martin@xemacs.org> | |
781 | |
782 * XEmacs 21.2.43 "Terspichore" is released. | |
783 | |
784 2001-01-21 Steve Youngs <youngs@xemacs.org> | |
785 | |
786 * ./etc/PACKAGES: Doc fix. | |
787 | |
788 2001-01-17 Steve Youngs <youngs@xemacs.org> | |
789 | |
790 * ./etc/PACKAGES: Update. | |
791 | |
792 2001-01-20 Martin Buchholz <martin@xemacs.org> | |
793 | |
794 * XEmacs 21.2.42 "Poseidon" is released. | |
795 | |
796 2001-01-17 Martin Buchholz <martin@xemacs.org> | |
797 | |
798 * XEmacs 21.2.41 "Polyhymnia" is released. | |
799 | |
800 2001-01-08 Martin Buchholz <martin@xemacs.org> | |
801 | |
802 * XEmacs 21.2.40 is released. | |
803 | |
804 2000-12-31 Martin Buchholz <martin@xemacs.org> | |
805 | |
806 * XEmacs 21.2.39 is released. | |
807 | |
808 2000-12-05 Martin Buchholz <martin@xemacs.org> | |
809 | |
810 * XEmacs 21.2.38 is released. | |
811 | |
812 2000-11-14 Martin Buchholz <martin@xemacs.org> | |
813 | |
814 * XEmacs 21.2.37 is released. | |
815 | |
816 2000-10-19 Stephen J. Turnbull <stephen@xemacs.org> | |
817 | |
818 * PACKAGES: Add details on os-utils contents. | |
819 | |
820 2000-10-04 Yoshiki Hayashi <yoshiki@xemacs.org> | |
821 | |
822 * NEWS: Change lprogress-display to progress-feedback. | |
823 | |
824 2000-10-04 Martin Buchholz <martin@xemacs.org> | |
825 | |
826 * XEmacs 21.2.36 is released. | |
827 | |
828 2000-08-29 Robert Pluim <rpluim@bigfoot.com> | |
829 | |
830 * etc/NEWS: fix reference to progress-feedback-use-echo-area | |
831 | |
832 2000-09-20 Martin Buchholz <martin@xemacs.org> | |
833 | |
834 * xemacs.1: Spelling fixes. Remove stuff that doesn't belong. | |
835 | |
836 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
837 | |
838 * Emacs.ad: Remove Energize from comments. | |
839 | |
840 2000-08-02 Stephen J. Turnbull <stephen@xemacs.org> | |
841 | |
842 * Emacs.ad: Document usage of FontSet resource for menubar. | |
843 | |
844 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
845 | |
846 * XEmacs 21.2.35 is released. | |
847 | |
848 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
849 | |
850 * XEmacs 21.2.34 is released. | |
851 | |
852 2000-04-15 Andy Piper <andy@xemacs.org> | |
853 | |
854 * Emacs.ad: add select-start() back into text translations. | |
855 | |
856 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
857 | |
858 * XEmacs 21.2.33 is released. | |
859 | |
860 2000-04-12 Andy Piper <andy@xemacs.org> | |
861 | |
862 * Emacs.ad: give the gui-element face the same font as the | |
863 menubar and popups. Add translations for text widgets. | |
864 | |
865 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
866 | |
867 * XEmacs 21.2.32 is released. | |
868 | |
869 2000-03-01 Didier Verna <didier@xemacs.org> | |
870 | |
871 * NEWS: update the rect.el entry. | |
872 | |
873 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
874 | |
875 * XEmacs 21.2.31 is released. | |
876 | |
877 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
878 | |
879 * XEmacs 21.2.30 is released. | |
880 | |
881 2000-01-05 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
882 | |
883 * TUTORIAL.ja: Synch with English version. | |
884 | |
885 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
886 | |
887 * XEmacs 21.2.29 is released. | |
888 | |
889 2000-02-07 Martin Buchholz <martin@xemacs.org> | |
890 | |
891 * XEmacs 21.2.28 is released. | |
892 | |
893 2000-01-18 Martin Buchholz <martin@xemacs.org> | |
894 | |
895 * XEmacs 21.2.27 is released. | |
896 | |
897 2000-01-15 Adrian Aichner <aichner@ecf.teradyne.com> | |
898 | |
899 * TUTORIAL.de: Update copyright and fix typo. | |
900 | |
901 2000-01-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
902 | |
903 * NEWS: Document mail spool locking overhaul. | |
904 | |
905 1999-12-31 Martin Buchholz <martin@xemacs.org> | |
906 | |
907 * XEmacs 21.2.26 is released. | |
908 | |
909 1999-12-24 Martin Buchholz <martin@xemacs.org> | |
910 | |
911 * XEmacs 21.2.25 is released. | |
912 | |
913 1999-12-14 Martin Buchholz <martin@xemacs.org> | |
914 | |
915 * XEmacs 21.2.24 is released. | |
916 | |
917 1999-12-07 Martin Buchholz <martin@xemacs.org> | |
918 | |
919 * XEmacs 21.2.23 is released. | |
920 | |
921 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
922 | |
923 * XEmacs 21.2.21 is released. | |
924 | |
925 1999-10-12 Alexandre Oliva <oliva@lsd.ic.unicamp.br> | |
926 | |
927 * sample.Xdefaults: adds a reference to beNiceToColormap, | |
928 so that the user can guess what to do if xemacs' dialogs are | |
929 butt ugly. | |
930 | |
931 1999-11-13 Jason R Mastaler <jason@mastaler.com> | |
932 | |
933 * FTP: Updated FTP mirrors list. Replaced GNU FTP document | |
4176 | 934 with a URL. |
793 | 935 |
936 1999-11-13 Jason R Mastaler <jason@mastaler.com> | |
937 | |
938 * MAILINGLISTS: Updated mailing list subscription information. | |
4176 | 939 Replaced GNU MAILINGLISTS document with a URL. |
793 | 940 |
941 1999-08-01 Adrian Aichner <adrian@xemacs.org> | |
942 | |
943 * DISTRIB: Update IP address of ftp.xemacs.org. | |
944 * NEWS: Fix typo | |
945 | |
946 1999-07-23 Jan Vroonhof <vroonhof@math.ethz.ch> | |
947 | |
948 * custom/example-themes/example-theme.el: | |
949 * custom/example-themes/europe-theme.el: | |
950 * custom/example-themes/ex-custom-file: Some simple examples | |
951 illustrating the custom theme support. | |
952 | |
953 1999-07-17 MORIOKA Tomohiko <tomo@etl.go.jp> | |
954 | |
955 * HELLO (Thai): Modify for new font. | |
956 | |
957 1999-03-30 MORIOKA Tomohiko <tomo@etl.go.jp> | |
958 | |
959 * HELLO (Amharic): New language. | |
960 (Slovak): Likewise. | |
961 (Thai): Likewise (by Virach Sornlertlamvanich). | |
962 (Greek): Fixed (by Yannis Haralambous). | |
963 | |
964 1999-02-01 Glynn Clements <glynn@sensei.co.uk> | |
965 | |
966 * recycle.xpm: Fix colours so that they work on TrueColor | |
967 and DirectColor displays | |
968 | |
969 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
970 | |
971 * XEmacs 21.2.8 is released. | |
972 | |
973 1998-12-24 Martin Buchholz <martin@xemacs.org> | |
974 | |
975 * XEmacs 21.2.7 is released. | |
976 | |
977 1998-11-28 SL Baur <steve@altair.xemacs.org> | |
978 | |
979 * XEmacs 21.2-beta4 is released. | |
980 | |
981 1998-10-15 SL Baur <steve@altair.xemacs.org> | |
982 | |
983 * XEmacs 21.2-beta3 is released. | |
984 | |
985 1998-10-02 Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
986 | |
987 * xemacs.1: Remove misplace "\". | |
988 | |
989 1998-09-29 SL Baur <steve@altair.xemacs.org> | |
990 | |
991 * XEmacs 21.2-beta2 is released. | |
992 | |
993 1998-09-05 SL Baur <steve@altair.xemacs.org> | |
994 | |
995 * check_cygwin_setup.sh: grammar fix. | |
996 | |
997 1998-09-02 Andy Piper <andyp@parallax.co.uk> | |
998 | |
999 * check_cygwin_setup.sh: fix a couple of buglets. | |
1000 | |
1001 1998-08-23 Adrian Aichner <adrian@xemacs.org> | |
1002 | |
1003 * sample.emacs: Enable sound support on mswindows devices. | |
1004 | |
1005 1998-08-06 Adrian Aichner <adrian@xemacs.org> | |
1006 | |
1007 * TUTORIAL.de: Fixing typos and grammatical errors. Fixing | |
1008 inconsistent usage of RET, <Return>, and <return> (only using | |
1009 <Return> now). Changing TUTORIAL to TUTORIAL.de throughout | |
1010 itself. Adding english equivalent to german translation of all | |
1011 concepts used in TUTORIAL.de. | |
1012 | |
1013 1998-07-19 SL Baur <steve@altair.xemacs.org> | |
1014 | |
1015 * XEmacs 21.2-beta1 is released. | |
1016 | |
1017 1998-07-12 SL Baur <steve@altair.xemacs.org> | |
1018 | |
1019 * GOATS: Removed. | |
1020 | |
1021 1998-07-12 SL Baur <steve@altair.xemacs.org> | |
1022 | |
1023 * README: Bump version numbers. | |
1024 * NEWS: Ditto and purge pre-21.0 stuff. | |
1025 | |
4176 | 1026 * XEmacs 21.0-pre5 is released. |
793 | 1027 |
1028 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
1029 | |
1030 * configure.in: Handle multiple database libraries. | |
1031 From Gregory Neil Shapiro <gshapiro@sendmail.org> | |
1032 | |
1033 * XEmacs 21.0-pre4 is released. | |
1034 | |
1035 * configure.in: Fix test for InfoDock sources. | |
1036 | |
1037 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
1038 | |
1039 * BETA (writing): Update patch creation instructions. | |
1040 | |
1041 * FTP: Update FTP mirror list. | |
1042 | |
1043 * DISTRIB: Remove duplicated FTP mirror list. | |
1044 * xemacs.1 (ftp): Ditto. | |
1045 | |
1046 * XEmacs 21.0-pre4 is released. | |
1047 | |
1048 1998-06-29 SL Baur <steve@altair.xemacs.org> | |
1049 | |
1050 * gnuserv.1 (this): Email address for Ben Wing is ben@xemacs.org. | |
1051 * gnuserv.README (README): Ditto. | |
1052 * xemacs-ja.1: Ditto. | |
1053 | |
1054 1998-06-28 SL Baur <steve@altair.xemacs.org> | |
1055 | |
1056 * BABYL: Moved to rmail package | |
1057 | |
1058 * enriched.doc: Moved to xemacs-base package | |
1059 | |
1060 * MSDOS: | |
1061 * GNUS-NEWS: deleted | |
1062 | |
1063 1998-06-21 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
1064 | |
1065 * NEWS: Added references to documentation about packages and | |
1066 path setup. | |
1067 | |
1068 * README: Synched. | |
1069 | |
1070 1998-06-19 SL Baur <steve@altair.xemacs.org> | |
1071 | |
1072 * XEmacs 21.0-pre3 is released. | |
1073 | |
1074 1998-06-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
1075 | |
1076 * PACKAGES: | |
1077 * BETA: Moved some package stuff into Texinfo docs. Other nitpicks | |
1078 | |
1079 1998-06-19 SL Baur <steve@altair.xemacs.org> | |
1080 | |
1081 * XEmacs 21.0-pre2 is released. | |
1082 | |
1083 1998-06-14 SL Baur <steve@altair.xemacs.org> | |
1084 | |
1085 * XEmacs 21.0-pre1 is released. | |
1086 | |
1087 1998-06-14 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
1088 | |
1089 * NEWS: Updated information about customization of the | |
1090 automatic info dir file generation using | |
1091 `Info-auto-generate-directory' and `Info-save-auto-generated-dir' | |
1092 | |
1093 1998-06-11 SL Baur <steve@altair.xemacs.org> | |
1094 | |
1095 * XEmacs 21.0-beta43 is released. | |
1096 | |
1097 1998-06-02 Andy Piper <andyp@parallax.co.uk> | |
1098 | |
1099 * check_cygwin_setup.sh: set more intelligent defaults for | |
1100 windows 95. | |
1101 | |
1102 1998-06-01 SL Baur <steve@altair.xemacs.org> | |
1103 | |
1104 * XEmacs 21.0-beta42 is released. | |
1105 | |
1106 1998-06-01 SL Baur <steve@altair.xemacs.org> | |
1107 | |
1108 * sounds: Removed, now in the sounds-au package. | |
1109 | |
1110 1998-05-29 Andy Piper <andyp@parallax.co.uk> | |
1111 | |
1112 * check_cygwin_setup.sh: new file to check that cygwin is setup | |
1113 correctly for XEmacs operation. | |
1114 | |
1115 1998-05-23 SL Baur <steve@altair.xemacs.org> | |
1116 | |
1117 * XEmacs 21.0-beta41 is released. | |
1118 | |
1119 1998-05-15 SL Baur <steve@altair.xemacs.org> | |
1120 | |
1121 * XEmacs 21.0-beta40 is released. | |
1122 | |
1123 1998-05-09 SL Baur <steve@altair.xemacs.org> | |
1124 | |
1125 * XEmacs 21.0-beta39 is released. | |
1126 | |
1127 1998-05-07 SL Baur <steve@altair.xemacs.org> | |
1128 | |
1129 * altrasoft-logo.xpm: Removed. | |
1130 | |
1131 1998-05-02 SL Baur <steve@altair.xemacs.org> | |
1132 | |
1133 * XEmacs 21.0-beta38 is released. | |
1134 | |
1135 1998-04-26 Jason R Mastaler <jason@4b.org> | |
1136 | |
1137 * BETA: Replaced SmartList references in favor of | |
1138 Majordomo. | |
1139 | |
1140 1998-04-25 SL Baur <steve@altair.xemacs.org> | |
1141 | |
1142 * XEmacs-21.0-beta37 is released. | |
1143 | |
1144 1998-04-19 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
1145 | |
1146 * NEWS: Documented info dir rebuilding and LDAP support. | |
1147 | |
1148 1998-04-18 SL Baur <steve@altair.xemacs.org> | |
1149 | |
1150 * XEmacs-21.0-beta36 is released. | |
1151 | |
1152 1998-04-11 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
1153 | |
1154 * xemacs.1: -no-packages -> -no-early-packages. | |
1155 | |
1156 * NEWS: Clarified site-lisp status. | |
1157 | |
1158 1998-04-10 SL Baur <steve@altair.xemacs.org> | |
1159 | |
1160 * XEmacs 21.0-beta35 is released. | |
1161 | |
1162 1998-04-10 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
1163 | |
1164 * NEWS: Documented that Info-default-directory-list and | |
1165 site-directory are gone. | |
1166 | |
1167 1998-04-04 SL Baur <steve@altair.xemacs.org> | |
1168 | |
1169 * XEmacs 21.0-beta34 is released. | |
1170 | |
1171 1998-03-24 SL Baur <steve@altair.xemacs.org> | |
1172 | |
1173 * XEmacs 21.0-beta33 is released. | |
1174 | |
1175 1998-03-24 SL Baur <steve@altair.xemacs.org> | |
1176 | |
1177 * XEmacs 21.0-beta32 is released. | |
1178 | |
1179 1998-03-16 SL Baur <steve@altair.xemacs.org> | |
1180 | |
1181 * XEmacs 21.0 beta31 is released. | |
1182 | |
1183 1998-03-09 Kyle Jones <kyle_jones@wonderworks.com> | |
1184 | |
1185 * Emacs.ad: Example using leading dot resources to | |
1186 initalize faces changes to use Emacs.foo since the | |
1187 leading dot syntax doesn't work. Initialization of | |
1188 text-cursor face moved to faces.el. | |
1189 | |
1190 1998-03-07 SL Baur <steve@altair.xemacs.org> | |
1191 | |
1192 * XEmacs 20.5-beta30 is released. | |
1193 | |
1194 1998-03-01 SL Baur <steve@altair.xemacs.org> | |
1195 | |
1196 * Emacs.ad: Remove explicit `Emacs' application resource | |
1197 name. | |
1198 | |
1199 1998-02-25 SL Baur <steve@altair.xemacs.org> | |
1200 | |
1201 * XEmacs 20.5-beta28 is released. | |
1202 | |
1203 * configure.in (with_session): Fix reporting of the setting. | |
1204 (with_database_gnudbm): Correctly report setting. | |
1205 | |
1206 1998-02-19 SL Baur <steve@altair.xemacs.org> | |
1207 | |
1208 * XEmacs 20.5-beta27 is released. | |
1209 * XEmacs-20.4-pre4 is released. | |
1210 | |
1211 * configure.in (doug_lea_malloc): Requires USE_MINIMAL_TAGBITS. | |
1212 (--with-gung): Implement it. | |
1213 | |
1214 * configure.usage (--with-gung): Document. Turns on | |
1215 USE_MINIMAL_TAGBITS and USE_INDEXED_LRECORD_IMPLEMENTATION. | |
1216 (--with-term): Remove. | |
1217 | |
1218 * XEmacs-20.5-beta26 is released. | |
1219 | |
1220 1998-02-18 SL Baur <steve@altair.xemacs.org> | |
1221 | |
1222 * XEmacs-20.4-pre3 is released. | |
1223 | |
1224 * Makefile.in: use better feedback while rebuilding finder database. | |
1225 Suggested by Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> | |
1226 | |
1227 1998-02-14 SL Baur <steve@altair.xemacs.org> | |
1228 | |
1229 * configure.in (OFFIX_O): Don't use OffiX if no real Xmu support. | |
1230 Suggested by Pekka Marjola <pema@iki.fi> | |
1231 | |
1232 * XEmacs-20.4-pre2 is released. | |
1233 * XEmacs-20.5-beta25 is released. | |
1234 | |
1235 1998-02-09 SL Baur <steve@altair.xemacs.org> | |
1236 | |
1237 * XEmacs 20.4-pre1 is released. | |
1238 * XEmacs 20.5-beta24 is released. | |
1239 | |
1240 1998-02-03 SL Baur <steve@altair.xemacs.org> | |
1241 | |
1242 * XEmacs 20.5-beta23 is released. | |
1243 | |
1244 1998-02-01 SL Baur <steve@altair.xemacs.org> | |
1245 | |
1246 * aliases.ksh: igrep from the shell command line. | |
1247 From Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
1248 | |
1249 1998-01-31 SL Baur <steve@altair.xemacs.org> | |
1250 | |
1251 * aliases.ksh: Add `mak' function to create beta.err for | |
1252 build-report. | |
1253 From Adrian Aichner <adrian@xemacs.org> | |
1254 Suggested by Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
1255 | |
1256 1998-01-27 SL Baur <steve@altair.xemacs.org> | |
1257 | |
1258 * XEmacs 20.5-beta22 is released. | |
1259 | |
1260 1998-01-26 SL Baur <steve@altair.xemacs.org> | |
1261 | |
1262 * aliases.ksh: New file. Start tracking useful Maintainer | |
1263 XEmacs commands. | |
1264 | |
1265 1998-01-25 SL Baur <steve@altair.xemacs.org> | |
1266 | |
1267 * XEmacs 20.5-beta21 is released. | |
1268 | |
1269 1998-01-18 SL Baur <steve@altair.xemacs.org> | |
1270 | |
1271 * XEmacs 20.5-beta20 is released. | |
1272 | |
1273 1998-01-13 Martin Buchholz <martin@xemacs.org> | |
1274 | |
1275 * NEWS: | |
1276 Remove doc for configure-time INFOPATH, no longer used. | |
1277 | |
1278 * BETA: Update ftp addresses. | |
1279 * INSTALL: Update ftp addresses. | |
1280 * MAILINGLISTS: Sync with Emacs 20.2. Update ftp addresses. | |
1281 | |
1282 * xemacs.1: Update author list. | |
1283 | |
1284 1998-01-12 SL Baur <steve@altair.xemacs.org> | |
1285 | |
1286 * INSTALL: Updated for recent Mule/package changes. | |
1287 | |
1288 * XEmacs 20.5-beta19 is released. | |
1289 | |
1290 1998-01-10 SL Baur <steve@altair.xemacs.org> | |
1291 | |
1292 * XEmacs 20.5-beta18 is released. | |
1293 | |
1294 1998-01-10 SL Baur <steve@altair.xemacs.org> | |
1295 | |
1296 * FTP: Update address of what was formerly ftp.ibp.fr. | |
1297 | |
1298 1998-01-04 SL Baur <steve@altair.xemacs.org> | |
1299 | |
1300 * XEmacs 20.5-beta17 is released. | |
1301 | |
1302 * Makefile.in (finder): Use -vanilla. | |
1303 (lisp/finder-inf.el): Ditto. | |
1304 (check-features): New target. Do a sanity check prior to | |
1305 installation. | |
1306 | |
1307 1997-01-03 SL Baur <steve@altair.xemacs.org> | |
1308 | |
1309 * XEmacs 20.5-beta16 is released. | |
1310 | |
1311 1997-12-30 SL Baur <steve@altair.xemacs.org> | |
1312 | |
1313 * XEmacs 20.5-beta15 is released. | |
1314 | |
1315 1997-12-27 SL Baur <steve@altair.xemacs.org> | |
1316 | |
1317 * XEmacs 20.5-beta14 is released. | |
1318 | |
1319 1997-12-25 SL Baur <steve@altair.xemacs.org> | |
1320 | |
1321 * XEmacs 20.5-beta13 is released. | |
1322 | |
1323 1997-12-21 SL Baur <steve@altair.xemacs.org> | |
1324 | |
1325 * BETA (Prerequisite): Add cookbook procedures for maintaining | |
1326 package lisp directories. | |
1327 | |
1328 1997-12-20 SL Baur <steve@altair.xemacs.org> | |
1329 | |
1330 * XEmacs 20.5-beta 12 is released. | |
1331 | |
1332 1997-12-18 Kyle Jones <kyle_jones@wonderworks.com> | |
1333 | |
1334 * Emacs.ad: Don't specify a default toolbar specific | |
1335 background color. | |
1336 | |
1337 1997-12-18 Kyle Jones <kyle_jones@wonderworks.com> | |
1338 | |
1339 * toolbar: Added support for foregroundToolBarColor | |
1340 symbol to most icons. | |
1341 | |
1342 1997-12-17 SL Baur <steve@altair.xemacs.org> | |
1343 | |
1344 * BETA: Update version numbers. | |
1345 | |
1346 * NEWS: Update version number. | |
1347 | |
1348 1997-12-16 SL Baur <steve@altair.xemacs.org> | |
1349 | |
1350 * XEmacs 20.5-beta11 is released. | |
1351 | |
1352 1997-12-13 SL Baur <steve@altair.xemacs.org> | |
1353 | |
1354 * Makefile.in (lisp/finder-inf.el): Add dependency on src/. | |
1355 | |
1356 * XEmacs 20.5-beta10 is released. | |
1357 | |
1358 1997-12-09 SL Baur <steve@altair.xemacs.org> | |
1359 | |
1360 * XEmacs 20.5-beta9 is released. | |
1361 | |
1362 1997-12-06 SL Baur <steve@altair.xemacs.org> | |
1363 | |
1364 * XEmacs 20.5-beta8 is released. | |
1365 | |
1366 * info/dir: update for further packaging. | |
1367 * configure.in: remove `tree-x' from XEmacs build. | |
1368 | |
1369 1997-12-05 Aki Vehtari <Aki.Vehtari@hut.fi> | |
1370 | |
1371 * refcard.tex: Updated for 20.3 | |
1372 | |
1373 1997-12-02 SL Baur <steve@altair.xemacs.org> | |
1374 | |
1375 * skk/SKK.tut.E (Hint): Fix typos. | |
1376 | |
1377 1997-11-27 SL Baur <steve@altair.xemacs.org> | |
1378 | |
1379 * XEmacs 20.5-beta7 is released. | |
1380 | |
1381 * configure.in: When testing for -ltiff, fall back on the extra | |
1382 libraries -ljpeg, and -lz since some -ltiff's need them. | |
1383 | |
1384 1997-11-20 SL Baur <steve@altair.xemacs.org> | |
1385 | |
1386 * XEmacs 20.5-beta6 is released. | |
1387 | |
1388 1997-11-19 SL Baur <steve@altair.xemacs.org> | |
1389 | |
1390 * xemacs.1: Document -no-packages, -vanilla. | |
1391 Document -h. | |
1392 | |
1393 1997-11-17 SL Baur <steve@altair.xemacs.org> | |
1394 | |
1395 * XEmacs 20.3-pre4 is released. | |
1396 | |
1397 1997-11-15 SL Baur <steve@altair.xemacs.org> | |
1398 | |
1399 * XEmacs 20.3-pre3 is released. | |
1400 * XEmacs 20.5-beta5 is released. | |
1401 | |
1402 1997-11-11 SL Baur <steve@altair.xemacs.org> | |
1403 | |
1404 * XEmacs 20.5-beta4 is released. | |
1405 | |
1406 1997-11-08 SL Baur <steve@altair.xemacs.org> | |
1407 | |
1408 * XEmacs 20.5-beta3 is released. | |
1409 * XEmacs 20.3-pre2 is released. | |
1410 | |
1411 1997-11-04 Adrian Aichner <adrian@xemacs.org> | |
1412 | |
1413 * TUTORIAL.de: | |
1414 Updated copyright information. Translated most of the COPYING | |
1415 section. Translated the <<.*>> didactic line. | |
1416 | |
1417 1997-10-22 Adrian Aichner <adrian@xemacs.org> | |
1418 | |
1419 * TUTORIAL.de: Fixed two issues reported by | |
1420 Achim Oppelt <aoppelt@theorie3.physik.uni-erlangen.de> | |
1421 | |
1422 * TUTORIAL.de: | |
1423 Manually applied rejected patch hunks from Marc Aurel's patch. | |
1424 Some more fixes. | |
1425 | |
1426 * TUTORIAL.de: | |
1427 Applied patches supplied by Marc Aurel <4-tea-2@bong.saar.de>. | |
1428 They fix yet more typos and quite a few awkward sentences. | |
1429 | |
1430 1997-10-21 Adrian Aichner <adrian@xemacs.org> | |
1431 | |
1432 * TUTORIAL.de: Manually merged a few more corrections by | |
1433 Carsten Leonhardt <leo@arioch.oche.de> | |
1434 | |
1435 1997-10-20 Adrian Aichner <adrian@xemacs.org> | |
1436 | |
1437 * TUTORIAL.de: | |
1438 Applied patches from Andreas Jaeger <aj@arthur.rhein-neckar.de> to 1.2, | |
1439 then merged them with 1.3 via ediff-buffers. | |
1440 Andreas found some quite nasty typos still and added many missing commas. | |
1441 | |
1442 * TUTORIAL.de: Re-fill-ed paragraphs after patching. | |
1443 | |
1444 * TUTORIAL.de: Applied the excellent patches courtesy of | |
1445 Carsten Leonhardt <leo@arioch.oche.de>. | |
1446 | |
1447 1997-11-02 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
1448 | |
1449 * TUTORIAL.ko: Renamed from etc/TUTORIAL.kr to fit with ISO | |
1450 639 (two letter language code). | |
1451 | |
1452 * TUTORIAL.ja: Renamed from etc/TUTORIAL.jp to fit with ISO | |
1453 639 (two letter language code). | |
1454 | |
1455 1997-11-02 SL Baur <steve@altair.xemacs.org> | |
1456 | |
1457 * CHARSETS: New file imported from Emacs 20.1. | |
1458 | |
1459 1997-11-01 SL Baur <steve@altair.xemacs.org> | |
1460 | |
1461 * XEmacs 20.3-pre1 is released. | |
1462 | |
1463 1997-10-31 SL Baur <steve@altair.xemacs.org> | |
1464 | |
1465 * XEmacs 19.16 is released. | |
1466 | |
1467 1997-10-31 SL Baur <steve@altair.xemacs.org> | |
1468 | |
1469 * XEmacs 20.5-beta2 is released. | |
1470 | |
1471 1997-10-30 Kyle Jones <kyle_jones@wonderworks.com> | |
1472 | |
1473 * Emacs.ad: Added *XlwMenu*highlightForeground entry. | |
1474 Added *XlwMenu*titleForeground entry. | |
1475 | |
1476 1997-10-29 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
1477 | |
1478 * HELLO: Add Czech. | |
1479 | |
1480 * HELLO: Delete Amharic, Thai and Tigrigna. | |
1481 | |
1482 1997-10-28 SL Baur <steve@altair.xemacs.org> | |
1483 | |
1484 * XEmacs 20.3-beta94 is released. | |
1485 | |
1486 1997-10-28 SL Baur <steve@altair.xemacs.org> | |
1487 | |
1488 * XEmacs 20.3-beta93 is released. | |
1489 | |
1490 1997-10-24 SL Baur <steve@altair.xemacs.org> | |
1491 | |
1492 * XEmacs 20.3-beta92 is released. | |
1493 | |
1494 1997-10-18 SL Baur <steve@altair.xemacs.org> | |
1495 | |
1496 * XEmacs 20.3-beta91 is released. | |
1497 | |
1498 1997-10-16 Hrvoje Niksic <hniksic@srce.hr> | |
1499 | |
1500 * NEWS: document changed package load semantics. | |
1501 | |
1502 1997-10-13 SL Baur <steve@altair.xemacs.org> | |
1503 | |
1504 * configure.in: Remove `site-lisp' from list of directories to | |
1505 make symbolic links for. | |
1506 | |
1507 * XEmacs 20.3-beta90 is released. | |
1508 | |
1509 1997-10-13 Hrvoje Niksic <hniksic@srce.hr> | |
1510 | |
1511 * NEWS: Updates | |
1512 | |
1513 1997-10-12 SL Baur <steve@altair.xemacs.org> | |
1514 | |
1515 * XEmacs 20.5-beta1 is released. | |
1516 | |
1517 * XEmacs 19.16-pre9 is released. | |
1518 | |
1519 * XEmacs 19.16-pre8 is released. | |
1520 | |
1521 1997-10-11 SL Baur <steve@altair.xemacs.org> | |
1522 | |
1523 * XEmacs 20.3-beta28 is released. | |
1524 | |
1525 * Makefile.in (src/paths.h): Update PATH_INFOPATH | |
1526 (infopath): New shell variable. | |
1527 (infopath_user_defined): Ditto. | |
1528 | |
1529 * configure.in (infodir_user_defined): Spelling fixes. | |
1530 | |
1531 1997-10-10 Karl M. Hegbloom <karlheg@inetarena.com> | |
1532 | |
1533 * NEWS: Draft entry for the info changes. | |
1534 | |
1535 1997-10-10 Martin Buchholz <mrb@eng.sun.com> | |
1536 | |
1537 * BETA: | |
1538 - remove Chuck as contact name | |
1539 - random small improvements | |
1540 - remove I/me references - the message should be that XEmacs | |
1541 maintenance is an inclusive community effort. | |
1542 | |
1543 1997-10-10 SL Baur <steve@altair.xemacs.org> | |
1544 | |
1545 * BETA (Prerequisite): Add further documentation for | |
1546 package installation. | |
1547 | |
1548 1997-10-07 SL Baur <steve@altair.xemacs.org> | |
1549 | |
1550 * XEmacs 19.16-pre7 is released. | |
1551 | |
1552 1997-10-04 SL Baur <steve@altair.xemacs.org> | |
1553 | |
1554 * XEmacs 19.16-pre6 is released. | |
1555 | |
1556 1997-10-04 SL Baur <steve@altair.xemacs.org> | |
1557 | |
1558 * XEmacs 20.3-beta27 is released. | |
1559 | |
1560 1997-10-02 SL Baur <steve@altair.xemacs.org> | |
1561 | |
1562 * XEmacs 20.3-beta26 is released. | |
1563 | |
1564 1997-09-30 SL Baur <steve@altair.xemacs.org> | |
1565 | |
1566 * XEmacs 20.3-beta25 is released. | |
1567 | |
1568 * Makefile.in (install-arch-dep): Install the `Installation' for | |
1569 future reference. | |
1570 | |
1571 * Makefile.in (top_distclean): Remove finder-inf.el*. | |
1572 | |
1573 * configure.in (use_union_type): Default to "yes". | |
1574 | |
1575 1997-09-30 SL Baur <steve@altair.xemacs.org> | |
1576 | |
1577 * BETA: Document existence of `Installation' file. | |
1578 - Document requirement of rebuilding finder-inf.el when building | |
1579 from the full tarball. | |
1580 | |
1581 1997-09-27 SL Baur <steve@altair.xemacs.org> | |
1582 | |
1583 * XEmacs 20.3-beta24 is released. | |
1584 | |
1585 1997-09-24 SL Baur <steve@altair.xemacs.org> | |
1586 | |
1587 * BETA (XEmacs 20.3 packages): Added explanation of package | |
1588 hierarchy. | |
1589 | |
1590 1997-09-22 SL Baur <steve@altair.xemacs.org> | |
1591 | |
1592 * XEmacs 19.16-pre4 is released. | |
1593 | |
1594 1997-09-20 SL Baur <steve@altair.xemacs.org> | |
1595 | |
1596 * XEmacs 20.3-beta23 is released. | |
1597 | |
1598 1997-09-19 SL Baur <steve@altair.xemacs.org> | |
1599 | |
1600 * XEmacs 19.16-pre3 is released. | |
1601 | |
1602 1997-09-18 Colin Rafferty <craffert@ml.com> | |
1603 | |
1604 * NEWS: Various spelling corrections and some grammar | |
1605 corrections (which/that). | |
1606 | |
1607 1997-09-17 SL Baur <steve@altair.xemacs.org> | |
1608 | |
1609 * XEmacs 20.3-beta22 is released. | |
1610 | |
1611 1997-09-16 SL Baur <steve@altair.xemacs.org> | |
1612 | |
1613 * XEmacs 20.3-beta21 is released. | |
1614 | |
1615 * XEmacs 19.16-pre2 is released. | |
1616 | |
1617 1997-09-13 SL Baur <steve@altair.xemacs.org> | |
1618 | |
1619 * XEmacs 20.3-beta20 is released. | |
1620 | |
1621 1997-09-12 SL Baur <steve@altair.xemacs.org> | |
1622 | |
1623 XEmacs 19.16-pre1 "Queens" is released. | |
1624 | |
1625 1997-09-02 SL Baur <steve@altair.xemacs.org> | |
1626 | |
1627 * XEmacs 20.3-beta19 is released. | |
1628 | |
1629 * Makefile.in (finder): New target. | |
1630 | |
1631 1997-08-29 SL Baur <steve@altair.xemacs.org> | |
1632 | |
1633 * XEmacs 19.16-beta91 is released. | |
1634 | |
1635 1997-08-20 SL Baur <steve@altair.xemacs.org> | |
1636 | |
1637 * XEmacs 19.16-beta90 is released. | |
1638 | |
1639 1997-08-16 SL Baur <steve@altair.xemacs.org> | |
1640 | |
1641 * XEmacs 20.3-beta18 is released. | |
1642 | |
1643 1997-08-11 Karl M. Hegbloom <karlheg@inetarena.com> | |
1644 | |
1645 * NEWS: add a section telling about the Info changes. | |
1646 | |
1647 1997-08-09 SL Baur <steve@altair.xemacs.org> | |
1648 | |
1649 * XEmacs 20.3-beta17 is released. | |
1650 | |
1651 1997-08-07 Jan Vroonhof <vroonhof@math.ethz.ch> | |
1652 | |
1653 * gnuserv.1: Described Hrvoje's mods in manpage | |
1654 | |
1655 1997-07-31 SL Baur <steve@altair.xemacs.org> | |
1656 | |
1657 * XEmacs 20.3-beta16 is released. | |
1658 | |
1659 1997-07-27 SL Baur <steve@altair.xemacs.org> | |
1660 | |
1661 * BETA: Update patching instructions. | |
1662 | |
1663 1997-07-26 SL Baur <steve@altair.xemacs.org> | |
1664 | |
1665 * XEmacs 20.3-beta15 is released. | |
1666 | |
1667 1997-07-19 SL Baur <steve@altair.xemacs.org> | |
1668 | |
1669 * XEmacs 20.3-beta14 is released. | |
1670 | |
1671 1997-07-13 Steven L Baur <steve@altair.xemacs.org> | |
1672 | |
1673 * XEmacs 20.3-beta13 is released. | |
1674 | |
1675 * info/dir (Packages): Integrate texinfo manual for PH. | |
1676 | |
1677 1997-07-08 Steven L Baur <steve@altair.xemacs.org> | |
1678 | |
1679 * XEmacs 20.3-beta12 is released. | |
1680 | |
1681 1997-07-06 Steven L Baur <steve@altair.xemacs.org> | |
1682 | |
1683 * lwlib/lwlib-Xm.c (xm_update_one_value): Hand application of mrb | |
1684 fix. Restoration of lossage from beta10->beta11 upgrade. | |
1685 | |
1686 * XEmacs 20.3-beta11 is released. | |
1687 | |
1688 1997-06-29 Steven L Baur <steve@altair.xemacs.org> | |
1689 | |
1690 * configure.in (CPP): Correct typo `print-lib-gcc-file-name' | |
1691 should be `print-libgcc-file-name' | |
1692 From Katsumi Yamaoka <yamaoka@ga.sony.co.jp> | |
1693 | |
1694 * XEmacs 20.3-beta10 is released. | |
1695 | |
1696 1997-06-25 Steven L Baur <steve@altair.xemacs.org> | |
1697 | |
1698 * XEmacs 20.3-beta9 is released. | |
1699 | |
1700 * Makefile.in (dist): Make `make dist' work for me. | |
1701 | |
1702 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
1703 | |
1704 * HELLO: final byte for ethiopic was changed to sync with | |
1705 Emacs/mule-19.34.94-zeta. | |
1706 | |
1707 1997-06-23 Steven L Baur <steve@altair.xemacs.org> | |
1708 | |
1709 * NEWS (Commands): Various updates by Hrvoje Niksic. | |
1710 | |
1711 1997-06-21 Steven L Baur <steve@altair.xemacs.org> | |
1712 | |
1713 * Makefile.in: Missing FRC.info. | |
1714 (install-arch-dep): Add missing backslash. | |
1715 From Glynn Clements <glynn@sensei.co.uk> | |
1716 | |
1717 * XEmacs 20.3-beta8 is released. | |
1718 | |
1719 1997-06-20 Steven L Baur <steve@altair.xemacs.org> | |
1720 | |
1721 * gnuserv.1: Updates and cleanup. | |
1722 From Hrvoje Niksic <hniksic@srce.hr> | |
1723 | |
1724 1997-06-14 Steven L Baur <steve@altair.xemacs.org> | |
1725 | |
1726 * XEmacs 20.3-beta7 is released. | |
1727 | |
1728 1997-06-12 Steven L Baur <steve@altair.xemacs.org> | |
1729 | |
1730 * TUTORIAL (things): Synched by Hrvoje Niksic with previous | |
1731 XEmacs version. | |
1732 | |
1733 1997-06-11 Steven L Baur <steve@altair.xemacs.org> | |
1734 | |
1735 * XEmacs 20.3-b6 is released. | |
1736 | |
1737 * configure.in (GNU_MALLOC): Check for (-l)PW instead of (-l)-lPW. | |
1738 Suggested by Martin Buchholz <mrb@eng.sun.com> | |
1739 | |
1740 1997-06-08 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
1741 | |
1742 * smilies/Face_smile.xbm, etc/smilies/Face_weep.xbm, | |
1743 etc/smilies/Face_ase2.xbm, etc/smilies/Face_ase3.xbm, | |
1744 etc/smilies/Face_ase.xbm: Add Japanese smiley faces. | |
1745 | |
1746 1997-06-09 Steven L Baur <steve@altair.xemacs.org> | |
1747 | |
1748 * XEmacs 20.3-b5 is released. | |
1749 | |
1750 1997-06-08 Steven L Baur <steve@altair.xemacs.org> | |
1751 | |
1752 * NEWS: Updates for early beta20.3 stuffs. | |
1753 From Hrvoje Niksic <hniksic@srce.hr> | |
1754 | |
1755 1997-06-05 Steven L Baur <steve@altair.xemacs.org> | |
1756 | |
1757 * XEmacs 20.3-b4 is released. | |
1758 | |
1759 1997-06-04 Martin Buchholz <mrb@eng.sun.com> | |
1760 | |
1761 * NEWS: | |
1762 * etags.1: | |
1763 Upgraded to etags 12.11 | |
1764 | |
1765 1997-05-29 Steven L Baur <steve@altair.xemacs.org> | |
1766 | |
1767 * XEmacs 20.3-beta3 is released. | |
1768 | |
1769 * INSTALL: Delete documentation of mocklisp support. | |
1770 | |
1771 * configure.in: Delete mocklisp support. | |
1772 | |
1773 1997-05-29 Steven L Baur <steve@altair.xemacs.org> | |
1774 | |
1775 * FTP: Update mirror info. | |
1776 | |
1777 * DISTRIB: Update mirror info. | |
1778 | |
1779 1997-05-26 Steven L Baur <steve@altair.xemacs.org> | |
1780 | |
1781 * FTP: Correct typo in ftp.cenatls.cena.dgac.fr. | |
1782 | |
1783 * DISTRIB: Ditto. | |
1784 | |
1785 1997-05-22 Steven L Baur <steve@altair.xemacs.org> | |
1786 | |
1787 * XEmacs 20.3-beta2 is released. | |
1788 | |
1789 Tue Jun 4 10:15:54 1996 Per Bothner <bothner@deneb.cygnus.com> | |
1790 | |
1791 * e/eterm.ti: Add kcub1, kcuf1, kcuu1, kcud1 capabilities. | |
1792 | |
1793 Sat May 17 20:30:54 1997 Steven L Baur <steve@altair.xemacs.org> | |
1794 | |
1795 * XEmacs 20.3-b1 is released. | |
1796 | |
1797 Fri May 16 20:38:19 1997 Steven L Baur <steve@altair.xemacs.org> | |
1798 | |
1799 * README: Update minor version number. | |
1800 | |
1801 Tue May 13 20:35:52 1997 Steven L Baur <steve@altair.xemacs.org> | |
1802 | |
1803 * XEmacs-20.2 is released. | |
1804 | |
1805 Sat May 10 16:14:30 1997 Steven L Baur <steve@altair.xemacs.org> | |
1806 | |
1807 * XEmacs 20.2-b6 is released. | |
1808 | |
1809 Thu May 8 20:22:34 1997 Steven L Baur <steve@altair.xemacs.org> | |
1810 | |
1811 * XEmacs 20.2-b5 is released. | |
1812 | |
1813 Fri May 2 16:50:02 1997 Steven L Baur <steve@altair.xemacs.org> | |
1814 | |
1815 * XEmacs 20.2-b4 is released. | |
1816 | |
1817 Sun Apr 27 12:25:55 1997 Steven L Baur <steve@altair.xemacs.org> | |
1818 | |
1819 * XEmacs 20.2-b3 is released. | |
1820 | |
1821 Wed Apr 23 10:33:58 1997 Steven L Baur <steve@altair.xemacs.org> | |
1822 | |
1823 * XEmacs 20.2-b2 is released. | |
1824 | |
1825 * configure.in (beta): OPENWINHOME misspelled. | |
1826 | |
1827 Mon Apr 21 14:48:29 1997 Steven L Baur <steve@altair.xemacs.org> | |
1828 | |
1829 * BETA (writing): Update with information about how to create | |
1830 patches. | |
1831 | |
1832 Sat Apr 19 16:13:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
1833 | |
1834 * XEmacs 20.2-b1 is released. | |
1835 | |
1836 Wed Apr 16 17:44:05 1997 Steven L Baur <steve@altair.xemacs.org> | |
1837 | |
1838 * XEmacs 20.1 is re-released. | |
1839 | |
1840 Tue Apr 15 21:03:22 1997 Steven L Baur <steve@altair.xemacs.org> | |
1841 | |
1842 * XEmacs 20.1 is released. | |
1843 | |
1844 Sat Apr 12 20:11:08 1997 Steven L Baur <steve@altair.xemacs.org> | |
1845 | |
1846 * XEmacs 20.1-b15 is released. | |
1847 | |
1848 Thu Apr 10 19:07:26 1997 Steven L Baur <steve@altair.xemacs.org> | |
1849 | |
1850 * XEmacs 20.1-b14 is released. (Beta 13 was skipped). | |
1851 | |
1852 Wed Apr 9 22:52:06 1997 Steven L Baur <steve@altair.xemacs.org> | |
1853 | |
1854 * XEmacs 20.1-b12 is released. | |
1855 | |
1856 Sat Apr 5 09:11:36 1997 Steven L Baur <steve@altair.xemacs.org> | |
1857 | |
1858 * XEmacs 20.1-b11 is released. | |
1859 | |
1860 Thu Mar 27 18:24:19 1997 Steven L Baur <steve@altair.xemacs.org> | |
1861 | |
1862 * XEmacs 20.1-b10 is released. | |
1863 | |
1864 Sun Mar 23 17:24:38 1997 Steven L Baur <steve@altair.xemacs.org> | |
1865 | |
1866 * XEmacs 19.15-b104 is released. | |
1867 | |
1868 Sat Mar 22 19:56:36 1997 Steven L Baur <steve@altair.xemacs.org> | |
1869 | |
1870 * sgml/CATALOG: Default to html-3.2final. | |
1871 | |
1872 Fri Mar 21 21:26:01 1997 Steven L Baur <steve@altair.xemacs.org> | |
1873 | |
1874 * XEmacs-19.15-b103 is released. | |
1875 * XEmacs-20.0-b9 is released. | |
1876 | |
1877 * Makefile.in (top_distclean): Add `Installation' to distclean | |
1878 rule. | |
1879 | |
1880 Thu Mar 20 20:14:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
1881 | |
1882 * XEmacs-19.15-b102 is released. | |
1883 | |
1884 Tue Mar 18 21:52:36 1997 Steven L Baur <steve@altair.xemacs.org> | |
1885 | |
1886 * XEmacs-19.15-b101 is released. | |
1887 | |
1888 Mon Mar 17 19:09:29 1997 Steven L Baur <steve@altair.xemacs.org> | |
1889 | |
1890 * XEmacs-20.1-b8 is released. | |
1891 * XEmacs-19.15-b100 is released. | |
1892 | |
1893 Sat Mar 15 17:15:18 1997 Steven L Baur <steve@altair.xemacs.org> | |
1894 | |
1895 * XEmacs-20.1-b7 is released. | |
1896 * XEmacs-19.15-b99 is released. | |
1897 | |
1898 Sat Mar 15 17:15:18 1997 Steven L Baur <steve@altair.xemacs.org> | |
1899 | |
1900 * sgml/CATALOG: Added IE3 DTDs and htmlpro DTD. | |
1901 | |
1902 Sat Mar 8 15:19:33 1997 Steven L Baur <steve@altair.xemacs.org> | |
1903 | |
1904 * XEmacs-20.1-b6 is released. | |
1905 * XEmacs-19.15-b98 is released. | |
1906 | |
1907 Mon Mar 3 23:57:56 1997 Steven L Baur <steve@altair.xemacs.org> | |
1908 | |
1909 * XEmacs 20.1-b5 is released. | |
1910 | |
1911 Mon Mar 3 18:09:17 1997 Steven L Baur <steve@altair.xemacs.org> | |
1912 | |
1913 * XEmacs 20.1-b4 is released. | |
1914 | |
1915 Sat Mar 1 15:38:30 1997 Steven L Baur <steve@altair.xemacs.org> | |
1916 | |
1917 * Makefile.in (distclean): Correct typos. | |
1918 | |
1919 * XEmacs 19.15-b96 is released. | |
1920 | |
1921 * configure.in: Symlink site-lisp when using --srcdir. | |
1922 Add special handling of lisp directory to allow for multiple | |
1923 site-packages files. | |
1924 | |
1925 Tue Mar 4 00:41:38 1997 Hrvoje Niksic <hniksic@srce.hr> | |
1926 | |
1927 * sample.Xdefaults: Added customization of foreground and | |
1928 background colors for the `default' face. | |
1929 | |
1930 Wed Feb 26 22:12:12 1997 Steven L Baur <steve@altair.xemacs.org> | |
1931 | |
1932 * Makefile.in (top_distclean): Reset src/PURESIZE.h for | |
1933 distribution. | |
1934 | |
1935 * XEmacs 20.1-b3 is released. | |
1936 | |
1937 Sun Feb 23 17:10:09 1997 Steven L Baur <steve@altair.xemacs.org> | |
1938 | |
1939 * XEmacs 20.1-b2 is released. | |
1940 | |
1941 Sat Feb 22 14:29:44 1997 Steven L Baur <steve@altair.xemacs.org> | |
1942 | |
1943 * XEmacs 19-15-b'95 is released. | |
1944 | |
1945 Fri Feb 21 22:29:51 1997 Martin Buchholz <mrb@eng.sun.com> | |
1946 | |
1947 * toolbar/workshop-cap-up.xpm: Moved caption up one pixel. | |
1948 | |
1949 Sat Feb 15 14:11:03 1997 Steven L Baur <steve@altair.xemacs.org> | |
1950 | |
1951 * XEmacs 20.1-b1 is released. | |
1952 * XEmacs 19.15-b94 is released. | |
1953 | |
1954 Sun Feb 9 16:15:55 1997 Steven L Baur <steve@altair.xemacs.org> | |
1955 | |
1956 * XEmacs 19.15-b93 is released. | |
1957 XEmacs 20.0 is released to the 'net. | |
1958 | |
1959 Fri Feb 7 19:21:34 1997 Steven L Baur <steve@altair.xemacs.org> | |
1960 | |
1961 * XEmacs 20.0try3 is released. | |
1962 | |
1963 Wed Feb 5 18:03:06 1997 Steven L Baur <steve@altair.xemacs.org> | |
1964 | |
1965 * XEmacs 20.0try2 is released. | |
1966 | |
1967 Mon Feb 3 19:39:08 1997 Steven L Baur <steve@altair.xemacs.org> | |
1968 | |
1969 * XEmacs 19.15-b92 is released. | |
1970 | |
1971 Sat Feb 1 18:17:38 1997 Steven L Baur <steve@altair.xemacs.org> | |
1972 | |
1973 * XEmacs 20.0try1 is released. | |
1974 * XEmacs 19.15-b91 AKA XEmacs '97 NOT! is released. | |
1975 | |
1976 Wed Jan 29 19:59:41 1997 Steven L Baur <steve@altair.xemacs.org> | |
1977 | |
1978 * CHANGES-beta: XEmacs 20.0-b93 is released. | |
1979 | |
1980 Sat Jan 25 15:43:59 1997 Steven L Baur <steve@altair.xemacs.org> | |
1981 | |
1982 * CHANGES-beta: XEmacs 20.0-b92 is released. | |
1983 | |
1984 Wed Jan 22 21:07:17 1997 Steven L Baur <steve@altair.xemacs.org> | |
1985 * XEmacs 20.0-b91 (prerelease 2) is released. | |
1986 | |
1987 * configure.in (--with-scrollbars): Add Athena3d as a toolkit | |
1988 type. | |
1989 | |
1990 * lwlib/lwlib-Xaw.c (xaw_update_one_widget): Let Athena 3d have 0 | |
1991 borderwidth. | |
1992 (xaw_scrollbar_scroll): Use SCROLLBAR_LINE_UP and | |
1993 SCROLLBAR_LINE_DOWN since that's current the only to get to the | |
1994 bottom of the buffer. :-( | |
1995 | |
1996 Tue Jan 21 20:01:19 1997 Steven L. Baur <steve@altair.xemacs.org> | |
1997 | |
1998 * sgml/HTML32.dtd: html-3.2 final dtd added. | |
1999 | |
2000 Sat Jan 11 12:05:31 1997 Steven L Baur <steve@altair.xemacs.org> | |
2001 | |
2002 * sample.emacs: Remove code snippet that wipes out the cycle | |
2003 buffer modeline feature. | |
2004 | |
2005 Sat Jan 11 12:05:31 1997 Steven L Baur <steve@altair.xemacs.org> | |
2006 | |
2007 * XEmacs 20.0 beta90 (prerelease 1) is released. | |
2008 * XEmacs 19.15 beta90 (prerelease 1) is released. | |
2009 | |
2010 Sat Jan 4 14:52:57 1997 Steven L Baur <steve@altair.xemacs.org> | |
2011 * XEmacs 20.0 beta 34 is released. | |
2012 * XEmacs 19.15 beta 7 is released. | |
2013 | |
2014 Sun Dec 29 05:37:43 1996 Martin Buchholz <mrb@eng.sun.com> | |
2015 | |
2016 * sample.emacs: Add sample code to highlight continuation glyph | |
2017 | |
2018 Sat Dec 28 15:33:27 1996 Steven L Baur <steve@altair.xemacs.org> | |
2019 | |
2020 * XEmacs 20.0 beta 33 is released. | |
2021 * XEmacs 19.15 beta 6 is released. | |
2022 | |
2023 Fri Dec 27 20:34:58 1996 Richard Mlynarik <mly@adoc.xerox.com> | |
2024 | |
2025 * yow.lines: 20k of new zippy quotes. | |
2026 | |
2027 Sat Dec 21 15:20:20 1996 Steven L Baur <steve@altair.xemacs.org> | |
2028 * XEmacs 20.0-b32 released. | |
2029 | |
2030 * XEmacs 19.15-b5 released. | |
2031 | |
2032 Tue Dec 10 19:25:25 1996 Steven L Baur <steve@altair.xemacs.org> | |
2033 | |
2034 * CHANGES-beta: XEmacs 20.0-b31 is released. | |
2035 | |
2036 Thu Dec 5 20:42:35 1996 Steven L Baur <steve@altair.xemacs.org> | |
2037 | |
2038 * edt-user.doc (File): New file from Emacs 19.34. |