Mercurial > hg > xemacs-beta
annotate man/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 | e6dec75ded0e |
children | 03ab78e48ef6 db2db229ee82 |
rev | line source |
---|---|
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1 2010-01-23 Aidan Kehoe <kehoea@parhasard.net> |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
2 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3 Generally: be careful to say fixnum, not integer, when talking |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
4 about fixed-precision integral types. I'm sure I've missed |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
5 instances, both here and in the docstrings, but this is a decent |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
6 start. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
7 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
8 * lispref/text.texi (Columns): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
9 Document where only fixnums, not integers generally, are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
10 (Registers): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
11 Remove some ancient char-int confoundance here. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
12 * lispref/strings.texi (Creating Strings, Creating Strings): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
13 Be more exact in describing where fixnums but not integers in |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
14 general are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
15 (Creating Strings): Use a more contemporary example to illustrate |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
16 how concat deals with lists including integers about #xFF. Delete |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
17 some obsolete documentation on same. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
18 (Char Table Types): Document that only fixnums are accepted as |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
19 values in syntax tables. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
20 * lispref/searching.texi (String Search, Search and Replace): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
21 Be exact in describing where fixnums but not integers in general |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
22 are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
23 * lispref/range-tables.texi (Range Tables): Be exact in describing |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
24 them; only fixnums are accepted to describe ranges. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
25 * lispref/os.texi (Killing XEmacs, User Identification) |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
26 (Time of Day, Time Conversion): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
27 Be more exact about using fixnum where only fixed-precision |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
28 integers are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
29 * lispref/objects.texi (Integer Type): Be more exact (and |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
30 up-to-date) about the possible values for |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
31 integers. Cross-reference to documentation of the bignum extension. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
32 (Equality Predicates): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
33 (Range Table Type): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
34 (Array Type): Use fixnum, not integer, to describe a |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
35 fixed-precision integer. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
36 (Syntax Table Type): Correct some English syntax here. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
37 * lispref/numbers.texi (Numbers): Change the phrasing here to use |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
38 fixnum to mean the fixed-precision integers normal in emacs. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
39 Document that our terminology deviates from that of Common Lisp, |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
40 and that we're working on it. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
41 (Compatibility Issues): Reiterate the Common Lisp versus Emacs |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
42 Lisp compatibility issues. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
43 (Comparison of Numbers, Arithmetic Operations): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
44 * lispref/commands.texi (Command Loop Info, Working With Events): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
45 * lispref/buffers.texi (Modification Time): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
46 Be more exact in describing where fixnums but not integers in |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
47 general are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
48 |
4803
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
49 2010-01-06 Jerry James <james@xemacs.org> |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
50 |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
51 * internals/internals.texi (Debugging and Testing): Document |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
52 valgrind configuration and use. |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
53 |
4790
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
54 2009-12-21 Jerry James <james@xemacs.rg> |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
55 |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
56 * internals/internals.texi (A Summary of the Various XEmacs Modules): |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
57 Remove references to OffiX support files. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
58 * lispref/dragndrop.texi (Drag and Drop): Remove reference to OffiX. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
59 (Supported Protocols): Ditto. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
60 (OffiX DND): Remove. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
61 |
4771
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
62 2009-12-10 Jerry James <james@xemacs.org> |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
63 |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
64 * lispref/processes.texi (Functions that Create Subprocesses): Refer |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
65 to etags instead of the obsolete wakeup program. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
66 |
4769
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
67 2009-12-09 Jerry James <james@xemacs.org> |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
68 |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
69 * internals/internals.texi (A Summary of the Various XEmacs Modules): |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
70 Remove references to xmu.c and xmu.h. |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
71 (Modules for Interfacing with X Windows): Ditto. |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
72 |
4820
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
73 2010-01-09 Aidan Kehoe <kehoea@parhasard.net> |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
74 |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
75 * lispref/objects.texi (Hash Table Type): |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
76 * lispref/hash-tables.texi (Introduction to Hash Tables): |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
77 Use keywords, not ordinary symbols, in the hash table read syntax; |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
78 document that we do accept the ordinary symbols for the sake of |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
79 backward-compatiblity. |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
80 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
81 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:
4708
diff
changeset
|
82 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
83 * internals/internals.texi (XEmacs from the Perspective of Building): |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
84 Remove reference to dynodump. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
85 (A Summary of the Various XEmacs Modules): Remove references to |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
86 deleted files. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
87 (Low-Level Modules): Ditto. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
88 (Modules for the Basic Displayable Lisp Objects): Remove reference to |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
89 NeXTstep. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
90 * lispref/os.texi (Operating System Environment): Remove references to |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
91 old unsupported systems. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
92 * make-stds.texi (Variables for Installation Directories): Likely |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
93 insufficient update to list of current operating systems. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
94 * xemacs-faq.texi (Q1.2.2: What versions of Unix does XEmacs run on?): |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
95 Ditto. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
96 |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
97 2009-11-08 Aidan Kehoe <kehoea@parhasard.net> |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
98 |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
99 * lispref/objects.texi (Equality Predicates): |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
100 Document #'equalp here, as well as #'equal and #'eq. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
101 |
4708
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
102 2009-10-05 Jerry James <james@xemacs.org> |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
103 |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
104 * beta.texi (Building XEmacs from a full distribution): Remove |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
105 "(builtin)" from GIF line in example Installation. |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
106 (Reporting Problems): Recommend taking screenshots as a PNG |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
107 instead of a GIF. |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
108 * internals/internals.texi (A Summary of the Various XEmacs Modules): |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
109 Remove GIF-related files. |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
110 * lispref/glyphs.texi (Image Instantiator Formats): Remove remark |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
111 about builtin GIF support. |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
112 |
4678
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
113 2009-08-11 Aidan Kehoe <kehoea@parhasard.net> |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
114 |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
115 * lispref/numbers.texi (Bigfloat Basics): |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
116 Correct this documentation (ignoring for the moment that it breaks |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
117 off in mid-sentence). |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
118 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
119 2009-08-11 Aidan Kehoe <kehoea@parhasard.net> |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
120 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
121 * cl.texi (Organization): |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
122 Remove references to the obsolete multiple-value emulating code. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
123 |
4668
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
124 2009-07-28 Stephen Turnbull <stephen@xemacs.org> |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
125 |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
126 * internals/internals.texi (Redisplay Piece by Piece): |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
127 Small improvements. |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
128 |
4666
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
129 2009-07-08 Stephen Turnbull <stephen@xemacs.org> |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
130 |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
131 * xemacs/custom.texi (Xft Font Customization): Change references |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
132 from XftFont (now deprecated) to FcFontName. |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
133 Thanks, Raymond Toy <raymond.toy@stericsson.com>. |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
134 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
135 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
136 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
137 * XEmacs 21.5.29 "garbanzo" is released. |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
138 |
4632
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
139 2009-04-02 Stephen J. Turnbull <stephen@xemacs.org> |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
140 |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
141 * internals/internals.texi: s/@urlref/@uref/g. |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
142 (Lstreams): Add urefs to David Beasley tutorials. |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
143 |
4658
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
144 2009-04-20 Stephen J. Turnbull <stephen@xemacs.org> |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
145 |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
146 * xemacs-faq.texi (Q2.5.3): |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
147 Add information about resolver configuration to Q2.5.3. |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
148 Thanks to Guillaume MULLER <gm.work.lists@gmail.com>. |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
149 |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
150 * xemacs-faq.texi (Top): Update menu. |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
151 * xemacs-faq.texi (Installation): Update menu. |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
152 |
4625
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
153 2009-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
154 |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
155 * xemacs-faq.texi (Q3.0.12): New node for Meta key on Mac. |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
156 (Top): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
157 (Editing): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
158 (Q3.0.11): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
159 (Q3.1.1): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
160 Fix up Next/Prev/Menu references. |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
161 |
4601
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
162 2009-02-04 Aidan Kehoe <kehoea@parhasard.net> |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
163 |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
164 * xemacs/xemacs.texi (Top): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
165 * xemacs/misc.texi (Emulation): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
166 * xemacs/building.texi (Lisp Libraries): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
167 (Compiling Libraries): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
168 Remove any reference to mocklisp as an active technology. |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
169 Also remove documentation of the related #'set-gosmacs-bindings, |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
170 which is no longer available. |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
171 |
4509
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
172 2008-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
173 |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
174 * xemacs-faq.texi (Q5.0.7): Fix broken instructions on use of |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
175 antialiased fonts. |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
176 |
4505
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
177 2008-08-31 Aidan Kehoe <kehoea@parhasard.net> |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
178 |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
179 * xemacs-faq.texi (Q5.0.7): Add a section on how one can use |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
180 antialiased fonts under X11; thank you Giacomo Boffi. |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
181 (Q1.0.3): Clarify pronunciation using a serious phonetic |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
182 alphabet. |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
183 |
4488 | 184 2008-07-26 Ville Skyttä <scop@xemacs.org> |
185 | |
186 * xemacs/custom.texi, xemacs/frame.texi, xemacs/mule.texi, | |
187 xemacs/packages.texi, xemacs/programs.texi, xemacs/trouble.texi: | |
188 Spelling fixes. | |
189 | |
4486
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
190 2008-07-26 Aidan Kehoe <kehoea@parhasard.net> |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
191 |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
192 * lispref/objects.texi (Character Type): |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
193 Document the error provoked when the reader sees an over-long |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
194 hexadecimal constant. |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
195 |
4485
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
196 2008-07-26 Aidan Kehoe <kehoea@parhasard.net> |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
197 |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
198 * lispref/variables.texi (Extent): |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
199 Correct a misspelling of macros, add a needed space. Thank you |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
200 John Paul Wallington, thank you Stephen Turnbull. |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
201 |
4472
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
202 2008-05-29 Aidan Kehoe <kehoea@parhasard.net> |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
203 |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
204 * lispref/objects.texi (Equality Predicates): |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
205 Expand on bignum equality; correct an omitted word in the last |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
206 commit. |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
207 |
4471
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
208 2008-05-27 Aidan Kehoe <kehoea@parhasard.net> |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
209 |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
210 * lispref/objects.texi (Equality Predicates): |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
211 Cross reference to the section on comparison of numbers when |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
212 talking about using #'eq with integers; also mention that |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
213 #'eq gives t when passed identical integers, and that #'char= is |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
214 also available there. |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
215 |
4466
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
216 2008-05-21 Aidan Kehoe <kehoea@parhasard.net> |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
217 |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
218 * internals/internals.texi (Ben's README): |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
219 Add a couple of @itemize / @end itemize pairs, to prevent |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
220 #'batch-texinfo-format choking on the input. |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
221 |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
222 2008-01-20 Aidan Kehoe <kehoea@parhasard.net> |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
223 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
224 * xemacs/cmdargs.texi (Command Switches): |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
225 Describe --script, -script. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
226 |
4427
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
227 2008-02-27 Stephen J. Turnbull <stephen@xemacs.org> |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
228 |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
229 * internals/internals.texi (Discussion -- KKCC): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
230 (Discussion -- Incremental Collector): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
231 New nodes. |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
232 (Top): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
233 (Discussion -- Garbage Collection): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
234 (Discussion -- Pure Space): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
235 Adjust pointers and menus for new nodes. |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
236 |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
237 (lrecords): Remark that lcrecords are obsolete. |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
238 |
4329
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
239 2007-12-17 Aidan Kehoe <kehoea@parhasard.net> |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
240 |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
241 * lispref/strings.texi (Formatting Strings): |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
242 Document %b for binary output. |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
243 |
4320 | 244 2007-12-10 Ville Skyttä <scop@xemacs.org> |
245 | |
246 * internals/internals.texi: Spelling fixes. | |
247 | |
4313
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
248 2007-12-07 Ville Skyttä <scop@xemacs.org> |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
249 |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
250 * beta.texi, emodules.texi, term.texi, termcap.texi, texinfo.texi, |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
251 widget.texi, xemacs-faq.texi: Spelling fixes. |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
252 |
4291 | 253 2007-11-28 Aidan Kehoe <kehoea@parhasard.net> |
254 | |
255 * internals/internals.texi (Ibytes and Ichars): | |
256 Cross reference to the Mule docs describing these typedefs, | |
257 instead of saying Not yet documented. | |
258 | |
4265 | 259 2007-11-14 Aidan Kehoe <kehoea@parhasard.net> |
260 | |
261 * lispref/objects.texi (String Type): | |
262 Describe how one can include a trailing backslash in a raw string, | |
263 by means of the Unicode escape syntax. | |
264 | |
4264 | 265 2007-11-14 Aidan Kehoe <kehoea@parhasard.net> |
266 | |
267 * xemacs/keystrokes.texi (Character Representation): | |
268 Clarify the description of which characters are displayed as | |
269 themselves and which as octal escapes bzw. "control" characters | |
270 with an initial caret. | |
271 | |
4225 | 272 2007-10-15 Adrian Aichner <adrian@xemacs.org> |
273 | |
274 * Makefile (info_files): Sync nt/xemacs.mak and man/Makefile. | |
275 Sort enries to easy future syncs. | |
276 | |
4199 | 277 2007-09-22 Stephen J. Turnbull <stephen@xemacs.org> |
278 | |
279 * lispref/searching.texi (Replacing Match): Document the escapes | |
280 for changing case in `replace-match'. Document the change to | |
281 STRBUFFER to permit subexpressions in string replacement. | |
282 | |
4196 | 283 2007-09-30 Adrian Aichner <adrian@xemacs.org> |
284 | |
285 * Makefile (TEXI2HTML_NOSPLIT): New. | |
286 * Makefile ($(HTMLDIR)/beta.html): Use TEXI2HTML_NOSPLIT. | |
287 * Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto. | |
288 | |
4195 | 289 2007-09-30 Adrian Aichner <adrian@xemacs.org> |
290 | |
291 * Makefile (TEXI2HTML): Refactor TEXI2HTML for use by | |
292 xemacsweb/Documentation/Makefile. | |
293 | |
4143 | 294 2007-08-25 Adrian Aichner <adrian@xemacs.org> |
295 | |
296 * internals/internals.texi (Through Version 18): Fix error in | |
297 Emacs Timeline URL. | |
298 * internals/internals.texi (Better Rendering Support -- Configuration with the Interim Patches): | |
299 | |
4039 | 300 2007-06-27 Aidan Kehoe <kehoea@parhasard.net> |
301 | |
302 * lispref/variables.texi (Extent): | |
303 Mention that lexical scope is available using lexical-let and | |
304 lexical-let* in cl-macs, instead of ignoring them entirely. | |
305 | |
3979 | 306 2007-05-21 Ville Skyttä <scop@xemacs.org> |
307 | |
308 * internals/internals.texi: Fix corrupted/oddly encoded chars. | |
309 * lispref/ldap.texi: Ditto. | |
310 | |
3975 | 311 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
312 | |
313 * XEmacs 21.5.28 "fuki" is released. | |
314 | |
3955 | 315 2007-05-15 Aidan Kehoe <kehoea@parhasard.net> |
316 | |
317 * internals/internals.texi: | |
318 Replace an inaccurate description of the read syntax of a Kanji | |
319 character with one using the recently-added Unicode escapes. Also | |
320 update the size of an Ichar; they're now 21-bit integers, not | |
321 19-bit integers. | |
322 | |
3930 | 323 2007-04-30 Stephen J. Turnbull <stephen@xemacs.org> |
324 | |
325 * internals/internals.texi (Creating a New Console/Device/Frame Type): | |
326 Typo fix. | |
327 | |
3773 | 328 2007-01-01 Malcolm Purvis <malcolmp@xemacs.org> |
329 | |
330 * internals/internals.texi (Ben's README): Use 'grep -F' instead | |
331 of fgrep. | |
332 | |
3772 | 333 2006-11-07 Robert Pluim <rpluim@gmail.com> |
334 | |
335 * lispref/os.texi (User Identification): The code uses HOMEPATH, | |
336 not HOMEDIR. | |
337 | |
3711 | 338 2006-11-29 Aidan Kehoe <kehoea@parhasard.net> |
339 | |
340 * xemacs/custom.texi (Face Resources): | |
341 Mention that the user should use full XLFD forms for specifying | |
342 fonts, and that Mule builds reject the short forms by | |
343 default. Also mention the work-around to the latter design choice | |
344 that was implemented for Ilya. | |
345 | |
3685 | 346 2006-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
347 | |
348 * internals/internals.texi | |
349 (Better Rendering Support -- Configuration with the Interim Patches): | |
350 Fix examples of configuration via X resources. | |
351 (Better Rendering Support -- Implementation): Fix description of | |
352 xftFont resources, introduce fcFontName resource. | |
353 | |
3674 | 354 2006-11-11 Aidan Kehoe <kehoea@parhasard.net> |
355 | |
356 * lispref/faces.texi (Face Convenience Functions): | |
357 Add information on how to specify a face's font for a given Mule | |
358 charset. | |
359 | |
360 * lispref/specifiers.texi (Specifiers): | |
361 * lispref/specifiers.texi (Simple Specifier Usage): | |
362 * lispref/specifiers.texi (Specifiers In-Depth): | |
363 * lispref/specifiers.texi (Specifier Tag Functions): | |
364 * lispref/specifiers.texi (Specifier Instantiation Functions): | |
365 Update the documentation of specifiers to reflect the new support | |
366 for Mule character sets and associating tags with them. | |
367 | |
3543 | 368 2006-08-05 Aidan Kehoe <kehoea@parhasard.net> |
369 | |
370 * lispref/objects.texi (String Type): | |
371 Give details of the raw string syntax, taken from SXEmacs and | |
372 Python. | |
373 | |
3516 | 374 2006-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
375 | |
376 * new-users-guide/edit.texi (Insert): Document bogosity in | |
377 vendor labeling of DEL key. | |
378 (Numeric Argument): Remove spurious RETs from keystroke examples. | |
379 Thanks to Michael C. Wescott <wescott@sc.rr.com>. | |
380 | |
3510 | 381 2006-07-16 Aidan Kehoe <kehoea@parhasard.net> |
382 | |
383 * xemacs/custom.texi (File Variables): | |
384 Make it clearer that file variables are buffer-local. | |
385 * xemacs/custom.texi (Faces): | |
386 "must be encoding" -> "must be encoded". | |
387 | |
388 2006-07-16 Aidan Kehoe <kehoea@parhasard.net> | |
389 | |
390 * lispref/variables.texi (Creating Buffer-Local): | |
391 Mention that buffer-local variables are created when file local | |
392 variables are set. | |
393 | |
3496 | 394 2006-07-08 Aidan Kehoe <kehoea@parhasard.net> |
395 | |
396 * internals/internals.texi (Internal String Encoding): | |
397 Mention that UTF-8 would be a reasonable alternative encoding. | |
398 * internals/internals.texi (Internal Character Encoding): | |
399 Re-arrange the description of characters to deal with 21-bit | |
400 characters. | |
401 | |
3439 | 402 2006-06-03 Aidan Kehoe <kehoea@parhasard.net> |
403 | |
404 * lispref/mule.texi (CCL Syntax): | |
405 * lispref/mule.texi (CCL Statements): | |
406 Describe the mule-to-unicode and unicode-to-mule statements; | |
407 rename the section they are described in. | |
408 | |
3404 | 409 2006-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
410 | |
411 * xemacs-faq.texi (Q2.2.3): New node. | |
412 (Q2.2.2, Q2.3.1): Fix navigation references. | |
413 (Top, Installation): Add to menus. | |
414 | |
3402 | 415 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
416 | |
417 * XEmacs 21.5.27 "fiddleheads" is released. | |
418 | |
3388 | 419 2006-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
420 | |
421 * beta.texi (Building Beta XEmacs): Rename 'Compiling' -> 'Building'. | |
422 (Reporting Problems): Improve it, make it a top-level node, add | |
423 some vertical spacing to make node breaks more visible. | |
424 (Getting the Source): Flesh it out a bit and move it to the | |
425 Building Beta XEmacs node. | |
426 | |
3387 | 427 2006-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
428 | |
429 * xemacs/custom.texi (Xft Font Customization): New node. | |
430 (Faces): Create menu, add new node. | |
431 * xemacs/xemacs.texi (Top): add new node to detail menu. | |
432 | |
3367 | 433 2006-04-29 Aidan Kehoe <kehoea@parhasard.net> |
434 | |
435 * lispref/objects.texi (Character Type): | |
436 Document the Unicode syntax for characters in characters and | |
437 strings. | |
438 | |
3354 | 439 2006-04-23 Stephen J. Turnbull <stephen@xemacs.org> |
440 | |
441 * internals/internals.texi: Run texinfo-master-menu. | |
442 (Creating a New Console/Device/Frame Type): New node. | |
443 | |
3323 | 444 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
445 | |
446 * XEmacs 21.5.26 "endive" is released. | |
447 | |
3322 | 448 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
449 | |
450 Miscellaneous doc cleanup, parts 2-4: move CHANGES-msw, | |
451 TODO.ben-mule-21-5, README.ben-mule-21-5, and | |
452 README.ben-separate-stderr to Internals Manual. | |
453 | |
454 * internals/internals.texi (Ben's TODO list): | |
455 (CHANGES from 21.4-windows branch): | |
456 (Ben's README): | |
457 (Ben's separate stderr notes): | |
458 New nodes. | |
459 | |
460 (Subprocesses): Add "Ben's separate stderr notes" to menu. | |
461 (The Great Mule Merge of March 2002): Add "Ben's TODO list" and | |
462 "Ben's README" to menu. | |
463 (Interface to MS Windows): Add "CHANGES from 21.4-windows branch" | |
464 to menu. | |
465 | |
466 (Top): Update detailmenu. | |
467 | |
468 2006-03-30 Stephen J. Turnbull <stephen@xemacs.org> | |
469 | |
470 Miscellaneous doc cleanup, part 1: move CHANGES-ben-mule to | |
471 Internals Manual. | |
472 | |
473 * internals/internals.texi (The Great Mule Merge of March 2002): | |
474 Insert CHANGES-ben-mule here, and reformat for Texinfo. | |
475 | |
3260 | 476 2006-02-26 Mike Sperber <mike@xemacs.org> |
477 | |
478 * xemacs/building.texi (External Lisp): Document that `run-lisp' | |
479 needs the os-utils package. | |
480 | |
3259 | 481 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
482 | |
483 * XEmacs 21.5.25 "eggplant" is released. | |
484 | |
3179 | 485 2005-11-25 Mike Sperber <mike@xemacs.org> |
486 | |
487 * lispref/packaging.texi (The User View): | |
488 * xemacs/startup.texi (Startup Paths): | |
489 * xemacs-faq.texi (Q2.1.6): Document new configure options and | |
490 environment variables for | |
491 package locations. | |
492 | |
3171 | 493 2005-12-24 Aidan Kehoe <kehoea@parhasard.net> |
494 | |
495 * xemacs/keystrokes.texi (Keystrokes): | |
496 Add new node on keyboards with which one can't type Latin. | |
497 * xemacs/keystrokes.texi (Non-Latin keyboards): | |
498 Describe the support for falling back to a US key layout on | |
499 keyboards where typing the Roman alphabet is difficult. | |
500 | |
3150 | 501 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
502 | |
503 * XEmacs 21.5.24 "dandelion" is released. | |
504 | |
3147 | 505 2005-12-09 Malcolm Purvis <malcolmp@xemacs.org> |
506 | |
507 * internals/internals.texi (The configure Script): Documented | |
508 more fully the behaviour of complex options. Provided examples. | |
509 | |
3128 | 510 2005-12-03 Adrian Aichner <adrian@xemacs.org> |
511 | |
512 * custom.texi (Declaring Variables): Typo fixes. | |
513 | |
3111 | 514 2005-11-29 Stephen J. Turnbull <stephen@xemacs.org> |
515 | |
516 * xemacs/custom.texi (Faces): Describe some of the more important | |
517 font naming syntaxes under `set-face-font'. Fix a typo. | |
518 | |
3094 | 519 2005-11-22 Stephen J. Turnbull <stephen@xemacs.org> |
520 | |
521 * internals/internals.texi (Working with Lisp Objects): Explain | |
522 better why DEFSYMBOL is usually preferable to intern. | |
523 | |
3073 | 524 2005-11-08 Malcolm Purvis <malcolmp@xemacs.org> |
525 | |
526 * internals/internals.texi (The configure Script): Added the | |
527 definition of the new macro XE_HELP_SUBSECTION. | |
528 | |
3062 | 529 2005-11-13 Ben Wing <ben@xemacs.org> |
530 | |
531 * Makefile: | |
532 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
533 Do some refactoring for cleanliness. | |
534 | |
3059 | 535 2005-11-13 Ben Wing <ben@xemacs.org> |
536 | |
537 * internals/internals.texi (Top): | |
538 * internals/internals.texi (CVS Techniques): | |
539 * internals/internals.texi (Creating a Branch): | |
540 * internals/internals.texi (Merging a Branch into the Trunk): | |
541 Add node on Creating a Branch. Update info concerning problems | |
542 with rtag on symlinks. (#### Is this still valid?) | |
543 | |
3031 | 544 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
545 | |
546 * XEmacs 21.5.23 "daikon" is released. | |
547 | |
3018 | 548 2005-10-20 Malcolm Purvis <malcolmp@xemacs.org> |
549 | |
550 * xemacs-faq.texi (Q1.2.2): | |
551 * xemacs-faq.texi (Q2.1.1): | |
552 * xemacs-faq.texi (Q2.1.6): | |
553 * xemacs-faq.texi (Q2.2.1): | |
554 * xemacs-faq.texi (Q2.3.6): | |
555 * xemacs-faq.texi (Q2.4.3): | |
556 * xemacs-faq.texi (Q2.4.4): | |
557 * xemacs-faq.texi (Q2.4.7): | |
558 * xemacs-faq.texi (Q5.3.3): | |
559 * xemacs-faq.texi (Q6.0.8): | |
560 * xemacs-faq.texi (Q7.2.1): | |
561 Add 21.5 specific examples of configure options in addition to the | |
562 existing 21.4 ones. | |
563 | |
3003 | 564 2005-10-15 Malcolm Purvis <malcolmp@xemacs.org> |
565 | |
566 * internals/internals.texi: "API's" -> "APIs". This fixes | |
567 problems generating dvi and pdf versions. | |
568 * internals/internals.texi (The configure Script): | |
569 Describe the use of XE_MERGED_ARG. | |
570 | |
2995 | 571 2005-10-13 Ben Wing <ben@xemacs.org> |
572 | |
573 * xemacs-faq.texi (Top): | |
574 * xemacs-faq.texi (External Subsystems): | |
575 * xemacs-faq.texi (Q5.4.4): | |
576 * xemacs-faq.texi (Q5.4.5): | |
577 * xemacs-faq.texi (Q5.4.6): | |
578 Add question about need to run `rebaseall' under Cygwin. | |
579 | |
2972 | 580 2005-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
581 | |
582 * emodules.texi (Distribution with XEmacs): New node describing | |
583 organization of module-related code in top-level configure.ac and | |
584 src/Makefile.in.in. | |
585 | |
2960 | 586 2005-09-27 Adrian Aichner <adrian@xemacs.org> |
587 | |
588 * lispref/compile.texi (Compilation Options): Lowercase SYMBOL | |
589 argument in `byte-compile-print-gensym' documentation, as | |
590 suggested by Stephen. | |
591 | |
2955 | 592 2005-09-27 Adrian Aichner <adrian@xemacs.org> |
593 | |
594 * lispref/packaging.texi: Get file to compile with teinfmt.el. | |
595 * lispref/packaging.texi (Packaging): Ditto. | |
596 * lispref/packaging.texi (Package Overview): Ditto. | |
597 * lispref/packaging.texi (The User View): Ditto. | |
598 * lispref/packaging.texi (The Library Maintainer View): Ditto. | |
599 * lispref/packaging.texi (Infrastructure): Ditto. | |
600 * lispref/packaging.texi (Obtaining): Ditto. | |
601 * lispref/packaging.texi (Local.rules File): Ditto. | |
602 * lispref/packaging.texi (package-info.in): Ditto. | |
603 * lispref/packaging.texi (Makefile): Ditto. | |
604 * lispref/packaging.texi (Documenting Packages): Ditto. | |
605 | |
606 2005-09-27 Adrian Aichner <adrian@xemacs.org> | |
607 | |
608 * internals/internals.texi (A Summary of the Various XEmacs | |
609 Modules): Get file to compile with texinfmt.el. | |
610 * internals/internals.texi (Windows Build Flags): Ditto. | |
611 | |
2953 | 612 2005-09-26 Ben Wing <ben@xemacs.org> |
613 | |
614 * lispref/glyphs.texi (Images): | |
615 * lispref/glyphs.texi (Image Instantiators): | |
616 * lispref/glyphs.texi (Image Instantiator Formats): | |
617 * lispref/glyphs.texi (Image Instances): | |
618 * lispref/glyphs.texi (Image Instance Functions): | |
619 * lispref/glyphs.texi (Creating Glyphs): | |
620 * lispref/glyphs.texi (Lisp API to Native Widgets): | |
621 * lispref/glyphs.texi (Glyph Properties): | |
622 * lispref/glyphs.texi (Glyph Examples): | |
623 * lispref/lispref.texi (Top): | |
624 * lispref/specifiers.texi (Specifiers): | |
625 * lispref/specifiers.texi (Introduction to Specifiers): | |
626 * lispref/specifiers.texi (Simple Specifier Usage): | |
627 * lispref/specifiers.texi (Specifiers In-Depth): | |
628 * lispref/specifiers.texi (Specifier Instantiation): | |
629 * lispref/specifiers.texi (Retrieving Specifications): | |
630 * lispref/specifiers.texi (Specifier Tag Functions): | |
631 * lispref/specifiers.texi (Specifier Validation Functions): | |
632 Use "instantiation" not "instancing". Fix some places where | |
633 "specifier" is used to mean "instantiator". | |
634 | |
2949 | 635 2005-09-25 Adrian Aichner <adrian@xemacs.org> |
636 | |
637 * lispref/compile.texi (Compilation Options): Supply missing | |
638 argument to @var{}, using same SYMBOL as in variable docstring of | |
639 `byte-compile-print-gensym'. | |
640 | |
2931 | 641 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
642 | |
643 * XEmacs 21.5.22 "cucumber" is released. | |
644 | |
2867 | 645 2005-07-20 Didier Verna <didier@xemacs.org> |
646 | |
647 * lispref/faces.texi (Basic Face Functions): Rephrase the face | |
648 aliasing paragraph following a suggestion from Stephen J. | |
649 Turnbull. | |
650 | |
2865 | 651 2005-07-19 Didier Verna <didier@xemacs.org> |
652 | |
653 * lispref/faces.texi (Basic Face Functions): Document the face | |
654 aliasing feature. | |
655 | |
2862 | 656 2005-07-17 Aidan Kehoe <kehoea@parhasard.net> |
657 | |
658 * lispref/commands.texi (Converting Events): | |
659 Give details on the deprecated ALLOW-NON-ASCII argument to | |
2865 | 660 event-to-character, and why you shouldn't use it. |
2862 | 661 |
2828 | 662 2005-06-26 Aidan Kehoe <kehoea@parhasard.net> |
663 | |
2865 | 664 * lispref/commands.texi (Converting Events): |
2828 | 665 * lispref/keymaps.texi (Key Sequences): |
666 Stop pretending ASCII is an eight-bit character set, and remove | |
667 documentation of event-to-character's vanished fourth argument. | |
668 | |
669 * internals/internals.texi (Old Future Work -- Improvements in | |
670 support for non-ASCII (European) keysyms under X): | |
2865 | 671 Rename the ascii-character property. |
672 | |
2818 | 673 2005-06-19 Aidan Kehoe <kehoea@parhasard.net> |
674 | |
675 * lispref/building.texi (Building XEmacs and Object Allocation): | |
2865 | 676 Pure storage has been gone for half a decade or more. |
677 * lispref/mule.texi (Internationalization Terminology): | |
678 Phrase stuff a little more clearly, compare Mule with Unicode. | |
2818 | 679 * lispref/lispref.texi (Top): |
2865 | 680 Take out info on pure storage. |
2818 | 681 |
2791 | 682 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
683 | |
684 * XEmacs 21.5.21 "corn" is released. | |
685 | |
2769 | 686 2005-05-10 Aidan Kehoe <kehoea@parhasard.net> |
687 | |
688 * xemacs-faq.texi (Q3.2.5): (setq text-mode-hook | |
2865 | 689 'turn-on-auto-fill) is not a good idea. |
2769 | 690 |
2768 | 691 2005-05-10 Aidan Kehoe <kehoea@parhasard.net> |
692 | |
2865 | 693 * xemacs/sending.texi (Sending Mail):Document that sendmail.el is |
694 underfeatured and not getting better anytime soon; suggest using | |
695 another mailer. | |
2768 | 696 |
2757 | 697 2005-05-05 Aidan Kehoe <kehoea@parhasard.net> |
698 | |
699 * xemacs/building.texi (Lisp Modes): | |
700 * xemacs/building.texi (Lisp Interaction): | |
701 * xemacs/entering.texi (Entering Emacs): | |
702 * xemacs/menus.texi (File Menu): | |
703 * xemacs/text.texi (Auto Fill): | |
704 None of the keymaps I have access to have linefeed keys; they all | |
705 use Return. As such, for new users, C-j is really the only option | |
706 for evaluation in Lisp interaction mode, and should be documented | |
2865 | 707 as such. |
708 | |
3050 | 709 2005-04-18 Stephen J. Turnbull <stephen@xemacs.org> |
2736 | 710 |
711 * internals/internals.texi | |
712 (Better Rendering Support -- Modern Font Support): | |
713 (Modern Font Support -- Font Concepts): | |
714 (Modern Font Support -- fontconfig): | |
715 (Modern Font Support -- Xft): | |
716 New nodes describing the Lisp API. | |
717 (Future Work -- Better Rendering Support): | |
718 Add Better Rendering Support -- Modern Font Support to menu. | |
719 | |
720 2005-04-05 Stephen J. Turnbull <stephen@xemacs.org> | |
721 | |
722 * xemacs/custom.texi (X Resources): Improve wording. | |
723 | |
724 2005-03-13 Stephen J. Turnbull <stephen@xemacs.org> | |
725 | |
726 * xemacs/custom.texi (Minor Modes): Improve general description. | |
727 Add description of Pending Delete and Filladapt modes. | |
728 (File Variables): Improve caution against invoking minor modes. | |
729 (Syntax Entry): Strengthen caution against "\s ". | |
730 | |
731 * xemacs/major.texi (Major Modes): Improve accuracy of wording. | |
732 (Mode Hooks): Describe use of hooks to invoke minor modes. | |
733 | |
2715 | 734 2005-04-06 Ben Wing <ben@xemacs.org> |
735 | |
736 * internals/internals.texi (Authorship of XEmacs): Copy authorship | |
737 section from FAQ and comment out old info, which is quite out of | |
738 date and full of typos. | |
739 | |
2690 | 740 2005-03-26 Aidan Kehoe <kehoea@parhasard.net> |
741 | |
742 * lispref/mule.texi (CCL Example): | |
2691 | 743 char-int -> char-to-int, and hex 41 is decimal 65, both problems |
2865 | 744 with my previous patch pointed out by Stephen. |
2690 | 745 * lispref/mule.texi (The actual coding system): |
746 Give information on the make-coding-system call, and where the | |
2865 | 747 actual package can be found. |
748 | |
2681 | 749 2005-03-24 Aidan Kehoe <kehoea@parhasard.net> |
750 | |
751 * xemacs/custom.texi (X Resources): | |
752 "Emacs" as the application class -> "XEmacs" as the application | |
753 class, mention the old resource class determination behaviour, and | |
2865 | 754 how one can temporarily re-instate it. |
755 | |
2665 | 756 2005-03-15 Stephen J. Turnbull <stephen@xemacs.org> |
757 | |
758 * internals/internals.texi (The XEmacs Split): | |
759 * standards.texi (Option Table): | |
760 Shut up makeinfo and hack-local-variables. | |
761 | |
2662 | 762 2005-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
763 | |
764 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
765 Document compiler warnings when assert expands to empty statement. | |
766 | |
2653 | 767 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
768 | |
769 * XEmacs 21.5.20 "cilantro" is released. | |
770 | |
2647 | 771 2005-03-05 Malcolm Purvis <malcolmp@xemacs.org> |
772 | |
773 * beta.texi : Change configure arguments to the new autoconf 2.5 | |
774 style configure. | |
775 * internals/internals.texi (The Build Configuration System): Fill | |
776 out the details. | |
777 | |
2640 | 778 2005-01-19 Aidan Kehoe <kehoea@parhasard.net> |
779 | |
780 * lispref/mule.texi (CCL Example): Detail an implementation of the | |
2865 | 781 web's URL encoding as a CCL coding system example. |
2640 | 782 |
783 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
784 | |
785 * internals/internals.texi (The version.sh Script): New node. | |
786 (XEmacs from the Perspective of Building): | |
787 (Low-Level Modules): | |
788 (The Build Configuration System): | |
789 (Adding Configurable Features): | |
790 Add or update references to the version.sh node and/or file. | |
791 | |
792 (XEmacs from the Perspective of Building): Improve text. | |
793 | |
794 | |
795 2005-01-22 Stephen J. Turnbull <stephen@xemacs.org> | |
796 | |
797 * internals/internals.texi (XEmacs): Add XEmacs 21.4.16 to list. | |
798 (The XEmacs Split): Add comments on untrue legal factoids. | |
799 (The XEmacs Split): Add some @urefs for Jamie's commentary. | |
800 | |
2608 | 801 2005-02-23 Aidan Kehoe <kehoea@parhasard.net> |
802 | |
803 * lispref/searching.texi (Syntax of Regexps): | |
804 Mention the \c and \C regular expression constructs; cross | |
2865 | 805 reference to the Category Table documentation. |
2608 | 806 |
2602 | 807 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> |
808 | |
809 * internals/internals.texi (The version.sh Script): New node. | |
810 (XEmacs from the Perspective of Building): | |
811 (Low-Level Modules): | |
812 (The Build Configuration System): | |
813 (Adding Configurable Features): | |
814 Add or update references to the version.sh node and/or file. | |
815 | |
816 (XEmacs from the Perspective of Building): Improve text. | |
817 | |
2597 | 818 2005-02-19 Stephen J. Turnbull <stephen@xemacs.org> |
819 | |
820 * internals/internals.texi (Introduction to Writing C Code): | |
821 Change "mostly warning-free" to "warning-free" to encourage | |
822 reporting warnings as bugs. | |
823 (The configure Script): | |
824 Incorporate Malcolm Purvis's notes from configure.ac. Document | |
825 his implementations of keyword and complex options, and remove | |
826 descriptions of my obsolete code. | |
827 | |
828 2005-01-16 Stephen J. Turnbull <stephen@xemacs.org> | |
829 | |
830 * internals/internals.texi (Better Rendering Support -- | |
831 Configuration with the Interim Patches): | |
832 Improve notes on configuration. | |
833 | |
834 2004-12-15 Stephen J. Turnbull <stephen@xemacs.org> | |
835 | |
836 * internals/internals.texi (Better Rendering Support -- | |
837 Configuration with the Interim Patches): Menubar uses xftFont | |
838 resource, too. | |
839 | |
840 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> | |
841 | |
842 * internals/internals.texi (XEmacs from the Perspective of | |
843 Building): Mention autoconf. | |
844 (The Modules of XEmacs): Point Next the The Build Configuration | |
845 System and add Modules for Building XEmacs to the menu. | |
846 (A Summary of the Various XEmacs Modules): Add Modules for | |
847 Building XEmacs to menu, and Modules for Build Configuration, | |
848 Modules for Compiling XEmacs, and Modules for Preloading Lisp to | |
849 the table of sections. | |
850 (Low-Level Modules): Point Previous to Modules for Building XEmacs. | |
851 (Modules for Building XEmacs): | |
852 (Modules for Build Configuration): | |
853 (Modules for Compiling XEmacs): | |
854 (Modules for Preloading Lisp): | |
855 (The Build Configuration System): | |
856 (Adding Configurable Features): | |
857 (The configure Script): | |
858 (The Makefile Precursors): | |
859 New nodes. | |
860 (Rules When Writing New C Code): | |
861 Point Previous to The Build Configuration System. | |
862 | |
2594 | 863 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
864 | |
865 * XEmacs 21.5.19 "chives" is released. | |
866 | |
2559 | 867 2005-02-03 Ben Wing <ben@xemacs.org> |
868 | |
869 * xemacs-faq.texi: | |
870 * xemacs-faq.texi (Top): | |
871 * xemacs-faq.texi (Introduction): | |
872 * xemacs-faq.texi (Q1.2.2): | |
873 * xemacs-faq.texi (Q1.2.5): | |
874 * xemacs-faq.texi (Q1.2.9): | |
875 * xemacs-faq.texi (Q1.2.10): | |
876 * xemacs-faq.texi (Q1.2.11): | |
877 * xemacs-faq.texi (Q1.2.12): | |
878 * xemacs-faq.texi (Q1.4.2): | |
879 * xemacs-faq.texi (Q1.5.2): | |
880 * xemacs-faq.texi (Q1.5.3): | |
881 * xemacs-faq.texi (Q1.5.4): | |
882 * xemacs-faq.texi (Q1.5.5): | |
883 * xemacs-faq.texi (Q1.6.6): | |
884 * xemacs-faq.texi (Q1.7.1): | |
885 * xemacs-faq.texi (Q1.7.2): | |
886 * xemacs-faq.texi (Q1.7.3): | |
887 * xemacs-faq.texi (Q1.7.4): | |
888 * xemacs-faq.texi (Installation): | |
889 * xemacs-faq.texi (Q2.0.1): | |
890 * xemacs-faq.texi (Q2.0.2): | |
891 * xemacs-faq.texi (Q2.0.3): | |
892 * xemacs-faq.texi (Q2.0.4): | |
893 * xemacs-faq.texi (Q2.0.5): | |
894 * xemacs-faq.texi (Q2.1.1): | |
895 * xemacs-faq.texi (Q2.1.2): | |
896 * xemacs-faq.texi (Q2.1.3): | |
897 * xemacs-faq.texi (Q2.1.4): | |
898 * xemacs-faq.texi (Q2.1.5): | |
899 * xemacs-faq.texi (Q2.1.6): | |
900 * xemacs-faq.texi (Q2.1.7): | |
901 * xemacs-faq.texi (Q2.2.1): | |
902 * xemacs-faq.texi (Q2.2.2): | |
903 * xemacs-faq.texi (Q2.3.1): | |
904 * xemacs-faq.texi (Q2.3.2): | |
905 * xemacs-faq.texi (Q2.3.3): | |
906 * xemacs-faq.texi (Q2.3.4): | |
907 * xemacs-faq.texi (Q2.3.5): | |
908 * xemacs-faq.texi (Q2.3.6): | |
909 * xemacs-faq.texi (Q2.3.7): | |
910 * xemacs-faq.texi (Q2.3.8): | |
911 * xemacs-faq.texi (Q2.4.1): | |
912 * xemacs-faq.texi (Q2.4.2): | |
913 * xemacs-faq.texi (Q2.4.3): | |
914 * xemacs-faq.texi (Q2.4.4): | |
915 * xemacs-faq.texi (Q2.4.5): | |
916 * xemacs-faq.texi (Q2.4.6): | |
917 * xemacs-faq.texi (Q2.4.7): | |
918 * xemacs-faq.texi (Q2.4.8): | |
919 * xemacs-faq.texi (Q2.4.9): | |
920 * xemacs-faq.texi (Q2.4.10): | |
921 * xemacs-faq.texi (Q2.4.11): | |
922 * xemacs-faq.texi (Q2.4.12): | |
923 * xemacs-faq.texi (Q2.5.1): | |
924 * xemacs-faq.texi (Q2.5.2): | |
925 * xemacs-faq.texi (Q2.5.3): | |
926 * xemacs-faq.texi (Q2.5.4): | |
927 * xemacs-faq.texi (Q2.5.5): | |
928 * xemacs-faq.texi (Legacy Versions): | |
929 * xemacs-faq.texi (Q10.0.1): | |
930 * xemacs-faq.texi (Q10.0.2): | |
931 Flesh out intro section on packages and section on installing | |
932 packages. Incorporate README, README.packages, BUGS, etc/PACKAGES. | |
933 Various other changes. | |
934 | |
2547 | 935 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> |
936 | |
937 * beta.texi: Update Copyright. Add pointer comment. | |
938 | |
939 (New packages): Remove personal names, point at jobs.html | |
940 instead. | |
941 | |
942 (Syncing with GNU Emacs): Change "don't assume Mule" to | |
943 "conditionalize Mule dependencies correctly". RMS stroking: use | |
944 "GNU", not "FSF", in sync notices. | |
945 | |
946 2005-02-02 Robert Delius Royar <xemacs@frinabulax.org> | |
947 | |
948 * beta.texi (Top): | |
2865 | 949 Add reference to Index in catalog to prevent |
2547 | 950 errors compiling with GNU makeinfo 4.5. |
951 | |
952 * beta.texi (Syncing with GNU Emacs): | |
2865 | 953 Add forward reference to Index in next node to prevent |
2547 | 954 errors compiling with GNU makeinfo 4.5. |
955 | |
956 * beta.texi (Index): | |
957 Add backward reference to Syncing with GNU Emacs to | |
2865 | 958 replace obsolete reference to Defining Variables to |
2547 | 959 prevent errors compiling with GNU makeinfo 4.5. |
960 | |
2537 | 961 2005-01-31 Ben Wing <ben@xemacs.org> |
962 | |
963 * xemacs/help.texi (Misc Help): | |
964 Delete references to DISTRIB. Point to FAQ. | |
2865 | 965 |
2537 | 966 * xemacs/new.texi: |
967 Update sample code for version checking. | |
2865 | 968 |
2537 | 969 * xemacs/xemacs.texi (Distrib): |
970 * xemacs/xemacs.texi (Intro): | |
971 Delete references to DISTRIB. Point directly to web site. | |
972 Update stuff referring to GNU Emacs. Delete references to Win-Emacs. | |
973 | |
974 2005-01-31 Ben Wing <ben@xemacs.org> | |
975 | |
976 * Makefile: | |
977 * Makefile (info_files): | |
978 * Makefile (html_files): | |
979 * Makefile (dvi_files): | |
980 * Makefile (pdf_files): | |
981 * Makefile ($(INFODIR)/beta.info): | |
982 Add beta.texi and built files. | |
2865 | 983 |
2537 | 984 * xemacs-faq.texi (Top): |
985 * xemacs-faq.texi (Introduction): | |
986 * xemacs-faq.texi (Q1.0.3): | |
987 * xemacs-faq.texi (Q1.0.4): | |
988 * xemacs-faq.texi (Q1.0.5): | |
989 * xemacs-faq.texi (Q1.0.6): | |
990 * xemacs-faq.texi (Q1.1.1): | |
991 * xemacs-faq.texi (Q1.1.2): | |
992 * xemacs-faq.texi (Q1.1.3): | |
993 * xemacs-faq.texi (Q1.1.4): | |
994 * xemacs-faq.texi (Q1.2.1): | |
995 * xemacs-faq.texi (Q1.2.2): | |
996 * xemacs-faq.texi (Q1.2.3): | |
997 * xemacs-faq.texi (Q1.2.4): | |
998 * xemacs-faq.texi (Q1.2.5): | |
999 * xemacs-faq.texi (Q1.2.6): | |
1000 * xemacs-faq.texi (Q1.2.7): | |
1001 * xemacs-faq.texi (Q1.2.8): | |
1002 * xemacs-faq.texi (Q1.2.9): | |
1003 * xemacs-faq.texi (Q1.2.10): | |
1004 * xemacs-faq.texi (Q1.2.11): | |
1005 * xemacs-faq.texi (Q1.2.12): | |
1006 * xemacs-faq.texi (Q1.2.13): | |
1007 * xemacs-faq.texi (Q1.3.1): | |
1008 * xemacs-faq.texi (Q1.3.2): | |
1009 * xemacs-faq.texi (Q1.3.3): | |
1010 * xemacs-faq.texi (Q1.3.4): | |
1011 * xemacs-faq.texi (Q1.3.5): | |
1012 * xemacs-faq.texi (Q1.3.6): | |
1013 * xemacs-faq.texi (Q1.3.7): | |
1014 * xemacs-faq.texi (Q1.3.8): | |
1015 * xemacs-faq.texi (Q1.4.1): | |
1016 * xemacs-faq.texi (Q1.4.2): | |
1017 * xemacs-faq.texi (double-word): New. | |
1018 * xemacs-faq.texi (Q1.4.3): | |
1019 * xemacs-faq.texi (Q1.4.4): | |
1020 * xemacs-faq.texi (Q1.4.5): | |
1021 * xemacs-faq.texi (Q1.5.1): | |
1022 * xemacs-faq.texi (Q1.5.2): | |
1023 * xemacs-faq.texi (Q1.5.3): | |
1024 * xemacs-faq.texi (Q1.6.1): | |
1025 * xemacs-faq.texi (Q1.6.2): | |
1026 * xemacs-faq.texi (Q1.6.3): | |
1027 * xemacs-faq.texi (Q1.6.4): | |
1028 * xemacs-faq.texi (Q1.6.5): | |
1029 * xemacs-faq.texi (Q1.6.6): | |
1030 * xemacs-faq.texi (Q1.7.1): | |
1031 * xemacs-faq.texi (Q1.8.1): | |
1032 * xemacs-faq.texi (Q1.8.2): | |
1033 * xemacs-faq.texi (Q1.8.3): | |
1034 * xemacs-faq.texi (Q1.8.4): | |
1035 * xemacs-faq.texi (Q1.8.5): | |
1036 * xemacs-faq.texi (Q1.8.6): | |
1037 * xemacs-faq.texi (Q1.8.7): | |
1038 * xemacs-faq.texi (Q1.8.8): | |
1039 * xemacs-faq.texi (Q1.8.9): | |
1040 * xemacs-faq.texi (Q2.2.1): | |
1041 * xemacs-faq.texi (Q2.2.2): | |
1042 * xemacs-faq.texi (Q2.4.2): | |
1043 * xemacs-faq.texi (Advanced): | |
1044 * xemacs-faq.texi (Q7.0.1): | |
1045 * xemacs-faq.texi (Q7.0.2): | |
1046 * xemacs-faq.texi (Q7.0.3): | |
1047 * xemacs-faq.texi (Q7.0.4): | |
1048 * xemacs-faq.texi (Q7.0.5): | |
1049 * xemacs-faq.texi (Q7.0.6): | |
1050 * xemacs-faq.texi (Q7.1.1): | |
1051 * xemacs-faq.texi (Q7.1.2): | |
1052 * xemacs-faq.texi (Q7.1.3): | |
1053 * xemacs-faq.texi (Q7.1.4): | |
1054 * xemacs-faq.texi (Q7.1.5): | |
1055 * xemacs-faq.texi (Q7.1.6): | |
1056 * xemacs-faq.texi (Q7.1.7): | |
1057 * xemacs-faq.texi (Q7.1.8): | |
1058 * xemacs-faq.texi (Q7.1.9): | |
1059 * xemacs-faq.texi (Q7.1.10): | |
1060 * xemacs-faq.texi (Q7.1.11): | |
1061 * xemacs-faq.texi (Q7.2.1): | |
1062 * xemacs-faq.texi (Q7.2.2): | |
1063 * xemacs-faq.texi (Q7.2.3): | |
1064 * xemacs-faq.texi (Other Packages): | |
1065 * xemacs-faq.texi (Current Events): | |
1066 * xemacs-faq.texi (Legacy Versions): | |
1067 Major overhaul of section 1. Add mailing list info, update | |
1068 downloading info, add info on CVS, etc. | |
1069 | |
2522 | 1070 2004-10-17 Shyamal Prasad <shyamal@member.fsf.org> |
1071 | |
1072 * xemacs/programs.texi (Program Modes): Updated it to reflect | |
1073 current status of programming modes. | |
1074 * xemacs/programs.texi (CC Mode): New section introduces CC | |
1075 Mode. Introduces customization with reference to CC Mode | |
1076 manual. Also introduce C/AWK modes in prog-modes package | |
1077 * xemacs/programs.texi (C Ident): Removed - it was | |
1078 obsolete. prog-modes package documentation now contains | |
2865 | 1079 indentation description for old C mode |
2522 | 1080 * xemacs/major.texi (Mode Hooks): Add description of major mode |
1081 hooks. Cleaned up and updated programming mode descriptions. | |
1082 * xemacs/xemacs.texi (Top): Updated Detailed Node listing for new | |
1083 CC Mode section in programs.texi | |
1084 | |
1085 | |
2507 | 1086 2005-01-26 Ben Wing <ben@xemacs.org> |
1087 | |
1088 * internals/internals.texi: | |
1089 * internals/internals.texi (Through Version 18): | |
1090 * internals/internals.texi (GNU Emacs 19): | |
1091 * internals/internals.texi (GNU Emacs 20): | |
1092 Update History. | |
1093 | |
1094 * internals/internals.texi (Unicode support under Windows): | |
1095 Redo section on Windows 95 support for Unicode. | |
1096 | |
2492 | 1097 2005-01-19 Aidan Kehoe <kehoea@parhasard.net> |
1098 | |
1099 * man/lispref/functions.texi (Functions): Rename to "Functions and | |
1100 Commands" | |
1101 * man/lispref/functions.texi (What Is a Function): Move the definition | |
1102 of a command further up the list, give information on a trivial | |
1103 (interactive) declaration, and cross-reference to the key binding | |
1104 detail. Cf. 87vf9wgd08.fsf@tleepslib.sk.tsukuba.ac.jp | |
2865 | 1105 (comp.emacs.xemacs, 2005-01-18). |
2492 | 1106 * man/lispref/eval.texi man/lispref/lispref.texi |
2865 | 1107 man/lispref/macros.texi man/lispref/symbols.texi |
2492 | 1108 man/lispref/variables.texi: Fix cross references. |
1109 | |
2459 | 1110 2004-12-28 Ben Wing <ben@xemacs.org> |
1111 | |
1112 * xemacs-faq.texi (Top): | |
1113 * xemacs-faq.texi (Introduction): | |
1114 * xemacs-faq.texi (Q1.0.3): | |
1115 * xemacs-faq.texi (Q1.0.5): | |
1116 * xemacs-faq.texi (Q1.0.10): | |
1117 * xemacs-faq.texi (Q1.1.4): | |
1118 * xemacs-faq.texi (Q1.1.5): | |
1119 * xemacs-faq.texi (Q1.4.1): | |
1120 * xemacs-faq.texi (Q1.4.3): | |
1121 * xemacs-faq.texi (Q1.5.8): | |
1122 * xemacs-faq.texi (Installation): | |
1123 * xemacs-faq.texi (Q2.0.3): | |
1124 * xemacs-faq.texi (Q2.0.5): | |
1125 * xemacs-faq.texi (Q2.1.1): | |
1126 * xemacs-faq.texi (Q2.1.2): | |
1127 * xemacs-faq.texi (Q2.2.7): | |
1128 * xemacs-faq.texi (Q2.4.6): | |
1129 * xemacs-faq.texi (Editing): | |
1130 * xemacs-faq.texi (Q3.0.1): | |
1131 * xemacs-faq.texi (Q3.0.2): | |
1132 * xemacs-faq.texi (Q3.0.3): | |
1133 * xemacs-faq.texi (Q3.0.4): | |
1134 * xemacs-faq.texi (Q3.0.5): | |
1135 * xemacs-faq.texi (Q3.0.6): | |
1136 * xemacs-faq.texi (Q3.0.7): | |
1137 * xemacs-faq.texi (Q3.0.8): | |
1138 * xemacs-faq.texi (Q3.0.9): | |
1139 * xemacs-faq.texi (Q3.0.10): | |
1140 * xemacs-faq.texi (Q3.0.11): | |
1141 * xemacs-faq.texi (Q3.1.1): | |
1142 * xemacs-faq.texi (Q3.1.2): | |
1143 * xemacs-faq.texi (Q3.1.3): | |
1144 * xemacs-faq.texi (Q3.1.4): | |
1145 * xemacs-faq.texi (Q3.1.5): | |
1146 * xemacs-faq.texi (Q3.2.1): | |
1147 * xemacs-faq.texi (Q3.2.2): | |
1148 * xemacs-faq.texi (Q3.2.3): | |
1149 * xemacs-faq.texi (Q3.2.4): | |
1150 * xemacs-faq.texi (Q3.2.5): | |
1151 * xemacs-faq.texi (Q3.3.1): | |
1152 * xemacs-faq.texi (Q3.3.2): | |
1153 * xemacs-faq.texi (Q3.3.3): | |
1154 * xemacs-faq.texi (Q3.3.4): | |
1155 * xemacs-faq.texi (Q3.3.5): | |
1156 * xemacs-faq.texi (Q3.3.6): | |
1157 * xemacs-faq.texi (Q3.4.1): | |
1158 * xemacs-faq.texi (Q3.4.2): | |
1159 * xemacs-faq.texi (Display): | |
1160 * xemacs-faq.texi (Q4.0.1): | |
1161 * xemacs-faq.texi (Q4.0.2): | |
1162 * xemacs-faq.texi (Q4.0.3): | |
1163 * xemacs-faq.texi (Q4.0.4): | |
1164 * xemacs-faq.texi (my-toggle-toolbar): Removed. | |
1165 * xemacs-faq.texi (Q4.0.5): | |
1166 * xemacs-faq.texi (Q4.0.6): | |
1167 * xemacs-faq.texi (Q4.0.7): | |
1168 * xemacs-faq.texi (Q4.0.8): | |
1169 * xemacs-faq.texi (Q4.0.9): | |
1170 * xemacs-faq.texi (Q4.1.1): | |
1171 * xemacs-faq.texi (Q4.1.2): | |
1172 * xemacs-faq.texi (Q4.2.1): | |
1173 * xemacs-faq.texi (Q4.2.2): | |
1174 * xemacs-faq.texi (Q4.2.3): | |
1175 * xemacs-faq.texi (Q4.2.4): | |
1176 * xemacs-faq.texi (Q4.3.1): | |
1177 * xemacs-faq.texi (Q4.3.2): | |
1178 * xemacs-faq.texi (Q4.3.3): | |
1179 * xemacs-faq.texi (Q4.4.1): | |
1180 * xemacs-faq.texi (Q4.4.2): | |
1181 * xemacs-faq.texi (Q4.4.3): | |
1182 * xemacs-faq.texi (Q4.4.4): | |
1183 * xemacs-faq.texi (Q4.4.5): | |
1184 * xemacs-faq.texi (Q4.5.1): | |
1185 * xemacs-faq.texi (Q4.5.2): | |
1186 * xemacs-faq.texi (Q4.5.3): | |
1187 * xemacs-faq.texi (Q4.5.4): | |
1188 * xemacs-faq.texi (Q4.6.1): | |
1189 * xemacs-faq.texi (Q4.6.2): | |
1190 * xemacs-faq.texi (Q4.6.3): | |
1191 * xemacs-faq.texi (Q4.6.4): | |
1192 * xemacs-faq.texi (scroll-up): Removed. | |
1193 * xemacs-faq.texi (Q4.6.5): | |
1194 * xemacs-faq.texi (scroll-down): Removed. | |
1195 * xemacs-faq.texi (Q4.6.6): | |
1196 * xemacs-faq.texi (Q4.6.7): | |
1197 * xemacs-faq.texi (Q4.7.1): | |
1198 * xemacs-faq.texi (Q4.7.2): | |
1199 * xemacs-faq.texi (Q4.7.3): | |
1200 * xemacs-faq.texi (Q4.7.4): | |
1201 * xemacs-faq.texi (External Subsystems): | |
1202 * xemacs-faq.texi (Q5.0.1): | |
1203 * xemacs-faq.texi (Q5.0.2): | |
1204 * xemacs-faq.texi (Q5.0.3): | |
1205 * xemacs-faq.texi (Q5.0.4): | |
1206 * xemacs-faq.texi (Q5.0.5): | |
1207 * xemacs-faq.texi (Q5.0.6): | |
1208 * xemacs-faq.texi (Q5.1.1): | |
1209 * xemacs-faq.texi (Q5.1.2): | |
1210 * xemacs-faq.texi (Q5.2.1): | |
1211 * xemacs-faq.texi (Q5.2.2): | |
1212 * xemacs-faq.texi (Q5.2.3): | |
1213 * xemacs-faq.texi (Q5.2.4): | |
1214 * xemacs-faq.texi (Q5.3.1): | |
1215 * xemacs-faq.texi (Q5.3.2): | |
1216 * xemacs-faq.texi (Q5.3.3): | |
1217 * xemacs-faq.texi (Q5.3.4): | |
1218 * xemacs-faq.texi (Q5.4.1): | |
1219 * xemacs-faq.texi (Q5.4.2): | |
1220 * xemacs-faq.texi (Q5.4.3): | |
1221 * xemacs-faq.texi (Q5.4.4): | |
1222 * xemacs-faq.texi (Q5.4.5): | |
1223 * xemacs-faq.texi (Q5.5.1): | |
1224 * xemacs-faq.texi (Q5.5.2): | |
1225 * xemacs-faq.texi (Q5.5.3): | |
1226 * xemacs-faq.texi (Q5.5.4): | |
1227 * xemacs-faq.texi (Q5.5.5): | |
1228 * xemacs-faq.texi (Internet): | |
1229 * xemacs-faq.texi (Q6.0.1): | |
1230 * xemacs-faq.texi (Q6.0.2): | |
1231 * xemacs-faq.texi (Q6.0.3): | |
1232 * xemacs-faq.texi (Q6.0.4): | |
1233 * xemacs-faq.texi (Q6.0.5): | |
1234 * xemacs-faq.texi (Q6.0.6): | |
1235 * xemacs-faq.texi (Q6.0.7): | |
1236 * xemacs-faq.texi (Q6.0.8): | |
1237 * xemacs-faq.texi (Q6.0.9): | |
1238 * xemacs-faq.texi (Q6.0.10): | |
1239 * xemacs-faq.texi (Q6.0.11): | |
1240 * xemacs-faq.texi (Q6.1.1): | |
1241 * xemacs-faq.texi (Q6.1.2): | |
1242 * xemacs-faq.texi (Q6.1.3): | |
1243 * xemacs-faq.texi (Q6.1.4): | |
1244 * xemacs-faq.texi (Q6.1.5): | |
1245 * xemacs-faq.texi (Q6.1.6): | |
1246 * xemacs-faq.texi (Q6.2.1): | |
1247 * xemacs-faq.texi (Q6.2.2): | |
1248 * xemacs-faq.texi (Q6.3.1): | |
1249 * xemacs-faq.texi (Q6.3.2): | |
1250 * xemacs-faq.texi (Q6.4.1): | |
1251 * xemacs-faq.texi (Q6.4.2): | |
1252 * xemacs-faq.texi (Q6.4.3): | |
1253 * xemacs-faq.texi (Advanced): | |
1254 * xemacs-faq.texi (Q7.0.1): | |
1255 * xemacs-faq.texi (Q7.0.2): | |
1256 * xemacs-faq.texi (Q7.1.1): | |
1257 * xemacs-faq.texi (Q7.1.2): | |
1258 * xemacs-faq.texi (Q7.1.3): | |
1259 * xemacs-faq.texi (Q7.1.4): | |
1260 * xemacs-faq.texi (Q7.1.5): | |
1261 * xemacs-faq.texi (Q7.1.6): | |
1262 * xemacs-faq.texi (Q7.2.1): | |
1263 * xemacs-faq.texi (Q7.2.2): | |
1264 * xemacs-faq.texi (Q7.2.3): | |
1265 * xemacs-faq.texi (Q7.2.4): | |
1266 * xemacs-faq.texi (Q7.2.5): | |
1267 * xemacs-faq.texi (Q7.2.6): | |
1268 * xemacs-faq.texi (Q7.2.7): | |
1269 * xemacs-faq.texi (Q7.2.8): | |
1270 * xemacs-faq.texi (Q7.2.9): | |
1271 * xemacs-faq.texi (Q7.2.10): | |
1272 * xemacs-faq.texi (Q7.2.11): | |
1273 * xemacs-faq.texi (Q7.3.1): | |
1274 * xemacs-faq.texi (Q7.3.2): | |
1275 * xemacs-faq.texi (Q7.3.3): | |
1276 * xemacs-faq.texi (Q7.3.4): | |
1277 * xemacs-faq.texi (Other Packages): | |
1278 * xemacs-faq.texi (Q8.0.1): | |
1279 * xemacs-faq.texi (Q8.0.2): | |
1280 * xemacs-faq.texi (Q8.0.3): | |
1281 * xemacs-faq.texi (Q8.0.4): | |
1282 * xemacs-faq.texi (Q8.1.1): | |
1283 * xemacs-faq.texi (Q8.1.2): | |
1284 * xemacs-faq.texi (Q8.1.3): | |
1285 * xemacs-faq.texi (Q8.2.1): | |
1286 * xemacs-faq.texi (Q8.2.2): | |
1287 * xemacs-faq.texi (Q8.2.3): | |
1288 * xemacs-faq.texi (Q8.2.4): | |
1289 * xemacs-faq.texi (Current Events): | |
1290 * xemacs-faq.texi (Q9.0.1): | |
1291 * xemacs-faq.texi (my-function): Removed. | |
1292 * xemacs-faq.texi (Q9.0.2): | |
1293 * xemacs-faq.texi (Q9.0.3): | |
1294 * xemacs-faq.texi (Q9.0.4): | |
1295 * xemacs-faq.texi (Q9.0.5): | |
1296 * xemacs-faq.texi (Legacy Versions): | |
1297 Major rearrangement. Expand to 10 sections. Add various questions, | |
1298 mostly stubs currently. Remove some obsolete stuff. Update a bunch | |
1299 of the links. | |
1300 | |
2444 | 1301 2004-12-15 Ville Skyttä <scop@xemacs.org> |
1302 | |
1303 * lispref/help.texi: Document 3rd arg to `make-obsolete'. | |
1304 | |
2441 | 1305 2004-12-15 Robert Delius Royar <xemacs@frinabulax.org> |
1306 | |
1307 * internals/internals.texi (Modules for the Basic Displayable Lisp | |
1308 Objects): Remove Mote in Make's eye, fix build. | |
1309 | |
2438 | 1310 2004-12-12 Stephen J. Turnbull <stephen@xemacs.org> |
1311 | |
1312 * internals/internals.texi (Modules for the Basic Displayable Lisp | |
1313 Objects): Comment on problems, and extensions needed to handle | |
1314 native widgets properly. | |
1315 | |
2431 | 1316 2004-12-10 Stephen J. Turnbull <stephen@xemacs.org> |
1317 | |
1318 * internals/internals.texi (Better Rendering Support -- | |
1319 Implementation): Document reasons for Label Widget crash. | |
1320 | |
2427 | 1321 2004-12-07 Malcolm Purvis <malcolmp@xemacs.org> |
1322 | |
1323 * Makefile (RECURSIVE_MAKE): Removed. | |
1324 * Makefile (RECURSIVE_MAKE_ARGS): New. The new method for | |
1325 handling parallel builds. | |
1326 | |
2421 | 1327 2004-12-05 Ben Wing <ben@xemacs.org> |
1328 | |
1329 * xemacs/packages.texi (Packages): | |
1330 * xemacs/packages.texi (Manually): | |
1331 * xemacs/packages.texi (Building Packages): | |
1332 * xemacs/packages.texi (Local.rules File): | |
1333 * xemacs/packages.texi (Available Packages): | |
1334 Add long form of Lisp Reference Manual to links. | |
1335 Add links pointing to Lisp Reference Manual for more detailed | |
1336 package discussion. | |
2422 | 1337 |
1338 * xemacs/xemacs-faq.texi: | |
1339 As per Adrian's suggestion, mention that Pitts Jarvis is deceased. | |
1340 | |
2421 | 1341 2004-12-05 Ben Wing <ben@xemacs.org> |
1342 | |
1343 * lispref/range-tables.texi (Range Tables): | |
1344 * lispref/range-tables.texi (Introduction to Range Tables): | |
1345 * lispref/range-tables.texi (Working With Range Tables): | |
1346 Document range-table changes. | |
1347 | |
1348 2004-12-05 Ben Wing <ben@xemacs.org> | |
1349 | |
1350 * internals/internals.texi (A History of Emacs): | |
1351 Update history section. | |
1352 | |
1353 2004-12-05 Ben Wing <ben@xemacs.org> | |
1354 | |
1355 * xemacs-faq.texi: | |
1356 * xemacs-faq.texi (fix-main-menu): New. | |
1357 * xemacs-faq.texi (fix-omitted-menu-lines): New. | |
1358 * xemacs-faq.texi (Top): | |
1359 * xemacs-faq.texi (Introduction): | |
1360 * xemacs-faq.texi (Q1.0.1): | |
1361 * xemacs-faq.texi (Q1.0.2): | |
1362 * xemacs-faq.texi (Q1.0.4): | |
1363 * xemacs-faq.texi (Q1.0.5): | |
1364 * xemacs-faq.texi (Q1.0.6): | |
1365 * xemacs-faq.texi (Q1.0.7): | |
1366 * xemacs-faq.texi (Q1.0.8): | |
1367 * xemacs-faq.texi (Q1.0.9): | |
1368 * xemacs-faq.texi (Q1.0.10): | |
1369 * xemacs-faq.texi (Q1.0.11): | |
1370 * xemacs-faq.texi (Q1.0.12): | |
1371 * xemacs-faq.texi (Q1.0.13): | |
1372 * xemacs-faq.texi (Q1.0.14): | |
1373 * xemacs-faq.texi (Q1.1.1): | |
1374 * xemacs-faq.texi (Q1.1.2): | |
1375 * xemacs-faq.texi (Q1.1.3): | |
1376 * xemacs-faq.texi (Q1.1.4): | |
1377 * xemacs-faq.texi (Q1.1.5): | |
1378 * xemacs-faq.texi (Q1.1.6): | |
1379 * xemacs-faq.texi (Q1.1.7): | |
1380 * xemacs-faq.texi (Q1.1.8): | |
1381 * xemacs-faq.texi (Q1.1.9): | |
1382 * xemacs-faq.texi (Q1.2.1): | |
1383 * xemacs-faq.texi (Q1.2.2): | |
1384 * xemacs-faq.texi (Q1.2.3): | |
1385 * xemacs-faq.texi (Q1.3.1): | |
1386 * xemacs-faq.texi (Q1.3.2): | |
1387 * xemacs-faq.texi (Q1.3.3): | |
1388 * xemacs-faq.texi (Q1.4.1): | |
1389 * xemacs-faq.texi (Q1.4.2): | |
1390 * xemacs-faq.texi (Q1.4.3): | |
1391 * xemacs-faq.texi (Q1.4.4): | |
1392 * xemacs-faq.texi (Q1.4.5): | |
1393 * xemacs-faq.texi (Q1.4.6): | |
1394 * xemacs-faq.texi (Q1.4.7): | |
1395 * xemacs-faq.texi (Q1.4.8): | |
1396 * xemacs-faq.texi (Q1.4.9): | |
1397 * xemacs-faq.texi (Q1.5.1): | |
1398 * xemacs-faq.texi (Q1.5.2): | |
1399 * xemacs-faq.texi (Q1.5.3): | |
1400 * xemacs-faq.texi (Q1.5.4): | |
1401 * xemacs-faq.texi (Q1.5.5): | |
1402 * xemacs-faq.texi (Q1.5.6): | |
1403 * xemacs-faq.texi (Q1.5.7): | |
1404 * xemacs-faq.texi (Q1.5.8): | |
1405 * xemacs-faq.texi (Installation): | |
1406 * xemacs-faq.texi (Q2.0.1): | |
1407 * xemacs-faq.texi (Q2.0.2): | |
1408 * xemacs-faq.texi (Q2.0.3): | |
1409 * xemacs-faq.texi (Q2.0.4): | |
1410 * xemacs-faq.texi (Q2.0.5): | |
1411 * xemacs-faq.texi (Q2.0.6): | |
1412 * xemacs-faq.texi (Q2.0.7): | |
1413 * xemacs-faq.texi (Q2.1.1): | |
1414 * xemacs-faq.texi (Q2.1.2): | |
1415 * xemacs-faq.texi (Q2.1.3): | |
1416 * xemacs-faq.texi (Q2.1.4): | |
1417 * xemacs-faq.texi (Q2.2.1): | |
1418 * xemacs-faq.texi (Q2.2.2): | |
1419 * xemacs-faq.texi (Q2.2.3): | |
1420 * xemacs-faq.texi (Q2.2.4): | |
1421 * xemacs-faq.texi (Q2.2.5): | |
1422 * xemacs-faq.texi (Q2.2.6): | |
1423 * xemacs-faq.texi (Q2.2.7): | |
1424 * xemacs-faq.texi (Q2.2.8): | |
1425 * xemacs-faq.texi (Q2.3.1): | |
1426 * xemacs-faq.texi (Q2.3.2): | |
1427 * xemacs-faq.texi (Q2.3.3): | |
1428 * xemacs-faq.texi (Q2.3.4): | |
1429 * xemacs-faq.texi (Q2.3.5): | |
1430 * xemacs-faq.texi (Q2.3.6): | |
1431 * xemacs-faq.texi (Q2.3.7): | |
1432 * xemacs-faq.texi (Q2.3.8): | |
1433 * xemacs-faq.texi (Q2.3.9): | |
1434 * xemacs-faq.texi (Q2.3.10): | |
1435 * xemacs-faq.texi (Q2.3.11): | |
1436 * xemacs-faq.texi (Q2.4.1): | |
1437 * xemacs-faq.texi (Q2.4.2): | |
1438 * xemacs-faq.texi (Q2.4.3): | |
1439 * xemacs-faq.texi (Q2.4.4): | |
1440 * xemacs-faq.texi (Q2.4.5): | |
1441 * xemacs-faq.texi (Q2.4.6): | |
1442 * xemacs-faq.texi (Display Subsystems): | |
1443 * xemacs-faq.texi (running-xemacs): Removed. | |
1444 * xemacs-faq.texi (Q3.0.1): | |
1445 * xemacs-faq.texi (Q3.0.2): | |
1446 * xemacs-faq.texi (Q3.0.3): | |
1447 * xemacs-faq.texi (Q3.0.4): | |
1448 * xemacs-faq.texi (Q3.0.5): | |
1449 * xemacs-faq.texi (Q3.0.6): | |
1450 * xemacs-faq.texi (foo-old-losing-code-p): Removed. | |
1451 * xemacs-faq.texi (Q3.0.7): | |
1452 * xemacs-faq.texi (Q3.0.8): | |
1453 * xemacs-faq.texi (Q3.0.9): | |
1454 * xemacs-faq.texi (Q3.0.10): | |
1455 * xemacs-faq.texi (Q3.1.1): | |
1456 * xemacs-faq.texi (Q3.1.2): | |
1457 * xemacs-faq.texi (Q3.1.3): | |
1458 * xemacs-faq.texi (Q3.1.4): | |
1459 * xemacs-faq.texi (Q3.1.5): | |
1460 * xemacs-faq.texi (Q3.2.1): | |
1461 * xemacs-faq.texi (Q3.2.2): | |
1462 * xemacs-faq.texi (Q3.2.3): | |
1463 * xemacs-faq.texi (Q3.2.4): | |
1464 * xemacs-faq.texi (Q3.2.5): | |
1465 * xemacs-faq.texi (Q3.2.6): | |
1466 * xemacs-faq.texi (Q3.2.7): | |
1467 * xemacs-faq.texi (Q3.2.8): | |
1468 * xemacs-faq.texi (Q3.2.9): | |
1469 * xemacs-faq.texi (Q3.3.1): | |
1470 * xemacs-faq.texi (Q3.3.2): | |
1471 * xemacs-faq.texi (Q3.3.3): | |
1472 * xemacs-faq.texi (Q3.3.4): | |
1473 * xemacs-faq.texi (Q3.3.5): | |
1474 * xemacs-faq.texi (Q3.3.6): | |
1475 * xemacs-faq.texi (Q3.4.1): | |
1476 * xemacs-faq.texi (Q3.4.2): | |
1477 * xemacs-faq.texi (Q3.4.3): | |
1478 * xemacs-faq.texi (Q3.4.4): | |
1479 * xemacs-faq.texi (Q3.4.5): | |
1480 * xemacs-faq.texi (Q3.4.6): | |
1481 * xemacs-faq.texi (Q3.5.1): | |
1482 * xemacs-faq.texi (Q3.5.2): | |
1483 * xemacs-faq.texi (Q3.5.3): | |
1484 * xemacs-faq.texi (Q3.5.4): | |
1485 * xemacs-faq.texi (Q3.6.1): | |
1486 * xemacs-faq.texi (Q3.6.2): | |
1487 * xemacs-faq.texi (Q3.6.3): | |
1488 * xemacs-faq.texi (Q3.7.1): | |
1489 * xemacs-faq.texi (Q3.7.2): | |
1490 * xemacs-faq.texi (Q3.7.3): | |
1491 * xemacs-faq.texi (Q3.7.4): | |
1492 * xemacs-faq.texi (Q3.7.5): | |
1493 * xemacs-faq.texi (Q3.7.6): | |
1494 * xemacs-faq.texi (Q3.7.7): | |
1495 * xemacs-faq.texi (Q3.7.8): | |
1496 * xemacs-faq.texi (Q3.8.1): | |
1497 * xemacs-faq.texi (Q3.8.2): | |
1498 * xemacs-faq.texi (Q3.8.3): | |
1499 * xemacs-faq.texi (my-toggle-toolbar): New. | |
1500 * xemacs-faq.texi (Q3.8.4): | |
1501 * xemacs-faq.texi (scroll-one-line-up): Removed. | |
1502 * xemacs-faq.texi (scroll-one-line-down): Removed. | |
1503 * xemacs-faq.texi (Q3.8.5): | |
1504 * xemacs-faq.texi (Q3.9.1): | |
1505 * xemacs-faq.texi (Q3.9.2): | |
1506 * xemacs-faq.texi (Q3.9.3): | |
1507 * xemacs-faq.texi (Q3.9.4): | |
1508 * xemacs-faq.texi (Q3.9.5): | |
1509 * xemacs-faq.texi (External Subsystems): | |
1510 * xemacs-faq.texi (Q4.0.1): | |
1511 * xemacs-faq.texi (Q4.0.2): | |
1512 * xemacs-faq.texi (Q4.0.3): | |
1513 * xemacs-faq.texi (Q4.0.4): | |
1514 * xemacs-faq.texi (Q4.0.5): | |
1515 * xemacs-faq.texi (Q4.0.6): | |
1516 * xemacs-faq.texi (global-map): Removed. | |
1517 * xemacs-faq.texi (Q4.1.1): | |
1518 * xemacs-faq.texi (Q4.1.2): | |
1519 * xemacs-faq.texi (Q4.2.1): | |
1520 * xemacs-faq.texi (Q4.2.2): | |
1521 * xemacs-faq.texi (Q4.2.3): | |
1522 * xemacs-faq.texi (Q4.2.4): | |
1523 * xemacs-faq.texi (Q4.3.1): | |
1524 * xemacs-faq.texi (Q4.3.2): | |
1525 * xemacs-faq.texi (Q4.3.3): | |
1526 * xemacs-faq.texi (Q4.3.4): | |
1527 * xemacs-faq.texi (Q4.4.1): | |
1528 * xemacs-faq.texi (Q4.4.2): | |
1529 * xemacs-faq.texi (Q4.4.3): | |
1530 * xemacs-faq.texi (Q4.4.4): | |
1531 * xemacs-faq.texi (Q4.4.5): | |
1532 * xemacs-faq.texi (Q4.5.1): | |
1533 * xemacs-faq.texi (Q4.5.2): | |
1534 * xemacs-faq.texi (Q4.5.3): | |
1535 * xemacs-faq.texi (Q4.5.4): | |
1536 * xemacs-faq.texi (Q4.5.5): | |
1537 * xemacs-faq.texi (Q4.6.1): | |
1538 * xemacs-faq.texi (Q4.6.2): | |
1539 * xemacs-faq.texi (Q4.6.3): | |
1540 * xemacs-faq.texi (Q4.6.4): | |
1541 * xemacs-faq.texi (Q4.7.1): | |
1542 * xemacs-faq.texi (Q4.7.2): | |
1543 * xemacs-faq.texi (Q4.7.3): | |
1544 * xemacs-faq.texi (Q4.8.1): | |
1545 * xemacs-faq.texi (Q4.8.2): | |
1546 * xemacs-faq.texi (Q4.8.3): | |
1547 * xemacs-faq.texi (Q4.8.4): | |
1548 * xemacs-faq.texi (Internet): | |
1549 * xemacs-faq.texi (Q5.0.1): | |
1550 * xemacs-faq.texi (Q5.0.2): | |
1551 * xemacs-faq.texi (Q5.0.3): | |
1552 * xemacs-faq.texi (Q5.0.4): | |
1553 * xemacs-faq.texi (Q5.0.5): | |
1554 * xemacs-faq.texi (Q5.0.6): | |
1555 * xemacs-faq.texi (Q5.0.7): | |
1556 * xemacs-faq.texi (Q5.0.8): | |
1557 * xemacs-faq.texi (Q5.0.9): | |
1558 * xemacs-faq.texi (Q5.0.10): | |
1559 * xemacs-faq.texi (Q5.0.11): | |
1560 * xemacs-faq.texi (Q5.1.1): | |
1561 * xemacs-faq.texi (Q5.1.2): | |
1562 * xemacs-faq.texi (Q5.1.3): | |
1563 * xemacs-faq.texi (Q5.1.4): | |
1564 * xemacs-faq.texi (Q5.1.5): | |
1565 * xemacs-faq.texi (Q5.1.6): | |
1566 * xemacs-faq.texi (Q5.2.1): | |
1567 * xemacs-faq.texi (Q5.2.2): | |
1568 * xemacs-faq.texi (Q5.3.1): | |
1569 * xemacs-faq.texi (Q5.3.2): | |
1570 * xemacs-faq.texi (Q5.4.1): | |
1571 * xemacs-faq.texi (Q5.4.2): | |
1572 * xemacs-faq.texi (Q5.4.3): | |
1573 * xemacs-faq.texi (Advanced): | |
1574 * xemacs-faq.texi (Q6.0.1): | |
1575 * xemacs-faq.texi (Q6.0.2): | |
1576 * xemacs-faq.texi (Q6.1.1): | |
1577 * xemacs-faq.texi (Q6.1.2): | |
1578 * xemacs-faq.texi (Q6.1.3): | |
1579 * xemacs-faq.texi (Q6.1.4): | |
1580 * xemacs-faq.texi (Q6.1.5): | |
1581 * xemacs-faq.texi (Q6.1.6): | |
1582 * xemacs-faq.texi (Q6.2.1): | |
1583 * xemacs-faq.texi (Q6.2.2): | |
1584 * xemacs-faq.texi (Q6.2.3): | |
1585 * xemacs-faq.texi (Q6.2.4): | |
1586 * xemacs-faq.texi (Q6.2.5): | |
1587 * xemacs-faq.texi (Q6.2.6): | |
1588 * xemacs-faq.texi (Q6.2.7): | |
1589 * xemacs-faq.texi (Q6.2.8): | |
1590 * xemacs-faq.texi (Q6.2.9): | |
1591 * xemacs-faq.texi (Q6.2.10): | |
1592 * xemacs-faq.texi (Q6.2.11): | |
1593 * xemacs-faq.texi (Q6.3.1): | |
1594 * xemacs-faq.texi (Q6.3.2): | |
1595 * xemacs-faq.texi (Q6.3.3): | |
1596 * xemacs-faq.texi (Q6.3.4): | |
1597 * xemacs-faq.texi (Current Events): | |
1598 * xemacs-faq.texi (Q7.0.1): | |
1599 * xemacs-faq.texi (Q7.0.2): | |
1600 * xemacs-faq.texi (Q7.0.3): | |
1601 * xemacs-faq.texi (Q7.0.5): | |
1602 * xemacs-faq.texi (Q7.0.6): | |
1603 * xemacs-faq.texi (Legacy Versions): | |
1604 * xemacs-faq.texi (my-function): Removed. | |
1605 * xemacs-faq.texi (Q8.0.1): | |
1606 | |
1607 The section on Troubleshooting (now 2.3) has been completely | |
1608 written and includes a lot of stuff that is not properly | |
1609 documented anywhere else. A fair amount of obsolete info has been | |
1610 deleted and I've incorporated the comments that people (mostly | |
1611 Stephen T) made. Former chapter 3 has been split up in two, one | |
1612 pertaining to basic I/O and the other to external I/O. What were | |
1613 formerly chapters 5 and 6 no longer exist as such; the info in | |
1614 them has been distributed across various other chapters. Old | |
1615 chapter 4 got split up, part going to the new chapter 4 on | |
1616 external I/O and part going to the new chapter 5 on the Internet. | |
1617 In this new chapter, stuff not pertaining to a specific package | |
1618 (e.g. VM or GNUS) was taken out of package-specific sections and a | |
1619 general mail section was constituted. Part of old chapter 5 | |
1620 remains in a new chapter 6 devoted to Emacs Lisp and other | |
1621 advanced stuff, and a section from old chapter 3 on basic | |
1622 init-file Lisp and some stuff from old chapter 5 on Info. The | |
1623 rest of chapter 5 was just "misc" and has gotten scattered to the | |
1624 winds (mostly in chapters 3 and 4). Old chapter 6 has also gotten | |
1625 quite scattered; there is no longer any section specifically | |
1626 devoted to Windows except one of the Installation sections (along | |
1627 with a section specfically devoted to Unix), and the rest has | |
1628 moved to join the appropriate non-Windows-specific section | |
1629 elsewhere. A lot of chapters had their sections rearranged and | |
1630 likewise for sections having entries rearranged, with the | |
1631 intention that the new arrangement should be more natural. In | |
1632 general I hope that stuff should be much easier to locate. I also | |
1633 rewrote the entries on the relation between XEmacs and GNU Emacs | |
1634 on the authors of XEmacs, including lots of info on who wrote | |
1635 specific subsections. | |
1636 | |
2418 | 1637 2004-12-05 Adrian Aichner <adrian@xemacs.org> |
1638 | |
1639 * Makefile (TEXI2HTML): Changed to produce unsplit output. | |
1640 * Makefile (TEXI2HTML_SPLIT): New. | |
1641 * Makefile (CP): New. | |
1642 * Makefile (PHOTODIR): New. | |
1643 * Makefile ($(HTMLDIR)/cl.html): Use TEXI2HTML_SPLIT. | |
1644 * Makefile ($(HTMLDIR)/custom.html): Ditto. | |
1645 * Makefile ($(HTMLDIR)/emodules.html): Ditto. | |
1646 * Makefile ($(HTMLDIR)/external-widget.html): Ditto. | |
1647 * Makefile ($(HTMLDIR)/info.html): Ditto. | |
1648 * Makefile ($(HTMLDIR)/standards.html): Ditto. | |
1649 * Makefile ($(HTMLDIR)/term.html): Ditto. | |
1650 * Makefile ($(HTMLDIR)/termcap.html): Ditto. | |
1651 * Makefile ($(HTMLDIR)/texinfo.html): Ditto. | |
1652 * Makefile ($(HTMLDIR)/widget.html): Ditto. | |
1653 * Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto. | |
1654 Produce unsplit output for website also, copy photos to HTMLDIR. | |
1655 * Makefile ($(HTMLDIR)/xemacs.html): Ditto. | |
1656 * Makefile ($(HTMLDIR)/lispref.html): Ditto. | |
1657 * Makefile ($(HTMLDIR)/internals.html): Ditto. | |
1658 * Makefile ($(HTMLDIR)/new-users-guide.html): Ditto. | |
1659 * xemacs-faq.texi (Q1.3.1): Fix broken image links in HTML output. | |
1660 | |
2406 | 1661 2004-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
1662 | |
1663 * internals/internals.texi (Better Rendering Support -- | |
1664 Configuration with the Interim Patches): | |
1665 Add documentation of X resources, especially for GUI elements. | |
1666 (Better Rendering Support -- Implementation): | |
1667 More comments about specification and design issues. | |
1668 (Better Rendering Support -- Current Status): | |
1669 New subsubsection "Bugs Reported in sjt-xft". | |
1670 | |
2405 | 1671 2004-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
1672 | |
1673 * internals/internals.texi (Future Work -- Better Rendering Support): | |
1674 New node. | |
2865 | 1675 (Top): |
2405 | 1676 (Future Work): |
1677 (Future Work -- Lisp Engine Replacement): | |
1678 Add pointers to new node. | |
1679 | |
2393 | 1680 2004-11-16 Ben Wing <ben@xemacs.org> |
1681 | |
1682 * internals/internals.texi (Top): | |
1683 * internals/internals.texi (Introduction): | |
1684 * internals/internals.texi (Authorship of XEmacs): | |
1685 * internals/internals.texi (A History of Emacs): | |
1686 * internals/internals.texi (Through Version 18): | |
1687 * internals/internals.texi (Epoch): | |
1688 * internals/internals.texi (Lucid Emacs): | |
1689 * internals/internals.texi (GNU Emacs 19): | |
1690 * internals/internals.texi (GNU Emacs 20): | |
1691 * internals/internals.texi (XEmacs): | |
1692 * internals/internals.texi (The XEmacs Split): | |
1693 * internals/internals.texi (Build-Time Dependencies): | |
1694 * internals/internals.texi (Low-Level Modules): | |
1695 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
1696 * internals/internals.texi (Rules When Writing New C Code): | |
1697 * internals/internals.texi (Introduction to Writing C Code): | |
1698 * internals/internals.texi (Writing New Modules): | |
1699 * internals/internals.texi (Working with Lisp Objects): | |
1700 * internals/internals.texi (Writing Lisp Primitives): | |
1701 * internals/internals.texi (Adding Global Lisp Variables): | |
1702 * internals/internals.texi (Writing Macros): | |
1703 * internals/internals.texi (Proper Use of Unsigned Types): | |
1704 * internals/internals.texi (Major Textual Changes): | |
1705 * internals/internals.texi (Great Integral Type Renaming): | |
1706 * internals/internals.texi (Text/Char Type Renaming): | |
1707 * internals/internals.texi (Debugging and Testing): | |
1708 * internals/internals.texi (Modules for Regression Testing): | |
1709 * internals/internals.texi (Merging a Branch into the Trunk): | |
1710 * internals/internals.texi (XEmacs from the Inside): | |
1711 * internals/internals.texi (Basic Types): | |
1712 * internals/internals.texi (Low-Level Allocation): | |
1713 * internals/internals.texi (Basic Heap Allocation): | |
1714 * internals/internals.texi (Stack Allocation): | |
1715 * internals/internals.texi (Dynamic Arrays): | |
1716 * internals/internals.texi (Allocation by Blocks): | |
1717 * internals/internals.texi (Modules for Allocation): | |
1718 * internals/internals.texi (Critical Redisplay Sections): | |
1719 * internals/internals.texi (Control-G (Quit) Checking): | |
1720 * internals/internals.texi (Future Work Discussion): | |
1721 * internals/internals.texi (Discussion -- Garbage Collection): | |
1722 * internals/internals.texi (Discussion -- Pure Space): | |
1723 * internals/internals.texi (Discussion -- Hashtable-Based Marking and Cleanup): | |
1724 * internals/internals.texi (Discussion -- The Anti-Cons): | |
1725 * internals/internals.texi (Discussion -- Glyphs): | |
1726 * internals/internals.texi (Discussion -- Dialog Boxes): | |
1727 * internals/internals.texi (Discussion -- Multilingual Issues): | |
1728 * internals/internals.texi (Discussion -- Instantiators and Generic Property Accessors): | |
1729 * internals/internals.texi (image-instance-property): New. | |
1730 * internals/internals.texi (set-image-instance-property): New. | |
1731 * internals/internals.texi (Discussion -- Switching to C++): | |
1732 * internals/internals.texi (Discussion -- Windows External Widget): | |
1733 | |
1734 Add sections on Basic Types and Low-Level Allocation. Move module | |
1735 docs here. Incorporate dynamic array and blocktype docs from | |
1736 source. | |
1737 | |
1738 Add info on beta releases up to present. | |
1739 | |
1740 Redo chapter on "Rules When Writing New C Code", grouping stuff | |
1741 together properly. Put "Major Textual Changes" under this | |
1742 chapter. Incorporate etc/CODING-STANDARDS. | |
1743 | |
1744 Add discussion sections on "Instantiators and Generic Property | |
1745 Accessors" and "Switching to C++". Fill out discussion on garbage | |
1746 collection. | |
1747 | |
1748 Incorporate backtraces showing crashes due to problems with | |
1749 redisplay-critical-section protection. | |
1750 | |
2367 | 1751 2004-11-04 Ben Wing <ben@xemacs.org> |
1752 | |
1753 * lispref/mule.texi (CCL Syntax): | |
1754 * lispref/mule.texi (INT-OR-CHAR): New. | |
1755 * lispref/mule.texi (CCL Statements): | |
1756 Update CCL docs. | |
1757 | |
1758 2004-11-04 Ben Wing <ben@xemacs.org> | |
1759 | |
1760 * internals/internals.texi (Top): | |
1761 * internals/internals.texi (NOTE): New. | |
1762 * internals/internals.texi (list-to-texinfo): New. | |
1763 * internals/internals.texi (remove-spacing): New. | |
1764 * internals/internals.texi (table-to-texinfo): New. | |
1765 * internals/internals.texi (convert-text-to-texinfo): New. | |
1766 * internals/internals.texi ('make-future): New. | |
1767 * internals/internals.texi ('make-discussion): New. | |
1768 * internals/internals.texi ('make-old-future): New. | |
1769 * internals/internals.texi ('make-section): New. | |
1770 * internals/internals.texi ('make-subsection): New. | |
1771 * internals/internals.texi (Introduction): | |
1772 * internals/internals.texi (divisions): New. | |
1773 * internals/internals.texi (Authorship of XEmacs): | |
1774 * internals/internals.texi (XEmacs): | |
1775 * internals/internals.texi (The XEmacs Split): | |
1776 * internals/internals.texi (Author): New. | |
1777 * internals/internals.texi (XEmacs from the Outside): | |
1778 * internals/internals.texi (The Lisp Language): | |
1779 * internals/internals.texi (XEmacs from the Perspective of Building): | |
1780 * internals/internals.texi (Build-Time Dependencies): | |
1781 * internals/internals.texi (The Modules of XEmacs): | |
1782 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
1783 * internals/internals.texi (ways): Removed. | |
1784 * internals/internals.texi (Low-Level Modules): | |
1785 * internals/internals.texi (Basic Lisp Modules): | |
1786 * internals/internals.texi (Modules for Standard Editing Operations): | |
1787 * internals/internals.texi (files): Removed. | |
1788 * internals/internals.texi (Modules for Interfacing with the File System): | |
1789 * internals/internals.texi (some_variable): Removed. | |
1790 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
1791 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
1792 * internals/internals.texi (character): Removed. | |
1793 * internals/internals.texi (Major Textual Changes): | |
1794 * internals/internals.texi (Great Integral Type Renaming): | |
1795 * internals/internals.texi (commands): Removed. | |
1796 * internals/internals.texi (Text/Char Type Renaming): | |
1797 * internals/internals.texi (pattern): Removed. | |
1798 * internals/internals.texi (Rules When Writing New C Code): | |
1799 * internals/internals.texi (A Reader's Guide to XEmacs Coding Conventions): | |
1800 * internals/internals.texi (General Coding Rules): | |
1801 * internals/internals.texi (examples): Removed. | |
1802 * internals/internals.texi (Object-Oriented Techniques for C): | |
1803 * internals/internals.texi (Writing Lisp Primitives): | |
1804 * internals/internals.texi (Writing Good Comments): | |
1805 * internals/internals.texi (Adding Global Lisp Variables): | |
1806 * internals/internals.texi (Writing Macros): | |
1807 * internals/internals.texi (Proper Use of Unsigned Types): | |
1808 * internals/internals.texi (Techniques for XEmacs Developers): | |
1809 * internals/internals.texi (Regression Testing XEmacs): | |
1810 * internals/internals.texi (How to Regression-Test): | |
1811 * internals/internals.texi (Modules for Regression Testing): | |
1812 * internals/internals.texi (CVS Techniques): | |
1813 * internals/internals.texi (Merging a Branch into the Trunk): | |
1814 * internals/internals.texi (XEmacs from the Inside): | |
1815 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
1816 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
1817 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
1818 * internals/internals.texi (Introduction to Allocation): | |
1819 * internals/internals.texi (Garbage Collection): | |
1820 * internals/internals.texi (GCPROing): | |
1821 * internals/internals.texi (Garbage Collection - Step by Step): | |
1822 * internals/internals.texi (Invocation): | |
1823 * internals/internals.texi (garbage_collect_1): | |
1824 * internals/internals.texi (mark_object): | |
1825 * internals/internals.texi (gc_sweep): | |
1826 * internals/internals.texi (sweep_lcrecords_1): | |
1827 * internals/internals.texi (compact_string_chars): | |
1828 * internals/internals.texi (sweep_strings): | |
1829 * internals/internals.texi (sweep_bit_vectors_1): | |
1830 * internals/internals.texi (Integers and Characters): | |
1831 * internals/internals.texi (Allocation from Frob Blocks): | |
1832 * internals/internals.texi (lrecords): | |
1833 * internals/internals.texi (Low-level allocation): | |
1834 * internals/internals.texi (Cons): | |
1835 * internals/internals.texi (Vector): | |
1836 * internals/internals.texi (Bit Vector): | |
1837 * internals/internals.texi (Symbol): | |
1838 * internals/internals.texi (Marker): | |
1839 * internals/internals.texi (String): | |
1840 * internals/internals.texi (Compiled Function): | |
1841 * internals/internals.texi (The Lisp Reader and Compiler): | |
1842 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
1843 * internals/internals.texi (Evaluation): | |
1844 * internals/internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
1845 * internals/internals.texi (Simple Special Forms): | |
1846 * internals/internals.texi (Catch and Throw): | |
1847 * internals/internals.texi (Error Trapping): | |
1848 * internals/internals.texi (Symbols and Variables): | |
1849 * internals/internals.texi (Introduction to Symbols): | |
1850 * internals/internals.texi (Obarrays): | |
1851 * internals/internals.texi (Symbol Values): | |
1852 * internals/internals.texi (Buffers): | |
1853 * internals/internals.texi (Introduction to Buffers): | |
1854 * internals/internals.texi (Buffer Lists): | |
1855 * internals/internals.texi (Markers and Extents): | |
1856 * internals/internals.texi (The Buffer Object): | |
1857 * internals/internals.texi (Text): | |
1858 * internals/internals.texi (The Text in a Buffer): | |
1859 * internals/internals.texi (Ibytes and Ichars): | |
1860 * internals/internals.texi (Byte-Char Position Conversion): | |
1861 * internals/internals.texi (Searching and Matching): | |
1862 * internals/internals.texi (Multilingual Support): | |
1863 * internals/internals.texi (Introduction to Multilingual Issues #1): | |
1864 * internals/internals.texi (Introduction to Multilingual Issues #2): | |
1865 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
1866 * internals/internals.texi (Introduction to Multilingual Issues #4): | |
1867 * internals/internals.texi (Character Sets): | |
1868 * internals/internals.texi (Encodings): | |
1869 * internals/internals.texi (Japanese EUC (Extended Unix Code)): | |
1870 * internals/internals.texi (JIS7): | |
1871 * internals/internals.texi (Internal Mule Encodings): | |
1872 * internals/internals.texi (Internal String Encoding): | |
1873 * internals/internals.texi (Internal Character Encoding): | |
1874 * internals/internals.texi (Byte/Character Types; Buffer Positions; Other Typedefs): | |
1875 * internals/internals.texi (Byte Types): | |
1876 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
1877 * internals/internals.texi (Buffer Positions): | |
1878 * internals/internals.texi (Other Typedefs): | |
1879 * internals/internals.texi (Usage of the Various Representations): | |
1880 * internals/internals.texi (Working With the Various Representations): | |
1881 * internals/internals.texi (Internal Text API's): | |
1882 * internals/internals.texi (Basic internal-format API's): | |
1883 * internals/internals.texi (The DFC API): | |
1884 * internals/internals.texi (The Eistring API): | |
1885 * internals/internals.texi (Coding for Mule): | |
1886 * internals/internals.texi (Character-Related Data Types): | |
1887 * internals/internals.texi (Working With Character and Byte Positions): | |
1888 * internals/internals.texi (Conversion to and from External Data): | |
1889 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
1890 * internals/internals.texi (An Example of Mule-Aware Code): | |
1891 * internals/internals.texi (Mule-izing Code): | |
1892 * internals/internals.texi (CCL): | |
1893 * internals/internals.texi (Microsoft Windows-Related Multilingual Issues): | |
1894 * internals/internals.texi (Microsoft Documentation): | |
1895 * internals/internals.texi (Locales): | |
1896 * internals/internals.texi (More about code pages): | |
1897 * internals/internals.texi (More about locales): | |
1898 * internals/internals.texi (Unicode support under Windows): | |
1899 * internals/internals.texi (The golden rules of writing Unicode-safe code): | |
1900 * internals/internals.texi (The format of the locale in setlocale()): | |
1901 * internals/internals.texi (Random other Windows I18N docs): | |
1902 * internals/internals.texi (Modules for Internationalization): | |
1903 * internals/internals.texi (Consoles; Devices; Frames; Windows): | |
1904 * internals/internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
1905 * internals/internals.texi (Point): | |
1906 * internals/internals.texi (Window Hierarchy): | |
1907 * internals/internals.texi (The Window Object): | |
1908 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
1909 * internals/internals.texi (The Redisplay Mechanism): | |
1910 * internals/internals.texi (Critical Redisplay Sections): | |
1911 * internals/internals.texi (Line Start Cache): | |
1912 * internals/internals.texi (Redisplay Piece by Piece): | |
1913 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
1914 * internals/internals.texi (Modules for other Display-Related Lisp Objects): | |
1915 * internals/internals.texi (Extents): | |
1916 * internals/internals.texi (Introduction to Extents): | |
1917 * internals/internals.texi (Extent Ordering): | |
1918 * internals/internals.texi (Format of the Extent Info): | |
1919 * internals/internals.texi (Zero-Length Extents): | |
1920 * internals/internals.texi (Mathematics of Extent Ordering): | |
1921 * internals/internals.texi (Extent Fragments): | |
1922 * internals/internals.texi (Faces): | |
1923 * internals/internals.texi (Glyphs): | |
1924 * internals/internals.texi (Specifiers): | |
1925 * internals/internals.texi (Menus): | |
1926 * internals/internals.texi (Events and the Event Loop): | |
1927 * internals/internals.texi (Introduction to Events): | |
1928 * internals/internals.texi (Main Loop): | |
1929 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
1930 * internals/internals.texi (Specifics About the Emacs Event): | |
1931 * internals/internals.texi (Event Queues): | |
1932 * internals/internals.texi (Event Stream Callback Routines): | |
1933 * internals/internals.texi (Other Event Loop Functions): | |
1934 * internals/internals.texi (Stream Pairs): | |
1935 * internals/internals.texi (Converting Events): | |
1936 * internals/internals.texi (Dispatching Events; The Command Builder): | |
1937 * internals/internals.texi (Focus Handling): | |
1938 * internals/internals.texi (Editor-Level Control Flow Modules): | |
1939 * internals/internals.texi (Asynchronous Events; Quit Checking): | |
1940 * internals/internals.texi (Signal Handling): | |
1941 * internals/internals.texi (Control-G (Quit) Checking): | |
1942 * internals/internals.texi (Profiling): | |
1943 * internals/internals.texi (Asynchronous Timeouts): | |
1944 * internals/internals.texi (Exiting): | |
1945 * internals/internals.texi (Lstreams): | |
1946 * internals/internals.texi (Creating an Lstream): | |
1947 * internals/internals.texi (Lstream Types): | |
1948 * internals/internals.texi (Lstream Functions): | |
1949 * internals/internals.texi (Lstream Methods): | |
1950 * internals/internals.texi (Subprocesses): | |
1951 * internals/internals.texi (Interface to MS Windows): | |
1952 * internals/internals.texi (Different kinds of Windows environments): | |
1953 * internals/internals.texi (Windows Build Flags): | |
1954 * internals/internals.texi (Windows I18N Introduction): | |
1955 * internals/internals.texi (Modules for Interfacing with MS Windows): | |
1956 * internals/internals.texi (Interface to the X Window System): | |
1957 * internals/internals.texi (Lucid Widget Library): | |
1958 * internals/internals.texi (Generic Widget Interface): | |
1959 * internals/internals.texi (dependencies): New. | |
1960 * internals/internals.texi (routines): New. | |
1961 * internals/internals.texi (Summary): New. | |
1962 * internals/internals.texi (Scrollbars): | |
1963 * internals/internals.texi (Menubars): | |
1964 * internals/internals.texi (Checkboxes and Radio Buttons): | |
1965 * internals/internals.texi (Progress Bars): | |
1966 * internals/internals.texi (Tab Controls): | |
1967 * internals/internals.texi (Modules for Interfacing with X Windows): | |
1968 * internals/internals.texi (Dumping): | |
1969 * internals/internals.texi (Dumping Justification): | |
1970 * internals/internals.texi (Overview): | |
1971 * internals/internals.texi (Data descriptions): | |
1972 * internals/internals.texi (Dumping phase): | |
1973 * internals/internals.texi (Object inventory): | |
1974 * internals/internals.texi (Address allocation): | |
1975 * internals/internals.texi (The header): | |
1976 * internals/internals.texi (Data dumping): | |
1977 * internals/internals.texi (Pointers dumping): | |
1978 * internals/internals.texi (Reloading phase): | |
1979 * internals/internals.texi (Abstract): New. | |
1980 * internals/internals.texi (Remaining issues): | |
1981 * internals/internals.texi (Future Work): | |
1982 * internals/internals.texi (Future Work -- General Suggestions): | |
1983 * internals/internals.texi (Future Work -- Elisp Compatibility Package): | |
1984 * internals/internals.texi (Future Work -- Drag-n-Drop): | |
1985 * internals/internals.texi (Future Work -- Standard Interface for Enabling Extensions): | |
1986 * internals/internals.texi (Future Work -- Better Initialization File Scheme): | |
1987 * internals/internals.texi (Future Work -- Keyword Parameters): | |
1988 * internals/internals.texi (Future Work -- Property Interface Changes): | |
1989 * internals/internals.texi (Future Work -- Toolbars): | |
1990 * internals/internals.texi (Future Work -- Easier Toolbar Customization): | |
1991 * internals/internals.texi (Future Work -- Toolbar Interface Changes): | |
1992 * internals/internals.texi (Future Work -- Menu API Changes): | |
1993 * internals/internals.texi (Future Work -- Removal of Misc-User Event Type): | |
1994 * internals/internals.texi (Future Work -- Mouse Pointer): | |
1995 * internals/internals.texi (Future Work -- Abstracted Mouse Pointer Interface): | |
1996 * internals/internals.texi (Future Work -- Busy Pointer): | |
1997 * internals/internals.texi (Future Work -- Extents): | |
1998 * internals/internals.texi (Future Work -- Everything should obey duplicable extents): | |
1999 * internals/internals.texi (Future Work -- Version Number and Development Tree Organization): | |
2000 * internals/internals.texi (Future Work -- Improvements to the @code{xemacs.org} Website): | |
2001 * internals/internals.texi (Future Work -- Keybindings): | |
2002 * internals/internals.texi (Future Work -- Keybinding Schemes): | |
2003 * internals/internals.texi (Future Work -- Better Support for Windows Style Key Bindings): | |
2004 * internals/internals.texi (Future Work -- Misc Key Binding Ideas): | |
2005 * internals/internals.texi (Future Work -- Byte Code Snippets): | |
2006 * internals/internals.texi (Future Work -- Autodetection): | |
2007 * internals/internals.texi (Future Work -- Conversion Error Detection): | |
2008 * internals/internals.texi (Future Work -- Unicode): | |
2009 * internals/internals.texi (Future Work -- BIDI Support): | |
2010 * internals/internals.texi (Future Work -- Localized Text/Messages): | |
2011 * internals/internals.texi (Future Work -- Lisp Stream API): | |
2012 * internals/internals.texi (Future Work -- Multiple Values): | |
2013 * internals/internals.texi (Future Work -- Macros): | |
2014 * internals/internals.texi (Future Work -- Specifiers): | |
2015 * internals/internals.texi (Future Work -- Display Tables): | |
2016 * internals/internals.texi (Future Work -- Making Elisp Function Calls Faster): | |
2017 * internals/internals.texi (Future Work -- Lisp Engine Replacement): | |
2018 * internals/internals.texi (Future Work -- Lisp Engine Discussion): | |
2019 * internals/internals.texi (Future Work -- Lisp Engine Replacement -- Implementation): | |
2020 * internals/internals.texi (Future Work -- Startup File Modification by Packages): | |
2021 * internals/internals.texi (Future Work Discussion): | |
2022 * internals/internals.texi (Discussion -- garbage collection): | |
2023 * internals/internals.texi (Discussion -- glyphs): | |
2024 * internals/internals.texi (Discussion -- Dialog Boxes): | |
2025 * internals/internals.texi (Discussion -- Multilingual Issues): | |
2026 * internals/internals.texi (Discussion -- Windows External Widget): | |
2027 * internals/internals.texi (Discussion -- Packages): | |
2028 * internals/internals.texi (Discussion -- Distribution Layout): | |
2029 * internals/internals.texi (Old Future Work): | |
2030 * internals/internals.texi (Old Future Work -- A Portable Unexec Replacement): | |
2031 * internals/internals.texi (backtrace): New. | |
2032 * internals/internals.texi (Old Future Work -- Indirect Buffers): | |
2033 * internals/internals.texi (emacs-lisp): New. | |
2034 * internals/internals.texi (Old Future Work -- Improvements in support for non-ASCII (European) keysyms under X): | |
2035 * internals/internals.texi (Newsgroups): New. | |
2036 * internals/internals.texi (Old Future Work -- RTF Clipboard Support): | |
2037 * internals/internals.texi (own-selection): New. | |
2038 * internals/internals.texi (Old Future Work -- xemacs.org Mailing Address Changes): | |
2039 * internals/internals.texi (COMMENT): New. | |
2040 * internals/internals.texi (Old Future Work -- Lisp callbacks from critical areas of the C code): | |
2041 * internals/internals.texi (Now): Removed. | |
2042 * internals/internals.texi (Proof): Removed. | |
2043 * internals/internals.texi (Note): Removed. | |
2044 * internals/internals.texi (Date): New. | |
2045 * internals/internals.texi (ben): Removed. | |
2046 * internals/internals.texi (importance): New. | |
2047 * internals/internals.texi (From): New. | |
2048 Major work on internals manual. Rearranged many chapters so as to | |
2049 lie in coherent divisions. | |
2050 Add tons of stuff to Future Work, Old Future Work, Discussions. | |
2051 Add lots of stuff to Mule section (Multilingual ...). | |
2052 Remove index.texi, incorporate into internals.texi. | |
2053 Section on early history and an introduction. | |
2054 Section on XEmacs split. Lots of new MS Windows docs | |
2055 Mostly recently: Windows-I18N docs. Lots if new I18N docs. | |
2056 Loads of other stuff. | |
2057 | |
2362 | 2058 2004-11-02 Ben Wing <ben@xemacs.org> |
2059 | |
2060 * internals/index.texi: | |
2061 Deleted. Incorporated into internals.texi. Having a separate | |
2062 index file messes up texinfo-master-menu. | |
2865 | 2063 |
2362 | 2064 * internals/internals.texi: |
2065 * internals/internals.texi (Top): | |
2066 * internals/internals.texi (Introduction): | |
2067 * internals/internals.texi (Authorship of XEmacs): | |
2068 * internals/internals.texi (A History of Emacs): | |
2069 * internals/internals.texi (Through Version 18): | |
2070 * internals/internals.texi (Lucid Emacs): | |
2071 * internals/internals.texi (GNU Emacs 19): | |
2072 * internals/internals.texi (GNU Emacs 20): | |
2073 * internals/internals.texi (XEmacs): | |
2074 * internals/internals.texi (XEmacs From the Outside): | |
2075 * internals/internals.texi (The Lisp Language): | |
2076 * internals/internals.texi (XEmacs From the Perspective of Building): | |
2077 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
2078 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
2079 * internals/internals.texi (Major Textual Changes): | |
2080 * internals/internals.texi (Great Integral Type Renaming): | |
2081 * internals/internals.texi (Text/Char Type Renaming): | |
2082 * internals/internals.texi (Rules When Writing New C Code): | |
2083 * internals/internals.texi (A Reader's Guide to XEmacs Coding Conventions): | |
2084 * internals/internals.texi (General Coding Rules): | |
2085 * internals/internals.texi (Object-Oriented Techniques for C): | |
2086 * internals/internals.texi (Writing Lisp Primitives): | |
2087 * internals/internals.texi (Writing Good Comments): | |
2088 * internals/internals.texi (Adding Global Lisp Variables): | |
2089 * internals/internals.texi (Writing Macros): | |
2090 * internals/internals.texi (Proper Use of Unsigned Types): | |
2091 * internals/internals.texi (Techniques for XEmacs Developers): | |
2092 * internals/internals.texi (Regression Testing XEmacs): | |
2093 * internals/internals.texi (How to Regression-Test): | |
2094 * internals/internals.texi (Modules for Regression Testing): | |
2095 * internals/internals.texi (CVS Techniques): | |
2096 * internals/internals.texi (Merging a Branch into the Trunk): | |
2097 * internals/internals.texi (The Modules of XEmacs): | |
2098 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
2099 * internals/internals.texi (Low-Level Modules): | |
2100 * internals/internals.texi (Basic Lisp Modules): | |
2101 * internals/internals.texi (Modules for Standard Editing Operations): | |
2102 * internals/internals.texi (Modules for Interfacing with the File System): | |
2103 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
2104 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
2105 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
2106 * internals/internals.texi (Introduction to Allocation): | |
2107 * internals/internals.texi (Garbage Collection): | |
2108 * internals/internals.texi (GCPROing): | |
2109 * internals/internals.texi (Garbage Collection - Step by Step): | |
2110 * internals/internals.texi (Invocation): | |
2111 * internals/internals.texi (garbage_collect_1): | |
2112 * internals/internals.texi (mark_object): | |
2113 * internals/internals.texi (gc_sweep): | |
2114 * internals/internals.texi (sweep_lcrecords_1): | |
2115 * internals/internals.texi (compact_string_chars): | |
2116 * internals/internals.texi (Integers and Characters): | |
2117 * internals/internals.texi (Allocation from Frob Blocks): | |
2118 * internals/internals.texi (lrecords): | |
2119 * internals/internals.texi (Low-level allocation): | |
2120 * internals/internals.texi (Cons): | |
2121 * internals/internals.texi (Vector): | |
2122 * internals/internals.texi (Symbol): | |
2123 * internals/internals.texi (Marker): | |
2124 * internals/internals.texi (String): | |
2125 * internals/internals.texi (Dumping): | |
2126 * internals/internals.texi (Dumping Justification): | |
2127 * internals/internals.texi (Overview): | |
2128 * internals/internals.texi (Data descriptions): | |
2129 * internals/internals.texi (Dumping phase): | |
2130 * internals/internals.texi (Object inventory): | |
2131 * internals/internals.texi (Address allocation): | |
2132 * internals/internals.texi (The header): | |
2133 * internals/internals.texi (Data dumping): | |
2134 * internals/internals.texi (Pointers dumping): | |
2135 * internals/internals.texi (Reloading phase): | |
2136 * internals/internals.texi (Remaining issues): | |
2137 * internals/internals.texi (Events and the Event Loop): | |
2138 * internals/internals.texi (Introduction to Events): | |
2139 * internals/internals.texi (Main Loop): | |
2140 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
2141 * internals/internals.texi (Specifics About the Emacs Event): | |
2142 * internals/internals.texi (Event Queues): | |
2143 * internals/internals.texi (Event Stream Callback Routines): | |
2144 * internals/internals.texi (IMPORTANT): New. | |
2145 * internals/internals.texi (Other Event Loop Functions): | |
2146 * internals/internals.texi (Stream Pairs): | |
2147 * internals/internals.texi (Converting Events): | |
2148 * internals/internals.texi (Dispatching Events; The Command Builder): | |
2149 * internals/internals.texi (Focus Handling): | |
2150 * internals/internals.texi (Editor-Level Control Flow Modules): | |
2151 * internals/internals.texi (Asynchronous Events; Quit Checking): | |
2152 * internals/internals.texi (Control-G (Quit) Checking): | |
2153 * internals/internals.texi (completely): New. | |
2154 * internals/internals.texi (Profiling): | |
2155 * internals/internals.texi (Exiting): | |
2156 * internals/internals.texi (BEWARE): New. | |
2157 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
2158 * internals/internals.texi (Evaluation): | |
2159 * internals/internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
2160 * internals/internals.texi (Simple Special Forms): | |
2161 * internals/internals.texi (Catch and Throw): | |
2162 * internals/internals.texi (Introduction to Symbols): | |
2163 * internals/internals.texi (Obarrays): | |
2164 * internals/internals.texi (Symbol Values): | |
2165 * internals/internals.texi (Buffers): | |
2166 * internals/internals.texi (Introduction to Buffers): | |
2167 * internals/internals.texi (Buffer Lists): | |
2168 * internals/internals.texi (Markers and Extents): | |
2169 * internals/internals.texi (The Buffer Object): | |
2170 * internals/internals.texi (Text): | |
2171 * internals/internals.texi (The Text in a Buffer): | |
2172 * internals/internals.texi (Ibytes and Ichars): | |
2173 * internals/internals.texi (Byte-Char Position Conversion): | |
2174 * internals/internals.texi (Searching and Matching): | |
2175 * internals/internals.texi (Multilingual Support): | |
2176 * internals/internals.texi (Introduction to Multilingual Issues #1): | |
2177 * internals/internals.texi (Introduction to Multilingual Issues #2): | |
2178 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
2179 * internals/internals.texi (Introduction to Multilingual Issues #4): | |
2180 * internals/internals.texi (Character Sets): | |
2181 * internals/internals.texi (Encodings): | |
2182 * internals/internals.texi (Japanese EUC (Extended Unix Code)): | |
2183 * internals/internals.texi (JIS7): | |
2184 * internals/internals.texi (Internal Mule Encodings): | |
2185 * internals/internals.texi (Internal String Encoding): | |
2186 * internals/internals.texi (Internal Character Encoding): | |
2187 * internals/internals.texi (Byte/Character Types; Buffer Positions; Other Typedefs): | |
2188 * internals/internals.texi (Byte Types): | |
2189 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
2190 * internals/internals.texi (prefixes): New. | |
2191 * internals/internals.texi (C): New. | |
2192 * internals/internals.texi (U): New. | |
2193 * internals/internals.texi (S): New. | |
2194 * internals/internals.texi (Specifically): New. | |
2195 * internals/internals.texi (Buffer Positions): | |
2196 * internals/internals.texi (Other Typedefs): | |
2197 * internals/internals.texi (Usage of the Various Representations): | |
2198 * internals/internals.texi (Working With the Various Representations): | |
2199 * internals/internals.texi (Internal Text API's): | |
2200 * internals/internals.texi (Basic internal-format API's): | |
2201 * internals/internals.texi (The DFC API): | |
2202 * internals/internals.texi (The Eistring API): | |
2203 * internals/internals.texi (Coding for Mule): | |
2204 * internals/internals.texi (Character-Related Data Types): | |
2205 * internals/internals.texi (Working With Character and Byte Positions): | |
2206 * internals/internals.texi (Conversion to and from External Data): | |
2207 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
2208 * internals/internals.texi (An Example of Mule-Aware Code): | |
2209 * internals/internals.texi (Mule-izing Code): | |
2210 * internals/internals.texi (CCL): | |
2211 * internals/internals.texi (Modules for Internationalization): | |
2212 * internals/internals.texi (The Lisp Reader and Compiler): | |
2213 * internals/internals.texi (Lstreams): | |
2214 * internals/internals.texi (Creating an Lstream): | |
2215 * internals/internals.texi (Lstream Types): | |
2216 * internals/internals.texi (Lstream Functions): | |
2217 * internals/internals.texi (Lstream Methods): | |
2218 * internals/internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
2219 * internals/internals.texi (Point): | |
2220 * internals/internals.texi (Window Hierarchy): | |
2221 * internals/internals.texi (The Window Object): | |
2222 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
2223 * internals/internals.texi (The Redisplay Mechanism): | |
2224 * internals/internals.texi (Critical Redisplay Sections): | |
2225 * internals/internals.texi (Line Start Cache): | |
2226 * internals/internals.texi (Redisplay Piece by Piece): | |
2227 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
2228 * internals/internals.texi (Modules for other Display-Related Lisp Objects): | |
2229 * internals/internals.texi (Introduction to Extents): | |
2230 * internals/internals.texi (Extent Ordering): | |
2231 * internals/internals.texi (Format of the Extent Info): | |
2232 * internals/internals.texi (Zero-Length Extents): | |
2233 * internals/internals.texi (Mathematics of Extent Ordering): | |
2234 * internals/internals.texi (Extent Fragments): | |
2235 * internals/internals.texi (Faces): | |
2236 * internals/internals.texi (Glyphs): | |
2237 * internals/internals.texi (Specifiers): | |
2238 * internals/internals.texi (Menus): | |
2239 * internals/internals.texi (Subprocesses): | |
2240 * internals/internals.texi (Interface to MS Windows): | |
2241 * internals/internals.texi (Different kinds of Windows environments): | |
2242 * internals/internals.texi (Windows Build Flags): | |
2243 * internals/internals.texi (Windows I18N Introduction): | |
2244 * internals/internals.texi (Modules for Interfacing with MS Windows): | |
2245 * internals/internals.texi (Interface to the X Window System): | |
2246 * internals/internals.texi (Generic Widget Interface): | |
2247 * internals/internals.texi (Scrollbars): | |
2248 * internals/internals.texi (Menubars): | |
2249 * internals/internals.texi (Checkboxes and Radio Buttons): | |
2250 * internals/internals.texi (Modules for Interfacing with X Windows): | |
2251 * internals/internals.texi (Future Work): | |
2252 * internals/internals.texi (Future Work -- Elisp Compatibility Package): | |
2253 * internals/internals.texi (Future Work -- Drag-n-Drop): | |
2254 * internals/internals.texi (Future Work -- Standard Interface for Enabling Extensions): | |
2255 * internals/internals.texi (Future Work -- Better Initialization File Scheme): | |
2256 * internals/internals.texi (Future Work -- Keyword Parameters): | |
2257 * internals/internals.texi (Future Work -- Property Interface Changes): | |
2258 * internals/internals.texi (Future Work -- Easier Toolbar Customization): | |
2259 * internals/internals.texi (Future Work -- Toolbar Interface Changes): | |
2260 * internals/internals.texi (Future Work -- Menu API Changes): | |
2261 * internals/internals.texi (Future Work -- Removal of Misc-User Event Type): | |
2262 * internals/internals.texi (Future Work -- Mouse Pointer): | |
2263 * internals/internals.texi (Future Work -- Abstracted Mouse Pointer Interface): | |
2264 * internals/internals.texi (Future Work -- Busy Pointer): | |
2265 * internals/internals.texi (Future Work -- Extents): | |
2266 * internals/internals.texi (Future Work -- Everything should obey duplicable extents): | |
2267 * internals/internals.texi (Future Work -- Version Number and Development Tree Organization): | |
2268 * internals/internals.texi (Future Work -- Improvements to the @code{xemacs.org} Website): | |
2269 * internals/internals.texi (Future Work -- Keybinding Schemes): | |
2270 * internals/internals.texi (Future Work -- Better Support for Windows Style Key Bindings): | |
2271 * internals/internals.texi (Future Work -- Misc Key Binding Ideas): | |
2272 * internals/internals.texi (Future Work -- Byte Code Snippets): | |
2273 * internals/internals.texi (Future Work -- Autodetection): | |
2274 * internals/internals.texi (Future Work -- Conversion Error Detection): | |
2275 * internals/internals.texi (Future Work -- BIDI Support): | |
2276 * internals/internals.texi (Future Work -- Localized Text/Messages): | |
2277 * internals/internals.texi (freeze): New. | |
2278 * internals/internals.texi (fail-safe): New. | |
2279 * internals/internals.texi (like): New. | |
2280 * internals/internals.texi (user): New. | |
2281 * internals/internals.texi (ben): New. | |
2282 * internals/internals.texi ('type): New. | |
2283 * internals/internals.texi (NOTE): New. | |
2284 * internals/internals.texi (ILLEGIBLE): New. | |
2285 * internals/internals.texi (language): New. | |
2286 * internals/internals.texi (preprocessing): New. | |
2287 * internals/internals.texi (Subject): New. | |
2288 * internals/internals.texi (http): New. | |
2289 * internals/internals.texi (Now): Removed. | |
2290 * internals/internals.texi (wrong): New. | |
2291 * internals/internals.texi (Proof): Removed. | |
2292 | |
2293 Add bunches and bunches and bunches and bunches of stuff, taken | |
2294 from documentation floating around in various places -- text.c, | |
2295 file-coding.c, other .c and .h files, stuff that I wrote up for an | |
2296 old XEmacs contract, proposals written up in the process of an | |
2297 e-mail discussion, etc. Fix up some mistakes, esp. in CCL. Extra | |
2298 crap from CCL, duplicated with Lispref, removed. Sections on Old | |
2299 Future Work and Future Work Discussion added. | |
2300 | |
2301 Bunches of other work. Add bunches of documentation taken from the | |
2302 source code. Fixup various places to use @strong{}, @code{}, | |
2303 @file{}. Create new Text chapter, split off from Buffers and | |
2304 Textual Representation. Create new chapter for MS Windows, mostly | |
2305 written from scratch. Consolidate all Mule info under | |
2306 "Multilingual Support". Break up chapter on modules and move some | |
2307 parts to the sections discussing the modules, for consolidation | |
2308 purposes. Add a big cross-reference table for all the modules to | |
2309 where they're discussed (or not). New chapter Asynchronous | |
2310 Events; Quit Checking. (Taken from various parts of the code.) New | |
2311 Introduction. New section on Focus Handling (from the code). | |
2312 | |
2313 NOTE that in the process, I discovered that we essentially have | |
2314 FOUR redundant introductions to Mule issues! Someone really needs | |
2315 to go through and clean them up and integrate them (sjt?). | |
2316 | |
2355 | 2317 2003-07-18 Alexey Mahotkin <alexm@hsys.msk.ru> |
2318 | |
2319 * lispref/windows.texi (Basic Windows): Fix typo. | |
2320 | |
2346 | 2321 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
2322 | |
2323 * XEmacs 21.5.18 "chestnut" is released. | |
2324 | |
2297 | 2325 2003-11-02 Stephen J. Turnbull <stephen@xemacs.org> |
2326 | |
2327 * lispref/control.texi (Examples of Catch): Mention use of a cons | |
2328 as a catch tag. | |
2329 | |
2330 2004-07-20 Stephen J. Turnbull <stephen@xemacs.org> | |
2331 | |
2332 * lispref/glyphs.texi (Image Instantiator Formats): Add a few | |
2333 words about the tab control widget. | |
2334 | |
2289 | 2335 2004-05-14 Darryl Okahata <darrylo@xemacs.org> |
2336 | |
2337 * lispref/windows.texi. Added documentation for the functions, | |
2338 ``current-pixel-row'' and ``current-pixel-column''. | |
2339 | |
2269 | 2340 2004-09-13 Jerry James <james@xemacs.org> |
2341 | |
2342 * internals/internals.texi (Modules for Interfacing with the | |
2343 Operating System): The code formerly in callproc.c is now | |
2344 implemented in Lisp in process.el. | |
2345 | |
2256 | 2346 2004-08-30 Jerry James <james@xemacs.org> |
2347 | |
2348 * lispref/text.texi: Document text fields. | |
2349 | |
2255 | 2350 2004-09-08 Stephen J. Turnbull <stephen@xemacs.org> |
2351 | |
2352 * lispref/searching.texi (Syntax of Regexps): Add example of use | |
2353 of shy groups in variable subexpression, correct rumor that there | |
2297 | 2354 may be substantial performance gain. Document double-digit back- |
2355 references. | |
2255 | 2356 |
2214 | 2357 2004-08-13 Stephen J. Turnbull <stephen@xemacs.org> |
2358 | |
2215 | 2359 * xemacs/help.texi (Misc Help): Info-goto-emacs-key-command-node |
2360 to function index. Document Info-goto-emacs-command-node. | |
2361 | |
2214 | 2362 * lispref/positions.texi (Text Lines): makeinfo doesn't like Note:. |
2363 | |
2182 | 2364 2004-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
2365 | |
2366 * lispref/glyphs.texi: Complete reorganization, some content updated. | |
2367 * lispref/lispref.texi (Top): Update menu to match. | |
2368 * lispref/extents.texi (Extent Properties): Update xref. | |
2369 | |
2370 2004-06-29 Stephen J. Turnbull <stephen@xemacs.org> | |
2371 | |
2372 * internals/internals.texi (Modules for Other Aspects of the Lisp | |
2373 Interpreter and Object System): Add description of Sextword syntax | |
2374 class (now obsolete). | |
2375 | |
2376 2004-06-20 Stephen J. Turnbull <stephen@xemacs.org> | |
2377 | |
2378 * internals/internals.texi (Techniques for XEmacs Developers): Be | |
2379 specific when discussing optimization. | |
2255 | 2380 (Techniques for XEmacs Developers): Fragments that are meaningless |
2182 | 2381 by themselves or contain placeholders should be @samp, not @code. |
2382 (Modules for Internationalization): Add description of mule-coding.c | |
2383 and further deprecate mule.c. | |
2384 (Modules for Regression Testing): Add {tag,weak}-tests.el to list. | |
2385 | |
2164 | 2386 2004-07-05 Stephen J. Turnbull <stephen@xemacs.org> |
2387 | |
2388 * xemacs-faq.texi (Q3.10.2): Mention that `pending-delete' is in | |
2389 the "pc" package. | |
2390 | |
2141 | 2391 2004-06-15 Stephen J. Turnbull <stephen@xemacs.org> |
2392 | |
2393 * lispref/specifiers.texi (Specifier Instancing): Add "neon | |
2394 modeline" hack as an example. Thanks to Giacomo Boffi. | |
2395 | |
2135 | 2396 2004-06-07 Jerry James <james@xemacs.org> |
2397 | |
2398 * lispref/modes.texi (Major Modes): Document -mode functions, and | |
2399 the use of a nil argument to defined-derived mode. | |
2400 * lispref/modes.texi (Major Mode Conventions): Describe the use of | |
2401 delay-mode-hooks and define-derived-mode. | |
2402 * lispref/modes.texi (Derived Modes): Warn against the use of | |
2403 interactive specs in derived mode definitions. | |
2404 * lispref/modes.texi (Hooks): Document run-mode-hooks, | |
2405 delay-mode-hooks, run-hook-with-args, | |
2406 run-hook-with-args-until-failure, and0 | |
2407 run-hook-with-args-until-success. | |
2408 | |
2127 | 2409 2004-06-14 Stephen J. Turnbull <stephen@xemacs.org> |
2410 | |
2411 * lispref/glyphs.texi (Creating Glyphs): Improve discussion, fix a | |
2412 couple of typos. | |
2413 | |
2414 * lispref/faces.texi (Face Properties): Background pixmaps | |
2415 can be used on GTK and MS Windows. | |
2416 (Face Convenience Functions): Cross-reference glyph interface. | |
2417 Background pixmap is an image specifier, not a glyph. | |
2418 | |
2091 | 2419 2004-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
2420 | |
2421 * lispref/numbers.texi (Comparison of Numbers): Clarify bigfloat eql. | |
2422 (Predicates on Numbers): Fix thinko in description of `bigfloatp'. | |
2423 | |
2090 | 2424 2004-05-10 Stephen J. Turnbull <stephen@xemacs.org> |
2425 | |
2426 * lispref/numbers.texi (Numbers): Remove reference to "fixed- | |
2427 precision rationals," and fix description of floating-point | |
2428 contagion. | |
2429 (Integer Basics, Float Basics): Fix typos. | |
2430 (Canonicalization and Contagion): Complete rewrite. | |
2431 (Predicates on Numbers): Add fixnump, bignump, ratiop, rationalp, | |
2432 bigfloatp, floatingp, realp, oddp and evenp. | |
2433 (Rational Basics): Add numerator and denominator. | |
2434 (Random Numbers): Fix description of range, and add paranoid | |
2435 comment about how unpredictable `(random t)' is. | |
2436 (Canonicalization and Contagion): Renamed from Contagion and | |
2437 Canonicalization. | |
2438 (The Bignum Extension): Fix it in menu. | |
2439 | |
2069 | 2440 2004-05-10 Stephen J. Turnbull <stephen@xemacs.org> |
2441 | |
2442 * internals/internals.texi (Object-Oriented Techniques for C): | |
2443 Remove reference to "encouraging port to C++". | |
2444 | |
2445 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> | |
2033 | 2446 |
2447 * lispref/numbers.texi (The Bignum Extension): Mention the feature | |
2448 symbols provided. | |
2449 | |
2069 | 2450 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> |
2032 | 2451 |
2452 * lispref/numbers.texi (Rational Basics): There's a reason why | |
2453 this node is named "Rational" and not "Ratio" in the menu.... | |
2454 | |
2028 | 2455 2004-04-18 Stephen J. Turnbull <stephen@xemacs.org> |
2456 | |
2457 * internals/internals.texi (Object-Oriented Techniques in XEmacs): | |
2458 New node. | |
2459 (The XEmacs Object System (Abstractly Speaking)): | |
2460 Reorder the list of objects somewhat. | |
2461 Add brief descriptions of the arbitrary-precision number types. | |
2462 (Writing Good Comments): Slight revision, recommend @xemacs alias. | |
2463 (Character-Related Data Types): Add a few comments re Unicode. | |
2464 (Working With Character and Byte Positions): Ditto. | |
2465 (General Guidelines for Writing Mule-Aware Code): Query. | |
2466 (Conversion to and from External Data): Ditto. | |
2467 (Techniques for XEmacs Developers): Typo. | |
2468 (Modules for Regression Testing): Add an xref. | |
2469 (Overview): Note that dump file is now inside the executable. | |
2470 (Remaining issues): Mention ExecShield vs. pdumper. | |
2471 (Searching and Matching): Mention UTF-8 wrt Mule. | |
2472 | |
2473 2004-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
2474 | |
2475 * widget.texi (Introduction): Update historical references a bit. | |
2476 Fix many typos and grammatical problems. | |
2477 (User Interface): Fix typo. | |
2478 | |
2069 | 2479 2004-04-09 Stephen J. Turnbull <stephen@xemacs.org> |
2028 | 2480 |
2481 * lispref/numbers.texi (Numbers): Describe bignums, ratios, and | |
2482 bigfloats briefly. | |
2483 (Integer Basics): We've had 31-bit integers for a while. Fix the | |
2484 statement of minimum available precision and the examples. | |
2485 Document most-positive-fixnum and most-negative-fixnum. Add a | |
2486 pointer to the node "The Bignum Extension". | |
2487 (Float Basics): Document most-positive-float, most-negative-float, | |
2488 least-positive-float, least-positive-normalized-float, | |
2489 least-negative-float, and least-negative-normalized-float. Add a | |
2490 pointer to the node "The Bignum Extension". | |
2491 (Comparison of Numbers): Update for bignums. | |
2492 | |
2493 (The Bignum Extension): | |
2494 (Bignum Basics): | |
2495 (Ratio Basics): | |
2496 (Bigfloat Basics): | |
2497 (Contagion and Canonicalization): | |
2498 (Compatibility Issues): | |
2499 New nodes. | |
2500 | |
2501 * lispref/lispref.texi (Top): | |
2865 | 2502 * lispref/numbers.texi (Numbers): |
2028 | 2503 Add nodes "Ratio Basics" and "The Bignum Extension" to menus. |
2504 | |
2505 2004-01-26 Stephen J. Turnbull <stephen@xemacs.org> | |
2506 | |
2507 * lispref/specifiers.texi: Update FSF copyright. | |
2508 (Specifier Compatibility Notes): New node. | |
2509 | |
2510 * lispref/glyphs.texi (Glyph Properties): Fix typo. | |
2511 (Glyphs): | |
2512 (Native GUI Widgets): New node. | |
2513 | |
2514 * lispref/gutter.texi (Gutter Descriptor Format): Node deleted. | |
2515 (Gutter): | |
2865 | 2516 (Gutter Intro): |
2517 (Creating Gutter): | |
2518 (Specifying a Gutter): | |
2028 | 2519 Pluralize node name to Creating Gutters. |
2520 (Creating Gutters): Improve explanation of gutter descriptors. | |
2521 (Other Gutter Variables): Remove extraneous text. | |
2522 (Common Gutter Widgets): In lieu of real documentation, at least | |
2523 point to gutter-items.el. | |
2524 | |
2069 | 2525 2004-04-06 Stephen J. Turnbull <stephen@xemacs.org> |
1987 | 2526 |
2527 Lightly revised from <psr7v1j039.fsf@diannao.ittc.ku.edu>. | |
2528 Thanks to Jerry James <james@xemacs.org>. | |
2529 | |
2530 * xemacs-faq.texi (Top, Miscellaneous): In menus, renumber Section | |
2531 5.3 and Q5.3.1-12 as 5.4.x, and add Mathematics and Q5.3.1-4 as | |
2532 replacement section 5.3. | |
2533 (Q5.3.1, Q5.3.2, Q5.3.3, Q5.3.4) New FAQs for bignums. | |
2534 (Q5.2.1, Q8.0.1) Add @unnumberedsec headings. | |
2535 (Q6.4.1) Correct @unnumberedsec heading. | |
2536 | |
1964 | 2537 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
2538 | |
2539 * XEmacs 21.5.17 "chayote" is released. | |
2540 | |
1920 | 2541 2004-02-20 Stephen J. Turnbull <stephen@xemacs.org> |
2542 | |
2543 * internals/internals.texi (GCPROing): Mention `Fsignal'. Clarify | |
2544 that references, not the objects themselves, are what is marked. | |
2545 | |
1882 | 2546 2004-01-26 Stephen J. Turnbull <stephen@xemacs.org> |
2547 | |
2548 * lispref/specifiers.texi (Copyright): Update. | |
2549 | |
2550 (Creating Specifiers): Correct more instances of subject-verb | |
2551 disagreement. | |
2552 | |
1877 | 2553 2004-01-24 Stephen J. Turnbull <stephen@xemacs.org> |
2554 | |
2555 * lispref/specifiers.texi (Specifier Instancing Functions): Fix | |
2556 typos, thanks to Ilpo Nyyssönen. | |
2557 | |
1875 | 2558 2004-01-23 Stephen J. Turnbull <stephen@xemacs.org> |
2559 | |
2560 * lispref/specifiers.texi (Specifier Instancing Functions): Add | |
2561 documentation of `specifier-matching-instance'. | |
2562 (Introduction to Specifiers): Fix typos. | |
2563 (Simple Specifier Usage): Cross-reference Toolbar Intro. | |
2564 (Creating Specifiers): | |
2565 (Specifier Instancing Functions): | |
2566 (Adding Specifications): | |
2567 Various improvements. Deprecate set-specifier a bit more. | |
2568 | |
1869 | 2569 2004-01-20 Stephen J. Turnbull <stephen@xemacs.org> |
2570 | |
2571 * lispref/specifiers.texi (Specifier Examples): Add new example, | |
2572 pluralize node name and section title. | |
2573 (Specifiers): Pluralize "Specifier Examples" in menu. | |
2574 | |
2575 * lispref/lispref.texi (Top): Pluralize "Specifier Examples" in menu. | |
2576 | |
2577 2003-11-04 Stephen J. Turnbull <stephen@xemacs.org> | |
2578 | |
2579 * xemacs-faq.texi: Fix Tony Rossini's address. | |
2580 | |
1833 | 2581 2003-12-15 Steve Youngs <sryoungs@bigpond.net.au> |
2582 | |
2583 * lispref/customize.texi (Defining New Types): New node. | |
2584 From Per Abrahamsen <abraham@dina.kvl.dk> | |
2585 | |
1755 | 2586 2003-10-16 Ilya N. Golubev <gin@mo.msk.ru> |
2587 | |
2588 * lispref/tips.texi (Comment Tips): Typo fix. | |
2589 | |
1738 | 2590 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> |
2591 | |
2592 * new-users-guide/custom2.texi (Init File): | |
2593 | |
2594 Fix up erroneous uses of @var instead of @code for the names of | |
2595 particular variables in programming languages. | |
2596 | |
2597 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> | |
2598 | |
2599 * custom.texi (The Init File): | |
2600 * xemacs-faq.texi (Q2.1.3): | |
2601 (Q2.1.5): | |
2602 | |
2603 * internals/internals.texi (Modules for Internationalization): | |
2604 | |
2605 * lispref/display.texi (Beeping): | |
2606 * lispref/ldap.texi (Encoder/Decoder Functions): | |
2607 * lispref/markers.texi (The Mark): | |
2608 (The Region): | |
2609 * lispref/menus.texi (Menu Accelerator Functions): | |
2610 * lispref/numbers.texi (Math Functions): | |
2611 * lispref/packaging.texi (package-info.in): | |
2612 (Makefile): | |
2613 (Local.rules File): | |
2614 * lispref/postgresql.texi (libpq Lisp Symbols and DataTypes): | |
2615 (libpq Lisp Variables): | |
2616 (Synchronous Interface Functions): | |
2617 (Other libpq Functions): | |
2618 | |
2619 * new-users-guide/custom2.texi (Init File): | |
2620 (Setting Variables): | |
2621 * new-users-guide/files.texi (File Names): | |
2622 (Saving Files): | |
2623 * new-users-guide/search.texi (Search and Replace): | |
2624 | |
2625 * xemacs/custom.texi (X Resources): | |
2626 | |
2627 Fix up erroneous uses of @var instead of @code for the names of | |
2628 particular variables in programming languages. | |
2629 | |
2630 2003-10-10 Stephen J. Turnbull <stephen@xemacs.org> | |
2631 | |
2632 * Makefile: Remove old package and redundant cruft. | |
2633 | |
1734 | 2634 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> |
2635 | |
2636 * lispref/mule.texi (Charset Property Functions): Charset registry | |
2637 can be set. | |
2638 (Predefined Charsets): Add registry to Vietnamese charset names. | |
2865 | 2639 |
1716 | 2640 2003-09-26 Steve Youngs <youngs@xemacs.org> |
2641 | |
2642 * XEmacs 21.5.16 "celeriac" is released. | |
2643 | |
1710 | 2644 2003-09-22 Adrian Aichner <adrian@xemacs.org> |
2645 | |
2646 * lispref/backups.texi (Reverting): Fix the PRINTED-MANUAL-TITLE | |
2647 argument for a cross reference to "The XEmacs User's Manual". | |
2648 | |
1709 | 2649 2003-08-15 Stephen J. Turnbull <stephen@xemacs.org> |
2650 | |
2651 * internals/internals.texi: Update copyright notice. | |
2652 (GCPROing): Add missing period. | |
2653 (Adding Global Lisp Variables): general.c -> general-slots.h. | |
2654 (A Reader's Guide to XEmacs Coding Conventions): New node. | |
2655 | |
1703 | 2656 2003-09-20 Ilya N. Golubev <gin@mo.msk.ru> |
2657 | |
2658 * xemacs/mini.texi (Minibuffer): Add customizing message display | |
2659 reference. | |
2660 * lispref/display.texi (Customizing Message Display): New, | |
2661 describe `redisplay-echo-area-function', | |
2662 `undisplay-echo-area-function', `minibuffer-echo-wait-function'. | |
2663 (The Echo Area): Add menu. | |
2664 | |
1702 | 2665 2003-09-19 Sandra Wambold <wambold@xemacs.org> |
2666 | |
2667 * Makefile: add targets to produce PDF files | |
2668 | |
1665 | 2669 2003-09-03 Steve Youngs <youngs@xemacs.org> |
2670 | |
2671 * XEmacs 21.5.15 "celery" is released. | |
2672 | |
1648 | 2673 2003-08-28 Steve Youngs <youngs@xemacs.org> |
2674 | |
2675 * xemacs-faq.texi (Q2.0.2): Rewrite, mentioning the correct way to | |
2676 remove a package. | |
2677 (Q3.8.2): big-menubar is in the edit-utils package. | |
2678 (Q4.3.2): Add a comment about not needing TM for things like Gnus, | |
2679 MH-E and VM. | |
2680 (Q5.3.3): State correct location of ps-print.el. | |
2681 | |
2682 * xemacs/packages.texi (Packages): Remove "Creating Packages" menu | |
2683 entry. | |
2684 (Package Terminology): Whitespace clean up. | |
2685 (Installing Packages): Whitespace clean up and add some @code | |
2865 | 2686 formatters. |
1648 | 2687 Re-organise the menu so that installation via PUI is first and |
2688 Sumo is last. | |
2689 (Automatically): mule-base is no longer a requirement for using | |
2690 PUI. | |
2691 Mention optionally requiring mailcrypt. | |
2692 (Note): Removed. | |
2693 (Manually): Move to below the PUI installation method. | |
2694 (Sumo): Move to below the manual installation method. | |
2695 (Which Packages): Add mailcrypt. | |
2696 (Building Packages): Remove duplicated stuff that is in | |
2697 lispref/packaging.texi, xref to it instead. | |
2698 (Local.rules File): xref to the appropriate node in | |
2865 | 2699 lispref/packaging.texi. |
1648 | 2700 (Available Packages): Update to current reality. |
2701 (all): Removed. | |
2702 (srckit): Removed. | |
2703 (binkit): Removed. | |
2865 | 2704 |
1648 | 2705 * xemacs/reading.texi (Reading Mail): Mention Gnus and MEW. |
2706 | |
2707 * new-users-guide/custom2.texi (Init File): big-menubar.el is in | |
2708 the edit-utils package. | |
2709 | |
2710 * lispref/packaging.texi (Packaging): | |
2711 (The User View): | |
2712 (The Library Maintainer View): | |
2713 (Infrastructure): | |
2714 (Control Files): | |
2715 (Obtaining): | |
2716 (The Package Release Engineer View): | |
2717 (Package Terminology): | |
2718 (Building Packages): | |
2719 (Makefile Targets): | |
2720 (packages): New. | |
2721 (Local.rules File): | |
2722 (XEMACS_PACKAGES): Removed. | |
2723 (XEMACS_INSTALLED_PACKAGES_ROOT): New. | |
2724 (NONMULE_PACKAGES): New. | |
2725 (EXCLUDES): New. | |
2726 (Creating Packages): | |
2727 (BATCH): New. | |
2728 (VERSION): Removed. | |
2729 (AUTHOR_VERSION): Removed. | |
2730 (MAINTAINER): Removed. | |
2731 (PACKAGE): Removed. | |
2732 (PKG_TYPE): Removed. | |
2733 (REQUIRES): Removed. | |
2734 (CATEGORY): Removed. | |
2735 (ELS): Removed. | |
2736 (ELCS): Removed. | |
2737 (all): Removed. | |
2738 (srckit): Removed. | |
2739 (binkit): Removed. | |
2740 (are): New. | |
2741 (STANDARD_DOCS): New. | |
2742 (ELCS_1_DEST): New. | |
2743 (example): New. | |
2744 (PACKAGE_SUPPRESS): New. | |
2745 (EXPLICIT_DOCS): New. | |
2746 (DATA_DEST): New. | |
2747 (Documenting Packages): | |
2748 | |
2749 Not quite a total rewrite, but a fairly thorough audit | |
2750 nonetheless. | |
2751 | |
1620 | 2752 2003-07-31 René Kyllingstad <listmailxemacs@kyllingstad.com> |
2753 | |
2754 * lispref/display.texi (Invisible Text): | |
2755 mention line-move-ignore-invisible. | |
2756 * lispref/extents.texi (Extent Properties): | |
2757 end-glyph will still be displayed when invisible is set. | |
2758 * lispref/extents.texi (Extents and Events): | |
2759 only begin-glyph is highlighted. | |
2760 | |
1616 | 2761 2003-08-12 Stephen J. Turnbull <stephen@xemacs.org> |
2762 | |
2763 * xemacs-faq.texi (Q1.3.8): Fix typo, note errorneous recognition. | |
2764 | |
1613 | 2765 2003-08-05 Stephen J. Turnbull <stephen@xemacs.org> |
2766 | |
2767 * lispref/packaging.texi (Creating Packages): | |
2768 * xemacs/packages.texi (Creating Packages): | |
2769 Style guideline for package-info.in description. | |
2770 | |
1554 | 2771 2003-06-30 Vin Shelton <acs@xemacs.org> |
2772 | |
2773 * lispref/lists.texi (List-related Predicates): Add @end defun. | |
2774 | |
1549 | 2775 2003-06-30 Stephen J. Turnbull <stephen@xemacs.org> |
2776 | |
2777 * xemacs-faq.texi (Q3.2.2): Fix typo. | |
2778 | |
2779 2003-06-20 Stephen J. Turnbull <stephen@xemacs.org> | |
2780 | |
2781 * lispref/objects.texi (Character Type): Document ?\x00 read | |
2782 syntax and range limitations on ?\000 and ?\x00 read syntaxes. | |
2783 | |
2784 2003-06-16 Stephen J. Turnbull <stephen@xemacs.org> | |
2785 | |
2786 * lispref/lists.texi (List-related Predicates): Document | |
2787 `true-list-p', and reference it from `listp'. | |
2788 | |
1510 | 2789 2003-06-01 Steve Youngs <youngs@xemacs.org> |
2790 | |
2791 * XEmacs 21.5.14 "cassava" is released. | |
2792 | |
1496 | 2793 2003-05-22 Stephen J. Turnbull <stephen@xemacs.org> |
2794 | |
2795 * internals/internals.texi (Searching and Matching): New node. | |
2796 | |
1495 | 2797 2003-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
2798 | |
2799 * xemacs-faq.texi (detail menu): Reformat "Current Events" caption. | |
2800 (Legacy Versions): New section. | |
2801 (Q8.0.1): New question. | |
2802 | |
2803 2003-05-16 Stephen J. Turnbull <stephen@xemacs.org> | |
2804 | |
2805 * lispref/searching.texi (Regexp Search): Update split-string for | |
2806 new specification. | |
2807 | |
2808 * lispref/strings.texi (Creating Strings): Xref split-string | |
2809 (this is where GNU Emacs documents it). | |
2810 | |
1473 | 2811 2003-05-10 Steve Youngs <youngs@xemacs.org> |
2812 | |
2813 * XEmacs 21.5.13 "cauliflower" is released. | |
2814 | |
1468 | 2815 2003-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
2816 | |
2817 * lispref/searching.texi (Match Data): Failed match preserves data. | |
2818 | |
1441 | 2819 2003-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
2820 | |
2821 * xemacs-faq.texi (Q6.4.3): New: auxiliary programs for Windows. | |
2822 | |
1431 | 2823 2003-04-24 Steve Youngs <youngs@xemacs.org> |
2824 | |
2825 * XEmacs 21.5.12 "carrot" is released. | |
2826 | |
1389 | 2827 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org> |
2828 | |
2829 * xemacs/frame.texi (XEmacs under X): | |
2830 * xemacs-faq.texi: | |
2831 Global substitute .Xresources for .Xdefaults. | |
1386 | 2832 |
2833 * xemacs-faq.texi (Q3.2.2): `default' is also a face. | |
2834 (Q3.2.2, Q3.8.4): Describe appropriate use of `fontSet' in Mule. | |
2835 Suggested by Janis Dzerins <jonis@dir.lv>. | |
2836 | |
1366 | 2837 2003-03-20 Steve Youngs <youngs@xemacs.org> |
2838 | |
2839 * xemacs/packages.texi (Automatically): Refer to | |
2840 'pui-set-local-package-get-directory' instead of | |
2865 | 2841 'pui-add-install-directory'. |
1366 | 2842 Remove comment about PGP not being intergrated into PUI. |
2843 Document balloon-help in PUI. | |
2844 Add heading "Keeping Packages Up To Date". | |
2845 (Building Packages): makeinfo 4.2 is required. | |
2846 | |
1362 | 2847 2003-03-18 Stephen J. Turnbull <stephen@xemacs.org> |
2848 | |
2849 * xemacs/frame.texi (Gutter Basics): Describe common options for | |
2850 buffers tab control. | |
2851 | |
1353 | 2852 2003-03-11 Adrian Aichner <adrian@xemacs.org> |
2853 | |
2854 * cl.texi: Change incorrect references to GNU where XEmacs is | |
2855 appropriate. | |
2856 | |
1347 | 2857 2003-03-09 Ben Wing <ben@xemacs.org> |
2858 | |
2859 * widget.texi (Defining New Widgets): | |
2860 Fix Turnbull typos. | |
2861 | |
1339 | 2862 2003-03-02 Stephen Turnbull <stephen@xemacs.org> |
2863 | |
2864 * widget.texi (Defining New Widgets): | |
2865 Document `widget-create-child', `widget-create-child-and-convert', | |
2866 and `widget-create-child-value'. Document the `:copy' method. | |
2867 Improve discussion of the `:convert-widget' method. | |
2868 | |
1333 | 2869 2003-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
2870 | |
2871 * internals/internals.texi (XEmacs From the Perspective of Building): | |
2872 Fix typo. | |
2873 (Build-Time Dependencies): New node. | |
2874 | |
1307 | 2875 2003-02-16 Steve Youngs <youngs@xemacs.org> |
2876 | |
2877 * XEmacs 21.5.11 "cabbage" is released. | |
2878 | |
1288 | 2879 2003-02-11 Adrian Aichner <adrian@xemacs.org> |
2880 | |
2881 * lispref/backups.texi (Auto-Saving): Fix auto-save xref to user | |
2882 manual. | |
2883 | |
1263 | 2884 2003-02-06 Stephen J. Turnbull <stephen@xemacs.org> |
2885 | |
2886 * internals/internals.texi (Top): | |
2887 (Buffers and Textual Representation): | |
2888 Fix up white space in menu. | |
2889 (Character-Related Data Types): | |
2890 (Conversion to and from External Data): | |
2891 (Format of the Extent Info): | |
2892 Pedantic grammatical nits. | |
2893 | |
1261 | 2894 2003-02-05 Ben Wing <ben@xemacs.org> |
2895 | |
2896 * lispref/mule.texi (Internationalization Terminology): | |
2897 Lots of Mule rewriting. | |
2898 | |
2899 2003-02-05 Ben Wing <ben@xemacs.org> | |
2900 | |
2901 * internals/internals.texi (Top): | |
2902 * internals/internals.texi (Coding for Mule): | |
2903 * internals/internals.texi (Character-Related Data Types): | |
2904 * internals/internals.texi (Working With Character and Byte Positions): | |
2905 * internals/internals.texi (Conversion to and from External Data): | |
2906 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
2907 * internals/internals.texi (An Example of Mule-Aware Code): | |
2908 * internals/internals.texi (Mule-izing Code): | |
2909 * internals/internals.texi (help): New. | |
2910 * internals/internals.texi (Buffers and Textual Representation): | |
2911 * internals/internals.texi (The Text in a Buffer): | |
2912 * internals/internals.texi (Markers and Extents): | |
2913 * internals/internals.texi (MULE Character Sets and Encodings): | |
2914 * internals/internals.texi (Lstream Functions): | |
2915 * internals/internals.texi (Lstream Methods): | |
2916 * internals/internals.texi (Format of the Extent Info): | |
2917 * internals/internals.texi (Mathematics of Extent Ordering): | |
2918 Major fixup. Correct for new names of Bytebpos, Ichar, etc. and | |
2919 lots of Mule rewriting. | |
2920 | |
1258 | 2921 2003-02-05 Stephen J. Turnbull <stephen@xemacs.org> |
2922 | |
2923 * xemacs/startup.texi (Startup Paths): Clarification of package | |
2924 hierarchy structure. | |
2925 | |
2926 * xemacs-faq.texi (Q2.0.13, Q2.0.14, Q2.1.24, Q2.1.25): Not NEW. | |
2927 (Q2.1.15): Stylistic changes for clarity. | |
2928 | |
1251 | 2929 2003-02-03 Steve Youngs <youngs@xemacs.org> |
2930 | |
2931 * xemacs/packages.texi (Local.rules File): Update to reflect Ben's | |
2932 recent dabble into the packages. | |
2933 | |
1187 | 2934 2003-01-04 Steve Youngs <youngs@xemacs.org> |
2935 | |
2936 * XEmacs 21.5.10 "burdock" is released. | |
2937 | |
1188 | 2938 2003-01-04 Steve Youngs <youngs@xemacs.org> |
2939 | |
2940 * lispref/mule.texi (Charset Unification): Menu item "Internals" | |
2941 should be "Unification Internals". | |
2942 | |
1183 | 2943 2003-01-03 Stephen J. Turnbull <stephen@xemacs.org> |
2944 | |
2945 * xemacs/startup.texi (Startup Paths): Hierarchy, not package, layout. | |
2946 | |
2947 2003-01-03 Stephen J. Turnbull <stephen@xemacs.org> | |
2948 | |
2949 * xemacs-faq.texi: Debugging FAQ improvements from Ben Wing. | |
2950 (Q2.0.6): Mention union type bugs. | |
2951 (Q2.1.1): Debugging HOWTO improvements. | |
2952 (Q2.1.15): Decoding Lisp objects in the debugger. | |
2953 | |
2954 * widget.texi (Widget Internals): New node. | |
2955 (Top): Add menu item for it. | |
2956 | |
2957 * xemacs/xemacs.texi (Top): Better short description of Mule in | |
2958 menu. Mule submenu. | |
2959 | |
2960 Charset unification docs. What a concept---commit docs first! | |
2961 | |
2962 * lispref/mule.texi (MULE): Add Unification and Tables menu entries. | |
2963 (Unicode Support): Fixup next node. | |
2964 (Charset Unification): | |
2965 (Overview): | |
2966 (Usage): | |
2967 (Basic Functionality): | |
2968 (Interactive Usage): | |
2969 (Configuration): | |
2970 (Theory of Operation): | |
2971 (What Unification Cannot Do for You): | |
2972 (Unification Internals): | |
2973 (Charsets and Coding Systems): | |
2974 New nodes. | |
2975 | |
2976 * xemacs/mule.texi (Mule): Menu items for Unification and Tables. | |
2977 (Recognize Coding): | |
2978 (Specify Coding): | |
2979 Fixup next and previous pointers. | |
2980 (Unification): | |
2981 (Unification Overview): | |
2982 (Unification Usage): | |
2983 (Unification Configuration): | |
2984 (Unification FAQs): | |
2985 (Unification Theory): | |
2986 (What Unification Cannot Do for You): | |
2987 (Charsets and Coding Systems): | |
2988 New nodes. | |
2989 | |
2990 2002-12-17 Stephen Turnbull <stephen@xemacs.org> | |
2991 | |
2992 * widget.texi (Widget Wishlist): Typo. | |
2993 (Defining New Widgets): s/widget-define/define-widget/g. | |
2994 | |
2995 2002-12-27 Stephen J. Turnbull <stephen@xemacs.org> | |
2996 | |
2997 * internals/internals.texi (Regression Testing XEmacs): Hints for | |
2998 test design. | |
2999 | |
1143 | 3000 2002-10-29 Ville Skyttä <scop@xemacs.org> |
3001 | |
3002 * xemacs-faq.texi (Top): | |
3003 The canonical location for FAQ on the website is /FAQ/. | |
3004 | |
1142 | 3005 2002-11-12 Ilya N. Golubev <gin@mo.msk.ru> |
3006 | |
3007 * xemacs/custom.texi (Face Customization): | |
3008 (Faces): | |
3009 Document face-frob-from-locale-first variable. | |
3010 | |
1138 | 3011 2002-12-03 Didier Verna <didier@xemacs.org> |
3012 | |
3013 * xemacs-faq.texi (Customization): add missing menu entry for Q3.2.7. | |
3014 | |
3015 2002-12-03 Didier Verna <didier@xemacs.org> | |
3016 | |
3017 * lispref/specifiers.texi (Introduction to Specifiers): fix case | |
3018 spelling of `Buffer-Local Variables' crossref. | |
3019 | |
1137 | 3020 2002-12-03 Didier Verna <didier@xemacs.org> |
3021 | |
3022 * xemacs/custom.texi (Faces): document | |
3023 `set-face-background-pixmap-file'. | |
3024 | |
3025 2002-12-03 Didier Verna <didier@xemacs.org> | |
3026 | |
3027 * lispref/faces.texi (Face Convenience Functions): ditto. | |
3028 * lispref/glyphs.texi (Creating Glyphs): reference it. | |
3029 | |
1135 | 3030 2002-11-29 Stephen Turnbull <stephen@xemacs.org> |
3031 | |
3032 * lispref/specifiers.texi (Simple Specifier Usage): New node. | |
3033 (Specifiers): Adjust node pointers. | |
3034 (Simple Specifier Usage): Revise. Adjust node pointers. | |
3035 | |
3036 * lispref/toolbar.texi (Creating Toolbar): Xref specifier example. | |
3037 | |
3038 2002-10-20 Stephen Turnbull <stephen@xemacs.org> | |
3039 | |
3040 * xemacs-faq.texi (Q3.2.7): New FAQ on displaying non-ASCII. | |
3041 (Q3.5.7, Q1.3.3): Cross-reference it. | |
3042 | |
3043 2002-10-20 Stephen Turnbull <stephen@xemacs.org> | |
3044 | |
3045 * xemacs-faq.texi (Q2.1.1): Mention bug report commands. | |
3046 (Q2.0.9): Note how out-of-date the entry is. | |
3047 (Q1.3.1, Q1.3.2, Q1.3.3, Q1.3.4, Q1.3.5, Q1.3.6): Revise/update. | |
3048 (Q1.2.1): Fix typo. | |
3049 | |
3050 * internals/internals.texi (Regression Testing XEmacs): Thorough | |
3051 rewrite, documenting macros explicitly. | |
3052 | |
3053 2002-10-29 Stephen J. Turnbull <stephen@xemacs.org> | |
1103 | 3054 |
3055 * lispref/compile.texi (Compilation Options): New node. | |
3056 (Byte Compilation): Add it to menu. | |
3057 (Compilation Functions): Minor mods. | |
3058 (Docs and Compilation): | |
3059 (Dynamic Loading): | |
3060 Document some variable defaults. | |
3061 | |
1135 | 3062 2002-11-07 Stephen J. Turnbull <stephen@xemacs.org> |
1096 | 3063 |
3064 * internals/internals.texi (Low-Level Modules): Add urefs to Doug | |
3065 Lea's and Wolfram Gloger's home pages. | |
3066 | |
1135 | 3067 2002-10-18 Stephen J. Turnbull <stephen@xemacs.org> |
1058 | 3068 |
3069 * xemacs-faq.texi (Q2.0.16): New FAQ on "no cygXpm-noX" fatal error. | |
3070 (Q6.1.4): Document cygXpm-noX. | |
3071 | |
1030 | 3072 2002-10-04 Ville Skyttä <ville.skytta@xemacs.org> |
3073 | |
3074 * xemacs/packages.texi (Available Packages): Add fortran-modes, | |
3075 perl-modes, psgml-dtds, python-modes and ruby-modes. | |
3076 Some consistency tweaks. | |
3077 | |
1026 | 3078 2002-09-22 Ville Skyttä <ville.skytta@xemacs.org> |
3079 | |
3080 * lispref/variables.texi (add-to-list): Document the new | |
3081 (optional) append argument. | |
3082 | |
1024 | 3083 2002-09-20 Stephen J. Turnbull <stephen@xemacs.org> |
3084 | |
3085 * internals/internals.texi (Techniques for XEmacs Developers): | |
3086 More performance optimization hints. | |
3087 (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
3088 Describe syntax code internals. | |
3089 | |
3090 * lispref/syntax.texi (Syntax Basics): XEmacs "20" -> "20 and later". | |
3091 (Syntax Class Table): Deprecate SPC as whitespace designator. | |
3092 (Syntax Flags): Rewrite for `8-bit' comment syntax flags. | |
3093 | |
981 | 3094 2002-08-30 Steve Youngs <youngs@xemacs.org> |
3095 | |
3096 * XEmacs 21.5.9 "brussels sprouts" is released. | |
3097 | |
973 | 3098 2002-08-22 Stephen J. Turnbull <stephen@xemacs.org> |
3099 | |
3100 * internals/internals.texi (Regression Testing XEmacs): Document | |
3101 how to skip and warn about tests that depend on packages. | |
3102 | |
967 | 3103 2002-08-16 Stephen J. Turnbull <stephen@xemacs.org> |
1137 | 3104 |
967 | 3105 * internals/internals.texi (Regression Testing XEmacs): Fix typo. |
3106 | |
965 | 3107 2002-08-15 Stephen J. Turnbull <stephen@xemacs.org> |
1137 | 3108 |
965 | 3109 * internals/internals.texi (GCPROing): Add comment on GCPRO. |
3110 (Regression Testing XEmacs): New node. | |
3111 (Modules for Regression Testing): New node. | |
3112 | |
959 | 3113 2002-08-12 Simon Josefsson <jas@extundo.com> |
3114 | |
3115 * lispref/building.texi (Pure Storage): purecopy is a no-op. | |
3116 | |
955 | 3117 2002-08-08 Ville Skyttä <ville.skytta@xemacs.org> |
3118 | |
3119 * xemacs/packages.texi (Available Packages): Bring up to date. | |
3120 | |
947 | 3121 2002-08-02 Ville Skyttä <ville.skytta@xemacs.org> |
3122 | |
3123 * xemacs/packages.texi (Available Packages): | |
3124 Bring package list up to date, thanks also to Brian Palmer. | |
3125 | |
936 | 3126 2002-07-30 Ville Skyttä <ville.skytta@xemacs.org> |
3127 | |
3128 * term.texi (Input to the inferior): Fix term line/char mode | |
3129 switch keybindings. Kudos to Jacob P. Burckhardt. | |
3130 | |
3131 * xemacs/misc.texi (Term Mode): Ditto. | |
3132 | |
933 | 3133 2002-07-27 Steve Youngs <youngs@xemacs.org> |
3134 | |
3135 * XEmacs 21.5.8 "broccoli" is released. | |
3136 | |
918 | 3137 2002-07-06 Adrian Aichner <adrian@xemacs.org> |
3138 | |
3139 * new-users-guide/custom1.texi (Customizing key Bindings): Fix | |
3140 improper use of indef. art. "a". | |
3141 | |
3142 2002-07-06 Adrian Aichner <adrian@xemacs.org> | |
3143 | |
3144 * lispref/commands.texi (Peeking and Discarding): Ditto. | |
3145 * lispref/customize.texi (Type Keywords): Ditto. | |
3146 * lispref/dragndrop.texi (Drop Interface): Ditto. | |
3147 | |
3148 2002-07-06 Adrian Aichner <adrian@xemacs.org> | |
3149 | |
3150 * termcap.texi (Clearing): Ditto. | |
3151 * widget.texi (User Interface): Ditto. | |
3152 * widget.texi (Basic Types): Ditto. | |
3153 * widget.texi (group): Ditto. | |
3154 | |
901 | 3155 2002-07-05 Adrian Aichner <adrian@xemacs.org> |
3156 | |
3157 * xemacs/menus.texi (Edit Menu): Typo fixes for incorrect use of | |
3158 indef. art. "an". | |
3159 | |
3160 2002-07-05 Adrian Aichner <adrian@xemacs.org> | |
3161 | |
3162 * lispref/control.texi (Processing of Errors): Ditto. | |
3163 * lispref/mule.texi (ISO 2022): Ditto. | |
3164 * lispref/packaging.texi (Package Terminology): Ditto. | |
3165 * lispref/text.texi (Transformations): Ditto. | |
3166 | |
3167 2002-07-05 Adrian Aichner <adrian@xemacs.org> | |
3168 | |
3169 * termcap.texi (Naming): Ditto. | |
3170 * texinfo.texi (itemize): Ditto. | |
3171 * texinfo.texi (Tips): Ditto. | |
3172 * widget.texi (Introduction): Ditto. | |
3173 * widget.texi (group): Ditto. | |
3174 | |
894 | 3175 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
3176 | |
3177 * XEmacs 21.5.7 "broccoflower" is released. | |
3178 | |
892 | 3179 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
3180 | |
3181 * xemacs-faq.texi (Top, Customization, Q3.10.5, Q3.10.6): | |
3182 New "killing is slow" FAQ and link updates. | |
3183 | |
880 | 3184 2002-06-17 Jerry James <james@xemacs.org> |
3185 | |
3186 * emodules.texi (Loading other Modules): Describe why we do not | |
3187 use RTLD_GLOBAL. | |
3188 | |
873 | 3189 2002-06-20 Adrian Aichner <adrian@xemacs.org> |
3190 | |
3191 * xemacs/mule.texi (Language Environments): Typo fix suggested by | |
3192 Frank Schmitt. | |
3193 | |
871 | 3194 2002-06-11 Adrian Aichner <adrian@xemacs.org> |
3195 | |
3196 * xemacs-faq.texi (Q1.3.7): Update broken link to russian.el | |
3197 (found by linklint) with Google's help. | |
3198 | |
3199 2002-05-25 Adrian Aichner <adrian@xemacs.org> | |
3200 | |
3201 * xemacs/custom.texi (Syntax Entry): Deprecate ` ' in favor of `-'. | |
3202 | |
868 | 3203 2002-06-05 Ben Wing <ben@xemacs.org> |
3204 | |
3205 * internals/internals.texi (Top): | |
3206 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
3207 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
3208 * internals/internals.texi (Major Textual Changes): | |
3209 * internals/internals.texi (Great Integral Type Renaming): | |
3210 * internals/internals.texi (Text/Char Type Renaming): | |
3211 * internals/internals.texi (files): New. | |
3212 | |
863 | 3213 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org> |
3214 | |
3215 * custom.texi (The Init File): Rewrite completely. | |
3216 | |
3217 2002-03-19 Adrian Aichner <adrian@xemacs.org> | |
3218 | |
3219 * widget.texi (constants): Typo fix. | |
3220 | |
3221 2002-02-07 Stephen J. Turnbull <stephen@xemacs.org> | |
3222 | |
3223 * external-widget.texi (External Client Widget Internals): New node. | |
3224 | |
3225 2001-11-15 Darryl Okahata <darrylo@xemacs.org> | |
3226 | |
3227 * lispref/glyphs.texi: | |
3228 lispref/lispref.texi: Add examples of how to insert graphics into a | |
3229 buffer. | |
1137 | 3230 |
863 | 3231 2001-12-17 Stephen J. Turnbull <stephen@xemacs.org> |
3232 | |
3233 * xemacs/packages.texi (Packages): | |
3234 (Package Terminology): | |
3235 Carefully distinguish libraries and packages. | |
3236 (Package Terminology): | |
3237 More careful definitions of ``category'' and ``distribution.'' | |
3238 Use ``generic'' instead of ``normal'' (N.B. package tools use | |
3239 ``standard''.) | |
3240 (Installing Packages): | |
3241 Use @var to mark variable version strings, not @t or <>. | |
3242 (Sumo): | |
3243 Add disk space estimate when unpacked. | |
3244 | |
3245 2002-02-06 Stephen J. Turnbull <stephen@xemacs.org> | |
3246 | |
3247 * xemacs-faq.texi (Q1.3.8, Q1.3.9): Unicode support via Mule-UCS. | |
3248 | |
3249 2002-02-01 Steve Youngs <youngs@xemacs.org> | |
3250 | |
3251 * xemacs/packages.texi (Removing Packages): The interactive | |
3252 function is 'package-get-delete-package'. | |
3253 | |
3254 2001-11-27 Adrian Aichner <adrian@xemacs.org> | |
3255 | |
3256 * xemacs-faq.texi: Hyperlink fixes. | |
1137 | 3257 |
863 | 3258 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> |
3259 | |
3260 * xemacs-faq.texi (Q4.7.7): New FAQ on remote files. | |
3261 | |
3262 2002-01-24 Stephen J. Turnbull <stephen@xemacs.org> | |
3263 | |
3264 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
3265 | |
3266 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
3267 | |
3268 * xemacs/files.texi (Files): | |
3269 (File Names): | |
3270 Document remote file editing, refer to EFS and TRAMP. | |
3271 | |
861 | 3272 2002-05-23 Stephen J. Turnbull <stephen@xemacs.org> |
3273 | |
3274 * lispref/packaging.texi (package-info.in Fields): Typo fix. | |
3275 | |
836 | 3276 2002-05-11 Adrian Aichner <adrian@xemacs.org> |
3277 | |
3278 * xemacs-faq.texi (Top): Add Q2.0.15 under "Installation and | |
3279 Trouble Shooting". | |
3280 * xemacs-faq.texi (Installation): Add Q2.0.15 to Installation | |
3281 menu. | |
3282 * xemacs-faq.texi (Q2.0.14): Fix unnumberedsubsec argument. | |
3283 * xemacs-faq.texi (Q2.0.15): New. | |
3284 | |
824 | 3285 2002-05-01 Steve Youngs <youngs@xemacs.org> |
3286 | |
3287 * xemacs/packages.texi (Automatically): Don't mention "Options" | |
3288 menu. | |
3289 (Installing Packages): Don't mention getting list of packages via | |
1137 | 3290 customize. |
824 | 3291 |
804 | 3292 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
3293 | |
3294 * XEmacs 21.5.6 "bok choi" is released. | |
3295 | |
802 | 3296 2002-04-03 Ben Wing <ben@xemacs.org> |
3297 | |
3298 * internals/internals.texi (Top): | |
3299 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
3300 * internals/internals.texi (Techniques for XEmacs Developers): | |
3301 * internals/internals.texi (CVS Techniques): | |
3302 * internals/internals.texi (Merging a Branch into the Trunk): | |
3303 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
3304 Add section on correctly merging a branch back into the trunk. | |
3305 | |
785 | 3306 2002-03-19 Adrian Aichner <adrian@xemacs.org> |
3307 | |
3308 * widget.texi (constants): Typo fix. | |
3309 | |
778 | 3310 2002-03-14 Jonathan Harris <jhar@tardis.ed.ac.uk> |
3311 | |
3312 * cl.texi (Sequence Basics): Avoid splitting link over two lines, | |
3313 which makes cygwin texinfo 4.0 unhappy. | |
3314 | |
776 | 3315 2002-03-15 Ben Wing <ben@xemacs.org> |
3316 | |
3317 * Makefile (new-users-guide-srcs): | |
3318 * Makefile (extraclean): | |
3319 Use -no-packages to avoid problems with package files shadowing | |
3320 core files (e.g. unicode.el in mule-ucs). | |
3321 | |
775 | 3322 2002-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
3323 | |
3324 * emodules.texi (Using DEFUN): Add @ref{Lisp Primitives}. | |
3325 | |
1137 | 3326 * lispref/mule.texi (Unicode Support): |
775 | 3327 * xemacs/custom.texi (Behaviors): |
3328 * lispref/customize.texi (Enabling Behavior): | |
3329 New nodes. | |
3330 | |
774 | 3331 2002-03-12 Ben Wing <ben@xemacs.org> |
3332 | |
3322 | 3333 * The Great Mule Merge of March 2002: |
3334 see node by that name in the Internals Manual. | |
774 | 3335 |
768 | 3336 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
3337 | |
3338 * XEmacs 21.5.5 "beets" is released. | |
3339 | |
761 | 3340 2002-03-01 Jeff Miller <jmiller@cablespeed.com> |
3341 | |
3342 * lispref/packaging.texi (The User View, The Library Maintainer | |
3343 View, The Package Release Engineer View): Remove apostrophes. | |
3344 * lispref/lispref.texi (The User View, The Library Maintainer | |
3345 View, The Package Release Engineer View): Remove apostrophes. | |
3346 | |
759 | 3347 2002-02-28 Stephen J. Turnbull <stephen@xemacs.org> |
3348 | |
3349 * lispref/packaging.texi (The User View, The Library Maintainer | |
3350 View, The Package Release Engineer View): Remove apostrophes. | |
3351 | |
755 | 3352 2002-02-16 Stephen J. Turnbull <stephen@xemacs.org> |
3353 | |
3354 * external-widget.texi | |
3355 (Example Program Using the External Client Widget): Fix braces. | |
3356 From Mats Lidell <matsl@contactor.se>. | |
3357 | |
753 | 3358 2002-02-14 Stephen J. Turnbull <stephen@xemacs.org> |
3359 | |
3360 * external-widget.texi | |
3361 (Example Program Using the External Client Widget): Fix | |
3362 documentation to explain needed resource settings. | |
3363 | |
752 | 3364 2002-02-13 Stephen J. Turnbull <stephen@xemacs.org> |
3365 | |
3366 * lispref/packaging.texi (Documenting Packages): New node. | |
3367 (Makefile Variables): Fix typo per Steve Youngs. | |
3368 | |
750 | 3369 2002-02-09 Stephen J. Turnbull <stephen@xemacs.org> |
3370 | |
3371 * external-widget.texi | |
3372 (Example Program Using the External Client Widget): New node. | |
3373 | |
3374 * lispref/packaging.texi (Documenting Packages): New node. | |
3375 | |
749 | 3376 2002-01-27 Stephen J. Turnbull <stephen@xemacs.org> |
3377 | |
3378 * lispref/packaging.texi (Makefile Variables): Document GENERATED | |
3379 and PRELOADS. Document DATA_FILES_n and DATA_DEST_n forms. | |
3380 | |
745 | 3381 2002-02-06 Stephen J. Turnbull <stephen@xemacs.org> |
3382 | |
3383 * xemacs-faq.texi (Q1.3.8, Q1.3.9): Unicode support via Mule-UCS. | |
3384 | |
742 | 3385 2001-01-24 Adrian Aichner <adrian@xemacs.org> |
3386 | |
3387 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
3388 | |
741 | 3389 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> |
3390 | |
3391 * xemacs/files.texi (Files): | |
3392 (File Names): | |
3393 Document remote file editing, refer to EFS and TRAMP. | |
3394 | |
3395 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
3396 | |
3397 * xemacs-faq.texi (Q4.7.7): New FAQ on remote files. | |
3398 | |
3399 2002-01-24 Stephen J. Turnbull <stephen@xemacs.org> | |
3400 | |
3401 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
3402 | |
737 | 3403 2002-02-01 Steve Youngs <youngs@xemacs.org> |
3404 | |
3405 * xemacs/packages.texi (Removing Packages): The interactive | |
3406 function is 'package-get-delete-package'. | |
3407 | |
725 | 3408 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
3409 | |
3410 * XEmacs 21.5.4 "bamboo" is released. | |
3411 | |
724 | 3412 2001-11-15 Darryl Okahata <darrylo@xemacs.org> |
3413 | |
3414 * glyphs.texi: | |
3415 lispref.texi: Add examples of how to insert graphics into a | |
3416 buffer. | |
1137 | 3417 |
721 | 3418 2002-01-02 Adrian Aichner <adrian@xemacs.org> |
3419 | |
3420 * emodules.texi: Add missing direntry, reword "dynamic loadable" | |
3421 to "dynamically loadable". | |
3422 * external-widget.texi: Add missing direntry. | |
3423 | |
709 | 3424 2001-12-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
3425 | |
3426 * xemacs/programs.texi: Etags update from Francesco. | |
3427 | |
704 | 3428 2001-12-18 Valdis.Kletnieks <Valdis.Kletnieks@vt.edu> |
3429 | |
3430 * xemacs/programs.texi (Tags): Add node name to Ebrowse | |
3431 cross reference. | |
3432 | |
696 | 3433 2001-12-15 Adrian Aichner <adrian@xemacs.org> |
3434 | |
3435 * xemacs\xemacs.texi (Top): Change from @ifinfo to @ifnottex for | |
3436 the benefit of HTML online docs. | |
3437 | |
3438 2001-12-15 Adrian Aichner <adrian@xemacs.org> | |
3439 | |
3440 * term.texi: Fix broken settitle. Make @titlepage, @direntry, and | |
3441 @chapter agree with new title. | |
3442 | |
694 | 3443 2001-12-15 Stephen J. Turnbull <stephen@xemacs.org> |
3444 | |
3445 * lispref/packaging.texi (The User's View): | |
3446 Correct description of man subdirectory. | |
3447 | |
3448 (The Package Release Engineer's View): | |
3449 (package-compile.el): | |
3450 Change hazmat to useful documentation. | |
3451 | |
3452 (Issues): | |
3453 Hazmat removal. | |
3454 | |
693 | 3455 2001-11-27 Stephen J. Turnbull <stephen@xemacs.org> |
3456 | |
3457 * lispref/packaging.texi: New file. | |
3458 * lispref/lispref.texi (Top): Add Packaging & subnodes to menus. | |
3459 Include packaging.texi. | |
3460 * lispref/intro.texi (Introduction): Next -> Packaging. | |
3461 * lispref/objects.texi (Lisp Data Types): Previous -> Packaging. | |
3462 * Makefile (lispref-srcs): Depend on lispref/packaging.texi. | |
1137 | 3463 |
675 | 3464 2001-11-26 Adrian Aichner <adrian@xemacs.org> |
3465 | |
3466 * xemacs-faq.texi (Top): Remove duplicate node "Introduction". | |
3467 * xemacs-faq.texi (Q7.0.2): Rename changes sections uniquely. | |
3468 * xemacs-faq.texi (Q7.0.3): Ditto. | |
3469 | |
3470 2001-11-26 Adrian Aichner <adrian@xemacs.org> | |
3471 | |
3472 * external-widget.texi: Add @settitle to this stand-alone | |
3473 document. | |
3474 | |
3475 2001-11-25 Adrian Aichner <adrian@xemacs.org> | |
3476 | |
3477 * Makefile: Add rule to produce html from texi sources (currently | |
3478 using texi2html). | |
3479 * Makefile (HTMLDIR): New. | |
3480 * Makefile (html_files): New. | |
3481 * Makefile (html): New target. | |
3482 | |
662 | 3483 2001-09-16 Adrian Aichner <adrian@xemacs.org> |
3484 | |
3485 * xemacs-faq.texi (Q4.0.7): Fix link to VM FAQ thanks to word I | |
3486 got from Gregory Neil Shapiro. | |
3487 | |
661 | 3488 2001-09-16 Adrian Aichner <adrian@xemacs.org> |
3489 | |
3490 * xemacs-faq.texi (Q1.3.7): Update moved link. | |
3491 * xemacs-faq.texi (Q7.0.2): Comment out empty list of bullets to | |
3492 avoid HTML error in texi2html translation. | |
3493 | |
660 | 3494 2001-09-15 Adrian Aichner <adrian@xemacs.org> |
3495 | |
3496 * xemacs-faq.texi (Q4.6.1): Infodock is now hosted on SourceForge, | |
3497 infodock.com is no more. | |
3498 * xemacs-faq.texi (Q4.7.1): Take auc out of http://sunsite.auc.dk. | |
3499 | |
3500 2001-09-15 Adrian Aichner <adrian@xemacs.org> | |
3501 | |
3502 * xemacs-faq.texi (Q4.6.1): | |
3503 | |
658 | 3504 2001-09-09 Adrian Aichner <adrian@xemacs.org> |
3505 | |
3506 * xemacs-faq.texi (Q1.0.9): Correct link to snapshots as suggested | |
3507 by Robin S. Socha. | |
3508 | |
654 | 3509 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
3510 | |
3511 * XEmacs 21.5.3 "asparagus" is released. | |
3512 | |
652 | 3513 2001-08-26 Stephen J. Turnbull <stephen@xemacs.org> |
3514 | |
3515 * widget.texi (Basic Types, Defining New Widgets): | |
3516 Distinguish between :action and :notify. | |
3517 | |
641 | 3518 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
3519 | |
3520 * XEmacs 21.5.2 "artichoke" is released. | |
3521 | |
635 | 3522 2001-07-25 Jim Horning <jim.horning@lmco.com> |
3523 | |
3524 * xemacs/packages.texi (Package Terminology): | |
3525 * xemacs/packages.texi (Automatically): | |
3526 In itemize and enumerate lists @item should be on it's own line. | |
3527 | |
626 | 3528 2001-07-02 Adrian Aichner <adrian@xemacs.org> |
3529 | |
3530 * xemacs-faq.texi (Q1.0.14): Update information following a | |
3531 request by Tom Mostyn. | |
3532 | |
625 | 3533 2001-07-02 Adrian Aichner <adrian@xemacs.org> |
3534 | |
3535 * lispref\windows.texi (Window Configurations): Fix typos. | |
3536 * lispref\x-windows.texi (Resources): Ditto. | |
3537 | |
3538 2001-07-02 Adrian Aichner <adrian@xemacs.org> | |
3539 | |
3540 * internals\internals.texi (XEmacs From the Inside): Ditto. | |
3541 | |
3542 2001-07-02 Adrian Aichner <adrian@xemacs.org> | |
3543 | |
3544 * emodules.texi (Initialization Mode): Ditto. | |
3545 * xemacs-faq.texi (Q6.3.2): Ditto. | |
3546 | |
613 | 3547 2001-06-10 Ben Wing <ben@xemacs.org> |
3548 | |
3549 * xemacs-faq.texi (Q1.0.10): | |
3550 * xemacs-faq.texi (Q1.0.11): | |
3551 * xemacs-faq.texi (Q1.0.12): | |
3552 Update sections on Windows and MacOS availability. | |
3553 | |
611 | 3554 2001-06-08 Ben Wing <ben@xemacs.org> |
3555 | |
3556 * xemacs-faq.texi (Top): | |
3557 * xemacs-faq.texi (MS Windows): | |
3558 * xemacs-faq.texi (Q6.2.1): | |
3559 * xemacs-faq.texi (Q6.2.2): | |
3560 * xemacs-faq.texi (Q6.2.3): | |
3561 * xemacs-faq.texi (Q6.2.4): | |
3562 * xemacs-faq.texi (Q6.2.5): | |
3563 * xemacs-faq.texi (Q6.3.1): | |
3564 * xemacs-faq.texi (Q6.3.2): | |
3565 * xemacs-faq.texi (Q6.3.3): | |
3566 * xemacs-faq.texi (Q6.3.4): | |
3567 * xemacs-faq.texi (Q6.4.1): | |
3568 * xemacs-faq.texi (Q6.4.2): | |
3569 * xemacs-faq.texi (Current Events): | |
3570 * xemacs-faq.texi (Q7.0.1): | |
3571 * xemacs-faq.texi (Q7.0.2): | |
3572 * xemacs-faq.texi (Q7.0.3): | |
3573 * xemacs-faq.texi (Q7.0.4): | |
3574 * xemacs-faq.texi (Q7.0.5): | |
3575 * xemacs-faq.texi (Q7.0.6): | |
3576 Merge in the rest of Hrvoje's Windows FAQ. Redo section 7 | |
3577 to update current reality and add condensed versions of | |
3578 new changes for 21.1 and 21.4. (Not quite done for 21.4.) | |
3579 Lots more Windows updates. | |
3580 | |
600 | 3581 2001-05-29 Alexey Mahotkin <alexm@hsys.msk.ru> |
3582 | |
3583 * xemacs/custom.texi: Documented keyboard shortcut. | |
3584 | |
3585 * xemacs/mule.texi: Updated to match reality; tiny fixes. | |
3586 | |
593 | 3587 2001-05-30 Ben Wing <ben@xemacs.org> |
3588 | |
3589 * xemacs-faq.texi (Top): | |
3590 * xemacs-faq.texi (MS Windows): | |
3591 * xemacs-faq.texi (Q6.0.1): | |
3592 * xemacs-faq.texi (Q6.0.2): | |
3593 * xemacs-faq.texi (Q6.0.3): | |
3594 * xemacs-faq.texi (Q6.0.4): | |
3595 * xemacs-faq.texi (Q6.1.1): | |
3596 * xemacs-faq.texi (Q6.1.4): | |
3597 * xemacs-faq.texi (Q6.1.5): | |
3598 * xemacs-faq.texi (Q6.1.6): | |
3599 * xemacs-faq.texi (Q6.2.1): | |
3600 * xemacs-faq.texi (Q6.2.2): | |
3601 * xemacs-faq.texi (Q6.3.1): | |
3602 * xemacs-faq.texi (Q6.3.2): | |
3603 * xemacs-faq.texi (Q6.3.3): | |
3604 * xemacs-faq.texi (Q6.4.1): | |
3605 * xemacs-faq.texi (Current Events): | |
3606 Major rewrite. | |
3607 Update all MS Windows info to current. | |
3608 Redo section 6.1 almost completely. | |
3609 Incorporate sections 1 and 2 of Hrvoje's FAQ. | |
3610 | |
563 | 3611 2001-05-24 Ben Wing <ben@xemacs.org> |
3612 | |
3613 * xemacs-faq.texi (Top): | |
3614 * xemacs-faq.texi (Installation): | |
3615 * xemacs-faq.texi (Q2.1.15): | |
3616 * xemacs-faq.texi (Q2.1.18): | |
3617 * xemacs-faq.texi (Q2.1.19): | |
3618 document how to debug X errors | |
1137 | 3619 |
540 | 3620 2001-05-15 Steve Youngs <youngs@xemacs.org> |
3621 | |
3622 * xemacs/packages.texi (Local.rules): Update to reflect new dir tree. | |
3623 (Creating Packages): Ditto. | |
3624 (Available Packages): Ditto. | |
3625 | |
522 | 3626 2001-05-09 Martin Buchholz <martin@xemacs.org> |
3627 | |
3628 * XEmacs 21.5.1 "anise" is released. | |
3629 | |
511 | 3630 2001-05-07 Martin Buchholz <martin@xemacs.org> |
3631 | |
3632 * make-stds.texi: Support makeinfo 3.12 | |
3633 | |
485 | 3634 2001-04-26 John H. Palmieri <palmieri@math.washington.edu> |
3635 | |
3636 * xemacs/frame.texi (XEmacs under X): Document default-frame-plist | |
3637 rather than default-frame-alist. | |
3638 | |
479 | 3639 2001-04-15 Ben Wing <ben@xemacs.org> |
3640 | |
3641 * xemacs-faq.texi (Q1.0.1): | |
3642 * xemacs-faq.texi (Q1.0.2): | |
3643 Rewrite description of XEmacs to match what's on web page, | |
3644 in about.el. | |
3645 | |
472 | 3646 2001-04-18 Martin Buchholz <martin@xemacs.org> |
3647 | |
3648 * XEmacs 21.5.0 "alfalfa" is released. | |
3649 | |
464 | 3650 2001-03-30 Ben Wing <ben@xemacs.org> |
3651 | |
3652 * internals\internals.texi: | |
3653 * internals\internals.texi (Top): | |
3654 * internals\internals.texi (Lucid Emacs): | |
3655 * internals\internals.texi (XEmacs): | |
3656 * internals\internals.texi (XEmacs From the Outside): | |
3657 Bump version to 1.4 and fix this everywhere. Document all | |
3658 XEmacs releases up through 21.2.46. | |
3659 | |
3660 2001-03-16 Stephen J. Turnbull <stephen@xemacs.org> | |
3661 | |
3662 * lispref/postgresql.texi (libpq Lisp Symbols and DataTypes): Save | |
3663 result of INSERT in R in pq-cmd-status example. | |
3664 | |
462 | 3665 2001-03-21 Martin Buchholz <martin@xemacs.org> |
3666 | |
3667 * XEmacs 21.2.46 "Urania" is released. | |
3668 | |
3669 2001-03-08 Ben Wing <ben@xemacs.org> | |
3670 | |
3671 * internals\internals.texi (Top): | |
3672 * internals\internals.texi (A History of Emacs): | |
3673 * internals\internals.texi (Through Version 18): | |
3674 * internals\internals.texi (Lucid Emacs): | |
3675 * internals\internals.texi (GNU Emacs 19): | |
3676 * internals\internals.texi (GNU Emacs 20): | |
3677 * internals\internals.texi (XEmacs From the Outside): | |
3678 * internals\internals.texi (The Lisp Language): | |
3679 * internals\internals.texi (XEmacs From the Perspective of Building): | |
3680 * internals\internals.texi (XEmacs From the Inside): | |
3681 * internals\internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
3682 * internals\internals.texi (How Lisp Objects Are Represented in C): | |
3683 * internals\internals.texi (Rules When Writing New C Code): | |
3684 * internals\internals.texi (General Coding Rules): | |
3685 * internals\internals.texi (Writing Lisp Primitives): | |
3686 * internals\internals.texi (Writing Good Comments): | |
3687 * internals\internals.texi (Adding Global Lisp Variables): | |
3688 * internals\internals.texi (Proper Use of Unsigned Types): | |
3689 * internals\internals.texi (Coding for Mule): | |
3690 * internals\internals.texi (Character-Related Data Types): | |
3691 * internals\internals.texi (Working With Character and Byte Positions): | |
3692 * internals\internals.texi (Conversion to and from External Data): | |
3693 * internals\internals.texi (General Guidelines for Writing Mule-Aware Code): | |
3694 * internals\internals.texi (An Example of Mule-Aware Code): | |
3695 * internals\internals.texi (Techniques for XEmacs Developers): | |
3696 * internals\internals.texi (A Summary of the Various XEmacs Modules): | |
3697 * internals\internals.texi (Low-Level Modules): | |
3698 * internals\internals.texi (Basic Lisp Modules): | |
3699 * internals\internals.texi (Modules for Standard Editing Operations): | |
3700 * internals\internals.texi (Editor-Level Control Flow Modules): | |
3701 * internals\internals.texi (Modules for the Basic Displayable Lisp Objects): | |
3702 * internals\internals.texi (Modules for other Display-Related Lisp Objects): | |
3703 * internals\internals.texi (Modules for the Redisplay Mechanism): | |
3704 * internals\internals.texi (Modules for Interfacing with the File System): | |
3705 * internals\internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
3706 * internals\internals.texi (Modules for Interfacing with the Operating System): | |
3707 * internals\internals.texi (Modules for Interfacing with X Windows): | |
3708 * internals\internals.texi (Allocation of Objects in XEmacs Lisp): | |
3709 * internals\internals.texi (Introduction to Allocation): | |
3710 * internals\internals.texi (Garbage Collection): | |
3711 * internals\internals.texi (GCPROing): | |
3712 * internals\internals.texi (Garbage Collection - Step by Step): | |
3713 * internals\internals.texi (Invocation): | |
3714 * internals\internals.texi (garbage_collect_1): | |
3715 * internals\internals.texi (mark_object): | |
3716 * internals\internals.texi (gc_sweep): | |
3717 * internals\internals.texi (sweep_lcrecords_1): | |
3718 * internals\internals.texi (compact_string_chars): | |
3719 * internals\internals.texi (sweep_strings): | |
3720 * internals\internals.texi (sweep_bit_vectors_1): | |
3721 * internals\internals.texi (Integers and Characters): | |
3722 * internals\internals.texi (Allocation from Frob Blocks): | |
3723 * internals\internals.texi (lrecords): | |
3724 * internals\internals.texi (Low-level allocation): | |
3725 * internals\internals.texi (Cons): | |
3726 * internals\internals.texi (Vector): | |
3727 * internals\internals.texi (Bit Vector): | |
3728 * internals\internals.texi (Symbol): | |
3729 * internals\internals.texi (Marker): | |
3730 * internals\internals.texi (String): | |
3731 * internals\internals.texi (Dumping): | |
3732 * internals\internals.texi (Overview): | |
3733 * internals\internals.texi (Data descriptions): | |
3734 * internals\internals.texi (Dumping phase): | |
3735 * internals\internals.texi (Object inventory): | |
3736 * internals\internals.texi (Address allocation): | |
3737 * internals\internals.texi (The header): | |
3738 * internals\internals.texi (Data dumping): | |
3739 * internals\internals.texi (Pointers dumping): | |
3740 * internals\internals.texi (Reloading phase): | |
3741 * internals\internals.texi (Events and the Event Loop): | |
3742 * internals\internals.texi (Introduction to Events): | |
3743 * internals\internals.texi (Main Loop): | |
3744 * internals\internals.texi (Specifics of the Event Gathering Mechanism): | |
3745 * internals\internals.texi (Specifics About the Emacs Event): | |
3746 * internals\internals.texi (The Event Stream Callback Routines): | |
3747 * internals\internals.texi (Other Event Loop Functions): | |
3748 * internals\internals.texi (Converting Events): | |
3749 * internals\internals.texi (Evaluation; Stack Frames; Bindings): | |
3750 * internals\internals.texi (Evaluation): | |
3751 * internals\internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
3752 * internals\internals.texi (Simple Special Forms): | |
3753 * internals\internals.texi (Symbols and Variables): | |
3754 * internals\internals.texi (Introduction to Symbols): | |
3755 * internals\internals.texi (Obarrays): | |
3756 * internals\internals.texi (Buffers and Textual Representation): | |
3757 * internals\internals.texi (Introduction to Buffers): | |
3758 * internals\internals.texi (The Text in a Buffer): | |
3759 * internals\internals.texi (Buffer Lists): | |
3760 * internals\internals.texi (Markers and Extents): | |
3761 * internals\internals.texi (Bufbytes and Emchars): | |
3762 * internals\internals.texi (MULE Character Sets and Encodings): | |
3763 * internals\internals.texi (Character Sets): | |
3764 * internals\internals.texi (Encodings): | |
3765 * internals\internals.texi (Japanese EUC (Extended Unix Code)): | |
3766 * internals\internals.texi (JIS7): | |
3767 * internals\internals.texi (Internal Mule Encodings): | |
3768 * internals\internals.texi (Internal String Encoding): | |
3769 * internals\internals.texi (Internal Character Encoding): | |
3770 * internals\internals.texi (The Lisp Reader and Compiler): | |
3771 * internals\internals.texi (Lstreams): | |
3772 * internals\internals.texi (Creating an Lstream): | |
3773 * internals\internals.texi (Lstream Types): | |
3774 * internals\internals.texi (Lstream Functions): | |
3775 * internals\internals.texi (Consoles; Devices; Frames; Windows): | |
3776 * internals\internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
3777 * internals\internals.texi (Point): | |
3778 * internals\internals.texi (Window Hierarchy): | |
3779 * internals\internals.texi (The Redisplay Mechanism): | |
3780 * internals\internals.texi (Critical Redisplay Sections): | |
3781 * internals\internals.texi (Line Start Cache): | |
3782 * internals\internals.texi (Extents): | |
3783 * internals\internals.texi (Introduction to Extents): | |
3784 * internals\internals.texi (Extent Ordering): | |
3785 * internals\internals.texi (Format of the Extent Info): | |
3786 * internals\internals.texi (Zero-Length Extents): | |
3787 * internals\internals.texi (Mathematics of Extent Ordering): | |
3788 * internals\internals.texi (Faces): | |
3789 * internals\internals.texi (Glyphs): | |
3790 * internals\internals.texi (Specifiers): | |
3791 * internals\internals.texi (Menus): | |
3792 * internals\internals.texi (Subprocesses): | |
3793 * internals\internals.texi (Interface to the X Window System): | |
3794 * internals\internals.texi (Lucid Widget Library): | |
3795 * internals\internals.texi (Generic Widget Interface): | |
3796 * internals\internals.texi (Scrollbars): | |
3797 * internals\internals.texi (Menubars): | |
3798 * internals\internals.texi (Checkboxes and Radio Buttons): | |
3799 * internals\internals.texi (Progress Bars): | |
3800 * internals\internals.texi (Tab Controls): | |
3801 Add more index entries. Add sections on comments and unsigned types. | |
3802 | |
3803 2001-03-08 Ben Wing <ben@xemacs.org> | |
3804 | |
3805 * make-stds.texi (Makefile Basics): | |
3806 * make-stds.texi (Command Variables): | |
3807 * make-stds.texi (Directory Variables): | |
3808 * make-stds.texi (Standard Targets): | |
3809 * standards.texi: | |
3810 * standards.texi (Top): | |
3811 * standards.texi (Preface): | |
3812 * standards.texi (Legal Issues): | |
3813 * standards.texi (Reading Non-Free Code): | |
3814 * standards.texi (Contributions): | |
3815 * standards.texi (Trademarks): | |
3816 * standards.texi (Design Advice): | |
3817 * standards.texi (Source Language): | |
3818 * standards.texi (Compatibility): | |
3819 * standards.texi (Using Extensions): | |
3820 * standards.texi (Standard C): | |
3821 * standards.texi (Program Behavior): | |
3822 * standards.texi (Semantics): | |
3823 * standards.texi (Libraries): | |
3824 * standards.texi (Errors): | |
3825 * standards.texi (User Interfaces): | |
3826 * standards.texi (Graphical Interfaces): | |
3827 * standards.texi (Command-Line Interfaces): | |
3828 * standards.texi (Option Table): | |
3829 * standards.texi (Memory Usage): | |
3830 * standards.texi (File Usage): | |
3831 * standards.texi (Formatting): | |
3832 * standards.texi (Comments): | |
3833 * standards.texi (Syntactic Conventions): | |
3834 * standards.texi (Names): | |
3835 * standards.texi (System Portability): | |
3836 * standards.texi (CPU Portability): | |
3837 * standards.texi (System Functions): | |
3838 * standards.texi (Internationalization): | |
3839 * standards.texi (Mmap): | |
3840 * standards.texi (Documentation): | |
3841 * standards.texi (GNU Manuals): | |
3842 * standards.texi (Doc Strings and Manuals): | |
3843 * standards.texi (Manual Structure Details): | |
3844 * standards.texi (License for Manuals): | |
3845 * standards.texi (Manual Credits): | |
3846 * standards.texi (Printed Manuals): | |
3847 * standards.texi (NEWS File): | |
3848 * standards.texi (Change Logs): | |
3849 * standards.texi (Style of Change Logs): | |
3850 * standards.texi (Simple Changes): | |
3851 * standards.texi (Conditional Changes): | |
3852 * standards.texi (Indicating the Part Changed): | |
3853 * standards.texi (Managing Releases): | |
3854 * standards.texi (Configuration): | |
3855 * standards.texi (Releases): | |
3856 * standards.texi (References): | |
3857 * standards.texi (Index): | |
3858 Update to latest GNU version. | |
1137 | 3859 |
462 | 3860 * xemacs-faq.texi (Q6.3.3): |
3861 * xemacs-faq.texi (Q6.4.1): | |
3862 Improve questions on current Windows activity. | |
3863 | |
3864 2001-03-07 Sandra Wambold <wambold@xemacs.org> | |
3865 | |
3866 * xemacs-faq.texi: (Q.1.0.7): changed list archive address | |
3867 | |
3868 2001-02-25 Ben Wing <ben@xemacs.org> | |
3869 | |
3870 * xemacs-faq.texi (Top): | |
3871 * xemacs-faq.texi (Introduction): | |
3872 * xemacs-faq.texi (Q1.0.1): | |
3873 * xemacs-faq.texi (Q1.0.4): | |
3874 * xemacs-faq.texi (Q1.0.6): | |
3875 * xemacs-faq.texi (Q1.0.10): | |
3876 * xemacs-faq.texi (Q1.2.1): | |
3877 * xemacs-faq.texi (Q1.4.1): | |
3878 * xemacs-faq.texi (Q1.4.2): | |
3879 * xemacs-faq.texi (Q2.0.12): | |
3880 * xemacs-faq.texi (Q2.1.1): | |
3881 * xemacs-faq.texi (Q2.1.2): | |
3882 * xemacs-faq.texi (Q2.1.9): | |
3883 * xemacs-faq.texi (Q2.1.15): | |
3884 * xemacs-faq.texi (Q2.1.19): | |
3885 * xemacs-faq.texi (Customization): | |
3886 * xemacs-faq.texi (Q3.0.1): | |
3887 * xemacs-faq.texi (Q3.0.2): | |
3888 * xemacs-faq.texi (Q3.0.3): | |
3889 * xemacs-faq.texi (Q3.0.7): | |
3890 * xemacs-faq.texi (Q3.1.5): | |
3891 * xemacs-faq.texi (Q3.1.6): | |
3892 * xemacs-faq.texi (Q3.2.1): | |
3893 * xemacs-faq.texi (Q3.2.3): | |
3894 * xemacs-faq.texi (Q3.2.4): | |
3895 * xemacs-faq.texi (Q3.3.1): | |
3896 * xemacs-faq.texi (Q3.3.2): | |
3897 * xemacs-faq.texi (Q3.3.3): | |
3898 * xemacs-faq.texi (Q3.3.4): | |
3899 * xemacs-faq.texi (Q3.3.5): | |
3900 * xemacs-faq.texi (Q3.4.1): | |
3901 * xemacs-faq.texi (Q3.4.2): | |
3902 * xemacs-faq.texi (Q3.5.2): | |
3903 * xemacs-faq.texi (Q3.5.4): | |
3904 * xemacs-faq.texi (key-translation-map): New. | |
3905 * xemacs-faq.texi (Q3.5.5): | |
3906 * xemacs-faq.texi (Q3.5.6): | |
3907 * xemacs-faq.texi (Q3.5.7): | |
3908 * xemacs-faq.texi (Q3.5.8): | |
3909 * xemacs-faq.texi (global-map): Removed. | |
3910 * xemacs-faq.texi (Q3.5.9): | |
3911 * xemacs-faq.texi (Q3.6.1): | |
3912 * xemacs-faq.texi (Q3.6.2): | |
3913 * xemacs-faq.texi (Q3.6.3): | |
3914 * xemacs-faq.texi (Q3.7.6): | |
3915 * xemacs-faq.texi (Q3.7.7): | |
3916 * xemacs-faq.texi (Q3.8.1): | |
3917 * xemacs-faq.texi (Q3.8.2): | |
3918 * xemacs-faq.texi (Q3.8.3): | |
3919 * xemacs-faq.texi (Q3.9.1): | |
3920 * xemacs-faq.texi (Q3.9.4): | |
3921 * xemacs-faq.texi (Q3.10.1): | |
3922 * xemacs-faq.texi (Q3.10.2): | |
3923 * xemacs-faq.texi (Q3.10.3): | |
3924 * xemacs-faq.texi (Q4.0.12): | |
3925 * xemacs-faq.texi (Miscellaneous): | |
3926 * xemacs-faq.texi (Q5.0.1): | |
3927 * xemacs-faq.texi (Q5.0.2): | |
3928 * xemacs-faq.texi (Q5.0.3): | |
3929 * xemacs-faq.texi (Q5.0.4): | |
3930 * xemacs-faq.texi (Q5.0.5): | |
3931 * xemacs-faq.texi (Q5.0.8): | |
3932 * xemacs-faq.texi (Q5.0.9): | |
3933 * xemacs-faq.texi (Q5.0.11): | |
3934 * xemacs-faq.texi (Q5.0.12): | |
3935 * xemacs-faq.texi (Q5.0.13): | |
3936 * xemacs-faq.texi (Q5.0.16): | |
3937 * xemacs-faq.texi (Q5.0.17): | |
3938 * xemacs-faq.texi (Q5.1.9): | |
3939 * xemacs-faq.texi (Q5.1.11): | |
3940 * xemacs-faq.texi (Q5.2.1): | |
3941 * xemacs-faq.texi (Q5.2.2): | |
3942 * xemacs-faq.texi (Q5.3.1): | |
3943 * xemacs-faq.texi (Q5.3.2): | |
3944 * xemacs-faq.texi (Q5.3.4): | |
3945 * xemacs-faq.texi (MS Windows): | |
3946 * xemacs-faq.texi (Q6.0.1): | |
3947 * xemacs-faq.texi (Q6.0.2): | |
3948 * xemacs-faq.texi (Q6.0.3): | |
3949 * xemacs-faq.texi (Q6.0.4): | |
3950 * xemacs-faq.texi (Q6.1.5): | |
3951 * xemacs-faq.texi (Q6.2.3): | |
3952 * xemacs-faq.texi (Q6.3.1): | |
3953 | |
3954 Remove most references to XEmacs pre-19.15, since they are way out | |
3955 of date and are cluttering up and confusing many answers. Update | |
3956 references to .emacs to take into account the new init file | |
3957 location. Update information about the MS Windows port. Change | |
3958 description of XEmacs at beginning to match the web site. Update | |
3959 info about current developers. | |
1137 | 3960 |
462 | 3961 |
3962 2001-02-25 Ben Wing <ben@xemacs.org> | |
3963 | |
3964 * lispref\help.texi (Describing Characters): | |
3965 kp- not kp_. | |
1137 | 3966 |
462 | 3967 2001-02-25 Ben Wing <ben@xemacs.org> |
3968 | |
3969 * new-users-guide\custom1.texi (Customization Basics): | |
3970 * new-users-guide\custom1.texi (Customizing key Bindings): | |
3971 * new-users-guide\custom1.texi (Customizing Menus): | |
3972 * new-users-guide\custom2.texi (Other Customizations): | |
3973 * new-users-guide\custom2.texi (Setting Variables): | |
3974 * new-users-guide\custom2.texi (Init File): | |
3975 * new-users-guide\xmenu.texi (Options Menu): | |
3976 * new-users-guide\modes.texi (Major Modes): | |
3977 * new-users-guide\modes.texi (Minor Modes): | |
3978 * new-users-guide\new-users-guide.texi (Top): | |
3979 Fix up references to .emacs to take into account init.el. | |
1137 | 3980 |
460 | 3981 2001-02-23 Martin Buchholz <martin@xemacs.org> |
3982 | |
3983 * XEmacs 21.2.45 "Thelxepeia" is released. | |
3984 | |
3985 2001-02-10 Martin Buchholz <martin@xemacs.org> | |
3986 | |
3987 * xemacs/programs.texi (Tag Syntax): Port to makeinfo 3. | |
3988 | |
458 | 3989 2001-02-08 Martin Buchholz <martin@xemacs.org> |
3990 | |
3991 * XEmacs 21.2.44 "Thalia" is released. | |
3992 | |
3993 2001-02-04 Steve Youngs <youngs@xemacs.org> | |
3994 | |
3995 * xemacs/xemacs.texi: Update to accomodate new and improved | |
3996 packages.texi. | |
3997 | |
3998 * xemacs/packages.texi: Basically, apart from a few things, | |
3999 rewritten from scratch. | |
4000 | |
456 | 4001 2001-01-27 Martin Buchholz <martin@xemacs.org> |
4002 | |
4003 * lispref/variables.texi (max-specpdl-size): Correct default value. | |
4004 * lispref/eval.texi (max-lisp-eval-depth): Correct default value. | |
4005 | |
4006 2001-01-26 Martin Buchholz <martin@xemacs.org> | |
4007 | |
4008 * XEmacs 21.2.43 "Terspichore" is released. | |
4009 | |
454 | 4010 2001-01-20 Martin Buchholz <martin@xemacs.org> |
4011 | |
4012 * XEmacs 21.2.42 "Poseidon" is released. | |
4013 | |
4014 2001-01-18 Martin Buchholz <martin@xemacs.org> | |
4015 | |
4016 * xemacs-faq.texi (Q1.0.11): Change XEmacs for MacOS URL. | |
4017 | |
4018 2001-01-17 Andy Piper <andy@xemacs.org> | |
4019 | |
4020 * internals.texi: some glyph documentation. | |
4021 | |
4022 2001-01-16 Didier Verna <didier@xemacs.org> | |
4023 | |
4024 * frame.texi (Mode Line Basics): new node ... | |
4025 * frame.texi (GUI Components): ... under this one ... | |
4026 * frame.texi (Scrollbar Basics): ... after this one ... | |
4027 * frame.texi (Toolbar Basics): ... before this one. | |
4028 | |
452 | 4029 2001-01-17 Martin Buchholz <martin@xemacs.org> |
4030 | |
4031 * XEmacs 21.2.41 "Polyhymnia" is released. | |
4032 | |
4033 2001-01-12 Martin Buchholz <martin@xemacs.org> | |
4034 | |
4035 * internals/internals.texi: A little post-pdump-rename fixup. | |
4036 | |
4037 2001-01-13 Martin Buchholz <martin@xemacs.org> | |
4038 | |
4039 * internals/internals.texi: See `pdump-rename' in src/ChangeLog. | |
4040 | |
4041 2001-01-10 Martin Buchholz <martin@xemacs.org> | |
4042 | |
4043 * internals/internals.texi: Update for pdump changes. | |
4044 | |
4045 2001-01-04 Adrian Aichner <adrian@xemacs.org> | |
4046 | |
4047 * texinfo.texi (Using Texinfo): Change reference from GNU Emacs to | |
4048 XEmacs. | |
4049 * texinfo.texi (First Node): Fixing grammar. | |
4050 * texinfo.texi (Multitable Rows): Change reference from GNU Emacs | |
4051 to XEmacs. | |
4052 | |
450 | 4053 2001-01-08 Martin Buchholz <martin@xemacs.org> |
4054 | |
4055 * XEmacs 21.2.40 is released. | |
4056 | |
4057 2001-01-06 Stephen J. Turnbull <stephen@xemacs.org> | |
4058 | |
4059 * emodules.texi (Required Functions): Xref coding rules for dual-use | |
4060 modules (module and statically linked). Typo fix. | |
4061 | |
4062 * texinfo.texi (ref): Typo fix. | |
4063 | |
448 | 4064 2000-12-31 Martin Buchholz <martin@xemacs.org> |
4065 | |
4066 * XEmacs 21.2.39 is released. | |
4067 | |
4068 2000-12-05 Stephen J. Turnbull <stephen@xemacs.org> | |
4069 | |
4070 * internals/internals.texi (General Coding Rules): further document | |
4071 usage of symsinit.h. Reorder slightly. | |
4072 | |
446 | 4073 2000-11-29 Stephen J. Turnbull <stephen@xemacs.org> |
4074 | |
4075 * xemacs/packages.texi (Creating Packages): new node. | |
4076 | |
4077 2000-12-05 Martin Buchholz <martin@xemacs.org> | |
4078 | |
4079 * XEmacs 21.2.38 is released. | |
4080 | |
4081 2000-12-01 Martin Buchholz <martin@xemacs.org> | |
4082 | |
4083 * lispref/compile.texi: | |
4084 Document differences between compiler and interpreter. | |
4085 | |
4086 2000-11-29 Stephen J. Turnbull <stephen@xemacs.org> | |
4087 | |
4088 * internals/index.texi: | |
4089 internals/internals.texi: | |
4090 Change "X Windows" to "the X Window System" randomly. | |
4091 * internals/internals.texi (Glyphs): fiddling, move lwlib to new node. | |
4092 (Lucid Widget Library): new node, added new text, ASCII art, subnode | |
4093 structure. | |
4094 * xemacs/frame.texi (GUI Components): new node. | |
4095 * xemacs/packages.texi: minor updates. | |
4096 | |
4097 2000-11-10 Stephen J. Turnbull <stephen@xemacs.org> | |
4098 | |
4099 * info.texi (Creating an Info File): Fix typos in xrefs. | |
4100 | |
4101 2000-11-08 Stephen J. Turnbull <stephen@xemacs.org> | |
4102 | |
4103 * xemacs/cmdargs.texi (Command Switches): Add documentation of | |
4104 portable dumper switches. Other minor edits. | |
4105 | |
4106 2000-11-21 Martin Buchholz <martin@xemacs.org> | |
4107 | |
4108 * lispref/positions.texi (Word Motion): | |
4109 forward-word arg is now optional. | |
4110 backward-word arg is now optional. | |
4111 Remove vile comment advising lisp programmer to use (forward-word -1) | |
4112 instead of (backward-word 1). | |
4113 * lispref/syntax.texi (Parsing Expressions): | |
4114 Similarly for forward-comment. | |
4115 * lispref/text.texi (Deletion): | |
4116 Similarly for delete-char. | |
4117 Similarly for delete-backward-char. | |
4118 | |
4119 2000-11-09 Martin Buchholz <martin@xemacs.org> | |
4120 | |
4121 * cl.texi (Assertions): | |
4122 Remove claim that elisp doesn't have continuable errors. | |
4123 Document check-type as being continuable. | |
4124 | |
4125 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
4126 | |
4127 * xemacs/calendar.texi (Calendar/Diary): Correct INFO-FILE-NAME | |
4128 from elisp to lispref and from emacs to xemacs in relevant ?xefs. | |
4129 This should also serve as a reminder for future merges with GNU | |
4130 Emacs. | |
4131 Unify PRINTED-MANUAL-TITLE to "XEmacs Lisp Reference Manual" and | |
4132 "XEmacs User's Manual" for lispref and xemacs respectively. | |
4133 | |
4134 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
4135 | |
4136 * lispref/abbrevs.texi (Abbrevs): Ditto. | |
4137 * lispref/backups.texi (Auto-Saving): Ditto. | |
4138 * lispref/backups.texi (Reverting): Ditto. | |
4139 * lispref/display.texi (The Echo Area): Ditto. | |
4140 * lispref/help.texi (Documentation Basics): Ditto. | |
4141 * lispref/help.texi (Help Functions): Ditto. | |
4142 * lispref/keymaps.texi (Scanning Keymaps): Ditto. | |
4143 * lispref/locals.texi (Standard Buffer-Local Variables): Ditto. | |
4144 * lispref/modes.texi (Auto Major Mode): Ditto. | |
4145 * lispref/positions.texi (List Motion): Ditto. | |
4146 * lispref/searching.texi (Regexp Search): Ditto. | |
4147 * lispref/symbols.texi (Symbol Components): Ditto. | |
4148 * lispref/tips.texi (Comment Tips): Ditto. | |
4149 * lispref/tips.texi (Library Headers): Ditto. | |
4150 | |
4151 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
4152 | |
4153 * internals/internals.texi (The Buffer Object): Ditto. | |
4154 | |
4155 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
4156 | |
4157 * cl.texi (Hash Tables): Ditto. | |
4158 * texinfo.texi (Other Info Files): Ditto. | |
4159 * xemacs-faq.texi (Q1.0.14): Ditto. | |
4160 | |
444 | 4161 2000-11-14 Martin Buchholz <martin@xemacs.org> |
4162 | |
4163 * XEmacs 21.2.37 is released. | |
4164 | |
4165 2000-10-27 Martin Buchholz <martin@xemacs.org> | |
4166 | |
4167 * xemacs/windows.texi (Other Window): | |
4168 | |
4169 * new-users-guide/files.texi (Saving Files): | |
4170 * new-users-guide/search.texi (Search and Replace): | |
4171 | |
4172 * lispref/abbrevs.texi (Abbrev Tables): | |
4173 * lispref/abbrevs.texi (Defining Abbrevs): | |
4174 * lispref/abbrevs.texi (Abbrev Files): | |
4175 * lispref/annotations.texi (Annotation Primitives): | |
4176 * lispref/backups.texi (Auto-Saving): | |
4177 * lispref/backups.texi (Reverting): | |
4178 * lispref/buffers.texi (Current Buffer): | |
4179 * lispref/buffers.texi (Buffer Names): | |
4180 * lispref/buffers.texi (Buffer Modification): | |
4181 * lispref/buffers.texi (Read Only Buffers): | |
4182 * lispref/buffers.texi (The Buffer List): | |
4183 * lispref/buffers.texi (Killing Buffers): | |
4184 * lispref/buffers.texi (Indirect Buffers): | |
4185 * lispref/building.texi (Building XEmacs): | |
4186 * lispref/building.texi (Garbage Collection): | |
4187 * lispref/commands.texi (Interactive Call): | |
4188 * lispref/commands.texi (Events): | |
4189 * lispref/commands.texi (Event Predicates): | |
4190 * lispref/commands.texi (Working With Events): | |
4191 * lispref/commands.texi (Converting Events): | |
4192 * lispref/commands.texi (Key Sequence Input): | |
4193 * lispref/commands.texi (Reading One Event): | |
4194 * lispref/commands.texi (Waiting): | |
4195 * lispref/commands.texi (Prefix Command Arguments): | |
4196 * lispref/commands.texi (Recursive Editing): | |
4197 * lispref/compile.texi (Compilation Functions): | |
4198 * lispref/compile.texi (Compiled-Function Objects): | |
4199 * lispref/consoles-devices.texi (Basic Device Functions): | |
4200 * lispref/consoles-devices.texi (Console Types and Device Classes): | |
4201 * lispref/consoles-devices.texi (Connecting to a Console or Device): | |
4202 * lispref/control.texi (Signaling Errors): | |
4203 * lispref/customize.texi (Type Keywords): | |
4204 * lispref/databases.texi (Connecting to a Database): | |
4205 * lispref/databases.texi (Working With a Database): | |
4206 * lispref/databases.texi (Other Database Functions): | |
4207 * lispref/debugging.texi (Function Debugging): | |
4208 * lispref/display.texi (Refresh Screen): | |
4209 * lispref/display.texi (The Echo Area): | |
4210 * lispref/display.texi (Blinking): | |
4211 * lispref/edebug-inc.texi (Tracing): | |
4212 * lispref/edebug-inc.texi (Instrumenting Macro Calls): | |
4213 * lispref/edebug-inc.texi (Edebug Options): | |
4214 * lispref/eval.texi (Function Indirection): | |
4215 * lispref/extents.texi (Creating and Modifying Extents): | |
4216 * lispref/extents.texi (Finding Extents): | |
4217 * lispref/extents.texi (Mapping Over Extents): | |
4218 * lispref/extents.texi (Extent Properties): | |
4219 * lispref/faces.texi (Basic Face Functions): | |
4220 * lispref/faces.texi (Face Properties): | |
4221 * lispref/faces.texi (Face Convenience Functions): | |
4222 * lispref/faces.texi (Other Face Display Functions): | |
4223 * lispref/faces.texi (Font Instance Characteristics): | |
4224 * lispref/faces.texi (Color Specifiers): | |
4225 * lispref/files.texi (Visiting Functions): | |
4226 * lispref/files.texi (Reading from Files): | |
4227 * lispref/files.texi (Changing File Attributes): | |
4228 * lispref/files.texi (File Names): | |
4229 * lispref/files.texi (File Name Components): | |
4230 * lispref/files.texi (Directory Names): | |
4231 * lispref/files.texi (Relative File Names): | |
4232 * lispref/files.texi (File Name Expansion): | |
4233 * lispref/files.texi (File Name Completion): | |
4234 * lispref/files.texi (User Name Completion): | |
4235 * lispref/files.texi (Magic File Names): | |
4236 * lispref/files.texi (Creating a Partial File): | |
4237 * lispref/files.texi (Format Conversion): | |
4238 * lispref/frames.texi (Creating Frames): | |
4239 * lispref/frames.texi (Property Access): | |
4240 * lispref/frames.texi (Size and Position): | |
4241 * lispref/frames.texi (Deleting Frames): | |
4242 * lispref/frames.texi (Finding All Frames): | |
4243 * lispref/frames.texi (Frames and Windows): | |
4244 * lispref/frames.texi (Visibility of Frames): | |
4245 * lispref/frames.texi (Frame Configurations): | |
4246 * lispref/functions.texi (Calling Functions): | |
4247 * lispref/functions.texi (Function Cells): | |
4248 * lispref/glyphs.texi (Creating Glyphs): | |
4249 * lispref/glyphs.texi (Image Specifiers): | |
4250 * lispref/glyphs.texi (Image Instance Types): | |
4251 * lispref/glyphs.texi (Image Instance Functions): | |
4252 * lispref/gutter.texi (Creating Gutter): | |
4253 * lispref/gutter.texi (Specifying a Gutter): | |
4254 * lispref/gutter.texi (Other Gutter Variables): | |
4255 * lispref/help.texi (Accessing Documentation): | |
4256 * lispref/help.texi (Help Functions): | |
4257 * lispref/help.texi (Obsoleteness): | |
4258 * lispref/internationalization.texi (Domain Specification): | |
4259 * lispref/intro.texi (Caveats): | |
4260 * lispref/keymaps.texi (Active Keymaps): | |
4261 * lispref/keymaps.texi (Functions for Key Lookup): | |
4262 * lispref/keymaps.texi (Changing Key Bindings): | |
4263 * lispref/keymaps.texi (Scanning Keymaps): | |
4264 * lispref/ldap.texi (The High-Level LDAP API): | |
4265 * lispref/ldap.texi (Low-level Operations on a LDAP Server): | |
4266 * lispref/ldap.texi (Encoder/Decoder Functions): | |
4267 * lispref/lists.texi (Setcar): | |
4268 * lispref/lists.texi (Setcdr): | |
4269 * lispref/lists.texi (Working With Normal Plists): | |
4270 * lispref/lists.texi (Working With Lax Plists): | |
4271 * lispref/loading.texi (Autoload): | |
4272 * lispref/loading.texi (Named Features): | |
4273 * lispref/markers.texi (Creating Markers): | |
4274 * lispref/markers.texi (Changing Markers): | |
4275 * lispref/markers.texi (The Mark): | |
4276 * lispref/menus.texi (Modifying Menus): | |
4277 * lispref/menus.texi (Pop-Up Menus): | |
4278 * lispref/menus.texi (Menu Accelerator Functions): | |
4279 * lispref/minibuf.texi (Text from Minibuffer): | |
4280 * lispref/minibuf.texi (Object from Minibuffer): | |
4281 * lispref/minibuf.texi (Basic Completion): | |
4282 * lispref/minibuf.texi (High-Level Completion): | |
4283 * lispref/minibuf.texi (Reading a Password): | |
4284 * lispref/minibuf.texi (Minibuffer Misc): | |
4285 * lispref/mouse.texi (Mouse Tracking): | |
4286 * lispref/syntax.texi (Syntax Table Functions): | |
4287 * lispref/numbers.texi (Arithmetic Operations): | |
4288 * lispref/numbers.texi (Rounding Operations): | |
4289 * lispref/numbers.texi (Math Functions): | |
4290 * lispref/objects.texi (String Type): | |
4291 * lispref/objects.texi (Equality Predicates): | |
4292 * lispref/os.texi (Killing XEmacs): | |
4293 * lispref/os.texi (Suspending XEmacs): | |
4294 * lispref/os.texi (System Environment): | |
4295 * lispref/os.texi (Time Conversion): | |
4296 * lispref/os.texi (Timers): | |
4297 * lispref/os.texi (Input Modes): | |
4298 * lispref/os.texi (Translating Input): | |
4299 * lispref/os.texi (Terminal Output): | |
4300 * lispref/os.texi (Flow Control): | |
4301 * lispref/positions.texi (Character Motion): | |
4302 * lispref/positions.texi (Word Motion): | |
4303 * lispref/positions.texi (Text Lines): | |
4304 * lispref/positions.texi (Screen Lines): | |
4305 * lispref/positions.texi (List Motion): | |
4306 * lispref/positions.texi (Narrowing): | |
4307 * lispref/postgresql.texi (Asynchronous Interface Functions): | |
4308 * lispref/processes.texi (Subprocess Creation): | |
4309 * lispref/processes.texi (Synchronous Processes): | |
4310 * lispref/processes.texi (Asynchronous Processes): | |
4311 * lispref/processes.texi (Process Information): | |
4312 * lispref/processes.texi (Input to Processes): | |
4313 * lispref/processes.texi (Signals to Processes): | |
4314 * lispref/processes.texi (Process Buffers): | |
4315 * lispref/processes.texi (Filter Functions): | |
4316 * lispref/processes.texi (Network): | |
4317 * lispref/range-tables.texi (Working With Range Tables): | |
4318 * lispref/searching.texi (String Search): | |
4319 * lispref/searching.texi (Regexp Search): | |
4320 * lispref/searching.texi (POSIX Regexps): | |
4321 * lispref/searching.texi (Replacing Match): | |
4322 * lispref/searching.texi (Entire Match Data): | |
4323 * lispref/sequences.texi (Bit Vector Functions): | |
4324 * lispref/specifiers.texi (Adding Specifications): | |
4325 * lispref/specifiers.texi (Creating Specifiers): | |
4326 * lispref/specifiers.texi (Specifier Validation Functions): | |
4327 * lispref/specifiers.texi (Other Specification Functions): | |
4328 * lispref/streams.texi (Output Variables): | |
4329 * lispref/symbols.texi (Other Plists): | |
4330 * lispref/text.texi (Insertion): | |
4331 * lispref/text.texi (Commands for Insertion): | |
4332 * lispref/text.texi (Deletion): | |
4333 * lispref/text.texi (User-Level Deletion): | |
4334 * lispref/text.texi (Kill Functions): | |
4335 * lispref/text.texi (Low-Level Kill Ring): | |
4336 * lispref/text.texi (Undo): | |
4337 * lispref/text.texi (Maintaining Undo): | |
4338 * lispref/text.texi (Margins): | |
4339 * lispref/text.texi (Sorting): | |
4340 * lispref/text.texi (Columns): | |
4341 * lispref/text.texi (Primitive Indent): | |
4342 * lispref/text.texi (Mode-Specific Indent): | |
4343 * lispref/text.texi (Region Indent): | |
4344 * lispref/text.texi (Case Changes): | |
4345 * lispref/text.texi (Examining Properties): | |
4346 * lispref/text.texi (Property Search): | |
4347 * lispref/text.texi (Registers): | |
4348 * lispref/text.texi (Transformations): | |
4349 * lispref/mule.texi (Charset Property Functions): | |
4350 * lispref/mule.texi (MULE Characters): | |
4351 * lispref/mule.texi (Composite Characters): | |
4352 * lispref/mule.texi (Coding System Properties): | |
4353 * lispref/mule.texi (Big5 and Shift-JIS Functions): | |
4354 * lispref/mule.texi (CCL Statements): | |
4355 * lispref/mule.texi (Calling CCL): | |
4356 * lispref/mule.texi (Category Tables): | |
4357 * lispref/toolbar.texi (Specifying the Toolbar): | |
4358 * lispref/toolbar.texi (Other Toolbar Variables): | |
4359 * lispref/tooltalk.texi (Elisp Interface for Sending Messages): | |
4360 * lispref/tooltalk.texi (Elisp Interface for Receiving Messages): | |
4361 * lispref/variables.texi (Creating Buffer-Local): | |
4362 * lispref/variables.texi (Variable Aliases): | |
4363 * lispref/windows.texi (Splitting Windows): | |
4364 * lispref/windows.texi (Deleting Windows): | |
4365 * lispref/windows.texi (Selecting Windows): | |
4366 * lispref/windows.texi (Cyclic Window Ordering): | |
4367 * lispref/windows.texi (Buffers and Windows): | |
4368 * lispref/windows.texi (Displaying Buffers): | |
4369 * lispref/windows.texi (Choosing Window): | |
4370 * lispref/windows.texi (Window Point): | |
4371 * lispref/windows.texi (Window Start): | |
4372 * lispref/windows.texi (Vertical Scrolling): | |
4373 * lispref/windows.texi (Horizontal Scrolling): | |
4374 * lispref/windows.texi (Resizing Windows): | |
4375 * lispref/windows.texi (Window Configurations): | |
4376 * lispref/x-windows.texi (X Selections): | |
4377 * lispref/x-windows.texi (Resources): | |
4378 * lispref/strings.texi (Creating Strings): | |
4379 * lispref/strings.texi (Character Codes): | |
4380 * lispref/strings.texi (Text Comparison): | |
4381 * lispref/strings.texi (String Conversion): | |
4382 * lispref/strings.texi (Formatting Strings): | |
4383 * lispref/strings.texi (Character Case): | |
4384 * lispref/strings.texi (Case Tables): | |
4385 * lispref/strings.texi (Char Table Types): | |
4386 * lispref/strings.texi (Working With Char Tables): | |
4387 Giant docstring parameter/Texinfo fixes. | |
4388 | |
4389 Don't use abbreviations for English words, especially when those | |
4390 words have other meanings. For example, use START, not BEG. | |
4391 Use OBJECT, not OBJ. | |
4392 Use VALUE, not VAL. | |
4393 Use BUFFER, not BUF. | |
4394 Use PROCESS, not PROC. (Sometimes PROC was used to mean FUNCTION!) | |
4395 Use CHARACTER, not CH or CHR. | |
4396 Use NUMBER, not NUM. | |
4397 Use COLUMN, not COL. | |
4398 Use POSITION, not POS. | |
4399 Use SYMBOL, not SYM. | |
4400 Use STRING, not STR. | |
4401 Use LIMIT, not LIM. | |
4402 Use OTHER-WINDOW-P, not OTHER-P. | |
4403 Use PRIORITY, not PRI. | |
4404 | |
4405 Use `non-nil', not `true'. | |
4406 | |
4407 Don't call a parameter an ALIST if it can also be a FUNCTION or OBARRAY. | |
4408 | |
4409 Use CASE-TABLE, CATEGORY-TABLE, CHAR-TABLE, etc. instead of TABLE. | |
4410 | |
4411 Try to find better parameter names than ARG. | |
4412 | |
4413 Use consistent parameter names. For example, s/NO-ERROR/NOERROR/g; | |
4414 | |
4415 Use type information in parameter names. For example, use | |
4416 (make-bit-vector length bit), not (make-bit-vector length init). | |
4417 | |
4418 Completion functions should have parameters with names like | |
4419 PARTIAL-FILENAME instead of the misleading FILENAME. | |
4420 | |
4421 Type predicates should consistently take an OBJECT parameter, | |
4422 since any object is valid as input. | |
4423 | |
4424 Use WHICH-FRAMES and WHICH-DEVICES parameters consistently for | |
4425 functions like next-window and next-frame that walk over window or | |
4426 frame lists. | |
4427 | |
4428 Deleted duplicated documentation for: | |
4429 one-window-p, format-insert-file | |
4430 | |
4431 Deleted 21 lines of VMS-specific texinfo documentation. | |
4432 | |
4433 Fixed up a few places where `_' was used in docstring parameter | |
4434 names instead of `-'. | |
4435 | |
4436 Fixed up places that used nil or t without @code. | |
4437 | |
4438 Fixed up places that erroneously used @code instead of @var. | |
4439 | |
4440 Fixed many typos. | |
4441 | |
4442 Fixed many places where the parameters mentioned in the docstring | |
4443 didn't match the actual parameters. | |
4444 | |
4445 Fixed 7 places that used `@var{nil}' instead of `@code{nil}'. | |
4446 | |
4447 Fixed 40 places where docstrings were missing trailing `.' | |
4448 | |
4449 Fixed the texi documentation of 41 functions where the | |
4450 interactiveness of the function in the documentation did not match | |
4451 the implementation. | |
4452 | |
4453 Fixed 117 functions where the names of parameters in the texi was | |
4454 different from the names in the implementation. | |
4455 | |
4456 Fixed the texi documentation of 137 functions where the parameter | |
4457 list of the function in the texi was semantically different from | |
4458 the implementation. | |
4459 | |
4460 2000-10-28 Adrian Aichner <adrian@xemacs.org> | |
4461 | |
4462 * xemacs-faq.texi (Q1.2.1): Use @html instead of @ifhtml to | |
4463 incorporate raw HTML output in the HTML version. | |
4464 | |
4465 2000-11-02 Stephen J. Turnbull <stephen@xemacs.org> | |
4466 | |
4467 * xemacs/menus.texi: | |
4468 * widget.texi: | |
4469 Typo fixes and tiny clarifications. | |
4470 | |
4471 2000-10-19 Stephen J. Turnbull <stephen@xemacs.org> | |
4472 | |
4473 * xemacs-faq.texi: Added Q2.0.13, Q2.0.14 - packages why and how. | |
4474 Added Q2.1.25 - function not found due to package not installed. | |
4475 | |
4476 * xemacs/xemacs.texi: | |
4477 * xemacs/abbrevs.texi: | |
4478 * xemacs/basic.texi: | |
4479 * xemacs/building.texi: | |
4480 * xemacs/packages.texi: | |
4481 * xemacs/startup.texi: | |
4482 Moved "Packages" node to "Important General Concepts" section. | |
4483 | |
4484 * xemacs/packages.texi: Added package list from etc/PACKAGES. | |
4485 | |
442 | 4486 2000-10-04 Martin Buchholz <martin@xemacs.org> |
4487 | |
4488 * XEmacs 21.2.36 is released. | |
4489 | |
4490 2000-09-27 Martin Buchholz <martin@xemacs.org> | |
4491 | |
4492 * lispref/processes.texi (Signals to Processes): Many corrections. | |
4493 | |
4494 2000-09-20 Martin Buchholz <martin@xemacs.org> | |
4495 | |
4496 * xemacs/startup.texi (Startup Paths): Minor fixes. | |
4497 | |
4498 2000-09-19 Martin Buchholz <martin@xemacs.org> | |
4499 | |
4500 * *: Spelling mega-patch | |
4501 | |
4502 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
4503 | |
4504 * internals/internals.texi (Low-Level Modules): | |
4505 Correct the list of source files. | |
4506 | |
4507 2000-08-24 Adrian Aichner <aichner@ecf.teradyne.com> | |
4508 | |
4509 * emodules.texi (Introduction): Trivial typo fix. | |
4510 | |
4511 2000-08-24 Martin Buchholz <martin@xemacs.org> | |
4512 | |
4513 * emodules.texi (Initialization Mode): Spell-Check. | |
4514 | |
4515 2000-08-24 Martin Buchholz <martin@xemacs.org> | |
4516 | |
4517 * lispref/databases.texi (Connecting to a Database): | |
4518 s/berkeley_db/berkeley-db/. Too much C programming. | |
4519 | |
4520 2000-08-02 Stephen J. Turnbull <stephen@xemacs.org> | |
4521 | |
4522 * xemacs/custom.texi (Menubar Resources): Document FontSet resource. | |
4523 | |
4524 2000-07-30 Ben Wing <ben@xemacs.org> | |
4525 | |
4526 * xemacs\search.texi (Regexp Search): | |
4527 * xemacs\search.texi (Regexps): | |
4528 Synch up with updated docs below (describing non-greedy | |
4529 operators and such). | |
4530 | |
4531 2000-07-30 Ben Wing <ben@xemacs.org> | |
4532 | |
4533 * lispref\searching.texi (Syntax of Regexps): | |
4534 Document ??, which we've supported since 20.4. | |
4535 | |
4536 2000-07-31 Sandra Wambold <wambold@cygnus.com> | |
4537 | |
4538 * xemacs-faq.texi: Minor updates in first two sections | |
4539 | |
4540 2000-07-27 Andy Piper <andy@xemacs.org> | |
4541 | |
4542 * lispref/hash-tables.texi: add new hash table type. | |
4543 | |
4544 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
4545 | |
4546 * XEmacs 21.2.35 is released. | |
4547 | |
4548 2000-07-10 Martin Buchholz <martin@xemacs.org> | |
4549 | |
4550 * Makefile: rm -f ==> $(RM) | |
4551 | |
4552 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
4553 | |
454 | 4554 * lispref/postgresql.texi: |
442 | 4555 - Don't mention ".so" extension. |
4556 - Make installation instructions more generic. | |
4557 - Mention M-x describe-installation. | |
4558 | |
4559 2000-07-08 Ben Wing <ben@xemacs.org> | |
4560 | |
4561 * xemacs-faq.texi (Q6.4.1): Update the perennial nonstart under | |
4562 Windows problem with binary locs and latest info. | |
4563 | |
4564 2000-06-17 Adrian Aichner <aichner@ecf.teradyne.com> | |
4565 | |
4566 * lispref/glyphs.texi: Fix trivial typos. | |
4567 * lispref/gutter.texi: Ditto. | |
4568 * lispref/loading.texi: Ditto. | |
4569 * lispref/postgresql.texi: Ditto. | |
4570 | |
4571 2000-06-14 Adrian Aichner <aichner@ecf.teradyne.com> | |
4572 | |
4573 * internals/internals.texi (Markers and Extents): Fix trivial typo. | |
4574 | |
4575 2000-06-11 Adrian Aichner <aichner@ecf.teradyne.com> | |
4576 | |
4577 * make-stds.texi: Fix trivial typos. | |
4578 * xemacs-faq.texi: Ditto. | |
4579 * internals/internals.texi: Ditto. | |
4580 * new-users-guide/edit.texi: Ditto. | |
4581 * new-users-guide/modes.texi: Ditto. | |
4582 * new-users-guide/region.texi: Ditto. | |
4583 | |
4584 2000-06-10 Ben Wing <ben@xemacs.org> | |
4585 | |
4586 * xemacs-faq.texi (Q6.1.2): | |
4587 * xemacs-faq.texi (Q6.1.5): | |
4588 * xemacs-faq.texi (Q6.1.6): | |
4589 Corrections for Cygwin, MinGW. | |
4590 | |
4591 2000-06-07 Adrian Aichner <aichner@ecf.teradyne.com> | |
4592 | |
4593 * xemacs/basic.texi: Fix trivial typos. | |
4594 * xemacs/buffers.texi: Fix trivial typos. | |
4595 * xemacs/building.texi: Ditto. | |
4596 * xemacs/glossary.texi: Ditto. | |
4597 * xemacs/gnu.texi: Ditto. | |
4598 * xemacs/help.texi: Ditto. | |
4599 * xemacs/keystrokes.texi: Ditto. | |
4600 * xemacs/programs.texi: Ditto. | |
4601 * xemacs/search.texi: Ditto. | |
4602 * xemacs/sending.texi: Ditto. | |
4603 | |
4604 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
4605 | |
4606 * XEmacs 21.2.34 is released. | |
4607 | |
4608 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4609 | |
4610 * xemacs/basic.texi: Document translation of tutorial. | |
4611 * xemacs/startup.texi: Remove lock-directory. | |
4612 * xemacs/enterings.texi: Update. | |
4613 | |
4614 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4615 | |
4616 * lispref/display.texi: | |
4617 * lispref/faces.texi: | |
4618 * lispref/glyphs.texi: | |
4619 * lispref/gutter.texi: | |
4620 * lispref/modes.texi: | |
4621 * lispref/specifiers.texi: | |
4622 * lispref/toolbar.texi: | |
4623 Update. Merge Ben's doc-string update. | |
4624 | |
4625 2000-05-08 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4626 | |
4627 * xemacs/basic.texi: | |
4628 * xemacs/enterings.texi: | |
4629 * xemacs/mini.texi: | |
4630 Partial sync with FSF Emacs 20.6 and some update. | |
4631 | |
4632 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
4633 | |
4634 * XEmacs 21.2.33 is released. | |
4635 | |
4636 2000-04-11 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4637 | |
4638 * xemacs-faq.texi (Q2.1.24): Removed wrong header. | |
4639 | |
4640 2000-04-01 Oscar Figueiredo <oscar@xemacs.org> | |
4641 | |
4642 * lispref/ldap.texi: Documentation of the add/modify/delete and | |
4643 internationalization APIs | |
4644 | |
4645 * lispref/lispref.texi: Updated LDAP-related menus | |
4646 | |
4647 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
4648 | |
4649 * XEmacs 21.2.32 is released. | |
4650 | |
4651 2000-03-15 SL Baur <steve@musashimaru.m17n.org> | |
4652 | |
4653 * lispref/postgresql.texi (Unimplemented libpq Functions): Update | |
4654 documentation to reflect the latest code. | |
4655 | |
4656 2000-03-07 SL Baur <steve@musashimaru.m17n.org> | |
4657 | |
4658 * lispref/postgresql.texi (PostgreSQL Support): New File. | |
4659 | |
4660 * lispref/ldap.texi: Insert PostgreSQL/libpq chapter. | |
4661 * lispref/lispref.texi (Top): Ditto. | |
4662 * lispref/internationalization.texi: Ditto. | |
4663 | |
4664 2000-03-07 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4665 | |
4666 * lispref/glyphs.texi (Image Specifiers): Remove parenthesis. | |
4667 | |
4668 2000-03-06 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4669 | |
4670 * xemacs-faq.texi: Put node before section. | |
4671 | |
4672 2000-03-05 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
4673 | |
4674 * xemacs-faq.texi (Macintosh port): Made texinfmt-friendly. | |
4675 | |
4676 2000-03-01 Sandra Wambold <wambold@xemacs.org> | |
4677 | |
4678 * xemacs-faq.texi: Added 6.4.1. XEmacs won't start on Windows | |
4679 | |
4680 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4681 | |
4682 * xemacs/xemacs.texi: Detailed menu update. | |
4683 | |
4684 2000-01-28 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4685 | |
4686 * xemacs/help.texi: Synch with FSF 20.5. Update. | |
4687 | |
4688 2000-02-21 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4689 | |
4690 * lispref/minibuf.texi: Add default argument documentation. | |
4691 | |
4692 2000-02-27 Martin Buchholz <martin@xemacs.org> | |
4693 | |
4694 * internals/internals.texi (lrecords): Update docs for new lisp | |
4695 object representation. | |
4696 | |
4697 2000-02-25 Martin Buchholz <martin@xemacs.org> | |
4698 | |
4699 * internals/internals.texi (Techniques for XEmacs Developers): | |
4700 Document INLINE_HEADER and how to create macros and inline functions. | |
4701 Cleanup entire section. | |
4702 | |
2069 | 4703 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 4704 |
4705 * man/lispref/gutter.texi: New file describing gutter API. | |
4706 | |
4707 * man/lispref/lispref.texi, man/lispref/scrollbars.texi, | |
4708 | |
4709 * man/lispref/toolbar.texi: Fixup links to new node Gutter. | |
4710 | |
2069 | 4711 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 4712 |
4713 * man/lispref/frames.texi, man/xemacs/custom.texi, | |
4714 man/xemacs/frame.texi, man/xemacs/glossary.texi: Mention menubars, | |
4715 toolbars, and gutters as optional components of frames, with | |
4716 pointers to descriptions. | |
4717 | |
2069 | 4718 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 4719 |
4720 * man/lispref/mule.texi: Substantial reorganization and | |
4721 revision for style of descriptions of character sets, | |
4722 encodings, and coding systems. Addition of a complete table | |
4723 of coding systems as of XEmacs 21.2.19. | |
4724 | |
4725 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
4726 | |
4727 * XEmacs 21.2.31 is released. | |
4728 | |
4729 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
4730 | |
4731 * XEmacs 21.2.30 is released. | |
4732 | |
4733 2000-02-21 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
4734 | |
4735 * internals/internals.texi: Made texinfmt-friendly. | |
4736 | |
4737 2000-01-20 Mark Thomas <mthomas@jprc.com> | |
4738 | |
4739 * lispref/backups.texi (Numbered Backups): | |
4740 * xemacs/files.texi (Backup Deletion): | |
4741 Change trim-versions-without-asking to delete-old-versions. | |
4742 | |
4743 2000-02-19 Martin Buchholz <martin@xemacs.org> | |
4744 | |
4745 * internals/internals.texi (Conversion to and from External Data): | |
4746 Document TO_EXTERNAL_FORMAT and friends. | |
4747 Doc bug fixes. | |
4748 | |
4749 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
4750 | |
4751 * XEmacs 21.2.29 is released. | |
4752 | |
4753 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
4754 | |
4755 * internals/internals.texi: Integrate Olivier's portable dumping docs. | |
4756 | |
4757 2000-02-09 Martin Buchholz <martin@xemacs.org> | |
4758 | |
4759 * lispref/symbols.texi (Object Plists): | |
4760 Document `object-plist'. | |
4761 Document `remprop'. | |
4762 Rework all plist frobbing docs for accuracy. | |
4763 | |
440 | 4764 2000-02-07 Martin Buchholz <martin@xemacs.org> |
4765 | |
4766 * XEmacs 21.2.28 is released. | |
4767 | |
4768 2000-02-07 Martin Buchholz <martin@xemacs.org> | |
4769 | |
4770 * cl.texi: Remove (or replace by `get') references to `get*'. | |
4771 | |
4772 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4773 | |
4774 * widget.texi: | |
4775 * internals/internals.texi: | |
4776 * lispref/commands.texi: | |
4777 * lispref/consoles-devices.texi: | |
4778 * lispref/customize.texi: | |
4779 * lispref/dialog.texi: | |
4780 * lispref/extents.texi: | |
4781 * lispref/faces.texi: | |
4782 * lispref/glyphs.texi: | |
4783 * lispref/keymaps.texi: | |
4784 * lispref/lists.texi: | |
4785 * lispref/markers.texi: | |
4786 * lispref/menus.texi: | |
4787 * lispref/mule.texi: | |
4788 * lispref/objects.texi: | |
4789 * lispref/specifiers.texi: | |
4790 * lispref/toolbar.texi: | |
4791 * lispref/tooltalk.texi: | |
4792 * lispref/x-windows.texi: | |
4793 * new-users-guide/custom2.texi: | |
4794 * new-users-guide/help.texi: | |
4795 * new-users-guide/modes.texi: | |
4796 * xemacs/abbrevs.texi: | |
4797 * xemacs/buffers.texi: | |
4798 * xemacs/custom.texi: | |
4799 * xemacs/help.texi: | |
4800 * xemacs/keystrokes.texi: | |
4801 * xemacs/mini.texi: | |
4802 * xemacs/new.texi: | |
4803 * xemacs/packages.texi: | |
4804 * xemacs/programs.texi: | |
4805 * xemacs/sending.texi: | |
4806 Change ' -- ' to '---' since Texinfo formats --- to --. | |
4807 Untabify. TeX doesn't like TAB. | |
4808 | |
4809 2000-01-27 Sandra Wambold <wambold@xemacs.org> | |
4810 | |
4811 * xemacs-faq.texi (Q6.2.2): updated font instructions to include | |
4812 21.2.* | |
4813 | |
4814 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4815 | |
4816 * xemacs-faq.texi: Untabify. | |
442 | 4817 |
440 | 4818 2000-01-22 Martin Buchholz <martin@xemacs.org> |
4819 | |
4820 * internals/internals.texi (General Coding Rules): Document why we | |
4821 #include <config.h> | |
4822 | |
4823 2000-01-21 Yoshiki Hayashi <yoshiki@xemacs.org> | |
4824 | |
4825 * xemacs-faq.texi: Change ' -- ' to '---'. | |
442 | 4826 |
440 | 4827 2000-01-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
4828 | |
4829 * lispref/faces.texi (Face Properties): Document | |
4830 remove-face-property. | |
4831 | |
438 | 4832 2000-01-18 Martin Buchholz <martin@xemacs.org> |
4833 | |
4834 * XEmacs 21.2.27 is released. | |
4835 | |
4836 2000-01-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4837 | |
4838 * xemacs/regs.texi: Synch with FSF 20.5. | |
4839 | |
4840 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4841 | |
4842 * info.texi: Change cross reference from emacs to xemacs. | |
4843 | |
4844 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4845 | |
4846 * xemacs/mini.texi: Synch with FSF 20.5. Update. | |
4847 | |
4848 2000-01-16 Martin Buchholz <martin@xemacs.org> | |
4849 | |
4850 * xemacs-faq.texi (Q2.1.15): Fix up @table formatting. | |
4851 | |
4852 2000-01-14 Martin Buchholz <martin@xemacs.org> | |
4853 | |
4854 * xemacs-faq.texi (Q2.1.15): Update dbx/gdb debugging info. | |
4855 | |
4856 2000-01-14 Sandra Wambold <wambold@xemacs.org> | |
4857 | |
4858 * xemacs-faq.texi: removed out-of-date XEmacs 19 questions. | |
4859 | |
4860 2000-01-14 Sandra Wambold <wambold@xemacs.org> | |
4861 | |
4862 * xemacs-faq.texi: Updated Macintosh information, | |
4863 updated OS/2 info, changed turn-on-pending-delete answer. | |
4864 | |
4865 2000-01-08 Martin Buchholz <martin@xemacs.org> | |
4866 | |
4867 * xemacs-faq.texi (Q2.1.15): Make debugging info current. | |
4868 | |
4869 2000-01-08 Hrvoje Niksic <hniksic@iskon.hr> | |
4870 | |
4871 * lispref/control.texi (Signaling Errors): Document that `signal' | |
4872 is continuable. | |
4873 (Signaling Errors): Document `cerror', `signal-error', and | |
4874 `check-argument-type'. | |
4875 (Handling Errors): Mention `debug-on-signal'. | |
4876 (Error Symbols): Document `define-error'. | |
4877 (Processing of Errors): Document `display-error' and | |
4878 `error-message-string'. | |
4879 | |
4880 2000-01-05 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4881 | |
4882 * internals/internals.texi: Remove latin-1 char. | |
4883 | |
4884 2000-01-05 Didier Verna <didier@xemacs.org> | |
4885 | |
4886 * xemacs/custom.texi (Key bindings using strings): add missing | |
4887 whitespace. | |
4888 | |
4889 * xemacs/xemacs.texi (Top): | |
4890 * new-users-guide/new-users-guide.texi (Top): add missing `@top' | |
4891 node. | |
4892 | |
4893 1999-12-24 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4894 | |
4895 * lispref/minibuf.texi (Reading a Password): New section. | |
4896 | |
4897 1999-12-21 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4898 | |
4899 * lispref/minibuf.texi: Remove documentation about | |
4900 minibuffer-local-ns-map, read-no-blanks-input. | |
4901 | |
4902 1999-12-21 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4903 | |
4904 * lispref/minibuf.texi: Partial Synch with FSF manual. | |
4905 Add description about DEFAULT argument of reading functions. | |
4906 | |
436 | 4907 1999-12-31 Martin Buchholz <martin@xemacs.org> |
4908 | |
4909 * XEmacs 21.2.26 is released. | |
4910 | |
4911 1999-12-26 Karl M. Hegbloom <karlheg@inetarena.com> | |
4912 | |
4913 * internals/internals.texi (garbage_collect_1): Xemacs -> XEmacs | |
4914 | |
434 | 4915 1999-12-24 Martin Buchholz <martin@xemacs.org> |
4916 | |
4917 * XEmacs 21.2.25 is released. | |
4918 | |
4919 1999-12-21 Martin Buchholz <martin@xemacs.org> | |
4920 | |
4921 * lispref/text.texi (Near Point): Document `char-before'. | |
4922 | |
4923 1999-12-20 Adrian Aichner <adrian@xemacs.org> | |
4924 | |
4925 * widget.texi: Fix typos and possessive singular errors. Break | |
4926 long sentences for readability. Remove some redundant commas. | |
4927 | |
4928 1999-12-18 Martin Buchholz <martin@xemacs.org> | |
4929 | |
442 | 4930 * lispref/functions.texi (Mapping Functions): |
434 | 4931 Warn about mapping functions modifying their sequences. |
4932 | |
4933 1999-12-15 Sandra Wambold <wambold@xemacs.org> | |
4934 | |
4935 * xemacs-faq.texi: link to matlab.el added; misc. address changes | |
4936 | |
432 | 4937 1999-12-14 Martin Buchholz <martin@xemacs.org> |
4938 | |
4939 * XEmacs 21.2.24 is released. | |
4940 | |
4941 1999-12-07 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
4942 | |
4943 * xemacs/startup.texi (Startup Paths): fix typo: EMACSPACKAGEPATH | |
442 | 4944 instead of PACKAGEPATH |
432 | 4945 From Marcus Harnisch <harnisch@mikrom.de> |
4946 | |
430 | 4947 1999-12-07 Martin Buchholz <martin@xemacs.org> |
4948 | |
4949 * XEmacs 21.2.23 is released. | |
4950 | |
4951 1999-12-06 Sandra Wambold <wambold@pobox.com> | |
4952 | |
4953 * xemacs-faq.texi: Added MS-Windows questions; some other changes | |
4954 | |
4955 1999-11-29 Martin Buchholz <martin@xemacs.org> | |
4956 | |
442 | 4957 * info.texi (Top): |
430 | 4958 Remove @ifnottex, which gives old makeinfos indigestion. |
442 | 4959 * texinfo.texi (Top): |
430 | 4960 Revert to pre-texinfo-4.0 version, plus small changes to make |
4961 texinfo-3.12, texinfo-3.12f, texinfo-4.0, and TeX happy. | |
4962 | |
4963 1999-11-30 Sandra Wambold <wambold@cygnus.com> | |
4964 | |
4965 * xemacs-faq.texi: fixed and commented out bad URL links | |
4966 | |
428 | 4967 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
4968 | |
4969 * XEmacs 21.2.22 is released | |
4970 | |
4971 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
4972 | |
4973 * XEmacs 21.2.21 is released. | |
4974 | |
4975 1999-11-26 Martin Buchholz <martin@xemacs.org> | |
4976 | |
4977 * internals.texi (Lstream Functions): | |
4978 * internals.texi (Lstream Methods): | |
4979 Types have changed to size_t and ssize_t. Document them. | |
4980 | |
4981 1999-08-12 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
4982 | |
4983 * xemacs-faq.texi (Q4.4.2): added FAQ about Sun Workshop on | |
4984 XEmacs 21 | |
4985 | |
4986 1999-11-15 Martin Buchholz <martin@xemacs.org> | |
4987 | |
4988 * xemacs/programs.texi: Upgrade to etags Version 13.32 | |
442 | 4989 |
428 | 4990 * Makefile: |
4991 - Make sure the default target is `info' instead of cl.info. | |
4992 - Use $(INFODIR) consistently where appropriate. | |
4993 - Remove makeinfo-1.68 warning. (Usually only maintainer rebuilds info). | |
4994 - Comment out unused macros: EMACS EMACSFLAGS | |
4995 - Replace `-rm -f' with `rm -f', XPG4 guarantees exit code == 0. | |
4996 - Get dependencies up to date. | |
4997 | |
4998 * internals/Makefile: | |
4999 * xemacs/Makefile: | |
5000 * lispref/Makefile: | |
5001 * new-users-guide/Makefile: | |
5002 * lispref/index.perm: | |
5003 * lispref/index.unperm: | |
5004 * lispref/permute-index: | |
5005 * internals/index.perm: | |
5006 * internals/index.unperm: | |
5007 Remove these Makefiles. | |
5008 Include all functionality in man/Makefile. | |
5009 Support only non-permuted indexes for simplicity. | |
5010 | |
5011 * emodules.texi: | |
5012 - TeX doesn't tolerate `_' in variable names; use `-' instead. | |
5013 | |
5014 * lispref/commands.texi: | |
5015 * lispref/display.texi: | |
5016 * lispref/faces.texi: | |
5017 * lispref/functions.texi: | |
5018 * lispref/keymaps.texi: | |
5019 * lispref/lists.texi: | |
5020 * lispref/modes.texi: | |
5021 * lispref/objects.texi: | |
5022 * lispref/os.texi: | |
5023 * lispref/sequences.texi: | |
5024 * lispref/strings.texi: | |
5025 * lispref/text.texi: | |
5026 * new-users-guide/custom1.texi: | |
5027 * xemacs/custom.texi: | |
5028 * xemacs/menus.texi: | |
5029 - Make sources compatible with makeinfo 4.0 *and* 3.12. | |
5030 - Replace @sc{ASCII} with @sc{ascii}, etc... | |
5031 - Replace @var{(foo)} with (@var{foo}), etc... | |
5032 | |
5033 * info-stnd.texi: Remove. Who cares about the standalone info reader? | |
5034 | |
5035 * texinfo.tex: | |
5036 * texinfo.texi: | |
5037 * info.texi: | |
5038 * standards.texi: | |
5039 * make-stds.texi: | |
5040 Import FSF-maintained files from texinfo-4.0. | |
5041 | |
5042 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5043 | |
5044 * XEmacs 21.2.20 is released | |
5045 | |
5046 1999-08-30 Robert Pluim <rpluim@bigfoot.com> | |
5047 | |
5048 * xemacs/packages.texi (Using Packages): Added description of | |
5049 package-get-package-provider. | |
5050 | |
5051 1999-07-27 Charles G Waldman <cgw@fnal.gov> | |
5052 | |
5053 * xemacs-faq.texi (Q5.0.6): Describe `shell-multiple-shells' | |
5054 | |
434 | 5055 1999-08-01 Adrian Aichner <adrian@xemacs.org> |
428 | 5056 |
5057 * xemacs/programs.texi (Balanced Editing): Remove broken | |
5058 line-break. | |
5059 | |
5060 * xemacs-faq.texi (Q1.0.6): Provide correct location in XEmacs | |
5061 menus. | |
5062 (Q1.4.1): ditto. | |
5063 (Q1.4.3): ditto. | |
5064 (Q2.0.5): Hyphenate words. | |
5065 | |
5066 * info.texi (Add): Fix one typo. | |
5067 | |
5068 1999-08-23 Stephane Epardaud <stephane@lunatech.com> | |
5069 | |
5070 * internals/internals.texi (Garbage Collection - Step by Step): | |
5071 just added some dots to shut up compile warnings. | |
5072 | |
5073 1999-08-19 Matthias Neubauer <neubauer@informatik.uni-tuebingen.de> | |
5074 | |
5075 * internals/internals.texi (Garbage Collection - Step by Step): | |
5076 new section in chapter Allocation of Objects in XEmacs Lisp. | |
5077 | |
5078 1999-07-28 Andy Piper <andy@xemacs.org> | |
5079 | |
5080 * internals.texi (Glyphs): add some glyph documentation. | |
5081 | |
5082 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5083 | |
5084 * XEmacs 21.2.19 is released | |
5085 | |
434 | 5086 1999-07-10 Adrian Aichner <adrian@xemacs.org> |
428 | 5087 |
5088 * emodules.texi: Use @set emacs and @value{emacs} instead of | |
5089 @macro (unsupported by texinfo package). Remove stray @code. | |
5090 * custom.texi: Add info extension to @setfilename. | |
5091 * texinfo.texi: Ditto. | |
5092 * widget.texi: Ditto. | |
5093 * packages.texi: Reword a sentence, fixing @item Decide where to | |
5094 install ... | |
5095 | |
442 | 5096 1999-07-19 Didier Verna <didier@xemacs.org> |
428 | 5097 |
5098 * custom.texi (Wishlist): removed the Custom Comments wishlist | |
5099 entry. They are implemented. | |
5100 | |
5101 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5102 | |
5103 * XEmacs 21.2.18 is released | |
5104 | |
5105 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5106 | |
5107 * XEmacs 21.2.17 is released | |
5108 | |
5109 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5110 | |
5111 * XEmacs 21.2.16 is released | |
5112 | |
5113 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5114 | |
5115 * XEmacs 21.2.15 is released | |
5116 | |
5117 1999-05-30 Albert Chin-A-Young <china@thewrittenword.com> | |
5118 | |
5119 * custom.texi, external-widget.texi: Minor | |
5120 fix to get info DIR entry correct. | |
5121 | |
5122 1999-05-22 Vin Shelton <acs@xemacs.org> | |
5123 | |
5124 * xemacs/cmdargs.texi: | |
5125 Document -private. | |
5126 | |
5127 1999-05-16 Mike McEwan <mike@lotusland.demon.co.uk> | |
5128 | |
5129 * Makefile: Added `emodules.info' to info targets. | |
5130 | |
5131 1999-05-20 Karl M. Hegbloom <karlheg@debian.org> | |
5132 | |
5133 * internals/internals.texi (The XEmacs Object System | |
5134 (Abstractly Speaking)): typo. | |
5135 | |
5136 1999-05-16 Hrvoje Niksic <hniksic@srce.hr> | |
5137 | |
5138 * lispref/text.texi (Substitution): Document improvements in | |
5139 `translate-region'. | |
5140 | |
5141 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5142 | |
5143 * XEmacs 21.2.14 is released | |
5144 | |
5145 1999-05-11 Albert Chin-A-Young <china@thewrittenword.com> | |
5146 | |
5147 * man/internals/internals.texi: | |
5148 * man/lispref/lispref.texi: | |
5149 * man/new-users-guide/new-users-guide.texi: | |
5150 * man/xemacs/xemacs.texi: | |
5151 * man/cl.texi: | |
5152 * man/custom.texi: | |
5153 * man/term.texi: | |
5154 * man/termcap.texi: | |
5155 * man/widget.texi: | |
5156 * man/xemacs-faq.texi: | |
5157 * man/external-widget.texi: | |
5158 Added info dir entries so install-info will add them to | |
5159 the common `dir' file. | |
5160 | |
2069 | 5161 1999-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
428 | 5162 |
5163 * man/lispref/mule.texi: Document CCL | |
5164 - add sections: syntax, statements, expressions, and examples. | |
5165 - fix naming and description errors. | |
5166 - update links in neighboring nodes. | |
5167 | |
5168 1999-04-24 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
5169 | |
5170 * lispref/eval.texi (Eval): default for max-lisp-eval-depth is 500. | |
5171 | |
5172 1999-04-23 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
5173 | |
5174 * xemacs-faq.texi (Q3.0.7): refer to correct menu (Option->Frame | |
5175 Appearance) | |
5176 | |
5177 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5178 | |
5179 * XEmacs 21.2.13 is released | |
5180 | |
5181 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5182 | |
5183 * XEmacs 21.2.12 is released | |
5184 | |
5185 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5186 | |
5187 * XEmacs 21.2.11 is released | |
5188 | |
5189 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5190 | |
5191 * XEmacs 21.2.10 is released | |
5192 | |
5193 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5194 | |
5195 * XEmacs 21.2.9 is released | |
5196 | |
434 | 5197 1999-01-14 Adrian Aichner <adrian@xemacs.org> |
428 | 5198 |
5199 * internals\internals.texi (Techniques for XEmacs Developers): | |
5200 Fixing documentation. | |
5201 (Basic Lisp Modules): ditto. | |
5202 | |
5203 1999-01-10 J. Kean Johnston <jkj@sco.com> | |
5204 | |
5205 * emodules.texi: New file to describe XEmacs modules. | |
5206 | |
5207 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
5208 | |
5209 * XEmacs 21.2.8 is released. | |
5210 | |
5211 1998-12-24 Martin Buchholz <martin@xemacs.org> | |
5212 | |
5213 * XEmacs 21.2.7 is released. | |
5214 | |
5215 1998-12-16 Andy Piper <andy@xemacs.org> | |
5216 | |
5217 * XEmacs 21.2.6 is released | |
5218 | |
5219 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
5220 | |
5221 * XEmacs 21.2.5 is released | |
5222 | |
5223 1998-11-30 Martin Buchholz <martin@xemacs.org> | |
5224 | |
5225 * xemacs/startup.texi (Startup Paths): | |
5226 * xemacs/custom.texi (Widgets): | |
5227 * xemacs-faq.texi (Q3.0.5): | |
5228 * xemacs-faq.texi (Top): | |
5229 | |
5230 * widget.texi (info-link): | |
5231 | |
5232 * lispref/objects.texi (Type Predicates): | |
5233 * lispref/objects.texi (Hash Table Type): | |
5234 * lispref/objects.texi (Primitive Types): | |
5235 * lispref/objects.texi (Lisp Data Types): | |
5236 * lispref/macros.texi (Backquote): | |
5237 * lispref/hash-tables.texi (Weak Hash Tables): | |
5238 * lispref/hash-tables.texi: | |
5239 * lispref/errors.texi (Standard Errors): | |
5240 * lispref/compile.texi (Disassembly): | |
5241 * lispref/compile.texi (Compiled-Function Objects): | |
5242 * lispref/compile.texi (Eval During Compile): | |
5243 * lispref/compile.texi (Docs and Compilation): | |
5244 * lispref/compile.texi (Compilation Functions): | |
5245 * lispref/compile.texi (Speed of Byte-Code): | |
5246 * lispref/compile.texi (Byte Compilation): | |
5247 * lispref/building.texi (Garbage Collection): | |
5248 | |
5249 * internals/internals.texi (Simple Special Forms): | |
5250 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
5251 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
5252 * internals/internals.texi (String): | |
5253 * internals/internals.texi (Introduction to Allocation): | |
5254 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
5255 * internals/internals.texi (Modules for Internationalization): | |
5256 * internals/internals.texi (Modules for Interfacing with X Windows): | |
5257 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
5258 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
5259 * internals/internals.texi (Modules for Interfacing with the File System): | |
5260 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
5261 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
5262 * internals/internals.texi (Editor-Level Control Flow Modules): | |
5263 * internals/internals.texi (Modules for Standard Editing Operations): | |
5264 * internals/internals.texi (Basic Lisp Modules): | |
5265 * internals/internals.texi (Low-Level Modules): | |
5266 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
5267 * internals/internals.texi (An Example of Mule-Aware Code): | |
5268 * internals/internals.texi (Working With Character and Byte Positions): | |
5269 * internals/internals.texi (Writing Lisp Primitives): | |
5270 * internals/internals.texi (General Coding Rules): | |
5271 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
5272 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
5273 * internals/internals.texi (XEmacs From the Perspective of Building): | |
5274 * internals/internals.texi (The Lisp Language): | |
5275 * internals/internals.texi (Top): | |
5276 * internals/internals.texi: | |
5277 - rewrite Internals manual | |
5278 | |
5279 * cl.texi (Porting Common Lisp): | |
5280 * cl.texi (Hash Tables): | |
5281 * cl.texi (Association Lists): | |
5282 * cl.texi (Declarations): | |
5283 * cl.texi (For Clauses): | |
5284 * cl.texi (Basic Setf): | |
5285 * cl.texi (Equality Predicates): | |
5286 - mega patch | |
5287 | |
5288 1998-11-28 SL Baur <steve@altair.xemacs.org> | |
5289 | |
5290 * XEmacs 21.2-beta4 is released. | |
5291 | |
5292 1998-10-15 SL Baur <steve@altair.xemacs.org> | |
5293 | |
5294 * XEmacs 21.2-beta3 is released. | |
5295 | |
5296 1998-10-09 SL Baur <steve@altair.xemacs.org> | |
5297 | |
5298 * Makefile (MAKEINFO): Undo no-split change. | |
5299 | |
5300 1998-09-29 SL Baur <steve@altair.xemacs.org> | |
5301 | |
5302 * XEmacs 21.2-beta2 is released. | |
5303 | |
5304 1998-09-20 Hrvoje Niksic <hniksic@srce.hr> | |
5305 | |
5306 * lispref/customize.texi: New file. | |
5307 | |
5308 1998-09-09 Hrvoje Niksic <hniksic@srce.hr> | |
5309 | |
5310 * internals/internals.texi (Coding for Mule): New node and | |
5311 section. | |
5312 | |
5313 1998-09-03 Darryl Okahata <darrylo@sr.hp.com> | |
5314 | |
5315 * xemacs/packages.texi: Document manually installing binary packages. | |
5316 | |
5317 1998-09-02 Jeff Miller <jmiller@smart.net> | |
5318 | |
5319 * Synch calendar.texi with Emacs 20.3 | |
5320 | |
5321 1998-09-03 Darryl Okahata <darrylo@sr.hp.com> | |
5322 | |
5323 * xemacs/packages.texi: Correct and update package documentation. | |
5324 Updated the package installation section to mention the visual | |
5325 package browser/installer. | |
5326 | |
5327 1998-08-31 Hrvoje Niksic <hniksic@srce.hr> | |
5328 | |
5329 * lispref/buffers.texi (Indirect Buffers): Update with XEmacs | |
5330 specifics. | |
5331 | |
5332 1998-08-21 Greg Klanderman <greg@alphatech.com> | |
5333 | |
5334 * lispref/files.texi (User Name Completion): new section. | |
5335 | |
434 | 5336 1998-07-23 Adrian Aichner <adrian@xemacs.org> |
428 | 5337 |
5338 * xemacs/packages.texi (Packages): Changing @itemize @emph to | |
5339 @itemize @bullet (this is what all other files included in | |
5340 xemacs.texi use) to fix error in texi2dvi (GNU Texinfo 3.12) 0.8. | |
5341 | |
5342 1998-07-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
5343 | |
5344 * xemacs/startup.texi: Small fixes, suggested by Hrvoje. | |
5345 | |
5346 * xemacs/xemacs.texi: | |
5347 * xemacs/packages.texi: More packages documentation. | |
5348 | |
5349 1998-07-19 SL Baur <steve@altair.xemacs.org> | |
5350 | |
5351 * XEmacs 21.2-beta1 is released. | |
5352 | |
5353 1998-07-12 SL Baur <steve@altair.xemacs.org> | |
5354 | |
5355 * XEmacs 21.0-pre5 is released. | |
5356 | |
5357 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
5358 | |
5359 * XEmacs 21.0-pre4 is released. | |
5360 | |
5361 1998-07-09 Oliver Graf <ograf@fga.de> | |
5362 | |
5363 * lispref/dragndrop.texi: added warning to OffiX Protocol section | |
5364 | |
5365 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
5366 | |
5367 * lispref/ldap.texi (Syntax of Search Filters): Fix QP encoding | |
5368 damage in transit. | |
5369 | |
5370 1998-07-05 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
5371 | |
5372 * lispref/tooltalk.texi: Fixed NEXT to @node LDAP | |
5373 | |
5374 * lispref/internationalization.texi: Fixed PREV to @node LDAP | |
5375 | |
5376 * lispref/lispref.texi: Added LDAP chapter from ldap.texi | |
5377 | |
5378 * lispref/Makefile: Added ldap.texi to srcs | |
5379 | |
5380 1998-06-29 SL Baur <steve@altair.xemacs.org> | |
5381 | |
5382 * standards.texi (Preface): Revert previous change to @node | |
5383 because it doesn't pass makeinfo. | |
5384 | |
434 | 5385 1998-06-27 Adrian Aichner <adrian@xemacs.org> |
428 | 5386 |
5387 * cl.texi: See ALL. | |
5388 * info-stnd.texi: Fixed @setfilename. | |
5389 * info.texi: Fixed @setfilename and a typo. | |
5390 * standards.texi: Added NEXT to @node Preface. See ALL. | |
5391 * texinfo.texi: Fixed section names, quoted usage of @TeX{}, | |
442 | 5392 changed some occurrences of `:' to `colon'. |
428 | 5393 * xemacs-faq.texi: See ALL. |
5394 * internals/internals.texi: See ALL. | |
5395 * lispref/back.texi: Fixed @setfilename. | |
5396 * lispref/compile.texi: See ALL. | |
5397 * lispref/debugging.texi: See ALL. | |
5398 * lispref/edebug-inc.texi: Added NEXT and UP to @node Edebug. | |
5399 * lispref/eval.texi: See ALL. | |
5400 * lispref/extents.texi: See ALL. | |
5401 * lispref/loading.texi: See ALL. | |
5402 * lispref/searching.texi: Escaped `(' in | |
5403 @cindex @samp{(?:} in regex | |
5404 * lispref/variables.texi: See ALL. | |
5405 | |
5406 1998-06-28 SL Baur <steve@altair.xemacs.org> | |
5407 | |
5408 * xemacs/calendar.texi: Massive update. | |
5409 From Jeff Miller <jmiller@smart.net> | |
5410 | |
5411 1998-06-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
5412 | |
5413 * xemacs/abbrevs.texi: | |
5414 * xemacs/basic.texi: | |
5415 * xemacs/buildings.texi: | |
5416 * xemacs/cmdargs.texi: | |
5417 * xemacs/files.texi: | |
5418 * xemacs/adjustments.texi: Adjustments to integrate startup.texi | |
5419 and packages.texi stuff. | |
5420 | |
5421 * xemacs/startup.texi: | |
5422 * xemacs/packages.texi: Created. | |
5423 | |
434 | 5424 1998-06-10 Adrian Aichner <adrian@xemacs.org> |
428 | 5425 |
5426 * texinfo.texi: added ../info/ to @setfilename, broke line after | |
5427 @noindent. Changed @var{arg-not-used-by-@TeX{}} to | |
5428 @var{arg-not-used-by-@@TeX{}} to make `texinfo-format-buffer' | |
5429 happy. Fixed refs broken by a previous patch of mine. | |
5430 | |
5431 1998-06-18 Darryl Okahata <darrylo@sr.hp.com> | |
5432 | |
5433 * lispref/os.texi (os.texi): Document `user-home-directory'. | |
5434 | |
5435 1998-06-13 Greg Klanderman <greg@alphatech.com> | |
5436 | |
5437 * lispref/windows.texi (Resizing Windows): document third optional | |
5438 WINDOW argument to enlarge-window and shrink-window. | |
5439 (Selecting Windows): document select-window optional norecord | |
5440 argument. | |
5441 (Size of Window): document window-text-area-pixel-height and | |
5442 window-text-area-pixel-width. | |
5443 (Size of Window): document window-displayed-text-pixel-height. | |
5444 (Position of Window): document window-text-area-pixel-edges. | |
5445 | |
5446 * lispref/positions.texi (Screen Lines): cleanup docs for | |
5447 vertical-motion and vertical-motion-pixels. | |
5448 | |
5449 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
5450 | |
5451 * lispref/windows.texi (Resizing Windows): Document | |
5452 `enlarge-window-pixels' and `shrink-window-pixels'. | |
5453 | |
5454 * lispref/positions.texi (Screen Lines): Update documentation of | |
5455 `vertical-motion'. | |
5456 (Screen Lines): Document `vertical-motion-pixels'. | |
5457 | |
5458 * lispref/frames.texi (Input Focus): Document `focus-frame', | |
5459 `save-selected-frame' and `with-selected-frame'. | |
5460 | |
5461 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
5462 | |
5463 * lispref/searching.texi (Regexp Search): Document `split-path'. | |
5464 | |
5465 * lispref/files.texi (Unique File Names): Update docs for | |
5466 `make-temp-name'; document `temp-directory'. | |
5467 | |
5468 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
5469 | |
5470 * lispref/os.texi (Recording Input): Update docs for `recent-keys'. | |
5471 | |
5472 * lispref/specifiers.texi (Specifier Instancing): Correct | |
5473 instantiation order. | |
5474 (Specifier Instancing Functions): Ditto. | |
5475 | |
5476 1998-06-11 Oliver Graf <ograf@fga.de> | |
5477 | |
5478 * lispref/lispref.texi: references to Drag'n'Drop fixed | |
5479 * lispref/modes.texi: references to Drag'n'Drop fixed | |
5480 * lispref/scrollbars.texi: references to Drag'n'Drop fixed | |
5481 * lispref/dragndrop.texi: naming changed to Drag and Drop | |
5482 added some docu about the drop procedure | |
5483 | |
434 | 5484 1998-06-09 Adrian Aichner <adrian@xemacs.org> |
428 | 5485 |
5486 * info-stnd.texi: added ../info/ to @setfilename. | |
5487 * info.texi: added ../info/ to @setfilename. | |
5488 * lispref/commands.texi: see ALL. | |
5489 * lispref/frames.texi: see ALL. | |
5490 * lispref/os.texi: see ALL. | |
5491 * lispref/text.texi: see ALL. | |
5492 * new-users-guide/custom1.texi: broke line after enumerated @item. | |
5493 * new-users-guide/custom2.texi: see ALL. | |
5494 * new-users-guide/edit.texi: see ALL. | |
5495 * new-users-guide/enter.texi: see ALL. | |
5496 * new-users-guide/files.texi: see ALL. | |
5497 * new-users-guide/help.texi | |
5498 * new-users-guide/modes.texi: see ALL. | |
5499 * new-users-guide/new-users-guide.texi: see ALL. | |
5500 * new-users-guide/region.texi: see ALL. | |
5501 * new-users-guide/search.texi: see ALL. | |
5502 * new-users-guide/xmenu.texi: see ALL. | |
5503 * standards.texi: added ../info/ to @setfilename. | |
5504 * texinfo.texi: added ../info/ to @setfilename, broke line after | |
5505 @noindent. Changed @var{arg-not-used-by-@TeX{}} to | |
5506 @var{arg-not-used-by-@@TeX{}} to make `texinfo-format-buffer' | |
5507 happy. | |
5508 * xemacs-faq.texi: added ../info/ to @setfilename. | |
5509 * ALL: corrected INFO-FILE-NAME to lispref and xemacs in relevant | |
5510 p?xefs (most were empty, some elisp and emacs), used | |
5511 PRINTED-MANUAL-TITLE "XEmacs Lisp Reference Manual" and "XEmacs | |
5512 User's Manual" respectively for all these. | |
5513 | |
5514 1998-06-01 Oliver Graf <ograf@fga.de> | |
5515 | |
5516 * lispref/dragndrop.texi: added experimental | |
5517 | |
5518 1998-05-28 Oliver Graf <ograf@fga.de> | |
5519 | |
5520 * lispref/dragndrop.texi: a warning, and a bit more text this time | |
5521 | |
5522 1998-05-26 Oliver Graf <ograf@fga.de> | |
5523 | |
5524 * lispref/dragndrop.texi: only small changes | |
5525 | |
933 | 5526 1998-05-15 Christian Nybø <chr@mediascience.no> |
428 | 5527 |
5528 * xemacs/killing.texi: Properly document `zap-to-char'. | |
5529 | |
5530 1998-05-13 Greg Klanderman <greg@alphatech.com> | |
5531 | |
5532 * lispref/frames.texi (Input Focus): cleanup select-frame | |
5533 documentation. | |
5534 | |
5535 1998-05-10 Oliver Graf <ograf@fga.de> | |
5536 | |
5537 * lispref/dragndrop.texi: new section for the DnD API | |
5538 * lispref/lispref.texi: added Drag'n'Drop between scrollbars and | |
5539 modes | |
5540 * lispref/modes.texi: changed back-ref to Drag'n'Drop | |
5541 * lispref/scrollbars.texi: changed next-ref to Drag'n'Drop | |
5542 | |
5543 1998-05-05 Oliver Graf <ograf@fga.de> | |
5544 | |
5545 * commands.texi: exchange of dnd-drop with misc-user | |
5546 | |
5547 1998-05-04 Martin Buchholz <martin@xemacs.org> | |
5548 | |
5549 * internals.texi (Techniques for XEmacs Developers): Add some more | |
5550 comments on adding new files, inspired by Olivier Galibert. | |
5551 | |
5552 1998-05-02 Hrvoje Niksic <hniksic@srce.hr> | |
5553 | |
5554 * lispref/windows.texi (Vertical Scrolling): Fixup docstring for | |
5555 scroll-conservatively. | |
5556 | |
5557 * lispref/loading.texi (Named Features): Document advanced args to | |
5558 `feature'. | |
5559 | |
5560 * lispref/files.texi (File Name Expansion): Document that | |
5561 expand-file-name does not treat // and ~/ in the middle of file | |
5562 names specially. | |
5563 | |
5564 * lispref/positions.texi (Excursions): Document | |
5565 `with-current-buffer' and `with-temp-file'. | |
5566 | |
5567 * lispref/strings.texi (Formatting Strings): Document `%*' | |
5568 construct. | |
5569 | |
5570 * lispref/os.texi (Time Conversion): Document that TIME may be | |
5571 omitted from format-time-string. | |
5572 | |
5573 * lispref/strings.texi (String Conversion): Document BASE argument | |
5574 to `string-to-number'. | |
5575 | |
5576 * lispref/searching.texi (Syntax of Regexps): Fix up Perl | |
5577 constructs documentation. | |
5578 (Regexp Search): Document `split-string'. | |
5579 | |
5580 * xemacs/display.texi (Scrolling): Document scroll-conservatively. | |
5581 | |
5582 * xemacs/killing.texi (Active Regions): Document that errors no | |
5583 longer highlight the region. | |
5584 | |
5585 * lispref/display.texi (The Echo Area): Document message log | |
5586 stuff, including `display-message', `lmessage', `clear-message', | |
5587 (Warnings): Document warning stuff. | |
5588 | |
5589 * lispref/commands.texi (Working With Events): Update `make-event' | |
5590 for misc-user events. | |
5591 (Using Interactive): Document `function-interactive'. | |
5592 | |
5593 * lispref/os.texi (System Environment): Document USE-FLOATS | |
5594 argument to `load-average'. | |
5595 (User Identification): Document the new semantics of | |
5596 `user-full-name'. | |
5597 | |
5598 * lispref/strings.texi (Creating Strings): Document `string' | |
5599 function. | |
5600 | |
5601 1998-05-02 Hrvoje Niksic <hniksic@srce.hr> | |
5602 | |
5603 * lispref/numbers.texi (Comparison of Numbers): Document multi-arg | |
5604 comparison functions. | |
5605 | |
5606 1998-04-30 Greg Klanderman <greg@alphatech.com> | |
5607 | |
5608 * lispref/frames.texi (Input Focus): Document behavior of | |
5609 select-frame wrt focus-follows-mouse. | |
5610 | |
5611 1998-04-30 Martin Buchholz <martin@xemacs.org> | |
5612 | |
5613 * Makefile: Support generic makes by avoiding `%' syntax. | |
5614 It breaks my heart to uglify the Makefile like this, but this is | |
5615 going to be a perpetual FAQ otherwise. | |
5616 General cleanup. | |
5617 Comment out w3 and vm info rules. | |
5618 Use paranoid cd ./$@ syntax to avoid losing with luser's CDPATH. | |
5619 | |
2069 | 5620 1998-03-27 Stephen Turnbull <stephen@xemacs.org> |
428 | 5621 |
5622 * xemacs/frame.texi: Document cursor appearance at end of line. | |
5623 | |
5624 1998-03-14 Hrvoje Niksic <hniksic@srce.hr> | |
5625 | |
5626 * internals/internals.texi (GCPROing): Explain when it is | |
5627 necessary to GCPRO function parameters. | |
5628 | |
5629 1998-03-13 Hrvoje Niksic <hniksic@srce.hr> | |
5630 | |
5631 * internals/internals.texi (Writing Lisp Primitives): Updated | |
5632 definition of For(). | |
5633 | |
5634 1998-03-01 Aki Vehtari <Aki.Vehtari@hut.fi> | |
5635 | |
5636 * lispref/menus.texi: Use recommended forms in examples. | |
5637 | |
5638 1998-02-22 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
5639 | |
5640 * cl.texi (Creating Symbols): Tell a little bit about the new | |
5641 handling of gensyms. | |
5642 | |
5643 1998-02-21 Greg Klanderman <greg@alphatech.com> | |
5644 | |
5645 * xemacs/custom.texi (X Resources): update to describe automatic | |
5646 setting of x-emacs-application-class. | |
5647 | |
5648 * lispref/x-windows.texi (Resources): update doc for | |
5649 x-emacs-application-class. | |
5650 | |
5651 1998-02-20 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
5652 | |
5653 * cl.texi (Equality Predicates): Update to reflect change to | |
5654 `equalp' made in "cl-extra.el" - now compares characters case | |
5655 insensitively. | |
5656 | |
5657 1998-02-23 Aki Vehtari <Aki.Vehtari@hut.fi> | |
5658 | |
5659 * lispref/menus.texi (Menu Format): Doc fix: suffix can be form. | |
5660 | |
5661 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
5662 | |
5663 * lispref/display.texi (Beeping): Linux has sound too. | |
5664 | |
5665 1998-02-19 Hrvoje Niksic <hniksic@srce.hr> | |
5666 | |
5667 * cl.texi (Argument Lists): Keywords are handled specially by | |
5668 XEmacs. | |
5669 (Porting Common Lisp): XEmacs backquotes are OK. | |
5670 | |
5671 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
5672 | |
5673 * xemacs/custom.texi (Init Syntax): document #b, #o, and #x reader | |
5674 syntax for integers. | |
434 | 5675 From Adrian Aichner <adrian@xemacs.org> |
428 | 5676 * cl.texi (Porting Common Lisp): ' ' |
5677 * lispref/numbers.texi (Numbers): ' ' | |
5678 | |
5679 1998-02-15 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
5680 | |
5681 * lispref/searching.texi (Regular Expressions): Document the | |
5682 recent regular expression syntax extensions. | |
5683 | |
5684 1998-02-10 Olivier Galibert <galibert@pobox.com> | |
5685 | |
5686 * internals/internals.texi: Remove all mocklisp references. | |
5687 | |
5688 1997-12-17 SL Baur <steve@altair.xemacs.org> | |
5689 | |
5690 * Makefile (SUBDIR): skk and gnats are packaged. | |
5691 | |
5692 * lispref/intro.texi (Acknowledgements): Update to v3.3. | |
5693 | |
5694 * lispref/lispref.texi: Update to 20.5/v3.3. | |
5695 | |
5696 1997-12-10 SL Baur <steve@altair.xemacs.org> | |
5697 | |
5698 * Makefile: Don't stop on errors. | |
5699 | |
5700 1997-12-06 SL Baur <steve@altair.xemacs.org> | |
5701 | |
5702 * Makefile: add skk manual. | |
5703 | |
5704 1997-11-29 SL Baur <steve@altair.xemacs.org> | |
5705 | |
5706 * internals/internals.texi (XEmacs): Updated history section. | |
5707 | |
5708 1997-11-28 SL Baur <steve@altair.xemacs.org> | |
5709 | |
5710 * lispref/compile.texi (Compilation Functions): Plug in the real | |
5711 return value. | |
5712 (Speed of Byte-Code): Ditto. | |
5713 (Compilation Functions): Ditto. | |
5714 (Compiled-Function Objects): Ditto. | |
5715 (Speed of Byte-Code): Increase loop counter by factor of 50 (the | |
5716 previous value was embarrassing). | |
5717 | |
5718 1997-11-21 SL Baur <steve@altair.xemacs.org> | |
5719 | |
5720 * Makefile (srcs): vhdl-mode has been packaged. | |
5721 | |
5722 1997-11-15 SL Baur <steve@altair.xemacs.org> | |
5723 | |
5724 * lispref/windows.texi (scroll-conservatively): Fix typo. | |
5725 | |
5726 1997-11-12 Hrvoje Niksic <hniksic@srce.hr> | |
5727 | |
5728 * lispref/commands.texi (Working With Events): Document fully. | |
5729 | |
5730 * lispref/windows.texi (Vertical Scrolling): Document | |
5731 scroll-conservatively. | |
5732 | |
5733 1997-11-09 Hrvoje Niksic <hniksic@srce.hr> | |
5734 | |
5735 * lispref/extents.texi (Intro to Extents): Minor correction. | |
5736 (Extent Properties): Document `extent-keymap'. | |
5737 | |
5738 1997-11-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5739 | |
5740 * xemacs/mule.texi (Mule): Modify description about supported | |
5741 scripts. | |
5742 | |
5743 1997-11-02 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5744 | |
5745 * xemacs/mule.texi: Add description for | |
5746 `universal-coding-system-argument'. | |
5747 | |
5748 1997-10-31 SL Baur <steve@altair.xemacs.org> | |
5749 | |
5750 * internals/internals.texi: XEmacs 19.16 is released. | |
5751 | |
5752 1997-10-30 SL Baur <steve@altair.xemacs.org> | |
5753 | |
5754 * Makefile (srcs): Mailcrypt, hm--html-menus, vm, psgml and tm have | |
5755 been packaged. | |
5756 | |
5757 1997-10-22 Hrvoje Niksic <hniksic@srce.hr> | |
5758 | |
5759 * xemacs-faq.texi: Added the detailed menu listing. | |
5760 | |
5761 * lispref/extents.texi (Extent Properties): Documented | |
5762 `set-extent-properties'. | |
5763 | |
5764 * xemacs/custom.texi (Face Customization): Updated for XEmacs. | |
5765 | |
5766 1997-10-07 SL Baur <steve@altair.xemacs.org> | |
5767 | |
5768 * xemacs-faq.texi (Q1.3.7): Update Russion URLs. | |
5769 From Rebecca Ore <rebecca.ore@op.net> | |
5770 | |
5771 * lispref/databases.texi (Connecting to a Database): Describe | |
5772 valid types of `type' and `subtype'. | |
5773 From Raymond Toy <toy@rtp.ericsson.se> | |
5774 | |
5775 1997-10-01 Karl M. Hegbloom <karlheg@inetarena.com> | |
5776 | |
5777 * lispref/commands.texi (Keyboard Macros): fixed typo. Changed | |
5778 reference to (emacs) into a reference to (xemacs). | |
5779 | |
5780 1997-10-01 Karl M. Hegbloom <karlheg@inetarena.com> | |
5781 | |
5782 * lispref/keymaps.texi (Keymaps): untabified and reformatted menu | |
5783 to prevent line wrap. | |
5784 | |
5785 1997-09-27 SL Baur <steve@altair.xemacs.org> | |
5786 | |
5787 * gnats/flowchart.eps: New file. | |
5788 | |
5789 1997-09-23 Hrvoje Niksic <hniksic@srce.hr> | |
5790 | |
5791 * xemacs/custom.texi (Easy Customization): Ditto. | |
5792 | |
5793 * xemacs/xemacs.texi (Top): Added pointer to easy customization. | |
5794 | |
5795 1997-09-18 SL Baur <steve@altair.xemacs.org> | |
5796 | |
5797 * internals/Makefile (../../info/$(NAME).info): Warn and clean up | |
5798 if someone hasn't upgraded makeinfo. | |
5799 | |
5800 * Makefile (EMACS): Refer to xemacs binary in source tree. | |
5801 * tm/Makefile (EMACS): Ditto. | |
5802 | |
5803 1997-08-15 Karl M. Hegbloom <karlheg@inetarena.com> | |
5804 | |
5805 * cl.texi (Type Predicates): Update for corrected handling of | |
5806 `string-char' and `character'. | |
5807 | |
5808 Tue Aug 5 21:56:02 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
5809 | |
5810 * cc-mode.texi: | |
5811 In FAQ section, document use of c-mode-base-map instead of c-mode-map. | |
5812 | |
5813 Fri Aug 1 22:44:49 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
5814 | |
5815 * cc-mode.texi: Removed the description of c-enable-//-in-c-mode. | |
5816 | |
5817 Wed Jul 30 00:01:45 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
5818 | |
5819 * cc-mode.texi: | |
5820 Added description of template-args-cont syntactic symbol | |
5821 | |
5822 1997-07-25 Barry A. Warsaw <cc-mode-help@python.org> | |
5823 | |
5824 * cc-mode.texi: Describe support for idl-mode | |
5825 | |
5826 * cc-mode.texi: | |
5827 Document c-initialization-hook. Also rewrite the "Getting Connected" | |
5828 section on byte compiling the source. | |
5829 | |
5830 1997-07-21 Karl M. Hegbloom <karlheg@inetarena.com> | |
5831 | |
5832 * lispref/streams.texi: "Output Streams", change `last-output' | |
5833 result list from integers to characters. | |
5834 | |
5835 * lispref/minibuf.texi: "Object from Minibuffer", correction. | |
5836 | |
5837 * lispref/minibuf.texi: "Minibuffer History", add | |
5838 `Info-minibuffer-history', `Manual-page-minibuffer-history', and | |
5839 short paragraph refering to `M-x apropos'. | |
5840 | |
5841 1997-07-17 Steven L Baur <steve@altair.xemacs.org> | |
5842 | |
5843 * Makefile: makeinfo-1.68 is verified to work. | |
5844 | |
5845 * tm/Makefile (../../info/%-ja.info): Die if not running | |
5846 XEmacs/Mule. | |
5847 (../../info/%-en.info): Inherit setting of MAKEINFO. | |
5848 | |
5849 Tue Jul 15 04:18:38 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
5850 | |
5851 * cc-mode.texi: | |
5852 Describe the variable c-indent-comments-syntactically-p. | |
5853 | |
5854 1997-07-15 Steven L Baur <steve@altair.xemacs.org> | |
5855 | |
5856 * internals/internals.texi (Top): Convert Buffer@'s node name to | |
5857 `Buffer's' because the former confuses makeinfo. | |
5858 | |
5859 Thu Jul 3 22:54:03 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
5860 | |
5861 * cc-mode.texi: Fixed spelling of Texinfo | |
5862 | |
5863 Tue May 6 21:33:06 1997 Steven L Baur <steve@altair.xemacs.org> | |
5864 | |
5865 * lispref/files.texi (Writing to Files): Correct docstring of | |
5866 write-region. | |
5867 | |
5868 Sun May 4 14:28:32 1997 Steven L Baur <steve@altair.xemacs.org> | |
5869 | |
5870 * lispref/annotations.texi (Annotation Primitives): | |
5871 `delete-annotation' does not return the deleted annotation. | |
5872 | |
5873 Wed Apr 30 18:13:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
5874 | |
5875 * lispref/lispref.texi: Correct release dates. | |
5876 | |
5877 Sat Apr 19 20:48:00 1997 Steven L Baur <steve@altair.xemacs.org> | |
5878 | |
5879 * lispref/files.texi (File Name Expansion): Update documentation | |
5880 of file-relative-name. | |
5881 | |
5882 Mon Apr 7 21:02:39 1997 Steven L Baur <steve@altair.xemacs.org> | |
5883 | |
5884 * lispref/lispref.texi: Update version numbers (with patches from | |
5885 Hrvoje Niksic). | |
5886 | |
5887 * lispref/building.texi (Building XEmacs): Update version numbers | |
5888 and build identification. | |
5889 | |
5890 * lispref/intro.texi (Introduction): Update version number. | |
5891 | |
5892 Sun Mar 23 15:47:05 1997 Steven L Baur <steve@altair.xemacs.org> | |
5893 | |
5894 * Makefile (srcs): Add efs.texi. | |
5895 | |
5896 Sat Mar 22 16:39:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
5897 | |
5898 * Makefile (srcs): Add hm--html-mode.texi. | |
5899 | |
5900 Sun Mar 16 18:48:14 1997 Steven L Baur <steve@altair.xemacs.org> | |
5901 | |
5902 * gnats/Makefile (gnats_srcs): New manuals for GNATS. | |
5903 | |
5904 Wed Mar 12 14:39:43 1997 Steven L Baur <steve@altair.xemacs.org> | |
5905 | |
5906 * lispref/strings.texi (Text Comparison): Correct example for | |
5907 `char-equal'. Add new function `char='. | |
5908 | |
5909 Thu Mar 6 13:33:54 1997 Steven L Baur <steve@altair.xemacs.org> | |
5910 | |
5911 * Makefile: Update for new texinfo manual. | |
5912 | |
5913 Tue Mar 4 11:37:42 1997 Steven L Baur <steve@altair.xemacs.org> | |
5914 | |
5915 * Makefile (../info/w3.info): Use special version of makeinfo | |
5916 since this manual is not backwards compatible. | |
5917 Clean up error handling so we only have to type make once to | |
5918 rebuild the info tree. | |
5919 (../info/vm.info): Make sure to continue in the event of error. | |
5920 | |
5921 Tue Feb 25 20:17:53 1997 Steven L Baur <steve@altair.xemacs.org> | |
5922 | |
5923 * auctex/Makefile: Added `mostlyclean' and `distclean' target. | |
5924 | |
5925 Wed Feb 19 17:57:27 1997 Steven L Baur <steve@altair.xemacs.org> | |
5926 | |
5927 * Makefile (auctex): New subdirectory target. | |
5928 | |
5929 Wed Feb 12 12:30:27 1997 Yotam Medini <yotam_medini@tmai.com> | |
5930 | |
5931 * mule/languages.texi: Correct typo. | |
5932 | |
5933 Mon Feb 10 08:17:22 1997 Steven L Baur <steve@altair.xemacs.org> | |
5934 | |
5935 * Makefile (srcs): Add custom and widget to srcs. | |
5936 | |
5937 * lispref/extents.texi (Intro to Extents): Removed erroneous | |
5938 reference to `start-glyph' property. | |
5939 | |
5940 Sun Feb 9 00:27:22 1997 Per Abrahamsen <abraham@dina.kvl.dk> | |
5941 | |
5942 * widget.texi: New file. | |
5943 | |
5944 * custom.texi: New file. | |
5945 | |
5946 Thu Feb 6 22:57:09 1997 Steven L Baur <steve@altair.xemacs.org> | |
5947 | |
5948 * lispref/extents.texi (Duplicable Extents): replicable extents | |
5949 are history. | |
5950 | |
5951 Wed Jan 29 19:59:41 1997 Steven L Baur <steve@altair.xemacs.org> | |
5952 | |
5953 * xemacs-faq.texi (Q1.1.1): Correct typos. | |
5954 | |
5955 Mon Jan 27 22:28:48 1997 Bob Weiner <weiner@infodock.com> | |
5956 | |
5957 * xemacs-faq.texi (Q1.0.14): infodock.com has hardcopies of the | |
5958 XEmacs manual available. | |
5959 (Q4.6.1): Updated Infodock Information. | |
5960 | |
5961 Sat Dec 28 11:08:07 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
5962 | |
5963 * vhdl-mode.texi: Correct typo in email address. | |
5964 | |
5965 Mon Dec 23 09:47:24 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
5966 | |
5967 * Makefile (srcs): Add vhdl-mode. | |
5968 | |
5969 Wed Dec 18 20:21:06 1996 Martin Buchholz <mrb@eng.sun.com> | |
5970 | |
5971 * Makefile (realclean): Don't delete itself `make distclean' | |
5972 | |
5973 * lispref/numbers.texi (Predicates on Numbers): wholenump->natnump. | |
5974 | |
5975 * Makefile: New File. | |
5976 | |
5977 Tue Dec 10 18:35:21 1996 Rod Whitby <rwhitby@asc.sps.mot.com> | |
5978 | |
5979 * vhdl-mode.texi: New file. | |
5980 | |
5981 Thu Jan 24 12:41:33 1991 Richard Stallman (rms at mole.ai.mit.edu) | |
5982 | |
5983 * texinfo.tex: Delete spurious character at beginning. | |
5984 | |
5985 Tue Aug 16 13:09:12 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
5986 | |
5987 * emacs.tex: Corrected two typos. No other changes before | |
5988 Version 19 will be made. | |
5989 | |
5990 * vip.texinfo: Removed menu entry Adding Lisp Code in node | |
5991 Customization since the menu entry did not point to anything. | |
5992 Also added an @finalout command to remove overfull hboxes from the | |
5993 printed output. | |
5994 | |
5995 * cl.texinfo: Added @bye, \input line and @settitle to file. | |
5996 This file is clearly intended to be a chapter of some other work, | |
5997 but the other work does not yet exist. | |
5998 | |
5999 Mon Jul 25 17:47:38 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
6000 | |
6001 * texinfo.texinfo: Three typos corrected. | |
6002 | |
6003 Mon Jul 11 18:02:29 1988 Chris Hanson (cph at kleph) | |
6004 | |
6005 * texindex.c (indexify): when comparing to initial strings to | |
6006 decide whether to change the header, must use `strncmp' to avoid | |
6007 comparing entire strings of which initials are a substring. | |
6008 | |
6009 Sun Jun 26 18:46:16 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu) | |
6010 | |
6011 * texindex.c (sort_in_core, sort_offline, parsefile): | |
6012 Give up on input file if any line doesn't start with backslash. | |
6013 | |
6014 Mon May 23 10:41:35 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
6015 | |
6016 * emacs.tex: Update information for obtaining TeX distribution from the | |
6017 University of Washington. |