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