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