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