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