Mercurial > hg > xemacs-beta
annotate man/ChangeLog @ 5867:e0f1dfaa821e
Add the non-ASCII digit support, now #'parse-integer can handle it.
lisp/ChangeLog addition:
2015-03-08 Aidan Kehoe <kehoea@parhasard.net>
* mule/digit.el: New file, specifying integer weights for those
decimal digits specified by Unicode, and for the Latin characters
in ASCII.
* dumped-lisp.el (preloaded-file-list):
Dump this file, so those weights are available at runtime.
tests/ChangeLog addition:
2015-03-16 Aidan Kehoe <kehoea@parhasard.net>
* automated/lisp-tests.el:
Extend the tests for #'parse-integer, #'digit-char, #'digit-char-p
substantially, testing the Unicode decimal digits in detail.
src/ChangeLog addition:
2015-03-08 Aidan Kehoe <kehoea@parhasard.net>
* data.c (Fparse_integer):
Document a complication that arises when a leading minus sign has
a digit weight but is nonetheles interpreted as a minus.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Mon, 16 Mar 2015 00:28:18 +0000 |
parents | 15041705c196 |
children | 6174848f3e6c |
rev | line source |
---|---|
5863
15041705c196
Provide `char-code-limit', implement the GNU equivalent in terms of it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5860
diff
changeset
|
1 2015-03-15 Aidan Kehoe <kehoea@parhasard.net> |
15041705c196
Provide `char-code-limit', implement the GNU equivalent in terms of it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5860
diff
changeset
|
2 |
15041705c196
Provide `char-code-limit', implement the GNU equivalent in terms of it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5860
diff
changeset
|
3 * lispref/strings.texi (Character Codes): |
15041705c196
Provide `char-code-limit', implement the GNU equivalent in terms of it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5860
diff
changeset
|
4 Document `char-code-limit' here too. |
15041705c196
Provide `char-code-limit', implement the GNU equivalent in terms of it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5860
diff
changeset
|
5 |
5860
916b48abd1c6
event-stream.c, support help-event-list as does GNU.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5847
diff
changeset
|
6 2015-03-14 Aidan Kehoe <kehoea@parhasard.net> |
916b48abd1c6
event-stream.c, support help-event-list as does GNU.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5847
diff
changeset
|
7 |
916b48abd1c6
event-stream.c, support help-event-list as does GNU.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5847
diff
changeset
|
8 * lispref/help.texi (Help Functions): |
916b48abd1c6
event-stream.c, support help-event-list as does GNU.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5847
diff
changeset
|
9 Document help-event-list, just added. |
916b48abd1c6
event-stream.c, support help-event-list as does GNU.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5847
diff
changeset
|
10 |
5847
039f4a1bcb0a
Add notes about pixel_to_glyph_translation and related code.
Mike Kupfer <mike.kupfer@xemacs.org>
parents:
5794
diff
changeset
|
11 2015-02-23 Mike Kupfer <mike.kupfer@xemacs.org> |
039f4a1bcb0a
Add notes about pixel_to_glyph_translation and related code.
Mike Kupfer <mike.kupfer@xemacs.org>
parents:
5794
diff
changeset
|
12 |
039f4a1bcb0a
Add notes about pixel_to_glyph_translation and related code.
Mike Kupfer <mike.kupfer@xemacs.org>
parents:
5794
diff
changeset
|
13 * internals/internals.texi (The Redisplay Mechanism): |
039f4a1bcb0a
Add notes about pixel_to_glyph_translation and related code.
Mike Kupfer <mike.kupfer@xemacs.org>
parents:
5794
diff
changeset
|
14 Add notes about pixel_to_glyph_translation and related code. |
039f4a1bcb0a
Add notes about pixel_to_glyph_translation and related code.
Mike Kupfer <mike.kupfer@xemacs.org>
parents:
5794
diff
changeset
|
15 (pixel_to_glyph_translation): New section. |
039f4a1bcb0a
Add notes about pixel_to_glyph_translation and related code.
Mike Kupfer <mike.kupfer@xemacs.org>
parents:
5794
diff
changeset
|
16 |
5867
e0f1dfaa821e
Add the non-ASCII digit support, now #'parse-integer can handle it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5863
diff
changeset
|
17 2015-03-08 Aidan Kehoe <kehoea@parhasard.net> |
e0f1dfaa821e
Add the non-ASCII digit support, now #'parse-integer can handle it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5863
diff
changeset
|
18 |
e0f1dfaa821e
Add the non-ASCII digit support, now #'parse-integer can handle it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5863
diff
changeset
|
19 * lispref/strings.texi (Predicates for Characters): |
e0f1dfaa821e
Add the non-ASCII digit support, now #'parse-integer can handle it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5863
diff
changeset
|
20 Document `digit-char-p', `digit-char' here. |
e0f1dfaa821e
Add the non-ASCII digit support, now #'parse-integer can handle it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5863
diff
changeset
|
21 * lispref/strings.texi (String Conversion): |
e0f1dfaa821e
Add the non-ASCII digit support, now #'parse-integer can handle it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5863
diff
changeset
|
22 Document `parse-integer' here. |
e0f1dfaa821e
Add the non-ASCII digit support, now #'parse-integer can handle it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5863
diff
changeset
|
23 |
5794
2d20d57d4e7b
Do not build or ship the texinfo info files.
Jerry James <james@xemacs.org>
parents:
5792
diff
changeset
|
24 2014-03-28 Jerry James <james@xemacs.org> |
2d20d57d4e7b
Do not build or ship the texinfo info files.
Jerry James <james@xemacs.org>
parents:
5792
diff
changeset
|
25 |
2d20d57d4e7b
Do not build or ship the texinfo info files.
Jerry James <james@xemacs.org>
parents:
5792
diff
changeset
|
26 * Makefile.in: Do not build texinfo files. |
2d20d57d4e7b
Do not build or ship the texinfo info files.
Jerry James <james@xemacs.org>
parents:
5792
diff
changeset
|
27 * texinfo/fdl.texi: |
2d20d57d4e7b
Do not build or ship the texinfo info files.
Jerry James <james@xemacs.org>
parents:
5792
diff
changeset
|
28 * texinfo/texinfo.texi: |
2d20d57d4e7b
Do not build or ship the texinfo info files.
Jerry James <james@xemacs.org>
parents:
5792
diff
changeset
|
29 * texinfo/version.texi: |
2d20d57d4e7b
Do not build or ship the texinfo info files.
Jerry James <james@xemacs.org>
parents:
5792
diff
changeset
|
30 Remove files belonging to an external project. |
2d20d57d4e7b
Do not build or ship the texinfo info files.
Jerry James <james@xemacs.org>
parents:
5792
diff
changeset
|
31 |
5792
8ef8d5e7c920
Fix broken texinfo references. See xemacs-beta message with ID
Jerry James <james@xemacs.org>
parents:
5791
diff
changeset
|
32 2014-03-28 Jerry James <james@xemacs.org> |
8ef8d5e7c920
Fix broken texinfo references. See xemacs-beta message with ID
Jerry James <james@xemacs.org>
parents:
5791
diff
changeset
|
33 |
8ef8d5e7c920
Fix broken texinfo references. See xemacs-beta message with ID
Jerry James <james@xemacs.org>
parents:
5791
diff
changeset
|
34 * lispref/loading.texi: |
8ef8d5e7c920
Fix broken texinfo references. See xemacs-beta message with ID
Jerry James <james@xemacs.org>
parents:
5791
diff
changeset
|
35 * lispref/macros.texi: |
8ef8d5e7c920
Fix broken texinfo references. See xemacs-beta message with ID
Jerry James <james@xemacs.org>
parents:
5791
diff
changeset
|
36 Fix broken next/prev pointers caught by texinfo 4.x, but not by |
8ef8d5e7c920
Fix broken texinfo references. See xemacs-beta message with ID
Jerry James <james@xemacs.org>
parents:
5791
diff
changeset
|
37 texinfo 5.x. Thanks to Thomas Mittelstaedt for reporting. |
8ef8d5e7c920
Fix broken texinfo references. See xemacs-beta message with ID
Jerry James <james@xemacs.org>
parents:
5791
diff
changeset
|
38 |
5791
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
39 2014-02-11 Jerry James <james@xemacs.org> |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
40 |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
41 * lispref/consoles-devices.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
42 * lispref/control.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
43 * lispref/customize.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
44 * lispref/databases.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
45 * lispref/debugging.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
46 * lispref/dialog.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
47 * lispref/display.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
48 * lispref/eval.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
49 * lispref/extents.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
50 * lispref/faces.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
51 * lispref/files.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
52 * lispref/frames.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
53 * lispref/functions.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
54 * lispref/glyphs.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
55 * lispref/gutter.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
56 * lispref/hash-tables.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
57 * lispref/help.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
58 * lispref/internationalization.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
59 * lispref/intro.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
60 * lispref/keymaps.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
61 * lispref/ldap.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
62 * lispref/lispref.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
63 * lispref/lists.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
64 * lispref/loading.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
65 * lispref/macros.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
66 * lispref/markers.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
67 * lispref/menus.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
68 * lispref/minibuf.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
69 * lispref/modes.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
70 * lispref/mule.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
71 * lispref/numbers.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
72 * lispref/objects.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
73 * lispref/os.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
74 * lispref/positions.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
75 * lispref/postgresql.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
76 * lispref/processes.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
77 * lispref/range-tables.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
78 * lispref/scrollbars.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
79 * lispref/searching.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
80 * lispref/sequences.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
81 * lispref/specifiers.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
82 * lispref/streams.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
83 * lispref/strings.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
84 * lispref/symbols.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
85 * lispref/syntax.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
86 * lispref/text.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
87 * lispref/tips.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
88 * lispref/toolbar.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
89 * lispref/tooltalk.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
90 * lispref/variables.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
91 * lispref/windows.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
92 * lispref/x-windows.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
93 * xemacs/custom.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
94 * xemacs/menus.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
95 * xemacs/programs.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
96 Add next, prev, and up pointers to each node for texinfo 5.2. |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
97 |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
98 * texinfo/fdl.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
99 * texinfo/texinfo.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
100 * texinfo/version.texi: |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
101 Sync with texinfo 5.2. |
9fae6227ede5
Silence texinfo 5.2 warnings, primarily by adding next, prev, and up
Jerry James <james@xemacs.org>
parents:
5766
diff
changeset
|
102 |
5766
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5758
diff
changeset
|
103 2013-09-15 Mats Lidell <matsl@xemacs.org> |
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5758
diff
changeset
|
104 |
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5758
diff
changeset
|
105 * xemacs/files.texi (Saving): New variable |
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5758
diff
changeset
|
106 mode-require-final-newline. Update info for require-final-newline. |
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5758
diff
changeset
|
107 |
5744
9c17f7be0b92
Require makeinfo 4.12 or later to build the info files. See xemacs-beta
Jerry James <james@xemacs.org>
parents:
5741
diff
changeset
|
108 2013-06-25 Jerry James <james@xemacs.org> |
9c17f7be0b92
Require makeinfo 4.12 or later to build the info files. See xemacs-beta
Jerry James <james@xemacs.org>
parents:
5741
diff
changeset
|
109 |
9c17f7be0b92
Require makeinfo 4.12 or later to build the info files. See xemacs-beta
Jerry James <james@xemacs.org>
parents:
5741
diff
changeset
|
110 * Makefile.in: New file, so we can replace @MAKEINFO@. |
9c17f7be0b92
Require makeinfo 4.12 or later to build the info files. See xemacs-beta
Jerry James <james@xemacs.org>
parents:
5741
diff
changeset
|
111 * Makefile: Removed. |
9c17f7be0b92
Require makeinfo 4.12 or later to build the info files. See xemacs-beta
Jerry James <james@xemacs.org>
parents:
5741
diff
changeset
|
112 * lispref/packaging.texi: Update required version of makeinfo. |
9c17f7be0b92
Require makeinfo 4.12 or later to build the info files. See xemacs-beta
Jerry James <james@xemacs.org>
parents:
5741
diff
changeset
|
113 * xemacs/packages.texi: Ditto. |
9c17f7be0b92
Require makeinfo 4.12 or later to build the info files. See xemacs-beta
Jerry James <james@xemacs.org>
parents:
5741
diff
changeset
|
114 |
5757
6c2aa9851f5e
XEmacs 21.5.34 "kale" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5741
diff
changeset
|
115 2013-06-23 Stephen J. Turnbull <stephen@xemacs.org> |
6c2aa9851f5e
XEmacs 21.5.34 "kale" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5741
diff
changeset
|
116 |
6c2aa9851f5e
XEmacs 21.5.34 "kale" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5741
diff
changeset
|
117 * XEmacs 21.5.34 "kale" is released. |
6c2aa9851f5e
XEmacs 21.5.34 "kale" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5741
diff
changeset
|
118 |
5741
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
119 2013-06-19 Jerry James <james@xemacs.org> |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
120 |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
121 * beta.texi: Move "@end info" to its own line. |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
122 * lispref/edebug-inc.texi (Instrumenting Macro Calls): "@table |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
123 @bullet" is not supported by texinfo 5.x; use "@table @asis" |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
124 instead, since each table entry has a label already. |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
125 * lispref/packaging.texi (Makefile Targets): Use @section instead |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
126 of @subsection inside a @chapter. |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
127 * texinfo.tex: Update to new version that is known to work with |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
128 texinfo 5.x. |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
129 * texinfo/texinfo.texi (documentencoding): @itemx must always |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
130 follow an @item. |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
131 * widget.texi: Sync with the Emacs 24.3 version. Change all |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
132 @section to @chapter, and all @subsection to @section. |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
133 * xemacs-faq.texi (11.0: The XEmacs repositories): Add |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
134 @unnumberedsec entry to contain the @unnumberedsubsec for each |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
135 question. |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
136 (11.1: Working with CVS): Ditto. |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
137 (11.2: Working with Mercurial): Ditto. |
d11efddf3617
Fix texinfo constructs that are rejected by texinfo 5.x. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
5739
diff
changeset
|
138 |
5739
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
139 2013-06-17 Jerry James <james@xemacs.org> |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
140 |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
141 * internals/internals.texi (Numeric Types): New chapter describing |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
142 the implementation of bignums, ratios, and bigfloats. |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
143 * lispref/numbers.texi (The Bignum Extension): Update description |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
144 to include MPIR, fix broken URLs, and note that BSD MP support is |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
145 now more complete. |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
146 (Bignum Basics): Note MPIR support. |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
147 (Ratio Basics): Add a missing comma. |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
148 (Bigfloat Basics): Fix an incomplete sentence and add examples. |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
149 * xemacs-faq.texi (Q7.2.1): Update description to include MPIR, |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
150 note that BSD MP support is now more complete, and remove the |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
151 paragraph where I promise to write internals documentation. |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
152 (Q7.2.3): Update ancient section that mentions the Pentium III. |
a2912073be85
Support bignums with MPIR. Add documentation on the bignum, ratio,
Jerry James <james@xemacs.org>
parents:
5715
diff
changeset
|
153 |
5715
68f8d295be49
Support :visible in menu specifications.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
154 2013-01-22 Jerry James <james@xemacs.org> |
68f8d295be49
Support :visible in menu specifications.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
155 |
68f8d295be49
Support :visible in menu specifications.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
156 * lispref/glyphs.texi (Image Instantiators): Add :visible to the |
68f8d295be49
Support :visible in menu specifications.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
157 list of allowed menu keywords. |
68f8d295be49
Support :visible in menu specifications.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
158 * lispref/menus.tex (Menu Format): Document that :visible is an |
68f8d295be49
Support :visible in menu specifications.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
159 alias for :included. |
68f8d295be49
Support :visible in menu specifications.
Jerry James <james@xemacs.org>
parents:
5712
diff
changeset
|
160 |
5712
bee2e2568828
XEmacs 21.5.33 "horseradish" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5708
diff
changeset
|
161 2013-01-04 Stephen J. Turnbull <stephen@xemacs.org> |
bee2e2568828
XEmacs 21.5.33 "horseradish" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5708
diff
changeset
|
162 |
bee2e2568828
XEmacs 21.5.33 "horseradish" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5708
diff
changeset
|
163 * XEmacs 21.5.33 "horseradish" is released. |
bee2e2568828
XEmacs 21.5.33 "horseradish" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5708
diff
changeset
|
164 |
5708
8ca881999349
Menu accelerator documentation patch
Vin Shelton <acs@xemacs.org>
parents:
5707
diff
changeset
|
165 2013-01-02 Vin Shelton <acs@xemacs.org> |
8ca881999349
Menu accelerator documentation patch
Vin Shelton <acs@xemacs.org>
parents:
5707
diff
changeset
|
166 |
8ca881999349
Menu accelerator documentation patch
Vin Shelton <acs@xemacs.org>
parents:
5707
diff
changeset
|
167 * lispref/menus.texi (Creating Menu Accelerators): Clarify that |
8ca881999349
Menu accelerator documentation patch
Vin Shelton <acs@xemacs.org>
parents:
5707
diff
changeset
|
168 the menu accelerator must be lowercase. |
8ca881999349
Menu accelerator documentation patch
Vin Shelton <acs@xemacs.org>
parents:
5707
diff
changeset
|
169 |
5707
5fd1b9a95531
Improve description of `mark-defun'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5706
diff
changeset
|
170 2012-12-28 Stephen J. Turnbull <stephen@xemacs.org> |
5fd1b9a95531
Improve description of `mark-defun'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5706
diff
changeset
|
171 |
5fd1b9a95531
Improve description of `mark-defun'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5706
diff
changeset
|
172 * xemacs/programs.texi (Defuns): Improve description of `mark-defun'. |
5fd1b9a95531
Improve description of `mark-defun'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5706
diff
changeset
|
173 Thanks to Steven Mitchell for the suggestion. |
5fd1b9a95531
Improve description of `mark-defun'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5706
diff
changeset
|
174 |
5706
44b0b4ea5cae
Implement and document :active keyword for submenu specs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5705
diff
changeset
|
175 2012-12-28 Byrel Mitchell <byrel.mitchell@gmail.com> |
44b0b4ea5cae
Implement and document :active keyword for submenu specs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5705
diff
changeset
|
176 |
44b0b4ea5cae
Implement and document :active keyword for submenu specs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5705
diff
changeset
|
177 * lispref/menus.texi (Menu Format): |
44b0b4ea5cae
Implement and document :active keyword for submenu specs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5705
diff
changeset
|
178 Document use of :active in submenu specs. |
44b0b4ea5cae
Implement and document :active keyword for submenu specs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5705
diff
changeset
|
179 |
5705
9c9b07d40f20
Update references to repository to reflect current reality.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5703
diff
changeset
|
180 2012-12-28 Stephen J. Turnbull <stephen@xemacs.org> |
9c9b07d40f20
Update references to repository to reflect current reality.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5703
diff
changeset
|
181 |
9c9b07d40f20
Update references to repository to reflect current reality.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5703
diff
changeset
|
182 * internals/internals.texi (Mercurial Basics): |
9c9b07d40f20
Update references to repository to reflect current reality.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5703
diff
changeset
|
183 Update references to repository to reflect current reality. |
9c9b07d40f20
Update references to repository to reflect current reality.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5703
diff
changeset
|
184 |
5703 | 185 2012-12-28 Byrel Mitchell <byrel.mitchell@gmail.com> |
186 | |
187 * lispref/menus.texi (Creating Menu Accelerators): Typo fix. | |
188 | |
5687
965a9ddc915a
Introduce call-process-shell-command from GNU.
Mats Lidell <matsl@xemacs.org>
parents:
5686
diff
changeset
|
189 2012-10-13 Mats Lidell <matsl@xemacs.org> |
965a9ddc915a
Introduce call-process-shell-command from GNU.
Mats Lidell <matsl@xemacs.org>
parents:
5686
diff
changeset
|
190 |
965a9ddc915a
Introduce call-process-shell-command from GNU.
Mats Lidell <matsl@xemacs.org>
parents:
5686
diff
changeset
|
191 * lispref/processes.texi (Synchronous Processes): New function |
965a9ddc915a
Introduce call-process-shell-command from GNU.
Mats Lidell <matsl@xemacs.org>
parents:
5686
diff
changeset
|
192 call-process-shell-command. |
965a9ddc915a
Introduce call-process-shell-command from GNU.
Mats Lidell <matsl@xemacs.org>
parents:
5686
diff
changeset
|
193 |
5686
c6b1500299a7
recenter-top-bottom synced from GNU and new default for C-l
Mats Lidell <mats.lidell@cag.se>
parents:
5679
diff
changeset
|
194 2012-09-18 Mats Lidell <matsl@xemacs.org> |
c6b1500299a7
recenter-top-bottom synced from GNU and new default for C-l
Mats Lidell <mats.lidell@cag.se>
parents:
5679
diff
changeset
|
195 |
c6b1500299a7
recenter-top-bottom synced from GNU and new default for C-l
Mats Lidell <mats.lidell@cag.se>
parents:
5679
diff
changeset
|
196 * lispref/windows.texi (Vertical Scrolling): Added |
c6b1500299a7
recenter-top-bottom synced from GNU and new default for C-l
Mats Lidell <mats.lidell@cag.se>
parents:
5679
diff
changeset
|
197 recenter-top-bottom and recenter-positions |
c6b1500299a7
recenter-top-bottom synced from GNU and new default for C-l
Mats Lidell <mats.lidell@cag.se>
parents:
5679
diff
changeset
|
198 |
c6b1500299a7
recenter-top-bottom synced from GNU and new default for C-l
Mats Lidell <mats.lidell@cag.se>
parents:
5679
diff
changeset
|
199 * xemacs/display.texi (Display): Rearranged and added |
c6b1500299a7
recenter-top-bottom synced from GNU and new default for C-l
Mats Lidell <mats.lidell@cag.se>
parents:
5679
diff
changeset
|
200 documentation due to new function recenter-top-bottom. |
c6b1500299a7
recenter-top-bottom synced from GNU and new default for C-l
Mats Lidell <mats.lidell@cag.se>
parents:
5679
diff
changeset
|
201 |
5677
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
202 2012-08-06 Aidan Kehoe <kehoea@parhasard.net> |
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
203 |
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
204 * lispref/symbols.texi (Symbol Components): |
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
205 Document the new syntax of ## for the symbol with name "" interned |
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
206 in obarray. |
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
207 |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
208 2012-09-02 Aidan Kehoe <kehoea@parhasard.net> |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
209 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
210 * lispref/keymaps.texi (Keymaps): |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
211 * lispref/keymaps.texi (Changing Key Bindings): |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
212 * lispref/keymaps.texi (Scanning Keymaps): |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
213 * lispref/keymaps.texi (Remapping commands): |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
214 * lispref/keymaps.texi (XEmacs): New. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
215 * lispref/keymaps.texi (Other Keymap Functions): |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
216 Document the new command remapping functionality in this file. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
217 |
5696
9f1c9f957073
Fix ChangeLog ordering.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5687
diff
changeset
|
218 2012-08-02 Stephen J. Turnbull <stephen@xemacs.org> |
9f1c9f957073
Fix ChangeLog ordering.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5687
diff
changeset
|
219 |
9f1c9f957073
Fix ChangeLog ordering.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5687
diff
changeset
|
220 * XEmacs 21.5.32 "habanero" is released. |
9f1c9f957073
Fix ChangeLog ordering.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5687
diff
changeset
|
221 |
5658
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
222 2012-05-06 Aidan Kehoe <kehoea@parhasard.net> |
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
223 |
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
224 * lispref/macros.texi (Expansion): |
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
225 Cross-reference to documentation of #'cl-prettyexpand, #'defmacro* |
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
226 when talking about #'macroexpand. |
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
227 |
5653
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
228 2012-05-04 Aidan Kehoe <kehoea@parhasard.net> |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
229 |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
230 * lispref/searching.texi (Regular Expressions): |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
231 * lispref/searching.texi (Syntax of Regexps): |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
232 * lispref/searching.texi (Char Classes): |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
233 * lispref/searching.texi (Regexp Example): |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
234 Document the predefined character classes in this file. |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
235 |
5632
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
236 2011-12-30 Aidan Kehoe <kehoea@parhasard.net> |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
237 |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
238 * cl.texi (Top): |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
239 * cl.texi (Usage): |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
240 * cl.texi (Organization): |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
241 * cl.texi (Efficiency Concerns): |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
242 * cl.texi (Common Lisp Compatibility): |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
243 Remove documentation of cl-compat, now it's deleted. |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
244 |
5607
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5583
diff
changeset
|
245 2011-12-04 Aidan Kehoe <kehoea@parhasard.net> |
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5583
diff
changeset
|
246 |
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5583
diff
changeset
|
247 * internals/internals.texi (Basic Lisp Modules): |
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5583
diff
changeset
|
248 Document sequence.c here too. |
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5583
diff
changeset
|
249 |
5583
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
250 2011-10-09 Aidan Kehoe <kehoea@parhasard.net> |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
251 |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
252 * lispref/lists.texi (Association Lists): |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
253 Don't document #'remassoc, #'remassq and friends in detail; |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
254 they're XEmacs-specific and (delete* ... :key #'car) is |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
255 preferable. |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
256 |
5582
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
257 2011-10-09 Aidan Kehoe <kehoea@parhasard.net> |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
258 |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
259 * internals/internals.texi (Top): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
260 * internals/internals.texi (Authorship of XEmacs): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
261 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
262 * internals/internals.texi (Introduction to Writing C Code): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
263 * internals/internals.texi (Working with Lisp Objects): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
264 * internals/internals.texi (Adding Global Lisp Variables): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
265 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
266 * internals/internals.texi (How Lisp Objects Are Represented in C): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
267 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
268 * internals/internals.texi (Introduction to Allocation): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
269 * internals/internals.texi (GCPROing): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
270 * internals/internals.texi (mark_object): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
271 * internals/internals.texi (sweep_bit_vectors_1): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
272 * internals/internals.texi (Fixnums and Characters): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
273 * internals/internals.texi (Future Work -- Unicode): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
274 Say fixnum rather than integer when specifically talking about |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
275 fixed-width Lisp integers. |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
276 |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
277 2011-10-09 Aidan Kehoe <kehoea@parhasard.net> |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
278 |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
279 * internals/internals.texi (How Lisp Objects Are Represented in C): |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
280 * internals/internals.texi (Integers and Characters): |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
281 Mechanically change INT to FIXNUM, where the usage describes non-bignum |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
282 Lisp integers. |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
283 |
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
284 2011-09-07 Aidan Kehoe <kehoea@parhasard.net> |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
285 |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
286 * cl.texi (Function Bindings): |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
287 Move #'labels first, describe it in more detail, explaining that |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
288 it is to be preferred over #'flet, and explaining why. |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
289 Explain that dynamic bindings with #'flet will also not work when |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
290 functions are accessed through their bytecodes. |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
291 |
5551
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
292 2011-08-14 Mike Sperber <mike@xemacs.org> |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
293 |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
294 * xemacs-faq.texi: |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
295 * xemacs/packages.texi: Reflect change of location of packages |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
296 from lib/ to share/. |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
297 |
5547
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
298 2011-08-09 Aidan Kehoe <kehoea@parhasard.net> |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
299 |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
300 * cl.texi (Argument Lists): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
301 * cl.texi (Time of Evaluation): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
302 * cl.texi (Type Predicates): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
303 * cl.texi (Assignment): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
304 * cl.texi (Basic Setf): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
305 * cl.texi (Modify Macros): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
306 * cl.texi (Customizing Setf): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
307 * cl.texi (Dynamic Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
308 * cl.texi (Lexical Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
309 * cl.texi (Function Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
310 * cl.texi (Macro Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
311 * cl.texi (Conditionals): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
312 * cl.texi (Blocks and Exits): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
313 * cl.texi (Iteration): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
314 * cl.texi (Loop Basics): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
315 * cl.texi (Macros): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
316 * cl.texi (Declarations): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
317 * cl.texi (Property Lists): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
318 * cl.texi (Structures): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
319 * cl.texi (Assertions): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
320 * cl.texi (Efficiency Concerns): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
321 * lispref/compile.texi (Eval During Compile): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
322 * lispref/compile.texi (Compiled-Function Objects): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
323 * lispref/eval.texi (Multiple values): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
324 * lispref/frames.texi (Input Focus): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
325 * lispref/internationalization.texi (Level 3 Primitives): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
326 * lispref/positions.texi (Excursions): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
327 * lispref/positions.texi (Narrowing): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
328 * lispref/searching.texi (Saving Match Data): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
329 * lispref/specifiers.texi (Adding Specifications): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
330 * lispref/windows.texi: |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
331 Correct the manuals to avoid using the term "special operator" when |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
332 #'special-operator-p would give nil. |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
333 |
5546
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
334 2011-08-08 Stephen J. Turnbull <stephen@xemacs.org> |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
335 |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
336 * internals/internals.texi (Mercurial Techniques): New. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
337 (Mercurial Basics): New. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
338 (Preserving Existing Changes with Mercurial Queues): New. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
339 (Top): Update menus. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
340 (Regression Testing XEmacs): Update node pointers. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
341 (CVS Techniques): Update node pointers. Note obsolescence of CVS. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
342 Add @ref to Mercurial Techniques. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
343 |
5529
3d1f8f0e690f
Add `function-key-map-parent', for non-console-specific `function-key-map' bindings
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
344 2011-06-25 Aidan Kehoe <kehoea@parhasard.net> |
3d1f8f0e690f
Add `function-key-map-parent', for non-console-specific `function-key-map' bindings
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
345 |
3d1f8f0e690f
Add `function-key-map-parent', for non-console-specific `function-key-map' bindings
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
346 * lispref/os.texi (Translating Input): |
3d1f8f0e690f
Add `function-key-map-parent', for non-console-specific `function-key-map' bindings
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
347 Document the just-added function-key-map-parent. |
3d1f8f0e690f
Add `function-key-map-parent', for non-console-specific `function-key-map' bindings
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
348 |
5512
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
349 2011-05-20 Jerry James <james@xemacs.org> |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
350 |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
351 * Makefile (DESTDIR): New variable for all Makefiles, unused in this |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
352 one. |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
353 |
5480
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
354 2011-04-29 Stephen J. Turnbull <stephen@xemacs.org> |
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
355 |
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
356 * XEmacs 21.5.31 "ginger" is released. |
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
357 |
5464
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5390
diff
changeset
|
358 2011-04-26 Stephen J. Turnbull <stephen@xemacs.org> |
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5390
diff
changeset
|
359 |
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5390
diff
changeset
|
360 * XEmacs 21.5.30 "garlic" is released. |
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5390
diff
changeset
|
361 |
5390
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
362 2011-04-02 Stephen J. Turnbull <stephen@xemacs.org> |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
363 |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
364 * xemacs-faq.texi (Q2.5.7): |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
365 New node on troubleshooting duplicate auto-autoloads. |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
366 (Top): |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
367 (Installation): |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
368 (Q2.5.6): |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
369 Update menus and node links for Q2.5.7. |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
370 |
5384
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
371 2011-03-24 Jerry James <james@xemacs.org> |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
372 |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
373 * internals/internals.texi (Creating a Window-System Type): |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
374 "desireable" -> "desirable", "neglible" -> "negligible". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
375 (The Non-Client Area): "negotation" -> "negotiation". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
376 (Better Rendering Support -- Modern Font Support): "anomolies" -> |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
377 "anomalies". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
378 (Discussion -- Switching to C++): "reliablity" -> "reliability". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
379 * lispref/mule.texi (Theory of Operation): "noticable" -> "noticeable". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
380 * lispref/strings.texi (Creating Strings): "occurances" -> |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
381 "occurrences". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
382 * xemacs-faq.texi (Q1.0.3: How do you pronounce XEmacs?): |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
383 "pronounciation" -> "pronunciation". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
384 (Q1.7.2: Which external packages are there?): "withing" -> "within". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
385 (Q2.4.3: XEmacs crashes and I compiled it myself.): "ealier" -> |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
386 "earlier". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
387 (hg diff gives bizarre output.): "occured" -> "occurred", "relevent" |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
388 -> "relevant". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
389 (How do I recover from a bad commit? (I already pushed.)): |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
390 "inadvertantly" -> "inadvertently". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
391 |
5378
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
392 2011-03-19 Stephen J. Turnbull <stephen@xemacs.org> |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
393 |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
394 * lispref/customize.texi (Face Definitions): New node. |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
395 (Customization): Add entry to menu. |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
396 (Variable Definitions): Add cross-ref for `defface'. |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
397 (Customization Types): Fixup Previous link. |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
398 |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
399 * lispref/faces.texi (Faces): |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
400 Clarify that built-in properties of faces are computed at runtime. |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
401 |
5374
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
402 2011-03-15 Aidan Kehoe <kehoea@parhasard.net> |
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
403 |
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
404 * lispref/objects.texi (Character Type): |
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
405 * lispref/objects.texi (Equality Predicates): |
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
406 No longer document `old-eq', `old-equal', they haven't been used |
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
407 in years. |
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
408 |
5373
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
409 2011-03-14 Jeff Sparkes <jsparkes@gmail.com> |
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
410 |
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
411 * lispref/faces.texi (Faces): Mention `min-colors' as a |
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
412 face specifier. |
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
413 |
5361
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
414 2011-03-01 Aidan Kehoe <kehoea@parhasard.net> |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
415 |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
416 * lispref/commands.texi (Using Interactive): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
417 * lispref/compile.texi (Eval During Compile): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
418 * lispref/compile.texi (Compiled-Function Objects): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
419 * lispref/control.texi (Sequencing): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
420 * lispref/control.texi (Conditionals): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
421 * lispref/control.texi (Combining Conditions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
422 * lispref/control.texi (Iteration): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
423 * lispref/control.texi (Catch and Throw): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
424 * lispref/control.texi (Handling Errors): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
425 * lispref/control.texi (Cleanups): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
426 * lispref/display.texi (Temporary Displays): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
427 * lispref/eval.texi (Quoting): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
428 * lispref/eval.texi (Multiple values): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
429 * lispref/frames.texi (Input Focus): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
430 * lispref/functions.texi (Argument List): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
431 * lispref/functions.texi (Defining Functions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
432 * lispref/functions.texi (Anonymous Functions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
433 * lispref/internationalization.texi (Level 3 Primitives): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
434 * lispref/internationalization.texi (Domain Specification): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
435 * lispref/intro.texi (A Sample Function Description): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
436 * lispref/intro.texi (A Sample Variable Description): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
437 * lispref/lists.texi (Sets And Lists): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
438 * lispref/macros.texi (Defining Macros): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
439 * lispref/macros.texi (Backquote): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
440 * lispref/positions.texi (Excursions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
441 * lispref/positions.texi (Narrowing): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
442 * lispref/searching.texi (Saving Match Data): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
443 * lispref/sequences.texi (Sequence Functions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
444 * lispref/sequences.texi (Array Functions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
445 * lispref/specifiers.texi (Adding Specifications): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
446 * lispref/variables.texi (Local Variables): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
447 * lispref/variables.texi (Defining Variables): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
448 * lispref/variables.texi (Setting Variables): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
449 * lispref/variables.texi (Default Value): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
450 * lispref/windows.texi (Selecting Windows): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
451 * lispref/windows.texi (Window Configurations): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
452 No longer use @defspec, since we no longer use the term "special |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
453 form"; instead use @deffn {Special Operator}. Unfortunately |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
454 there's no way in texinfo to redefine @defspec in one place. |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
455 |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
456 2011-03-01 Aidan Kehoe <kehoea@parhasard.net> |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
457 |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
458 * cl.texi (Argument Lists): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
459 * cl.texi (Time of Evaluation): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
460 * cl.texi (Type Predicates): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
461 * cl.texi (Assignment): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
462 * cl.texi (Basic Setf): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
463 * cl.texi (Modify Macros): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
464 * cl.texi (Customizing Setf): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
465 * cl.texi (Dynamic Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
466 * cl.texi (Lexical Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
467 * cl.texi (Function Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
468 * cl.texi (Macro Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
469 * cl.texi (Conditionals): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
470 * cl.texi (Blocks and Exits): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
471 * cl.texi (Iteration): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
472 * cl.texi (Loop Basics): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
473 * cl.texi (Macros): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
474 * cl.texi (Declarations): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
475 * cl.texi (Property Lists): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
476 * cl.texi (Structures): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
477 * cl.texi (Assertions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
478 * cl.texi (Efficiency Concerns): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
479 |
5359
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
480 2011-02-19 Aidan Kehoe <kehoea@parhasard.net> |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
481 |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
482 * lispref/lists.texi (Sets And Lists): |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
483 Document #'member*, #'remove*, #'delete* in this file. Document |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
484 #'memq, #'member, #'remq, #'remove, #'delq, #'delete in terms of |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
485 the former functions. |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
486 Document #'subsetp, #'union, #'intersection, #'set-difference, |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
487 #'set-exclusive-or and their destructive analogues in this file. |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
488 * lispref/lists.texi (Association Lists): |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
489 Document #'assoc*, #'rassoc* in this file. Document #'assq, |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
490 #'assoc, #'rassq, #'rassoc in terms of the first two functions. |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
491 * lispref/objects.texi (Equality Predicates): |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
492 Document #'eql here, don't leave it to cl.texi. |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
493 |
5300
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
494 2010-11-06 Aidan Kehoe <kehoea@parhasard.net> |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
495 |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
496 * lispref/lists.texi (Rearrangement, Building Lists): |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
497 Document that #'nreverse and #'reverse now accept sequences, not |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
498 just lists, in this file. |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
499 |
5254
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
500 2010-09-02 Aidan Kehoe <kehoea@parhasard.net> |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
501 |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
502 * lispref/os.texi (Time Conversion): |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
503 Document the new #'format-time-string flags for Roman month |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
504 numbers. |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
505 |
5252
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
506 2010-08-30 Aidan Kehoe <kehoea@parhasard.net> |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
507 |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
508 * lispref/eval.texi (Evaluation, Multiple values): |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
509 Document our implementation of multiple values; point the reader |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
510 to the CLTL or the Hyperspec for details of exactly when values |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
511 are discarded. |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
512 |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
513 * lispref/numbers.texi (Numeric Conversions): Document the |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
514 optional DIVISOR arguments to the rounding functions, and |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
515 document that they all return multiple values. |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
516 (Rounding Operations): Ditto. |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
517 |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
518 * cl.texi (Multiple Values): |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
519 Document that we've moved the multiple values implementation to |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
520 core code, and cross-reference to the Lispref. |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
521 (Numerical Functions): The various rounding functions are now |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
522 identical to the built-in rounding functions, with the exception |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
523 that they return lists, not multiple values; document this. |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
524 |
5247
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
525 2010-08-21 Aidan Kehoe <kehoea@parhasard.net> |
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
526 |
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
527 * lispref/objects.texi (Character Type): |
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
528 Go into more detail here on the specific type of error provoked on |
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
529 overlong hex character escapes and non-Latin-1 octal character |
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
530 escapes; give details of why the latter may be encountered, and |
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
531 what to do with such code. |
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
532 |
5236
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5215
diff
changeset
|
533 2010-06-13 Stephen J. Turnbull <stephen@xemacs.org> |
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5215
diff
changeset
|
534 |
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5215
diff
changeset
|
535 * external-widget.texi: Correct FSF address in permission notice. |
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5215
diff
changeset
|
536 |
5215
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
537 2010-05-28 Aidan Kehoe <kehoea@parhasard.net> |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
538 |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
539 * lispref/windows.texi (Buffers and Windows): |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
540 Reword the documentation of `buffer-display-count'; |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
541 `buffer-display-time's documentation was taken from a version of |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
542 the GNU elisp manuwal with a compatible licence, |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
543 `buffer-display-count' was not. |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
544 |
5214
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
545 2010-05-17 Jeff Sparkes <jsparkes@gmail.com> |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
546 |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
547 * lispref/windows.texi (Buffers and Windows): |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
548 Document buffer-display-count and buffer-display-time with |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
549 descriptions from GNU emacs lispref. |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
550 |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
551 * lispref/locals.texi (Standard Buffer-Local Variables): |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
552 Add buffer-display-count and buffer-display-time. |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
553 |
5191
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
554 2010-04-03 Aidan Kehoe <kehoea@parhasard.net> |
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
555 |
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
556 * lispref/hash-tables.texi (Introduction to Hash Tables): |
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
557 Document that we now support #'equalp as a hash table test by |
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
558 default, and mention #'define-hash-table-test. |
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
559 (Working With Hash Tables): Document #'define-hash-table-test. |
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
560 |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
561 2010-04-01 Aidan Kehoe <kehoea@parhasard.net> |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
562 |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
563 * lispref/lists.texi (Rearrangement): |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
564 Update the documentation of #'sort here, now that it accepts any |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
565 type of sequence and the KEY keyword argument. (Though this is |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
566 probably now the wrong place for this function, given that.) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
567 |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
568 2010-02-22 Ben Wing <ben@xemacs.org> |
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
569 |
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
570 * internals/internals.texi (A Summary of the Various XEmacs Modules): |
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
571 * internals/internals.texi (Modules for other Display-Related Lisp Objects): |
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
572 objects*.[ch] -> fontcolor*.[ch]. |
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
573 |
5148
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
574 2010-03-18 Mike Sperber <mike@xemacs.org> |
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
575 |
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
576 * xemacs/startup.texi (Startup Paths): Reflect the (long-ago) |
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
577 change from `lib' to `share' for the architecture-independent |
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
578 directories. |
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
579 |
5142
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
580 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
|
581 |
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
582 * 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
|
583 * 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
|
584 * internals/internals.texi (lrecords): |
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
585 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
|
586 *LRECORD* to *LISP_OBJECT*. |
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
587 |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
588 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
|
589 |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
590 * internals/internals.texi (Introduction to Allocation): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
591 * internals/internals.texi (Integers and Characters): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
592 * 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
|
593 * internals/internals.texi (lrecords): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
594 * internals/internals.texi (Low-level allocation): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
595 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
|
596 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
|
597 |
5096 | 598 2010-03-04 Ben Wing <ben@xemacs.org> |
599 | |
600 * internals/internals.texi (Top): | |
601 * internals/internals.texi (list-to-texinfo): Removed. | |
602 * internals/internals.texi (convert-list-to-texinfo): New. | |
603 * internals/internals.texi (table-to-texinfo): Removed. | |
604 * internals/internals.texi (convert-table-to-texinfo): New. | |
605 Update Lisp functions at top to newest versions. | |
606 | |
607 * internals/internals.texi (A History of Emacs): | |
608 * internals/internals.texi (Through Version 18): | |
609 * internals/internals.texi (Lucid Emacs): | |
610 * internals/internals.texi (XEmacs): | |
611 * internals/internals.texi (The XEmacs Split): | |
612 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
613 * internals/internals.texi (Introduction to Writing C Code): | |
614 * internals/internals.texi (Writing Good Comments): | |
615 * internals/internals.texi (Writing Macros): | |
616 * internals/internals.texi (Major Textual Changes): | |
617 * internals/internals.texi (Great Integral Type Renaming): | |
618 * internals/internals.texi (How to Regression-Test): | |
619 * internals/internals.texi (Creating a Branch): | |
620 * internals/internals.texi (Dynamic Arrays): | |
621 * internals/internals.texi (Allocation by Blocks): | |
622 * internals/internals.texi (mark_object): | |
623 * internals/internals.texi (gc_sweep): | |
624 * internals/internals.texi (Byte-Char Position Conversion): | |
625 * internals/internals.texi (Searching and Matching): | |
626 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
627 * internals/internals.texi (Byte Types): | |
628 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
629 * internals/internals.texi (Buffer Positions): | |
630 * internals/internals.texi (Basic internal-format APIs): | |
631 * internals/internals.texi (The DFC API): | |
632 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
633 * internals/internals.texi (Mule-izing Code): | |
634 * internals/internals.texi (Locales): | |
635 * internals/internals.texi (More about code pages): | |
636 * internals/internals.texi (More about locales): | |
637 * internals/internals.texi (Unicode support under Windows): | |
638 * internals/internals.texi (The Frame): | |
639 * internals/internals.texi (The Non-Client Area): | |
640 * internals/internals.texi (The Client Area): | |
641 * internals/internals.texi (The Paned Area): | |
642 * internals/internals.texi (Text Areas): | |
643 * internals/internals.texi (The Displayable Area): | |
644 * internals/internals.texi (Event Queues): | |
645 * internals/internals.texi (Event Stream Callback Routines): | |
646 * internals/internals.texi (Focus Handling): | |
647 * internals/internals.texi (Future Work -- Autodetection): | |
648 Replace " with ``, '' (not complete, maybe about halfway through). | |
649 | |
5090 | 650 2010-03-03 Ben Wing <ben@xemacs.org> |
651 | |
652 * internals/internals.texi (Intro to Window and Frame Geometry): | |
653 * internals/internals.texi (The Paned Area): | |
654 * internals/internals.texi (The Displayable Area): | |
655 Update to make note of e.g. the fact that the bottom gutter is | |
656 actually above the minibuffer. | |
657 | |
5087 | 658 2010-03-02 Jerry James <james@xemacs.org> |
659 | |
660 * custom.texi: Delete, redundant with xemacs/custom.texi and | |
661 lispref/customize.texi. | |
662 * Makefile: Remove all rules relating to custom.texi. | |
663 | |
5089
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5087
diff
changeset
|
664 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
|
665 |
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5087
diff
changeset
|
666 * 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
|
667 * 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
|
668 * 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
|
669 * 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
|
670 * 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
|
671 * 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
|
672 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
|
673 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
|
674 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
|
675 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
|
676 |
5080
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
677 2010-02-25 Didier Verna <didier@xemacs.org> |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
678 |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
679 The background-placement face property. |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
680 * xemacs/custom.texi (Faces): Document it. |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
681 |
5046 | 682 2010-02-20 Ben Wing <ben@xemacs.org> |
683 | |
684 * internals/internals.texi (Intro to Window and Frame Geometry): | |
685 Shrink diagram to fit when offset by five spaces as a result of | |
686 quoting. | |
687 | |
5045 | 688 2010-02-16 Ben Wing <ben@xemacs.org> |
689 | |
690 * internals/internals.texi (Top): | |
691 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
692 * internals/internals.texi (Creating a Window-System Type): | |
693 * internals/internals.texi (Window and Frame Geometry): | |
694 * internals/internals.texi (Intro to Window and Frame Geometry): | |
695 * internals/internals.texi (The Frame): | |
696 * internals/internals.texi (The Non-Client Area): | |
697 * internals/internals.texi (The Client Area): | |
698 * internals/internals.texi (The Paned Area): | |
699 * internals/internals.texi (Text Areas): | |
700 * internals/internals.texi (The Displayable Area): | |
701 * internals/internals.texi (Which Functions Use Which?): | |
702 * internals/internals.texi (The Redisplay Mechanism): | |
703 Integrate the long comment in frame.c into the internals manual. | |
704 | |
5031
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
705 2010-02-17 Jerry James <james@xemacs.org> |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
706 |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
707 * term.texi: Move to the eterm package. |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
708 * Makefile: Remove all rules relating to term.texi. |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
709 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
710 2010-02-19 Ben Wing <ben@xemacs.org> |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
711 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
712 * widget.texi: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
713 * widget.texi (Top): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
714 * widget.texi (Introduction): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
715 * widget.texi (User Interface): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
716 * widget.texi (Programming Example): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
717 * widget.texi (Setting Up the Buffer): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
718 * widget.texi (Basic Types): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
719 * widget.texi (link): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
720 * widget.texi (url-link): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
721 * widget.texi (info-link): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
722 * widget.texi (push-button): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
723 * widget.texi (editable-field): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
724 * widget.texi (text): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
725 * widget.texi (menu-choice): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
726 * widget.texi (radio-button-choice): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
727 * widget.texi (item): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
728 * widget.texi (choice-item): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
729 * widget.texi (toggle): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
730 * widget.texi (checkbox): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
731 * widget.texi (checklist): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
732 * widget.texi (editable-list): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
733 * widget.texi (group): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
734 * widget.texi (Sexp Types): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
735 * widget.texi (constants): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
736 * widget.texi (generic): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
737 * widget.texi (atoms): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
738 * widget.texi (composite): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
739 * widget.texi (Widget Properties): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
740 * widget.texi (Defining New Widgets): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
741 * widget.texi (Widget Browser): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
742 * widget.texi (Widget Minor Mode): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
743 * widget.texi (Utilities): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
744 * widget.texi (Widget Wishlist): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
745 * widget.texi (Widget Internals): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
746 * widget.texi (GNU Free Documentation License): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
747 * widget.texi (Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
748 Sync with FSF 23.1.92. |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
749 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
750 2010-02-19 Ben Wing <ben@xemacs.org> |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
751 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
752 * texinfo/fdl.texi: New file. |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
753 * texinfo/texinfo.texi: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
754 * texinfo/texinfo.texi (Top): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
755 * texinfo/texinfo.texi (Copying Conditions): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
756 * texinfo/texinfo.texi (Overview): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
757 * texinfo/texinfo.texi (Reporting Bugs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
758 * texinfo/texinfo.texi (Using Texinfo): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
759 * texinfo/texinfo.texi (Output Formats): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
760 * texinfo/texinfo.texi (Info Files): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
761 * texinfo/texinfo.texi (Printed Books): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
762 * texinfo/texinfo.texi (Formatting Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
763 * texinfo/texinfo.texi (Conventions): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
764 * texinfo/texinfo.texi (Comments): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
765 * texinfo/texinfo.texi (Minimum): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
766 * texinfo/texinfo.texi (Six Parts): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
767 * texinfo/texinfo.texi (Short Sample): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
768 * texinfo/texinfo.texi (History): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
769 * texinfo/texinfo.texi (Texinfo Mode): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
770 * texinfo/texinfo.texi (Texinfo Mode Overview): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
771 * texinfo/texinfo.texi (XEmacs Editing): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
772 * texinfo/texinfo.texi (Inserting): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
773 * texinfo/texinfo.texi (Showing the Structure): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
774 * texinfo/texinfo.texi (Updating Nodes and Menus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
775 * texinfo/texinfo.texi (Updating Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
776 * texinfo/texinfo.texi (Updating Requirements): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
777 * texinfo/texinfo.texi (Other Updating Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
778 * texinfo/texinfo.texi (Info Formatting): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
779 * texinfo/texinfo.texi (Printing): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
780 * texinfo/texinfo.texi (Texinfo Mode Summary): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
781 * texinfo/texinfo.texi (Beginning a File): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
782 * texinfo/texinfo.texi (Sample Beginning): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
783 * texinfo/texinfo.texi (Texinfo File Header): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
784 * texinfo/texinfo.texi (First Line): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
785 * texinfo/texinfo.texi (Start of Header): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
786 * texinfo/texinfo.texi (setfilename): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
787 * texinfo/texinfo.texi (settitle): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
788 * texinfo/texinfo.texi (End of Header): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
789 * texinfo/texinfo.texi (Document Permissions): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
790 * texinfo/texinfo.texi (copying): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
791 * texinfo/texinfo.texi (insertcopying): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
792 * texinfo/texinfo.texi (Titlepage & Copyright Page): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
793 * texinfo/texinfo.texi (titlepage): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
794 * texinfo/texinfo.texi (titlefont center sp): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
795 * texinfo/texinfo.texi (title subtitle author): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
796 * texinfo/texinfo.texi (Copyright): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
797 * texinfo/texinfo.texi (end titlepage): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
798 * texinfo/texinfo.texi (headings on off): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
799 * texinfo/texinfo.texi (Contents): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
800 * texinfo/texinfo.texi (The Top Node): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
801 * texinfo/texinfo.texi (Top Node Example): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
802 * texinfo/texinfo.texi (Master Menu Parts): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
803 * texinfo/texinfo.texi (Global Document Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
804 * texinfo/texinfo.texi (documentdescription): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
805 * texinfo/texinfo.texi (setchapternewpage): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
806 * texinfo/texinfo.texi (paragraphindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
807 * texinfo/texinfo.texi (firstparagraphindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
808 * texinfo/texinfo.texi (exampleindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
809 * texinfo/texinfo.texi (Software Copying Permissions): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
810 * texinfo/texinfo.texi (Ending a File): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
811 * texinfo/texinfo.texi (Printing Indices & Menus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
812 * texinfo/texinfo.texi (File End): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
813 * texinfo/texinfo.texi (Structuring): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
814 * texinfo/texinfo.texi (Tree Structuring): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
815 * texinfo/texinfo.texi (Structuring Command Types): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
816 * texinfo/texinfo.texi (makeinfo top): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
817 * texinfo/texinfo.texi (chapter): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
818 * texinfo/texinfo.texi (unnumbered & appendix): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
819 * texinfo/texinfo.texi (majorheading & chapheading): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
820 * texinfo/texinfo.texi (section): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
821 * texinfo/texinfo.texi (unnumberedsec appendixsec heading): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
822 * texinfo/texinfo.texi (subsection): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
823 * texinfo/texinfo.texi (unnumberedsubsec appendixsubsec subheading): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
824 * texinfo/texinfo.texi (subsubsection): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
825 * texinfo/texinfo.texi (Raise/lower sections): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
826 * texinfo/texinfo.texi (Nodes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
827 * texinfo/texinfo.texi (Two Paths): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
828 * texinfo/texinfo.texi (Node Menu Illustration): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
829 * texinfo/texinfo.texi (node): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
830 * texinfo/texinfo.texi (Node Names): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
831 * texinfo/texinfo.texi (Writing a Node): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
832 * texinfo/texinfo.texi (Node Line Tips): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
833 * texinfo/texinfo.texi (Node Line Requirements): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
834 * texinfo/texinfo.texi (First Node): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
835 * texinfo/texinfo.texi (makeinfo top command): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
836 * texinfo/texinfo.texi (makeinfo Pointer Creation): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
837 * texinfo/texinfo.texi (anchor): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
838 * texinfo/texinfo.texi (Menus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
839 * texinfo/texinfo.texi (Menu Location): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
840 * texinfo/texinfo.texi (Writing a Menu): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
841 * texinfo/texinfo.texi (Menu Parts): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
842 * texinfo/texinfo.texi (Less Cluttered Menu Entry): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
843 * texinfo/texinfo.texi (Menu Example): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
844 * texinfo/texinfo.texi (Other Info Files): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
845 * texinfo/texinfo.texi (Cross References): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
846 * texinfo/texinfo.texi (References): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
847 * texinfo/texinfo.texi (Cross Reference Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
848 * texinfo/texinfo.texi (Cross Reference Parts): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
849 * texinfo/texinfo.texi (xref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
850 * texinfo/texinfo.texi (Reference Syntax): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
851 * texinfo/texinfo.texi (One Argument): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
852 * texinfo/texinfo.texi (Two Arguments): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
853 * texinfo/texinfo.texi (Three Arguments): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
854 * texinfo/texinfo.texi (Four and Five Arguments): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
855 * texinfo/texinfo.texi (Top Node Naming): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
856 * texinfo/texinfo.texi (ref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
857 * texinfo/texinfo.texi (pxref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
858 * texinfo/texinfo.texi (inforef): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
859 * texinfo/texinfo.texi (uref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
860 * texinfo/texinfo.texi (cite): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
861 * texinfo/texinfo.texi (Marking Text): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
862 * texinfo/texinfo.texi (Indicating): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
863 * texinfo/texinfo.texi (Useful Highlighting): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
864 * texinfo/texinfo.texi (code): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
865 * texinfo/texinfo.texi (kbd): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
866 * texinfo/texinfo.texi (key): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
867 * texinfo/texinfo.texi (samp): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
868 * texinfo/texinfo.texi (verb): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
869 * texinfo/texinfo.texi (var): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
870 * texinfo/texinfo.texi (env): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
871 * texinfo/texinfo.texi (file): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
872 * texinfo/texinfo.texi (command): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
873 * texinfo/texinfo.texi (option): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
874 * texinfo/texinfo.texi (dfn): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
875 * texinfo/texinfo.texi (abbr): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
876 * texinfo/texinfo.texi (acronym): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
877 * texinfo/texinfo.texi (indicateurl): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
878 * texinfo/texinfo.texi (email): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
879 * texinfo/texinfo.texi (Emphasis): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
880 * texinfo/texinfo.texi (emph & strong): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
881 * texinfo/texinfo.texi (Smallcaps): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
882 * texinfo/texinfo.texi (Fonts): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
883 * texinfo/texinfo.texi (Quotations and Examples): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
884 * texinfo/texinfo.texi (Block Enclosing Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
885 * texinfo/texinfo.texi (quotation): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
886 * texinfo/texinfo.texi (example): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
887 * texinfo/texinfo.texi (verbatim): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
888 * texinfo/texinfo.texi (verbatiminclude): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
889 * texinfo/texinfo.texi (lisp): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
890 * texinfo/texinfo.texi (small): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
891 * texinfo/texinfo.texi (display): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
892 * texinfo/texinfo.texi (format): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
893 * texinfo/texinfo.texi (exdent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
894 * texinfo/texinfo.texi (flushleft & flushright): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
895 * texinfo/texinfo.texi (noindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
896 * texinfo/texinfo.texi (indent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
897 * texinfo/texinfo.texi (cartouche): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
898 * texinfo/texinfo.texi (Lists and Tables): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
899 * texinfo/texinfo.texi (Introducing Lists): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
900 * texinfo/texinfo.texi (itemize): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
901 * texinfo/texinfo.texi (enumerate): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
902 * texinfo/texinfo.texi (Two-column Tables): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
903 * texinfo/texinfo.texi (table): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
904 * texinfo/texinfo.texi (ftable vtable): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
905 * texinfo/texinfo.texi (itemx): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
906 * texinfo/texinfo.texi (Multi-column Tables): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
907 * texinfo/texinfo.texi (Multitable Column Widths): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
908 * texinfo/texinfo.texi (Multitable Rows): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
909 * texinfo/texinfo.texi (Special Displays): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
910 * texinfo/texinfo.texi (Floats): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
911 * texinfo/texinfo.texi (float): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
912 * texinfo/texinfo.texi (caption shortcaption): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
913 * texinfo/texinfo.texi (listoffloats): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
914 * texinfo/texinfo.texi (Images): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
915 * texinfo/texinfo.texi (Image Syntax): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
916 * texinfo/texinfo.texi (Image Scaling): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
917 * texinfo/texinfo.texi (Footnotes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
918 * texinfo/texinfo.texi (Footnote Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
919 * texinfo/texinfo.texi (Footnote Styles): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
920 * texinfo/texinfo.texi (Indices): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
921 * texinfo/texinfo.texi (Index Entries): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
922 * texinfo/texinfo.texi (Predefined Indices): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
923 * texinfo/texinfo.texi (Indexing Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
924 * texinfo/texinfo.texi (Combining Indices): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
925 * texinfo/texinfo.texi (syncodeindex): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
926 * texinfo/texinfo.texi (synindex): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
927 * texinfo/texinfo.texi (New Indices): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
928 * texinfo/texinfo.texi (Insertions): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
929 * texinfo/texinfo.texi (Atsign Braces Comma): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
930 * texinfo/texinfo.texi (Inserting an Atsign): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
931 * texinfo/texinfo.texi (Inserting Braces): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
932 * texinfo/texinfo.texi (Inserting a Comma): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
933 * texinfo/texinfo.texi (Inserting Quote Characters): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
934 * texinfo/texinfo.texi (Inserting Space): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
935 * texinfo/texinfo.texi (Not Ending a Sentence): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
936 * texinfo/texinfo.texi (Ending a Sentence): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
937 * texinfo/texinfo.texi (Multiple Spaces): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
938 * texinfo/texinfo.texi (frenchspacing): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
939 * texinfo/texinfo.texi (dmn): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
940 * texinfo/texinfo.texi (Inserting Accents): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
941 * texinfo/texinfo.texi (Inserting Quotation Marks): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
942 * texinfo/texinfo.texi (Dots Bullets): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
943 * texinfo/texinfo.texi (dots): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
944 * texinfo/texinfo.texi (bullet): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
945 * texinfo/texinfo.texi (TeX and copyright): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
946 * texinfo/texinfo.texi (tex): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
947 * texinfo/texinfo.texi (copyright symbol): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
948 * texinfo/texinfo.texi (registered symbol): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
949 * texinfo/texinfo.texi (euro): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
950 * texinfo/texinfo.texi (pounds): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
951 * texinfo/texinfo.texi (textdegree): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
952 * texinfo/texinfo.texi (minus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
953 * texinfo/texinfo.texi (geq leq): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
954 * texinfo/texinfo.texi (math): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
955 * texinfo/texinfo.texi (Click Sequences): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
956 * texinfo/texinfo.texi (Glyphs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
957 * texinfo/texinfo.texi (Glyphs Summary): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
958 * texinfo/texinfo.texi (result): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
959 * texinfo/texinfo.texi (expansion): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
960 * texinfo/texinfo.texi (Print Glyph): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
961 * texinfo/texinfo.texi (Error Glyph): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
962 * texinfo/texinfo.texi (Equivalence): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
963 * texinfo/texinfo.texi (Point Glyph): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
964 * texinfo/texinfo.texi (Breaks): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
965 * texinfo/texinfo.texi (Break Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
966 * texinfo/texinfo.texi (Line Breaks): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
967 * texinfo/texinfo.texi (- and hyphenation): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
968 * texinfo/texinfo.texi (allowcodebreaks): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
969 * texinfo/texinfo.texi (w): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
970 * texinfo/texinfo.texi (tie): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
971 * texinfo/texinfo.texi (sp): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
972 * texinfo/texinfo.texi (page): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
973 * texinfo/texinfo.texi (group): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
974 * texinfo/texinfo.texi (need): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
975 * texinfo/texinfo.texi (Definition Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
976 * texinfo/texinfo.texi (Def Cmd Template): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
977 * texinfo/texinfo.texi (Def Cmd Continuation Lines): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
978 * texinfo/texinfo.texi (Optional Arguments): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
979 * texinfo/texinfo.texi (deffnx): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
980 * texinfo/texinfo.texi (Def Cmds in Detail): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
981 * texinfo/texinfo.texi (Functions Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
982 * texinfo/texinfo.texi (Variables Commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
983 * texinfo/texinfo.texi (Typed Functions): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
984 * texinfo/texinfo.texi (Typed Variables): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
985 * texinfo/texinfo.texi (Data Types): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
986 * texinfo/texinfo.texi (Abstract Objects): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
987 * texinfo/texinfo.texi (Object-Oriented Variables): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
988 * texinfo/texinfo.texi (Object-Oriented Methods): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
989 * texinfo/texinfo.texi (Defining Macros): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
990 * texinfo/texinfo.texi (Invoking Macros): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
991 * texinfo/texinfo.texi (Macro Details): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
992 * texinfo/texinfo.texi (alias): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
993 * texinfo/texinfo.texi (definfoenclose): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
994 * texinfo/texinfo.texi (Hardcopy): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
995 * texinfo/texinfo.texi (Use TeX): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
996 * texinfo/texinfo.texi (Format with tex/texindex): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
997 * texinfo/texinfo.texi (Format with texi2dvi): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
998 * texinfo/texinfo.texi (Print with lpr): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
999 * texinfo/texinfo.texi (Within XEmacs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1000 * texinfo/texinfo.texi (Texinfo Mode Printing): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1001 * texinfo/texinfo.texi (Compile-Command): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1002 * texinfo/texinfo.texi (Requirements Summary): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1003 * texinfo/texinfo.texi (Preparing for TeX): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1004 * texinfo/texinfo.texi (Overfull hboxes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1005 * texinfo/texinfo.texi (smallbook): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1006 * texinfo/texinfo.texi (A4 Paper): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1007 * texinfo/texinfo.texi (pagesizes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1008 * texinfo/texinfo.texi (Cropmarks and Magnification): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1009 * texinfo/texinfo.texi (PDF Output): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1010 * texinfo/texinfo.texi (Obtaining TeX): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1011 * texinfo/texinfo.texi (Creating and Installing Info Files): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1012 * texinfo/texinfo.texi (Creating an Info File): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1013 * texinfo/texinfo.texi (makeinfo advantages): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1014 * texinfo/texinfo.texi (Invoking makeinfo): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1015 * texinfo/texinfo.texi (makeinfo options): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1016 * texinfo/texinfo.texi (Pointer Validation): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1017 * texinfo/texinfo.texi (makeinfo in XEmacs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1018 * texinfo/texinfo.texi (texinfo-format commands): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1019 * texinfo/texinfo.texi (Batch Formatting): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1020 * texinfo/texinfo.texi (Tag and Split Files): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1021 * texinfo/texinfo.texi (Installing an Info File): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1022 * texinfo/texinfo.texi (Directory File): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1023 * texinfo/texinfo.texi (New Info File): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1024 * texinfo/texinfo.texi (Other Info Directories): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1025 * texinfo/texinfo.texi (Installing Dir Entries): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1026 * texinfo/texinfo.texi (Invoking install-info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1027 * texinfo/texinfo.texi (Generating HTML): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1028 * texinfo/texinfo.texi (HTML Translation): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1029 * texinfo/texinfo.texi (HTML Splitting): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1030 * texinfo/texinfo.texi (HTML CSS): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1031 * texinfo/texinfo.texi (HTML Xref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1032 * texinfo/texinfo.texi (HTML Xref Link Basics): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1033 * texinfo/texinfo.texi (HTML Xref Node Name Expansion): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1034 * texinfo/texinfo.texi (HTML Xref Command Expansion): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1035 * texinfo/texinfo.texi (HTML Xref 8-bit Character Expansion): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1036 * texinfo/texinfo.texi (HTML Xref Mismatch): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1037 * texinfo/texinfo.texi (Command List): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1038 * texinfo/texinfo.texi (Command Syntax): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1039 * texinfo/texinfo.texi (Tips): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1040 * texinfo/texinfo.texi (Sample Texinfo Files): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1041 * texinfo/texinfo.texi (Short Sample Texinfo File): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1042 * texinfo/texinfo.texi (GNU Sample Texts): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1043 * texinfo/texinfo.texi (Invoking sample): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1044 * texinfo/texinfo.texi (GNU Free Documentation License): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1045 * texinfo/texinfo.texi (Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1046 * texinfo/texinfo.texi (Verbatim Copying License): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1047 * texinfo/texinfo.texi (All-permissive Copying License): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1048 * texinfo/texinfo.texi (Include Files): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1049 * texinfo/texinfo.texi (Using Include Files): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1050 * texinfo/texinfo.texi (texinfo-multiple-files-update): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1051 * texinfo/texinfo.texi (Include Files Requirements): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1052 * texinfo/texinfo.texi (Sample Include File): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1053 * texinfo/texinfo.texi (Include Files Evolution): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1054 * texinfo/texinfo.texi (Headings): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1055 * texinfo/texinfo.texi (Headings Introduced): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1056 * texinfo/texinfo.texi (Heading Format): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1057 * texinfo/texinfo.texi (Heading Choice): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1058 * texinfo/texinfo.texi (Custom Headings): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1059 * texinfo/texinfo.texi (Catching Mistakes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1060 * texinfo/texinfo.texi (makeinfo Preferred): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1061 * texinfo/texinfo.texi (Debugging with Info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1062 * texinfo/texinfo.texi (Debugging with TeX): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1063 * texinfo/texinfo.texi (Using texinfo-show-structure): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1064 * texinfo/texinfo.texi (Using occur): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1065 * texinfo/texinfo.texi (Running Info-Validate): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1066 * texinfo/texinfo.texi (Using Info-validate): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1067 * texinfo/texinfo.texi (Unsplit): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1068 * texinfo/texinfo.texi (Tagifying): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1069 * texinfo/texinfo.texi (Splitting): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1070 * texinfo/texinfo.texi (Refilling Paragraphs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1071 * texinfo/texinfo.texi (Command and Variable Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1072 * texinfo/texinfo.texi (General Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1073 * texinfo/version.texi: New file. |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1074 Sync with FSF 23.1.92. Make new directory to hold the files needed |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1075 to generate texinfo.info, since there are three such files now. |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1076 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1077 2010-02-19 Ben Wing <ben@xemacs.org> |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1078 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1079 * Makefile: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1080 * Makefile (src_files1): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1081 * Makefile (DIR): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1082 * Makefile (texinfo-srcs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1083 * Makefile ($(INFODIR)/widget.info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1084 * Makefile ($(INFODIR)/texinfo.info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1085 * Makefile (.PHONY): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1086 * Makefile (texinfo.dvi): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1087 * Makefile (texinfo.pdf): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1088 * Makefile ($(HTMLDIR)/widget.html): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1089 * Makefile ($(HTMLDIR)/texinfo.html): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1090 Incorporate texinfo.texi moving to a subdirectory texinfo/. |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1091 Do some tricks to reduce the amount of duplication while still |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1092 maintaining compatible with non-GNU make (at least, with |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1093 Solaris make). |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1094 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1095 * doclicense.texi: New file. |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1096 * info.texi: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1097 * info.texi (Top): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1098 * info.texi (Getting Started): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1099 * info.texi (Help-Small-Screen): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1100 * info.texi (Help): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1101 * info.texi (Help-P): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1102 * info.texi (Help-^L): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1103 * info.texi (Help-Inv): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1104 * info.texi (Help-]): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1105 * info.texi (Help-M): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1106 * info.texi (Help-FOO): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1107 * info.texi (Help-Xref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1108 * info.texi (Help-Int): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1109 * info.texi (Help-Q): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1110 * info.texi (Advanced): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1111 * info.texi (Search Text): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1112 * info.texi (Search Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1113 * info.texi (Go to node): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1114 * info.texi (Choose menu subtopic): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1115 * info.texi (Create Info buffer): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1116 * info.texi (XEmacs Info Variables): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1117 * info.texi (Expert Info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1118 * info.texi (Add): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1119 * info.texi (Menus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1120 * info.texi (Cross-refs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1121 * info.texi (Help-Cross): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1122 * info.texi (Tags): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1123 * info.texi (Checking): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1124 * info.texi (Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1125 * texinfo.tex: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1126 * texinfo.tex (paragraphindent{%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1127 * texinfo.tex (sectionheading will have): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1128 * texinfo.tex (chapterzzz{#3}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1129 * texinfo.tex (subsubsection = \numberedsubsubsec): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1130 * texinfo.tex (subsubsection = \appendixsubsubsec): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1131 * texinfo.tex (subsubsection = \unnumberedsubsubsec): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1132 * texinfo.tex (sectionheading{#1}{sec}{Ynumbered}{\the\chapno.\the\secno}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1133 * texinfo.tex (sectionheading{#1}{sec}{Yappendix}{\appendixletter.\the\secno}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1134 * texinfo.tex (sectionheading{#1}{sec}{Ynothing}{\the\unnumberedno.\the\secno}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1135 * texinfo.tex (sectionheading{#1}{subsec}{Ynumbered}{\the\chapno.\the\secno.\the\subsecno}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1136 * texinfo.tex (sectionheading{#1}{subsec}{Yappendix}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1137 * texinfo.tex (sectionheading{#1}{subsec}{Ynothing}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1138 * texinfo.tex (sectionheading{#1}{subsubsec}{Ynumbered}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1139 * texinfo.tex (sectionheading{#1}{subsubsec}{Yappendix}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1140 * texinfo.tex (sectionheading{#1}{subsubsec}{Ynothing}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1141 * texinfo.tex (sectionheading{#1}{subsubsec}{Yomitfromtoc}{}): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1142 * texinfo.tex (sectionheading to do the printing.): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1143 * texinfo.tex (sectionlevel}{#1}{#4}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1144 * texinfo.tex (sectionheading, q.v.): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1145 Sync with FSF 23.1.92. |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
1146 |
5028
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1147 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
|
1148 |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1149 * 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
|
1150 (Legacy Versions): Update next pointer. |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1151 (Bleeding Edge): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1152 (Q11.0.1): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1153 (Q11.0.2): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1154 (Q11.0.3): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1155 (Q11.0.4): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1156 (Q11.0.5): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1157 (Q11.1.1): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1158 (Q11.2.1): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1159 (Q11.2.2): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1160 (Q11.2.3): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1161 (Q11.2.4): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1162 (Q11.2.5): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1163 (Q11.2.6): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1164 (Q11.2.7): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
1165 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
|
1166 |
5011 | 1167 2010-02-08 Ben Wing <ben@xemacs.org> |
1168 | |
1169 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
1170 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
1171 DEC Alpha is hardly the only 64-bit processor any more. | |
1172 Also, ERROR_CHECK_TYPECHECK is now ERROR_CHECK_TYPES. | |
1173 | |
5007
bb6a375da086
Relicense J. Kean Johnston's emodules.texi as GPL v2 or later. See
Jerry James <james@xemacs.org>
parents:
4984
diff
changeset
|
1174 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
|
1175 |
bb6a375da086
Relicense J. Kean Johnston's emodules.texi as GPL v2 or later. See
Jerry James <james@xemacs.org>
parents:
4984
diff
changeset
|
1176 * 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
|
1177 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
|
1178 |
4984 | 1179 2010-02-05 Ben Wing <ben@xemacs.org> |
1180 | |
1181 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
1182 * internals/internals.texi (Conversion to and from External Data): | |
1183 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
1184 Correct names of files renamed common -> xlike. | |
1185 Fix up outdated explanation of old-style DFC conversion macros. | |
1186 Add a section on the different types of character and their uses, | |
1187 taken from a long comment in lisp.h. | |
1188 | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1189 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
|
1190 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1191 * internals/internals.texi (lrecords): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1192 * internals/internals.texi (The DFC API): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1193 * 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
|
1194 * internals/internals.texi (Mule-izing Code): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1195 * 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
|
1196 * internals/internals.texi (Ben's README): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1197 * 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
|
1198 * emodules.texi (Defining Variables): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1199 Rename: |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1200 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1201 write_c_string -> write_cistring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1202 build_intstring -> build_istring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1203 build_string -> build_cistring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1204 build_ext_string -> build_extstring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1205 make_ext_string -> make_extstring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1206 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
|
1207 intern_int -> intern_istring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1208 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1209 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
|
1210 |
4917 | 1211 2010-02-03 Ben Wing <ben@xemacs.org> |
1212 | |
1213 * internals/internals.texi (Top): | |
1214 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
1215 * internals/internals.texi (Ben's README): | |
1216 * internals/internals.texi (Consoles; Devices; Frames; Windows): | |
1217 * internals/internals.texi (Window Hierarchy): | |
1218 * internals/internals.texi (The Window Object): | |
1219 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
1220 * internals/internals.texi (Window-System Support): | |
1221 * internals/internals.texi (Creating a Window-System Type): | |
1222 * internals/internals.texi (Discussion -- Garbage Collection): | |
1223 Update the part at the top about how to maintain the file with | |
1224 more tips. | |
1225 | |
1226 Add a chapter on "window-system support" describing in a general | |
1227 way how the support for different window systems/device types | |
1228 works, including the separation between device-independent and | |
1229 device-dependent parts, device methods, the specific device types | |
1230 and the "xlike" pseudo-type. | |
1231 | |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1232 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
|
1233 |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1234 * xemacs/programs.texi (Defuns): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1235 * 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
|
1236 (Setting Variables, Default Value): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1237 * lispref/symbols.texi (Definitions): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1238 * 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
|
1239 * lispref/positions.texi (Excursions, Narrowing): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1240 * 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
|
1241 * 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
|
1242 * lispref/lispref.texi (Top): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1243 * 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
|
1244 * lispref/help.texi (Help Functions): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1245 * 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
|
1246 (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
|
1247 * lispref/frames.texi (Input Focus): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1248 * 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
|
1249 (Special Operators, Quoting): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1250 * lispref/edebug-inc.texi (Instrumenting) |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1251 (Specification Examples): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1252 * 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
|
1253 * 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
|
1254 (Conditionals, Combining Conditions, Iteration): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1255 (Catch and Throw, Handling Errors): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1256 * 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
|
1257 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
|
1258 |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1259 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
|
1260 macros I don't understand. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1261 |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1262 * 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
|
1263 example here. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1264 * lispref/positions.texi (Excursions): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1265 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
|
1266 forms. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1267 * 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
|
1268 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
|
1269 18. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1270 * lispref/specifiers.texi (Adding Specifications): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1271 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
|
1272 * lispref/windows.texi (Window Configurations) |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1273 (Selecting Windows): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1274 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
|
1275 are macros, not special operators. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1276 |
4894
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4885
diff
changeset
|
1277 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
|
1278 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4885
diff
changeset
|
1279 * 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
|
1280 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
|
1281 * 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
|
1282 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
|
1283 |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1284 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
|
1285 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1286 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
|
1287 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
|
1288 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
|
1289 start. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1290 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1291 * lispref/text.texi (Columns): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1292 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
|
1293 (Registers): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1294 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
|
1295 * 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
|
1296 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
|
1297 general are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1298 (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
|
1299 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
|
1300 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
|
1301 (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
|
1302 values in syntax tables. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1303 * 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
|
1304 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
|
1305 are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1306 * 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
|
1307 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
|
1308 * 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
|
1309 (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
|
1310 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
|
1311 integers are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1312 * 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
|
1313 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
|
1314 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
|
1315 (Equality Predicates): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1316 (Range Table Type): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1317 (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
|
1318 fixed-precision integer. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1319 (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
|
1320 * 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
|
1321 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
|
1322 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
|
1323 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
|
1324 (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
|
1325 Lisp compatibility issues. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1326 (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
|
1327 * 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
|
1328 * 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
|
1329 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
|
1330 general are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1331 |
4803
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
1332 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
|
1333 |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
1334 * 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
|
1335 valgrind configuration and use. |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
1336 |
4790
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
1337 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
|
1338 |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
1339 * 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
|
1340 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
|
1341 * 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
|
1342 (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
|
1343 (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
|
1344 |
4771
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1345 2009-12-10 Jerry James <james@xemacs.org> |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1346 |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1347 * lispref/processes.texi (Functions that Create Subprocesses): Refer |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1348 to etags instead of the obsolete wakeup program. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1349 |
4769
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
1350 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
|
1351 |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
1352 * 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
|
1353 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
|
1354 (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
|
1355 |
4820
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
1356 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
|
1357 |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
1358 * 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
|
1359 * 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
|
1360 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
|
1361 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
|
1362 backward-compatiblity. |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
1363 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1364 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
|
1365 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1366 * 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
|
1367 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
|
1368 (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
|
1369 deleted files. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1370 (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
|
1371 (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
|
1372 NeXTstep. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1373 * 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
|
1374 old unsupported systems. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1375 * 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
|
1376 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
|
1377 * 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
|
1378 Ditto. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1379 |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
1380 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
|
1381 |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
1382 * 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
|
1383 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
|
1384 |
4708
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
1385 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
|
1386 |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
1387 * 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
|
1388 "(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
|
1389 (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
|
1390 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
|
1391 * 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
|
1392 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
|
1393 * 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
|
1394 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
|
1395 |
4678
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1396 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
|
1397 |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1398 * lispref/numbers.texi (Bigfloat Basics): |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1399 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
|
1400 off in mid-sentence). |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1401 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
1402 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
|
1403 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
1404 * cl.texi (Organization): |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
1405 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
|
1406 |
4668
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
1407 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
|
1408 |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
1409 * 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
|
1410 Small improvements. |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
1411 |
4666
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
1412 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
|
1413 |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
1414 * 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
|
1415 from XftFont (now deprecated) to FcFontName. |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
1416 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
|
1417 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
1418 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
|
1419 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
1420 * 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
|
1421 |
4632
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1422 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
|
1423 |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1424 * internals/internals.texi: s/@urlref/@uref/g. |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1425 (Lstreams): Add urefs to David Beasley tutorials. |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1426 |
4658
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
1427 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
|
1428 |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
1429 * 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
|
1430 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
|
1431 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
|
1432 |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
1433 * 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
|
1434 * 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
|
1435 |
4625
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1436 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
|
1437 |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1438 * 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
|
1439 (Top): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1440 (Editing): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1441 (Q3.0.11): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1442 (Q3.1.1): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1443 Fix up Next/Prev/Menu references. |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1444 |
4601
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1445 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
|
1446 |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1447 * xemacs/xemacs.texi (Top): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1448 * xemacs/misc.texi (Emulation): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1449 * xemacs/building.texi (Lisp Libraries): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1450 (Compiling Libraries): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1451 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
|
1452 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
|
1453 which is no longer available. |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1454 |
4509
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1455 2008-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1456 |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1457 * 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
|
1458 antialiased fonts. |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1459 |
4505
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
1460 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
|
1461 |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
1462 * 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
|
1463 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
|
1464 (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
|
1465 alphabet. |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
1466 |
4488 | 1467 2008-07-26 Ville Skyttä <scop@xemacs.org> |
1468 | |
1469 * xemacs/custom.texi, xemacs/frame.texi, xemacs/mule.texi, | |
1470 xemacs/packages.texi, xemacs/programs.texi, xemacs/trouble.texi: | |
1471 Spelling fixes. | |
1472 | |
4486
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1473 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
|
1474 |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1475 * lispref/objects.texi (Character Type): |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1476 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
|
1477 hexadecimal constant. |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1478 |
4485
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
1479 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
|
1480 |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
1481 * lispref/variables.texi (Extent): |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
1482 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
|
1483 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
|
1484 |
4472
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
1485 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
|
1486 |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
1487 * 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
|
1488 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
|
1489 commit. |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
1490 |
4471
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
1491 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
|
1492 |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
1493 * 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
|
1494 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
|
1495 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
|
1496 #'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
|
1497 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
|
1498 |
4466
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
1499 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
|
1500 |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
1501 * 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
|
1502 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
|
1503 #'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
|
1504 |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
1505 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
|
1506 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
1507 * 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
|
1508 Describe --script, -script. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
1509 |
4427
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1510 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
|
1511 |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1512 * 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
|
1513 (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
|
1514 New nodes. |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1515 (Top): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1516 (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
|
1517 (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
|
1518 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
|
1519 |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1520 (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
|
1521 |
4329
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
1522 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
|
1523 |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
1524 * 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
|
1525 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
|
1526 |
4320 | 1527 2007-12-10 Ville Skyttä <scop@xemacs.org> |
1528 | |
1529 * internals/internals.texi: Spelling fixes. | |
1530 | |
4313
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
1531 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
|
1532 |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
1533 * 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
|
1534 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
|
1535 |
4291 | 1536 2007-11-28 Aidan Kehoe <kehoea@parhasard.net> |
1537 | |
1538 * internals/internals.texi (Ibytes and Ichars): | |
1539 Cross reference to the Mule docs describing these typedefs, | |
1540 instead of saying Not yet documented. | |
1541 | |
4265 | 1542 2007-11-14 Aidan Kehoe <kehoea@parhasard.net> |
1543 | |
1544 * lispref/objects.texi (String Type): | |
1545 Describe how one can include a trailing backslash in a raw string, | |
1546 by means of the Unicode escape syntax. | |
1547 | |
4264 | 1548 2007-11-14 Aidan Kehoe <kehoea@parhasard.net> |
1549 | |
1550 * xemacs/keystrokes.texi (Character Representation): | |
1551 Clarify the description of which characters are displayed as | |
1552 themselves and which as octal escapes bzw. "control" characters | |
1553 with an initial caret. | |
1554 | |
4225 | 1555 2007-10-15 Adrian Aichner <adrian@xemacs.org> |
1556 | |
1557 * Makefile (info_files): Sync nt/xemacs.mak and man/Makefile. | |
1558 Sort enries to easy future syncs. | |
1559 | |
4199 | 1560 2007-09-22 Stephen J. Turnbull <stephen@xemacs.org> |
1561 | |
1562 * lispref/searching.texi (Replacing Match): Document the escapes | |
1563 for changing case in `replace-match'. Document the change to | |
1564 STRBUFFER to permit subexpressions in string replacement. | |
1565 | |
4196 | 1566 2007-09-30 Adrian Aichner <adrian@xemacs.org> |
1567 | |
1568 * Makefile (TEXI2HTML_NOSPLIT): New. | |
1569 * Makefile ($(HTMLDIR)/beta.html): Use TEXI2HTML_NOSPLIT. | |
1570 * Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto. | |
1571 | |
4195 | 1572 2007-09-30 Adrian Aichner <adrian@xemacs.org> |
1573 | |
1574 * Makefile (TEXI2HTML): Refactor TEXI2HTML for use by | |
1575 xemacsweb/Documentation/Makefile. | |
1576 | |
4143 | 1577 2007-08-25 Adrian Aichner <adrian@xemacs.org> |
1578 | |
1579 * internals/internals.texi (Through Version 18): Fix error in | |
1580 Emacs Timeline URL. | |
1581 * internals/internals.texi (Better Rendering Support -- Configuration with the Interim Patches): | |
1582 | |
4039 | 1583 2007-06-27 Aidan Kehoe <kehoea@parhasard.net> |
1584 | |
1585 * lispref/variables.texi (Extent): | |
1586 Mention that lexical scope is available using lexical-let and | |
1587 lexical-let* in cl-macs, instead of ignoring them entirely. | |
1588 | |
3979 | 1589 2007-05-21 Ville Skyttä <scop@xemacs.org> |
1590 | |
1591 * internals/internals.texi: Fix corrupted/oddly encoded chars. | |
1592 * lispref/ldap.texi: Ditto. | |
1593 | |
3975 | 1594 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
1595 | |
1596 * XEmacs 21.5.28 "fuki" is released. | |
1597 | |
3955 | 1598 2007-05-15 Aidan Kehoe <kehoea@parhasard.net> |
1599 | |
1600 * internals/internals.texi: | |
1601 Replace an inaccurate description of the read syntax of a Kanji | |
1602 character with one using the recently-added Unicode escapes. Also | |
1603 update the size of an Ichar; they're now 21-bit integers, not | |
1604 19-bit integers. | |
1605 | |
3930 | 1606 2007-04-30 Stephen J. Turnbull <stephen@xemacs.org> |
1607 | |
1608 * internals/internals.texi (Creating a New Console/Device/Frame Type): | |
1609 Typo fix. | |
1610 | |
3773 | 1611 2007-01-01 Malcolm Purvis <malcolmp@xemacs.org> |
1612 | |
1613 * internals/internals.texi (Ben's README): Use 'grep -F' instead | |
1614 of fgrep. | |
1615 | |
3772 | 1616 2006-11-07 Robert Pluim <rpluim@gmail.com> |
1617 | |
1618 * lispref/os.texi (User Identification): The code uses HOMEPATH, | |
1619 not HOMEDIR. | |
1620 | |
3711 | 1621 2006-11-29 Aidan Kehoe <kehoea@parhasard.net> |
1622 | |
1623 * xemacs/custom.texi (Face Resources): | |
1624 Mention that the user should use full XLFD forms for specifying | |
1625 fonts, and that Mule builds reject the short forms by | |
1626 default. Also mention the work-around to the latter design choice | |
1627 that was implemented for Ilya. | |
1628 | |
3685 | 1629 2006-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
1630 | |
1631 * internals/internals.texi | |
1632 (Better Rendering Support -- Configuration with the Interim Patches): | |
1633 Fix examples of configuration via X resources. | |
1634 (Better Rendering Support -- Implementation): Fix description of | |
1635 xftFont resources, introduce fcFontName resource. | |
1636 | |
3674 | 1637 2006-11-11 Aidan Kehoe <kehoea@parhasard.net> |
1638 | |
1639 * lispref/faces.texi (Face Convenience Functions): | |
1640 Add information on how to specify a face's font for a given Mule | |
1641 charset. | |
1642 | |
1643 * lispref/specifiers.texi (Specifiers): | |
1644 * lispref/specifiers.texi (Simple Specifier Usage): | |
1645 * lispref/specifiers.texi (Specifiers In-Depth): | |
1646 * lispref/specifiers.texi (Specifier Tag Functions): | |
1647 * lispref/specifiers.texi (Specifier Instantiation Functions): | |
1648 Update the documentation of specifiers to reflect the new support | |
1649 for Mule character sets and associating tags with them. | |
1650 | |
3543 | 1651 2006-08-05 Aidan Kehoe <kehoea@parhasard.net> |
1652 | |
1653 * lispref/objects.texi (String Type): | |
1654 Give details of the raw string syntax, taken from SXEmacs and | |
1655 Python. | |
1656 | |
3516 | 1657 2006-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
1658 | |
1659 * new-users-guide/edit.texi (Insert): Document bogosity in | |
1660 vendor labeling of DEL key. | |
1661 (Numeric Argument): Remove spurious RETs from keystroke examples. | |
1662 Thanks to Michael C. Wescott <wescott@sc.rr.com>. | |
1663 | |
3510 | 1664 2006-07-16 Aidan Kehoe <kehoea@parhasard.net> |
1665 | |
1666 * xemacs/custom.texi (File Variables): | |
1667 Make it clearer that file variables are buffer-local. | |
1668 * xemacs/custom.texi (Faces): | |
1669 "must be encoding" -> "must be encoded". | |
1670 | |
1671 2006-07-16 Aidan Kehoe <kehoea@parhasard.net> | |
1672 | |
1673 * lispref/variables.texi (Creating Buffer-Local): | |
1674 Mention that buffer-local variables are created when file local | |
1675 variables are set. | |
1676 | |
3496 | 1677 2006-07-08 Aidan Kehoe <kehoea@parhasard.net> |
1678 | |
1679 * internals/internals.texi (Internal String Encoding): | |
1680 Mention that UTF-8 would be a reasonable alternative encoding. | |
1681 * internals/internals.texi (Internal Character Encoding): | |
1682 Re-arrange the description of characters to deal with 21-bit | |
1683 characters. | |
1684 | |
3439 | 1685 2006-06-03 Aidan Kehoe <kehoea@parhasard.net> |
1686 | |
1687 * lispref/mule.texi (CCL Syntax): | |
1688 * lispref/mule.texi (CCL Statements): | |
1689 Describe the mule-to-unicode and unicode-to-mule statements; | |
1690 rename the section they are described in. | |
1691 | |
3404 | 1692 2006-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
1693 | |
1694 * xemacs-faq.texi (Q2.2.3): New node. | |
1695 (Q2.2.2, Q2.3.1): Fix navigation references. | |
1696 (Top, Installation): Add to menus. | |
1697 | |
3402 | 1698 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
1699 | |
1700 * XEmacs 21.5.27 "fiddleheads" is released. | |
1701 | |
3388 | 1702 2006-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
1703 | |
1704 * beta.texi (Building Beta XEmacs): Rename 'Compiling' -> 'Building'. | |
1705 (Reporting Problems): Improve it, make it a top-level node, add | |
1706 some vertical spacing to make node breaks more visible. | |
1707 (Getting the Source): Flesh it out a bit and move it to the | |
1708 Building Beta XEmacs node. | |
1709 | |
3387 | 1710 2006-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
1711 | |
1712 * xemacs/custom.texi (Xft Font Customization): New node. | |
1713 (Faces): Create menu, add new node. | |
1714 * xemacs/xemacs.texi (Top): add new node to detail menu. | |
1715 | |
3367 | 1716 2006-04-29 Aidan Kehoe <kehoea@parhasard.net> |
1717 | |
1718 * lispref/objects.texi (Character Type): | |
1719 Document the Unicode syntax for characters in characters and | |
1720 strings. | |
1721 | |
3354 | 1722 2006-04-23 Stephen J. Turnbull <stephen@xemacs.org> |
1723 | |
1724 * internals/internals.texi: Run texinfo-master-menu. | |
1725 (Creating a New Console/Device/Frame Type): New node. | |
1726 | |
3323 | 1727 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
1728 | |
1729 * XEmacs 21.5.26 "endive" is released. | |
1730 | |
3322 | 1731 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
1732 | |
1733 Miscellaneous doc cleanup, parts 2-4: move CHANGES-msw, | |
1734 TODO.ben-mule-21-5, README.ben-mule-21-5, and | |
1735 README.ben-separate-stderr to Internals Manual. | |
1736 | |
1737 * internals/internals.texi (Ben's TODO list): | |
1738 (CHANGES from 21.4-windows branch): | |
1739 (Ben's README): | |
1740 (Ben's separate stderr notes): | |
1741 New nodes. | |
1742 | |
1743 (Subprocesses): Add "Ben's separate stderr notes" to menu. | |
1744 (The Great Mule Merge of March 2002): Add "Ben's TODO list" and | |
1745 "Ben's README" to menu. | |
1746 (Interface to MS Windows): Add "CHANGES from 21.4-windows branch" | |
1747 to menu. | |
1748 | |
1749 (Top): Update detailmenu. | |
1750 | |
1751 2006-03-30 Stephen J. Turnbull <stephen@xemacs.org> | |
1752 | |
1753 Miscellaneous doc cleanup, part 1: move CHANGES-ben-mule to | |
1754 Internals Manual. | |
1755 | |
1756 * internals/internals.texi (The Great Mule Merge of March 2002): | |
1757 Insert CHANGES-ben-mule here, and reformat for Texinfo. | |
1758 | |
3260 | 1759 2006-02-26 Mike Sperber <mike@xemacs.org> |
1760 | |
1761 * xemacs/building.texi (External Lisp): Document that `run-lisp' | |
1762 needs the os-utils package. | |
1763 | |
3259 | 1764 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
1765 | |
1766 * XEmacs 21.5.25 "eggplant" is released. | |
1767 | |
3179 | 1768 2005-11-25 Mike Sperber <mike@xemacs.org> |
1769 | |
1770 * lispref/packaging.texi (The User View): | |
1771 * xemacs/startup.texi (Startup Paths): | |
1772 * xemacs-faq.texi (Q2.1.6): Document new configure options and | |
1773 environment variables for | |
1774 package locations. | |
1775 | |
3171 | 1776 2005-12-24 Aidan Kehoe <kehoea@parhasard.net> |
1777 | |
1778 * xemacs/keystrokes.texi (Keystrokes): | |
1779 Add new node on keyboards with which one can't type Latin. | |
1780 * xemacs/keystrokes.texi (Non-Latin keyboards): | |
1781 Describe the support for falling back to a US key layout on | |
1782 keyboards where typing the Roman alphabet is difficult. | |
1783 | |
3150 | 1784 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
1785 | |
1786 * XEmacs 21.5.24 "dandelion" is released. | |
1787 | |
3147 | 1788 2005-12-09 Malcolm Purvis <malcolmp@xemacs.org> |
1789 | |
1790 * internals/internals.texi (The configure Script): Documented | |
1791 more fully the behaviour of complex options. Provided examples. | |
1792 | |
3128 | 1793 2005-12-03 Adrian Aichner <adrian@xemacs.org> |
1794 | |
1795 * custom.texi (Declaring Variables): Typo fixes. | |
1796 | |
3111 | 1797 2005-11-29 Stephen J. Turnbull <stephen@xemacs.org> |
1798 | |
1799 * xemacs/custom.texi (Faces): Describe some of the more important | |
1800 font naming syntaxes under `set-face-font'. Fix a typo. | |
1801 | |
3094 | 1802 2005-11-22 Stephen J. Turnbull <stephen@xemacs.org> |
1803 | |
1804 * internals/internals.texi (Working with Lisp Objects): Explain | |
1805 better why DEFSYMBOL is usually preferable to intern. | |
1806 | |
3073 | 1807 2005-11-08 Malcolm Purvis <malcolmp@xemacs.org> |
1808 | |
1809 * internals/internals.texi (The configure Script): Added the | |
1810 definition of the new macro XE_HELP_SUBSECTION. | |
1811 | |
3062 | 1812 2005-11-13 Ben Wing <ben@xemacs.org> |
1813 | |
1814 * Makefile: | |
1815 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
1816 Do some refactoring for cleanliness. | |
1817 | |
3059 | 1818 2005-11-13 Ben Wing <ben@xemacs.org> |
1819 | |
1820 * internals/internals.texi (Top): | |
1821 * internals/internals.texi (CVS Techniques): | |
1822 * internals/internals.texi (Creating a Branch): | |
1823 * internals/internals.texi (Merging a Branch into the Trunk): | |
1824 Add node on Creating a Branch. Update info concerning problems | |
1825 with rtag on symlinks. (#### Is this still valid?) | |
1826 | |
3031 | 1827 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
1828 | |
1829 * XEmacs 21.5.23 "daikon" is released. | |
1830 | |
3018 | 1831 2005-10-20 Malcolm Purvis <malcolmp@xemacs.org> |
1832 | |
1833 * xemacs-faq.texi (Q1.2.2): | |
1834 * xemacs-faq.texi (Q2.1.1): | |
1835 * xemacs-faq.texi (Q2.1.6): | |
1836 * xemacs-faq.texi (Q2.2.1): | |
1837 * xemacs-faq.texi (Q2.3.6): | |
1838 * xemacs-faq.texi (Q2.4.3): | |
1839 * xemacs-faq.texi (Q2.4.4): | |
1840 * xemacs-faq.texi (Q2.4.7): | |
1841 * xemacs-faq.texi (Q5.3.3): | |
1842 * xemacs-faq.texi (Q6.0.8): | |
1843 * xemacs-faq.texi (Q7.2.1): | |
1844 Add 21.5 specific examples of configure options in addition to the | |
1845 existing 21.4 ones. | |
1846 | |
3003 | 1847 2005-10-15 Malcolm Purvis <malcolmp@xemacs.org> |
1848 | |
1849 * internals/internals.texi: "API's" -> "APIs". This fixes | |
1850 problems generating dvi and pdf versions. | |
1851 * internals/internals.texi (The configure Script): | |
1852 Describe the use of XE_MERGED_ARG. | |
1853 | |
2995 | 1854 2005-10-13 Ben Wing <ben@xemacs.org> |
1855 | |
1856 * xemacs-faq.texi (Top): | |
1857 * xemacs-faq.texi (External Subsystems): | |
1858 * xemacs-faq.texi (Q5.4.4): | |
1859 * xemacs-faq.texi (Q5.4.5): | |
1860 * xemacs-faq.texi (Q5.4.6): | |
1861 Add question about need to run `rebaseall' under Cygwin. | |
1862 | |
2972 | 1863 2005-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
1864 | |
1865 * emodules.texi (Distribution with XEmacs): New node describing | |
1866 organization of module-related code in top-level configure.ac and | |
1867 src/Makefile.in.in. | |
1868 | |
2960 | 1869 2005-09-27 Adrian Aichner <adrian@xemacs.org> |
1870 | |
1871 * lispref/compile.texi (Compilation Options): Lowercase SYMBOL | |
1872 argument in `byte-compile-print-gensym' documentation, as | |
1873 suggested by Stephen. | |
1874 | |
2955 | 1875 2005-09-27 Adrian Aichner <adrian@xemacs.org> |
1876 | |
1877 * lispref/packaging.texi: Get file to compile with teinfmt.el. | |
1878 * lispref/packaging.texi (Packaging): Ditto. | |
1879 * lispref/packaging.texi (Package Overview): Ditto. | |
1880 * lispref/packaging.texi (The User View): Ditto. | |
1881 * lispref/packaging.texi (The Library Maintainer View): Ditto. | |
1882 * lispref/packaging.texi (Infrastructure): Ditto. | |
1883 * lispref/packaging.texi (Obtaining): Ditto. | |
1884 * lispref/packaging.texi (Local.rules File): Ditto. | |
1885 * lispref/packaging.texi (package-info.in): Ditto. | |
1886 * lispref/packaging.texi (Makefile): Ditto. | |
1887 * lispref/packaging.texi (Documenting Packages): Ditto. | |
1888 | |
1889 2005-09-27 Adrian Aichner <adrian@xemacs.org> | |
1890 | |
1891 * internals/internals.texi (A Summary of the Various XEmacs | |
1892 Modules): Get file to compile with texinfmt.el. | |
1893 * internals/internals.texi (Windows Build Flags): Ditto. | |
1894 | |
2953 | 1895 2005-09-26 Ben Wing <ben@xemacs.org> |
1896 | |
1897 * lispref/glyphs.texi (Images): | |
1898 * lispref/glyphs.texi (Image Instantiators): | |
1899 * lispref/glyphs.texi (Image Instantiator Formats): | |
1900 * lispref/glyphs.texi (Image Instances): | |
1901 * lispref/glyphs.texi (Image Instance Functions): | |
1902 * lispref/glyphs.texi (Creating Glyphs): | |
1903 * lispref/glyphs.texi (Lisp API to Native Widgets): | |
1904 * lispref/glyphs.texi (Glyph Properties): | |
1905 * lispref/glyphs.texi (Glyph Examples): | |
1906 * lispref/lispref.texi (Top): | |
1907 * lispref/specifiers.texi (Specifiers): | |
1908 * lispref/specifiers.texi (Introduction to Specifiers): | |
1909 * lispref/specifiers.texi (Simple Specifier Usage): | |
1910 * lispref/specifiers.texi (Specifiers In-Depth): | |
1911 * lispref/specifiers.texi (Specifier Instantiation): | |
1912 * lispref/specifiers.texi (Retrieving Specifications): | |
1913 * lispref/specifiers.texi (Specifier Tag Functions): | |
1914 * lispref/specifiers.texi (Specifier Validation Functions): | |
1915 Use "instantiation" not "instancing". Fix some places where | |
1916 "specifier" is used to mean "instantiator". | |
1917 | |
2949 | 1918 2005-09-25 Adrian Aichner <adrian@xemacs.org> |
1919 | |
1920 * lispref/compile.texi (Compilation Options): Supply missing | |
1921 argument to @var{}, using same SYMBOL as in variable docstring of | |
1922 `byte-compile-print-gensym'. | |
1923 | |
2931 | 1924 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
1925 | |
1926 * XEmacs 21.5.22 "cucumber" is released. | |
1927 | |
2867 | 1928 2005-07-20 Didier Verna <didier@xemacs.org> |
1929 | |
1930 * lispref/faces.texi (Basic Face Functions): Rephrase the face | |
1931 aliasing paragraph following a suggestion from Stephen J. | |
1932 Turnbull. | |
1933 | |
2865 | 1934 2005-07-19 Didier Verna <didier@xemacs.org> |
1935 | |
1936 * lispref/faces.texi (Basic Face Functions): Document the face | |
1937 aliasing feature. | |
1938 | |
2862 | 1939 2005-07-17 Aidan Kehoe <kehoea@parhasard.net> |
1940 | |
1941 * lispref/commands.texi (Converting Events): | |
1942 Give details on the deprecated ALLOW-NON-ASCII argument to | |
2865 | 1943 event-to-character, and why you shouldn't use it. |
2862 | 1944 |
2828 | 1945 2005-06-26 Aidan Kehoe <kehoea@parhasard.net> |
1946 | |
2865 | 1947 * lispref/commands.texi (Converting Events): |
2828 | 1948 * lispref/keymaps.texi (Key Sequences): |
1949 Stop pretending ASCII is an eight-bit character set, and remove | |
1950 documentation of event-to-character's vanished fourth argument. | |
1951 | |
1952 * internals/internals.texi (Old Future Work -- Improvements in | |
1953 support for non-ASCII (European) keysyms under X): | |
2865 | 1954 Rename the ascii-character property. |
1955 | |
2818 | 1956 2005-06-19 Aidan Kehoe <kehoea@parhasard.net> |
1957 | |
1958 * lispref/building.texi (Building XEmacs and Object Allocation): | |
2865 | 1959 Pure storage has been gone for half a decade or more. |
1960 * lispref/mule.texi (Internationalization Terminology): | |
1961 Phrase stuff a little more clearly, compare Mule with Unicode. | |
2818 | 1962 * lispref/lispref.texi (Top): |
2865 | 1963 Take out info on pure storage. |
2818 | 1964 |
2791 | 1965 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
1966 | |
1967 * XEmacs 21.5.21 "corn" is released. | |
1968 | |
2769 | 1969 2005-05-10 Aidan Kehoe <kehoea@parhasard.net> |
1970 | |
1971 * xemacs-faq.texi (Q3.2.5): (setq text-mode-hook | |
2865 | 1972 'turn-on-auto-fill) is not a good idea. |
2769 | 1973 |
2768 | 1974 2005-05-10 Aidan Kehoe <kehoea@parhasard.net> |
1975 | |
2865 | 1976 * xemacs/sending.texi (Sending Mail):Document that sendmail.el is |
1977 underfeatured and not getting better anytime soon; suggest using | |
1978 another mailer. | |
2768 | 1979 |
2757 | 1980 2005-05-05 Aidan Kehoe <kehoea@parhasard.net> |
1981 | |
1982 * xemacs/building.texi (Lisp Modes): | |
1983 * xemacs/building.texi (Lisp Interaction): | |
1984 * xemacs/entering.texi (Entering Emacs): | |
1985 * xemacs/menus.texi (File Menu): | |
1986 * xemacs/text.texi (Auto Fill): | |
1987 None of the keymaps I have access to have linefeed keys; they all | |
1988 use Return. As such, for new users, C-j is really the only option | |
1989 for evaluation in Lisp interaction mode, and should be documented | |
2865 | 1990 as such. |
1991 | |
3050 | 1992 2005-04-18 Stephen J. Turnbull <stephen@xemacs.org> |
2736 | 1993 |
1994 * internals/internals.texi | |
1995 (Better Rendering Support -- Modern Font Support): | |
1996 (Modern Font Support -- Font Concepts): | |
1997 (Modern Font Support -- fontconfig): | |
1998 (Modern Font Support -- Xft): | |
1999 New nodes describing the Lisp API. | |
2000 (Future Work -- Better Rendering Support): | |
2001 Add Better Rendering Support -- Modern Font Support to menu. | |
2002 | |
2003 2005-04-05 Stephen J. Turnbull <stephen@xemacs.org> | |
2004 | |
2005 * xemacs/custom.texi (X Resources): Improve wording. | |
2006 | |
2007 2005-03-13 Stephen J. Turnbull <stephen@xemacs.org> | |
2008 | |
2009 * xemacs/custom.texi (Minor Modes): Improve general description. | |
2010 Add description of Pending Delete and Filladapt modes. | |
2011 (File Variables): Improve caution against invoking minor modes. | |
2012 (Syntax Entry): Strengthen caution against "\s ". | |
2013 | |
2014 * xemacs/major.texi (Major Modes): Improve accuracy of wording. | |
2015 (Mode Hooks): Describe use of hooks to invoke minor modes. | |
2016 | |
2715 | 2017 2005-04-06 Ben Wing <ben@xemacs.org> |
2018 | |
2019 * internals/internals.texi (Authorship of XEmacs): Copy authorship | |
2020 section from FAQ and comment out old info, which is quite out of | |
2021 date and full of typos. | |
2022 | |
2690 | 2023 2005-03-26 Aidan Kehoe <kehoea@parhasard.net> |
2024 | |
2025 * lispref/mule.texi (CCL Example): | |
2691 | 2026 char-int -> char-to-int, and hex 41 is decimal 65, both problems |
2865 | 2027 with my previous patch pointed out by Stephen. |
2690 | 2028 * lispref/mule.texi (The actual coding system): |
2029 Give information on the make-coding-system call, and where the | |
2865 | 2030 actual package can be found. |
2031 | |
2681 | 2032 2005-03-24 Aidan Kehoe <kehoea@parhasard.net> |
2033 | |
2034 * xemacs/custom.texi (X Resources): | |
2035 "Emacs" as the application class -> "XEmacs" as the application | |
2036 class, mention the old resource class determination behaviour, and | |
2865 | 2037 how one can temporarily re-instate it. |
2038 | |
2665 | 2039 2005-03-15 Stephen J. Turnbull <stephen@xemacs.org> |
2040 | |
2041 * internals/internals.texi (The XEmacs Split): | |
2042 * standards.texi (Option Table): | |
2043 Shut up makeinfo and hack-local-variables. | |
2044 | |
2662 | 2045 2005-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
2046 | |
2047 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
2048 Document compiler warnings when assert expands to empty statement. | |
2049 | |
2653 | 2050 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
2051 | |
2052 * XEmacs 21.5.20 "cilantro" is released. | |
2053 | |
2647 | 2054 2005-03-05 Malcolm Purvis <malcolmp@xemacs.org> |
2055 | |
2056 * beta.texi : Change configure arguments to the new autoconf 2.5 | |
2057 style configure. | |
2058 * internals/internals.texi (The Build Configuration System): Fill | |
2059 out the details. | |
2060 | |
2640 | 2061 2005-01-19 Aidan Kehoe <kehoea@parhasard.net> |
2062 | |
2063 * lispref/mule.texi (CCL Example): Detail an implementation of the | |
2865 | 2064 web's URL encoding as a CCL coding system example. |
2640 | 2065 |
2066 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
2067 | |
2068 * internals/internals.texi (The version.sh Script): New node. | |
2069 (XEmacs from the Perspective of Building): | |
2070 (Low-Level Modules): | |
2071 (The Build Configuration System): | |
2072 (Adding Configurable Features): | |
2073 Add or update references to the version.sh node and/or file. | |
2074 | |
2075 (XEmacs from the Perspective of Building): Improve text. | |
2076 | |
2077 | |
2078 2005-01-22 Stephen J. Turnbull <stephen@xemacs.org> | |
2079 | |
2080 * internals/internals.texi (XEmacs): Add XEmacs 21.4.16 to list. | |
2081 (The XEmacs Split): Add comments on untrue legal factoids. | |
2082 (The XEmacs Split): Add some @urefs for Jamie's commentary. | |
2083 | |
2608 | 2084 2005-02-23 Aidan Kehoe <kehoea@parhasard.net> |
2085 | |
2086 * lispref/searching.texi (Syntax of Regexps): | |
2087 Mention the \c and \C regular expression constructs; cross | |
2865 | 2088 reference to the Category Table documentation. |
2608 | 2089 |
2602 | 2090 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> |
2091 | |
2092 * internals/internals.texi (The version.sh Script): New node. | |
2093 (XEmacs from the Perspective of Building): | |
2094 (Low-Level Modules): | |
2095 (The Build Configuration System): | |
2096 (Adding Configurable Features): | |
2097 Add or update references to the version.sh node and/or file. | |
2098 | |
2099 (XEmacs from the Perspective of Building): Improve text. | |
2100 | |
2597 | 2101 2005-02-19 Stephen J. Turnbull <stephen@xemacs.org> |
2102 | |
2103 * internals/internals.texi (Introduction to Writing C Code): | |
2104 Change "mostly warning-free" to "warning-free" to encourage | |
2105 reporting warnings as bugs. | |
2106 (The configure Script): | |
2107 Incorporate Malcolm Purvis's notes from configure.ac. Document | |
2108 his implementations of keyword and complex options, and remove | |
2109 descriptions of my obsolete code. | |
2110 | |
2111 2005-01-16 Stephen J. Turnbull <stephen@xemacs.org> | |
2112 | |
2113 * internals/internals.texi (Better Rendering Support -- | |
2114 Configuration with the Interim Patches): | |
2115 Improve notes on configuration. | |
2116 | |
2117 2004-12-15 Stephen J. Turnbull <stephen@xemacs.org> | |
2118 | |
2119 * internals/internals.texi (Better Rendering Support -- | |
2120 Configuration with the Interim Patches): Menubar uses xftFont | |
2121 resource, too. | |
2122 | |
2123 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> | |
2124 | |
2125 * internals/internals.texi (XEmacs from the Perspective of | |
2126 Building): Mention autoconf. | |
2127 (The Modules of XEmacs): Point Next the The Build Configuration | |
2128 System and add Modules for Building XEmacs to the menu. | |
2129 (A Summary of the Various XEmacs Modules): Add Modules for | |
2130 Building XEmacs to menu, and Modules for Build Configuration, | |
2131 Modules for Compiling XEmacs, and Modules for Preloading Lisp to | |
2132 the table of sections. | |
2133 (Low-Level Modules): Point Previous to Modules for Building XEmacs. | |
2134 (Modules for Building XEmacs): | |
2135 (Modules for Build Configuration): | |
2136 (Modules for Compiling XEmacs): | |
2137 (Modules for Preloading Lisp): | |
2138 (The Build Configuration System): | |
2139 (Adding Configurable Features): | |
2140 (The configure Script): | |
2141 (The Makefile Precursors): | |
2142 New nodes. | |
2143 (Rules When Writing New C Code): | |
2144 Point Previous to The Build Configuration System. | |
2145 | |
2594 | 2146 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
2147 | |
2148 * XEmacs 21.5.19 "chives" is released. | |
2149 | |
2559 | 2150 2005-02-03 Ben Wing <ben@xemacs.org> |
2151 | |
2152 * xemacs-faq.texi: | |
2153 * xemacs-faq.texi (Top): | |
2154 * xemacs-faq.texi (Introduction): | |
2155 * xemacs-faq.texi (Q1.2.2): | |
2156 * xemacs-faq.texi (Q1.2.5): | |
2157 * xemacs-faq.texi (Q1.2.9): | |
2158 * xemacs-faq.texi (Q1.2.10): | |
2159 * xemacs-faq.texi (Q1.2.11): | |
2160 * xemacs-faq.texi (Q1.2.12): | |
2161 * xemacs-faq.texi (Q1.4.2): | |
2162 * xemacs-faq.texi (Q1.5.2): | |
2163 * xemacs-faq.texi (Q1.5.3): | |
2164 * xemacs-faq.texi (Q1.5.4): | |
2165 * xemacs-faq.texi (Q1.5.5): | |
2166 * xemacs-faq.texi (Q1.6.6): | |
2167 * xemacs-faq.texi (Q1.7.1): | |
2168 * xemacs-faq.texi (Q1.7.2): | |
2169 * xemacs-faq.texi (Q1.7.3): | |
2170 * xemacs-faq.texi (Q1.7.4): | |
2171 * xemacs-faq.texi (Installation): | |
2172 * xemacs-faq.texi (Q2.0.1): | |
2173 * xemacs-faq.texi (Q2.0.2): | |
2174 * xemacs-faq.texi (Q2.0.3): | |
2175 * xemacs-faq.texi (Q2.0.4): | |
2176 * xemacs-faq.texi (Q2.0.5): | |
2177 * xemacs-faq.texi (Q2.1.1): | |
2178 * xemacs-faq.texi (Q2.1.2): | |
2179 * xemacs-faq.texi (Q2.1.3): | |
2180 * xemacs-faq.texi (Q2.1.4): | |
2181 * xemacs-faq.texi (Q2.1.5): | |
2182 * xemacs-faq.texi (Q2.1.6): | |
2183 * xemacs-faq.texi (Q2.1.7): | |
2184 * xemacs-faq.texi (Q2.2.1): | |
2185 * xemacs-faq.texi (Q2.2.2): | |
2186 * xemacs-faq.texi (Q2.3.1): | |
2187 * xemacs-faq.texi (Q2.3.2): | |
2188 * xemacs-faq.texi (Q2.3.3): | |
2189 * xemacs-faq.texi (Q2.3.4): | |
2190 * xemacs-faq.texi (Q2.3.5): | |
2191 * xemacs-faq.texi (Q2.3.6): | |
2192 * xemacs-faq.texi (Q2.3.7): | |
2193 * xemacs-faq.texi (Q2.3.8): | |
2194 * xemacs-faq.texi (Q2.4.1): | |
2195 * xemacs-faq.texi (Q2.4.2): | |
2196 * xemacs-faq.texi (Q2.4.3): | |
2197 * xemacs-faq.texi (Q2.4.4): | |
2198 * xemacs-faq.texi (Q2.4.5): | |
2199 * xemacs-faq.texi (Q2.4.6): | |
2200 * xemacs-faq.texi (Q2.4.7): | |
2201 * xemacs-faq.texi (Q2.4.8): | |
2202 * xemacs-faq.texi (Q2.4.9): | |
2203 * xemacs-faq.texi (Q2.4.10): | |
2204 * xemacs-faq.texi (Q2.4.11): | |
2205 * xemacs-faq.texi (Q2.4.12): | |
2206 * xemacs-faq.texi (Q2.5.1): | |
2207 * xemacs-faq.texi (Q2.5.2): | |
2208 * xemacs-faq.texi (Q2.5.3): | |
2209 * xemacs-faq.texi (Q2.5.4): | |
2210 * xemacs-faq.texi (Q2.5.5): | |
2211 * xemacs-faq.texi (Legacy Versions): | |
2212 * xemacs-faq.texi (Q10.0.1): | |
2213 * xemacs-faq.texi (Q10.0.2): | |
2214 Flesh out intro section on packages and section on installing | |
2215 packages. Incorporate README, README.packages, BUGS, etc/PACKAGES. | |
2216 Various other changes. | |
2217 | |
2547 | 2218 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> |
2219 | |
2220 * beta.texi: Update Copyright. Add pointer comment. | |
2221 | |
2222 (New packages): Remove personal names, point at jobs.html | |
2223 instead. | |
2224 | |
2225 (Syncing with GNU Emacs): Change "don't assume Mule" to | |
2226 "conditionalize Mule dependencies correctly". RMS stroking: use | |
2227 "GNU", not "FSF", in sync notices. | |
2228 | |
2229 2005-02-02 Robert Delius Royar <xemacs@frinabulax.org> | |
2230 | |
2231 * beta.texi (Top): | |
2865 | 2232 Add reference to Index in catalog to prevent |
2547 | 2233 errors compiling with GNU makeinfo 4.5. |
2234 | |
2235 * beta.texi (Syncing with GNU Emacs): | |
2865 | 2236 Add forward reference to Index in next node to prevent |
2547 | 2237 errors compiling with GNU makeinfo 4.5. |
2238 | |
2239 * beta.texi (Index): | |
2240 Add backward reference to Syncing with GNU Emacs to | |
2865 | 2241 replace obsolete reference to Defining Variables to |
2547 | 2242 prevent errors compiling with GNU makeinfo 4.5. |
2243 | |
2537 | 2244 2005-01-31 Ben Wing <ben@xemacs.org> |
2245 | |
2246 * xemacs/help.texi (Misc Help): | |
2247 Delete references to DISTRIB. Point to FAQ. | |
2865 | 2248 |
2537 | 2249 * xemacs/new.texi: |
2250 Update sample code for version checking. | |
2865 | 2251 |
2537 | 2252 * xemacs/xemacs.texi (Distrib): |
2253 * xemacs/xemacs.texi (Intro): | |
2254 Delete references to DISTRIB. Point directly to web site. | |
2255 Update stuff referring to GNU Emacs. Delete references to Win-Emacs. | |
2256 | |
2257 2005-01-31 Ben Wing <ben@xemacs.org> | |
2258 | |
2259 * Makefile: | |
2260 * Makefile (info_files): | |
2261 * Makefile (html_files): | |
2262 * Makefile (dvi_files): | |
2263 * Makefile (pdf_files): | |
2264 * Makefile ($(INFODIR)/beta.info): | |
2265 Add beta.texi and built files. | |
2865 | 2266 |
2537 | 2267 * xemacs-faq.texi (Top): |
2268 * xemacs-faq.texi (Introduction): | |
2269 * xemacs-faq.texi (Q1.0.3): | |
2270 * xemacs-faq.texi (Q1.0.4): | |
2271 * xemacs-faq.texi (Q1.0.5): | |
2272 * xemacs-faq.texi (Q1.0.6): | |
2273 * xemacs-faq.texi (Q1.1.1): | |
2274 * xemacs-faq.texi (Q1.1.2): | |
2275 * xemacs-faq.texi (Q1.1.3): | |
2276 * xemacs-faq.texi (Q1.1.4): | |
2277 * xemacs-faq.texi (Q1.2.1): | |
2278 * xemacs-faq.texi (Q1.2.2): | |
2279 * xemacs-faq.texi (Q1.2.3): | |
2280 * xemacs-faq.texi (Q1.2.4): | |
2281 * xemacs-faq.texi (Q1.2.5): | |
2282 * xemacs-faq.texi (Q1.2.6): | |
2283 * xemacs-faq.texi (Q1.2.7): | |
2284 * xemacs-faq.texi (Q1.2.8): | |
2285 * xemacs-faq.texi (Q1.2.9): | |
2286 * xemacs-faq.texi (Q1.2.10): | |
2287 * xemacs-faq.texi (Q1.2.11): | |
2288 * xemacs-faq.texi (Q1.2.12): | |
2289 * xemacs-faq.texi (Q1.2.13): | |
2290 * xemacs-faq.texi (Q1.3.1): | |
2291 * xemacs-faq.texi (Q1.3.2): | |
2292 * xemacs-faq.texi (Q1.3.3): | |
2293 * xemacs-faq.texi (Q1.3.4): | |
2294 * xemacs-faq.texi (Q1.3.5): | |
2295 * xemacs-faq.texi (Q1.3.6): | |
2296 * xemacs-faq.texi (Q1.3.7): | |
2297 * xemacs-faq.texi (Q1.3.8): | |
2298 * xemacs-faq.texi (Q1.4.1): | |
2299 * xemacs-faq.texi (Q1.4.2): | |
2300 * xemacs-faq.texi (double-word): New. | |
2301 * xemacs-faq.texi (Q1.4.3): | |
2302 * xemacs-faq.texi (Q1.4.4): | |
2303 * xemacs-faq.texi (Q1.4.5): | |
2304 * xemacs-faq.texi (Q1.5.1): | |
2305 * xemacs-faq.texi (Q1.5.2): | |
2306 * xemacs-faq.texi (Q1.5.3): | |
2307 * xemacs-faq.texi (Q1.6.1): | |
2308 * xemacs-faq.texi (Q1.6.2): | |
2309 * xemacs-faq.texi (Q1.6.3): | |
2310 * xemacs-faq.texi (Q1.6.4): | |
2311 * xemacs-faq.texi (Q1.6.5): | |
2312 * xemacs-faq.texi (Q1.6.6): | |
2313 * xemacs-faq.texi (Q1.7.1): | |
2314 * xemacs-faq.texi (Q1.8.1): | |
2315 * xemacs-faq.texi (Q1.8.2): | |
2316 * xemacs-faq.texi (Q1.8.3): | |
2317 * xemacs-faq.texi (Q1.8.4): | |
2318 * xemacs-faq.texi (Q1.8.5): | |
2319 * xemacs-faq.texi (Q1.8.6): | |
2320 * xemacs-faq.texi (Q1.8.7): | |
2321 * xemacs-faq.texi (Q1.8.8): | |
2322 * xemacs-faq.texi (Q1.8.9): | |
2323 * xemacs-faq.texi (Q2.2.1): | |
2324 * xemacs-faq.texi (Q2.2.2): | |
2325 * xemacs-faq.texi (Q2.4.2): | |
2326 * xemacs-faq.texi (Advanced): | |
2327 * xemacs-faq.texi (Q7.0.1): | |
2328 * xemacs-faq.texi (Q7.0.2): | |
2329 * xemacs-faq.texi (Q7.0.3): | |
2330 * xemacs-faq.texi (Q7.0.4): | |
2331 * xemacs-faq.texi (Q7.0.5): | |
2332 * xemacs-faq.texi (Q7.0.6): | |
2333 * xemacs-faq.texi (Q7.1.1): | |
2334 * xemacs-faq.texi (Q7.1.2): | |
2335 * xemacs-faq.texi (Q7.1.3): | |
2336 * xemacs-faq.texi (Q7.1.4): | |
2337 * xemacs-faq.texi (Q7.1.5): | |
2338 * xemacs-faq.texi (Q7.1.6): | |
2339 * xemacs-faq.texi (Q7.1.7): | |
2340 * xemacs-faq.texi (Q7.1.8): | |
2341 * xemacs-faq.texi (Q7.1.9): | |
2342 * xemacs-faq.texi (Q7.1.10): | |
2343 * xemacs-faq.texi (Q7.1.11): | |
2344 * xemacs-faq.texi (Q7.2.1): | |
2345 * xemacs-faq.texi (Q7.2.2): | |
2346 * xemacs-faq.texi (Q7.2.3): | |
2347 * xemacs-faq.texi (Other Packages): | |
2348 * xemacs-faq.texi (Current Events): | |
2349 * xemacs-faq.texi (Legacy Versions): | |
2350 Major overhaul of section 1. Add mailing list info, update | |
2351 downloading info, add info on CVS, etc. | |
2352 | |
2522 | 2353 2004-10-17 Shyamal Prasad <shyamal@member.fsf.org> |
2354 | |
2355 * xemacs/programs.texi (Program Modes): Updated it to reflect | |
2356 current status of programming modes. | |
2357 * xemacs/programs.texi (CC Mode): New section introduces CC | |
2358 Mode. Introduces customization with reference to CC Mode | |
2359 manual. Also introduce C/AWK modes in prog-modes package | |
2360 * xemacs/programs.texi (C Ident): Removed - it was | |
2361 obsolete. prog-modes package documentation now contains | |
2865 | 2362 indentation description for old C mode |
2522 | 2363 * xemacs/major.texi (Mode Hooks): Add description of major mode |
2364 hooks. Cleaned up and updated programming mode descriptions. | |
2365 * xemacs/xemacs.texi (Top): Updated Detailed Node listing for new | |
2366 CC Mode section in programs.texi | |
2367 | |
2368 | |
2507 | 2369 2005-01-26 Ben Wing <ben@xemacs.org> |
2370 | |
2371 * internals/internals.texi: | |
2372 * internals/internals.texi (Through Version 18): | |
2373 * internals/internals.texi (GNU Emacs 19): | |
2374 * internals/internals.texi (GNU Emacs 20): | |
2375 Update History. | |
2376 | |
2377 * internals/internals.texi (Unicode support under Windows): | |
2378 Redo section on Windows 95 support for Unicode. | |
2379 | |
2492 | 2380 2005-01-19 Aidan Kehoe <kehoea@parhasard.net> |
2381 | |
2382 * man/lispref/functions.texi (Functions): Rename to "Functions and | |
2383 Commands" | |
2384 * man/lispref/functions.texi (What Is a Function): Move the definition | |
2385 of a command further up the list, give information on a trivial | |
2386 (interactive) declaration, and cross-reference to the key binding | |
2387 detail. Cf. 87vf9wgd08.fsf@tleepslib.sk.tsukuba.ac.jp | |
2865 | 2388 (comp.emacs.xemacs, 2005-01-18). |
2492 | 2389 * man/lispref/eval.texi man/lispref/lispref.texi |
2865 | 2390 man/lispref/macros.texi man/lispref/symbols.texi |
2492 | 2391 man/lispref/variables.texi: Fix cross references. |
2392 | |
2459 | 2393 2004-12-28 Ben Wing <ben@xemacs.org> |
2394 | |
2395 * xemacs-faq.texi (Top): | |
2396 * xemacs-faq.texi (Introduction): | |
2397 * xemacs-faq.texi (Q1.0.3): | |
2398 * xemacs-faq.texi (Q1.0.5): | |
2399 * xemacs-faq.texi (Q1.0.10): | |
2400 * xemacs-faq.texi (Q1.1.4): | |
2401 * xemacs-faq.texi (Q1.1.5): | |
2402 * xemacs-faq.texi (Q1.4.1): | |
2403 * xemacs-faq.texi (Q1.4.3): | |
2404 * xemacs-faq.texi (Q1.5.8): | |
2405 * xemacs-faq.texi (Installation): | |
2406 * xemacs-faq.texi (Q2.0.3): | |
2407 * xemacs-faq.texi (Q2.0.5): | |
2408 * xemacs-faq.texi (Q2.1.1): | |
2409 * xemacs-faq.texi (Q2.1.2): | |
2410 * xemacs-faq.texi (Q2.2.7): | |
2411 * xemacs-faq.texi (Q2.4.6): | |
2412 * xemacs-faq.texi (Editing): | |
2413 * xemacs-faq.texi (Q3.0.1): | |
2414 * xemacs-faq.texi (Q3.0.2): | |
2415 * xemacs-faq.texi (Q3.0.3): | |
2416 * xemacs-faq.texi (Q3.0.4): | |
2417 * xemacs-faq.texi (Q3.0.5): | |
2418 * xemacs-faq.texi (Q3.0.6): | |
2419 * xemacs-faq.texi (Q3.0.7): | |
2420 * xemacs-faq.texi (Q3.0.8): | |
2421 * xemacs-faq.texi (Q3.0.9): | |
2422 * xemacs-faq.texi (Q3.0.10): | |
2423 * xemacs-faq.texi (Q3.0.11): | |
2424 * xemacs-faq.texi (Q3.1.1): | |
2425 * xemacs-faq.texi (Q3.1.2): | |
2426 * xemacs-faq.texi (Q3.1.3): | |
2427 * xemacs-faq.texi (Q3.1.4): | |
2428 * xemacs-faq.texi (Q3.1.5): | |
2429 * xemacs-faq.texi (Q3.2.1): | |
2430 * xemacs-faq.texi (Q3.2.2): | |
2431 * xemacs-faq.texi (Q3.2.3): | |
2432 * xemacs-faq.texi (Q3.2.4): | |
2433 * xemacs-faq.texi (Q3.2.5): | |
2434 * xemacs-faq.texi (Q3.3.1): | |
2435 * xemacs-faq.texi (Q3.3.2): | |
2436 * xemacs-faq.texi (Q3.3.3): | |
2437 * xemacs-faq.texi (Q3.3.4): | |
2438 * xemacs-faq.texi (Q3.3.5): | |
2439 * xemacs-faq.texi (Q3.3.6): | |
2440 * xemacs-faq.texi (Q3.4.1): | |
2441 * xemacs-faq.texi (Q3.4.2): | |
2442 * xemacs-faq.texi (Display): | |
2443 * xemacs-faq.texi (Q4.0.1): | |
2444 * xemacs-faq.texi (Q4.0.2): | |
2445 * xemacs-faq.texi (Q4.0.3): | |
2446 * xemacs-faq.texi (Q4.0.4): | |
2447 * xemacs-faq.texi (my-toggle-toolbar): Removed. | |
2448 * xemacs-faq.texi (Q4.0.5): | |
2449 * xemacs-faq.texi (Q4.0.6): | |
2450 * xemacs-faq.texi (Q4.0.7): | |
2451 * xemacs-faq.texi (Q4.0.8): | |
2452 * xemacs-faq.texi (Q4.0.9): | |
2453 * xemacs-faq.texi (Q4.1.1): | |
2454 * xemacs-faq.texi (Q4.1.2): | |
2455 * xemacs-faq.texi (Q4.2.1): | |
2456 * xemacs-faq.texi (Q4.2.2): | |
2457 * xemacs-faq.texi (Q4.2.3): | |
2458 * xemacs-faq.texi (Q4.2.4): | |
2459 * xemacs-faq.texi (Q4.3.1): | |
2460 * xemacs-faq.texi (Q4.3.2): | |
2461 * xemacs-faq.texi (Q4.3.3): | |
2462 * xemacs-faq.texi (Q4.4.1): | |
2463 * xemacs-faq.texi (Q4.4.2): | |
2464 * xemacs-faq.texi (Q4.4.3): | |
2465 * xemacs-faq.texi (Q4.4.4): | |
2466 * xemacs-faq.texi (Q4.4.5): | |
2467 * xemacs-faq.texi (Q4.5.1): | |
2468 * xemacs-faq.texi (Q4.5.2): | |
2469 * xemacs-faq.texi (Q4.5.3): | |
2470 * xemacs-faq.texi (Q4.5.4): | |
2471 * xemacs-faq.texi (Q4.6.1): | |
2472 * xemacs-faq.texi (Q4.6.2): | |
2473 * xemacs-faq.texi (Q4.6.3): | |
2474 * xemacs-faq.texi (Q4.6.4): | |
2475 * xemacs-faq.texi (scroll-up): Removed. | |
2476 * xemacs-faq.texi (Q4.6.5): | |
2477 * xemacs-faq.texi (scroll-down): Removed. | |
2478 * xemacs-faq.texi (Q4.6.6): | |
2479 * xemacs-faq.texi (Q4.6.7): | |
2480 * xemacs-faq.texi (Q4.7.1): | |
2481 * xemacs-faq.texi (Q4.7.2): | |
2482 * xemacs-faq.texi (Q4.7.3): | |
2483 * xemacs-faq.texi (Q4.7.4): | |
2484 * xemacs-faq.texi (External Subsystems): | |
2485 * xemacs-faq.texi (Q5.0.1): | |
2486 * xemacs-faq.texi (Q5.0.2): | |
2487 * xemacs-faq.texi (Q5.0.3): | |
2488 * xemacs-faq.texi (Q5.0.4): | |
2489 * xemacs-faq.texi (Q5.0.5): | |
2490 * xemacs-faq.texi (Q5.0.6): | |
2491 * xemacs-faq.texi (Q5.1.1): | |
2492 * xemacs-faq.texi (Q5.1.2): | |
2493 * xemacs-faq.texi (Q5.2.1): | |
2494 * xemacs-faq.texi (Q5.2.2): | |
2495 * xemacs-faq.texi (Q5.2.3): | |
2496 * xemacs-faq.texi (Q5.2.4): | |
2497 * xemacs-faq.texi (Q5.3.1): | |
2498 * xemacs-faq.texi (Q5.3.2): | |
2499 * xemacs-faq.texi (Q5.3.3): | |
2500 * xemacs-faq.texi (Q5.3.4): | |
2501 * xemacs-faq.texi (Q5.4.1): | |
2502 * xemacs-faq.texi (Q5.4.2): | |
2503 * xemacs-faq.texi (Q5.4.3): | |
2504 * xemacs-faq.texi (Q5.4.4): | |
2505 * xemacs-faq.texi (Q5.4.5): | |
2506 * xemacs-faq.texi (Q5.5.1): | |
2507 * xemacs-faq.texi (Q5.5.2): | |
2508 * xemacs-faq.texi (Q5.5.3): | |
2509 * xemacs-faq.texi (Q5.5.4): | |
2510 * xemacs-faq.texi (Q5.5.5): | |
2511 * xemacs-faq.texi (Internet): | |
2512 * xemacs-faq.texi (Q6.0.1): | |
2513 * xemacs-faq.texi (Q6.0.2): | |
2514 * xemacs-faq.texi (Q6.0.3): | |
2515 * xemacs-faq.texi (Q6.0.4): | |
2516 * xemacs-faq.texi (Q6.0.5): | |
2517 * xemacs-faq.texi (Q6.0.6): | |
2518 * xemacs-faq.texi (Q6.0.7): | |
2519 * xemacs-faq.texi (Q6.0.8): | |
2520 * xemacs-faq.texi (Q6.0.9): | |
2521 * xemacs-faq.texi (Q6.0.10): | |
2522 * xemacs-faq.texi (Q6.0.11): | |
2523 * xemacs-faq.texi (Q6.1.1): | |
2524 * xemacs-faq.texi (Q6.1.2): | |
2525 * xemacs-faq.texi (Q6.1.3): | |
2526 * xemacs-faq.texi (Q6.1.4): | |
2527 * xemacs-faq.texi (Q6.1.5): | |
2528 * xemacs-faq.texi (Q6.1.6): | |
2529 * xemacs-faq.texi (Q6.2.1): | |
2530 * xemacs-faq.texi (Q6.2.2): | |
2531 * xemacs-faq.texi (Q6.3.1): | |
2532 * xemacs-faq.texi (Q6.3.2): | |
2533 * xemacs-faq.texi (Q6.4.1): | |
2534 * xemacs-faq.texi (Q6.4.2): | |
2535 * xemacs-faq.texi (Q6.4.3): | |
2536 * xemacs-faq.texi (Advanced): | |
2537 * xemacs-faq.texi (Q7.0.1): | |
2538 * xemacs-faq.texi (Q7.0.2): | |
2539 * xemacs-faq.texi (Q7.1.1): | |
2540 * xemacs-faq.texi (Q7.1.2): | |
2541 * xemacs-faq.texi (Q7.1.3): | |
2542 * xemacs-faq.texi (Q7.1.4): | |
2543 * xemacs-faq.texi (Q7.1.5): | |
2544 * xemacs-faq.texi (Q7.1.6): | |
2545 * xemacs-faq.texi (Q7.2.1): | |
2546 * xemacs-faq.texi (Q7.2.2): | |
2547 * xemacs-faq.texi (Q7.2.3): | |
2548 * xemacs-faq.texi (Q7.2.4): | |
2549 * xemacs-faq.texi (Q7.2.5): | |
2550 * xemacs-faq.texi (Q7.2.6): | |
2551 * xemacs-faq.texi (Q7.2.7): | |
2552 * xemacs-faq.texi (Q7.2.8): | |
2553 * xemacs-faq.texi (Q7.2.9): | |
2554 * xemacs-faq.texi (Q7.2.10): | |
2555 * xemacs-faq.texi (Q7.2.11): | |
2556 * xemacs-faq.texi (Q7.3.1): | |
2557 * xemacs-faq.texi (Q7.3.2): | |
2558 * xemacs-faq.texi (Q7.3.3): | |
2559 * xemacs-faq.texi (Q7.3.4): | |
2560 * xemacs-faq.texi (Other Packages): | |
2561 * xemacs-faq.texi (Q8.0.1): | |
2562 * xemacs-faq.texi (Q8.0.2): | |
2563 * xemacs-faq.texi (Q8.0.3): | |
2564 * xemacs-faq.texi (Q8.0.4): | |
2565 * xemacs-faq.texi (Q8.1.1): | |
2566 * xemacs-faq.texi (Q8.1.2): | |
2567 * xemacs-faq.texi (Q8.1.3): | |
2568 * xemacs-faq.texi (Q8.2.1): | |
2569 * xemacs-faq.texi (Q8.2.2): | |
2570 * xemacs-faq.texi (Q8.2.3): | |
2571 * xemacs-faq.texi (Q8.2.4): | |
2572 * xemacs-faq.texi (Current Events): | |
2573 * xemacs-faq.texi (Q9.0.1): | |
2574 * xemacs-faq.texi (my-function): Removed. | |
2575 * xemacs-faq.texi (Q9.0.2): | |
2576 * xemacs-faq.texi (Q9.0.3): | |
2577 * xemacs-faq.texi (Q9.0.4): | |
2578 * xemacs-faq.texi (Q9.0.5): | |
2579 * xemacs-faq.texi (Legacy Versions): | |
2580 Major rearrangement. Expand to 10 sections. Add various questions, | |
2581 mostly stubs currently. Remove some obsolete stuff. Update a bunch | |
2582 of the links. | |
2583 | |
2444 | 2584 2004-12-15 Ville Skyttä <scop@xemacs.org> |
2585 | |
2586 * lispref/help.texi: Document 3rd arg to `make-obsolete'. | |
2587 | |
2441 | 2588 2004-12-15 Robert Delius Royar <xemacs@frinabulax.org> |
2589 | |
2590 * internals/internals.texi (Modules for the Basic Displayable Lisp | |
2591 Objects): Remove Mote in Make's eye, fix build. | |
2592 | |
2438 | 2593 2004-12-12 Stephen J. Turnbull <stephen@xemacs.org> |
2594 | |
2595 * internals/internals.texi (Modules for the Basic Displayable Lisp | |
2596 Objects): Comment on problems, and extensions needed to handle | |
2597 native widgets properly. | |
2598 | |
2431 | 2599 2004-12-10 Stephen J. Turnbull <stephen@xemacs.org> |
2600 | |
2601 * internals/internals.texi (Better Rendering Support -- | |
2602 Implementation): Document reasons for Label Widget crash. | |
2603 | |
2427 | 2604 2004-12-07 Malcolm Purvis <malcolmp@xemacs.org> |
2605 | |
2606 * Makefile (RECURSIVE_MAKE): Removed. | |
2607 * Makefile (RECURSIVE_MAKE_ARGS): New. The new method for | |
2608 handling parallel builds. | |
2609 | |
2421 | 2610 2004-12-05 Ben Wing <ben@xemacs.org> |
2611 | |
2612 * xemacs/packages.texi (Packages): | |
2613 * xemacs/packages.texi (Manually): | |
2614 * xemacs/packages.texi (Building Packages): | |
2615 * xemacs/packages.texi (Local.rules File): | |
2616 * xemacs/packages.texi (Available Packages): | |
2617 Add long form of Lisp Reference Manual to links. | |
2618 Add links pointing to Lisp Reference Manual for more detailed | |
2619 package discussion. | |
2422 | 2620 |
2621 * xemacs/xemacs-faq.texi: | |
2622 As per Adrian's suggestion, mention that Pitts Jarvis is deceased. | |
2623 | |
2421 | 2624 2004-12-05 Ben Wing <ben@xemacs.org> |
2625 | |
2626 * lispref/range-tables.texi (Range Tables): | |
2627 * lispref/range-tables.texi (Introduction to Range Tables): | |
2628 * lispref/range-tables.texi (Working With Range Tables): | |
2629 Document range-table changes. | |
2630 | |
2631 2004-12-05 Ben Wing <ben@xemacs.org> | |
2632 | |
2633 * internals/internals.texi (A History of Emacs): | |
2634 Update history section. | |
2635 | |
2636 2004-12-05 Ben Wing <ben@xemacs.org> | |
2637 | |
2638 * xemacs-faq.texi: | |
2639 * xemacs-faq.texi (fix-main-menu): New. | |
2640 * xemacs-faq.texi (fix-omitted-menu-lines): New. | |
2641 * xemacs-faq.texi (Top): | |
2642 * xemacs-faq.texi (Introduction): | |
2643 * xemacs-faq.texi (Q1.0.1): | |
2644 * xemacs-faq.texi (Q1.0.2): | |
2645 * xemacs-faq.texi (Q1.0.4): | |
2646 * xemacs-faq.texi (Q1.0.5): | |
2647 * xemacs-faq.texi (Q1.0.6): | |
2648 * xemacs-faq.texi (Q1.0.7): | |
2649 * xemacs-faq.texi (Q1.0.8): | |
2650 * xemacs-faq.texi (Q1.0.9): | |
2651 * xemacs-faq.texi (Q1.0.10): | |
2652 * xemacs-faq.texi (Q1.0.11): | |
2653 * xemacs-faq.texi (Q1.0.12): | |
2654 * xemacs-faq.texi (Q1.0.13): | |
2655 * xemacs-faq.texi (Q1.0.14): | |
2656 * xemacs-faq.texi (Q1.1.1): | |
2657 * xemacs-faq.texi (Q1.1.2): | |
2658 * xemacs-faq.texi (Q1.1.3): | |
2659 * xemacs-faq.texi (Q1.1.4): | |
2660 * xemacs-faq.texi (Q1.1.5): | |
2661 * xemacs-faq.texi (Q1.1.6): | |
2662 * xemacs-faq.texi (Q1.1.7): | |
2663 * xemacs-faq.texi (Q1.1.8): | |
2664 * xemacs-faq.texi (Q1.1.9): | |
2665 * xemacs-faq.texi (Q1.2.1): | |
2666 * xemacs-faq.texi (Q1.2.2): | |
2667 * xemacs-faq.texi (Q1.2.3): | |
2668 * xemacs-faq.texi (Q1.3.1): | |
2669 * xemacs-faq.texi (Q1.3.2): | |
2670 * xemacs-faq.texi (Q1.3.3): | |
2671 * xemacs-faq.texi (Q1.4.1): | |
2672 * xemacs-faq.texi (Q1.4.2): | |
2673 * xemacs-faq.texi (Q1.4.3): | |
2674 * xemacs-faq.texi (Q1.4.4): | |
2675 * xemacs-faq.texi (Q1.4.5): | |
2676 * xemacs-faq.texi (Q1.4.6): | |
2677 * xemacs-faq.texi (Q1.4.7): | |
2678 * xemacs-faq.texi (Q1.4.8): | |
2679 * xemacs-faq.texi (Q1.4.9): | |
2680 * xemacs-faq.texi (Q1.5.1): | |
2681 * xemacs-faq.texi (Q1.5.2): | |
2682 * xemacs-faq.texi (Q1.5.3): | |
2683 * xemacs-faq.texi (Q1.5.4): | |
2684 * xemacs-faq.texi (Q1.5.5): | |
2685 * xemacs-faq.texi (Q1.5.6): | |
2686 * xemacs-faq.texi (Q1.5.7): | |
2687 * xemacs-faq.texi (Q1.5.8): | |
2688 * xemacs-faq.texi (Installation): | |
2689 * xemacs-faq.texi (Q2.0.1): | |
2690 * xemacs-faq.texi (Q2.0.2): | |
2691 * xemacs-faq.texi (Q2.0.3): | |
2692 * xemacs-faq.texi (Q2.0.4): | |
2693 * xemacs-faq.texi (Q2.0.5): | |
2694 * xemacs-faq.texi (Q2.0.6): | |
2695 * xemacs-faq.texi (Q2.0.7): | |
2696 * xemacs-faq.texi (Q2.1.1): | |
2697 * xemacs-faq.texi (Q2.1.2): | |
2698 * xemacs-faq.texi (Q2.1.3): | |
2699 * xemacs-faq.texi (Q2.1.4): | |
2700 * xemacs-faq.texi (Q2.2.1): | |
2701 * xemacs-faq.texi (Q2.2.2): | |
2702 * xemacs-faq.texi (Q2.2.3): | |
2703 * xemacs-faq.texi (Q2.2.4): | |
2704 * xemacs-faq.texi (Q2.2.5): | |
2705 * xemacs-faq.texi (Q2.2.6): | |
2706 * xemacs-faq.texi (Q2.2.7): | |
2707 * xemacs-faq.texi (Q2.2.8): | |
2708 * xemacs-faq.texi (Q2.3.1): | |
2709 * xemacs-faq.texi (Q2.3.2): | |
2710 * xemacs-faq.texi (Q2.3.3): | |
2711 * xemacs-faq.texi (Q2.3.4): | |
2712 * xemacs-faq.texi (Q2.3.5): | |
2713 * xemacs-faq.texi (Q2.3.6): | |
2714 * xemacs-faq.texi (Q2.3.7): | |
2715 * xemacs-faq.texi (Q2.3.8): | |
2716 * xemacs-faq.texi (Q2.3.9): | |
2717 * xemacs-faq.texi (Q2.3.10): | |
2718 * xemacs-faq.texi (Q2.3.11): | |
2719 * xemacs-faq.texi (Q2.4.1): | |
2720 * xemacs-faq.texi (Q2.4.2): | |
2721 * xemacs-faq.texi (Q2.4.3): | |
2722 * xemacs-faq.texi (Q2.4.4): | |
2723 * xemacs-faq.texi (Q2.4.5): | |
2724 * xemacs-faq.texi (Q2.4.6): | |
2725 * xemacs-faq.texi (Display Subsystems): | |
2726 * xemacs-faq.texi (running-xemacs): Removed. | |
2727 * xemacs-faq.texi (Q3.0.1): | |
2728 * xemacs-faq.texi (Q3.0.2): | |
2729 * xemacs-faq.texi (Q3.0.3): | |
2730 * xemacs-faq.texi (Q3.0.4): | |
2731 * xemacs-faq.texi (Q3.0.5): | |
2732 * xemacs-faq.texi (Q3.0.6): | |
2733 * xemacs-faq.texi (foo-old-losing-code-p): Removed. | |
2734 * xemacs-faq.texi (Q3.0.7): | |
2735 * xemacs-faq.texi (Q3.0.8): | |
2736 * xemacs-faq.texi (Q3.0.9): | |
2737 * xemacs-faq.texi (Q3.0.10): | |
2738 * xemacs-faq.texi (Q3.1.1): | |
2739 * xemacs-faq.texi (Q3.1.2): | |
2740 * xemacs-faq.texi (Q3.1.3): | |
2741 * xemacs-faq.texi (Q3.1.4): | |
2742 * xemacs-faq.texi (Q3.1.5): | |
2743 * xemacs-faq.texi (Q3.2.1): | |
2744 * xemacs-faq.texi (Q3.2.2): | |
2745 * xemacs-faq.texi (Q3.2.3): | |
2746 * xemacs-faq.texi (Q3.2.4): | |
2747 * xemacs-faq.texi (Q3.2.5): | |
2748 * xemacs-faq.texi (Q3.2.6): | |
2749 * xemacs-faq.texi (Q3.2.7): | |
2750 * xemacs-faq.texi (Q3.2.8): | |
2751 * xemacs-faq.texi (Q3.2.9): | |
2752 * xemacs-faq.texi (Q3.3.1): | |
2753 * xemacs-faq.texi (Q3.3.2): | |
2754 * xemacs-faq.texi (Q3.3.3): | |
2755 * xemacs-faq.texi (Q3.3.4): | |
2756 * xemacs-faq.texi (Q3.3.5): | |
2757 * xemacs-faq.texi (Q3.3.6): | |
2758 * xemacs-faq.texi (Q3.4.1): | |
2759 * xemacs-faq.texi (Q3.4.2): | |
2760 * xemacs-faq.texi (Q3.4.3): | |
2761 * xemacs-faq.texi (Q3.4.4): | |
2762 * xemacs-faq.texi (Q3.4.5): | |
2763 * xemacs-faq.texi (Q3.4.6): | |
2764 * xemacs-faq.texi (Q3.5.1): | |
2765 * xemacs-faq.texi (Q3.5.2): | |
2766 * xemacs-faq.texi (Q3.5.3): | |
2767 * xemacs-faq.texi (Q3.5.4): | |
2768 * xemacs-faq.texi (Q3.6.1): | |
2769 * xemacs-faq.texi (Q3.6.2): | |
2770 * xemacs-faq.texi (Q3.6.3): | |
2771 * xemacs-faq.texi (Q3.7.1): | |
2772 * xemacs-faq.texi (Q3.7.2): | |
2773 * xemacs-faq.texi (Q3.7.3): | |
2774 * xemacs-faq.texi (Q3.7.4): | |
2775 * xemacs-faq.texi (Q3.7.5): | |
2776 * xemacs-faq.texi (Q3.7.6): | |
2777 * xemacs-faq.texi (Q3.7.7): | |
2778 * xemacs-faq.texi (Q3.7.8): | |
2779 * xemacs-faq.texi (Q3.8.1): | |
2780 * xemacs-faq.texi (Q3.8.2): | |
2781 * xemacs-faq.texi (Q3.8.3): | |
2782 * xemacs-faq.texi (my-toggle-toolbar): New. | |
2783 * xemacs-faq.texi (Q3.8.4): | |
2784 * xemacs-faq.texi (scroll-one-line-up): Removed. | |
2785 * xemacs-faq.texi (scroll-one-line-down): Removed. | |
2786 * xemacs-faq.texi (Q3.8.5): | |
2787 * xemacs-faq.texi (Q3.9.1): | |
2788 * xemacs-faq.texi (Q3.9.2): | |
2789 * xemacs-faq.texi (Q3.9.3): | |
2790 * xemacs-faq.texi (Q3.9.4): | |
2791 * xemacs-faq.texi (Q3.9.5): | |
2792 * xemacs-faq.texi (External Subsystems): | |
2793 * xemacs-faq.texi (Q4.0.1): | |
2794 * xemacs-faq.texi (Q4.0.2): | |
2795 * xemacs-faq.texi (Q4.0.3): | |
2796 * xemacs-faq.texi (Q4.0.4): | |
2797 * xemacs-faq.texi (Q4.0.5): | |
2798 * xemacs-faq.texi (Q4.0.6): | |
2799 * xemacs-faq.texi (global-map): Removed. | |
2800 * xemacs-faq.texi (Q4.1.1): | |
2801 * xemacs-faq.texi (Q4.1.2): | |
2802 * xemacs-faq.texi (Q4.2.1): | |
2803 * xemacs-faq.texi (Q4.2.2): | |
2804 * xemacs-faq.texi (Q4.2.3): | |
2805 * xemacs-faq.texi (Q4.2.4): | |
2806 * xemacs-faq.texi (Q4.3.1): | |
2807 * xemacs-faq.texi (Q4.3.2): | |
2808 * xemacs-faq.texi (Q4.3.3): | |
2809 * xemacs-faq.texi (Q4.3.4): | |
2810 * xemacs-faq.texi (Q4.4.1): | |
2811 * xemacs-faq.texi (Q4.4.2): | |
2812 * xemacs-faq.texi (Q4.4.3): | |
2813 * xemacs-faq.texi (Q4.4.4): | |
2814 * xemacs-faq.texi (Q4.4.5): | |
2815 * xemacs-faq.texi (Q4.5.1): | |
2816 * xemacs-faq.texi (Q4.5.2): | |
2817 * xemacs-faq.texi (Q4.5.3): | |
2818 * xemacs-faq.texi (Q4.5.4): | |
2819 * xemacs-faq.texi (Q4.5.5): | |
2820 * xemacs-faq.texi (Q4.6.1): | |
2821 * xemacs-faq.texi (Q4.6.2): | |
2822 * xemacs-faq.texi (Q4.6.3): | |
2823 * xemacs-faq.texi (Q4.6.4): | |
2824 * xemacs-faq.texi (Q4.7.1): | |
2825 * xemacs-faq.texi (Q4.7.2): | |
2826 * xemacs-faq.texi (Q4.7.3): | |
2827 * xemacs-faq.texi (Q4.8.1): | |
2828 * xemacs-faq.texi (Q4.8.2): | |
2829 * xemacs-faq.texi (Q4.8.3): | |
2830 * xemacs-faq.texi (Q4.8.4): | |
2831 * xemacs-faq.texi (Internet): | |
2832 * xemacs-faq.texi (Q5.0.1): | |
2833 * xemacs-faq.texi (Q5.0.2): | |
2834 * xemacs-faq.texi (Q5.0.3): | |
2835 * xemacs-faq.texi (Q5.0.4): | |
2836 * xemacs-faq.texi (Q5.0.5): | |
2837 * xemacs-faq.texi (Q5.0.6): | |
2838 * xemacs-faq.texi (Q5.0.7): | |
2839 * xemacs-faq.texi (Q5.0.8): | |
2840 * xemacs-faq.texi (Q5.0.9): | |
2841 * xemacs-faq.texi (Q5.0.10): | |
2842 * xemacs-faq.texi (Q5.0.11): | |
2843 * xemacs-faq.texi (Q5.1.1): | |
2844 * xemacs-faq.texi (Q5.1.2): | |
2845 * xemacs-faq.texi (Q5.1.3): | |
2846 * xemacs-faq.texi (Q5.1.4): | |
2847 * xemacs-faq.texi (Q5.1.5): | |
2848 * xemacs-faq.texi (Q5.1.6): | |
2849 * xemacs-faq.texi (Q5.2.1): | |
2850 * xemacs-faq.texi (Q5.2.2): | |
2851 * xemacs-faq.texi (Q5.3.1): | |
2852 * xemacs-faq.texi (Q5.3.2): | |
2853 * xemacs-faq.texi (Q5.4.1): | |
2854 * xemacs-faq.texi (Q5.4.2): | |
2855 * xemacs-faq.texi (Q5.4.3): | |
2856 * xemacs-faq.texi (Advanced): | |
2857 * xemacs-faq.texi (Q6.0.1): | |
2858 * xemacs-faq.texi (Q6.0.2): | |
2859 * xemacs-faq.texi (Q6.1.1): | |
2860 * xemacs-faq.texi (Q6.1.2): | |
2861 * xemacs-faq.texi (Q6.1.3): | |
2862 * xemacs-faq.texi (Q6.1.4): | |
2863 * xemacs-faq.texi (Q6.1.5): | |
2864 * xemacs-faq.texi (Q6.1.6): | |
2865 * xemacs-faq.texi (Q6.2.1): | |
2866 * xemacs-faq.texi (Q6.2.2): | |
2867 * xemacs-faq.texi (Q6.2.3): | |
2868 * xemacs-faq.texi (Q6.2.4): | |
2869 * xemacs-faq.texi (Q6.2.5): | |
2870 * xemacs-faq.texi (Q6.2.6): | |
2871 * xemacs-faq.texi (Q6.2.7): | |
2872 * xemacs-faq.texi (Q6.2.8): | |
2873 * xemacs-faq.texi (Q6.2.9): | |
2874 * xemacs-faq.texi (Q6.2.10): | |
2875 * xemacs-faq.texi (Q6.2.11): | |
2876 * xemacs-faq.texi (Q6.3.1): | |
2877 * xemacs-faq.texi (Q6.3.2): | |
2878 * xemacs-faq.texi (Q6.3.3): | |
2879 * xemacs-faq.texi (Q6.3.4): | |
2880 * xemacs-faq.texi (Current Events): | |
2881 * xemacs-faq.texi (Q7.0.1): | |
2882 * xemacs-faq.texi (Q7.0.2): | |
2883 * xemacs-faq.texi (Q7.0.3): | |
2884 * xemacs-faq.texi (Q7.0.5): | |
2885 * xemacs-faq.texi (Q7.0.6): | |
2886 * xemacs-faq.texi (Legacy Versions): | |
2887 * xemacs-faq.texi (my-function): Removed. | |
2888 * xemacs-faq.texi (Q8.0.1): | |
2889 | |
2890 The section on Troubleshooting (now 2.3) has been completely | |
2891 written and includes a lot of stuff that is not properly | |
2892 documented anywhere else. A fair amount of obsolete info has been | |
2893 deleted and I've incorporated the comments that people (mostly | |
2894 Stephen T) made. Former chapter 3 has been split up in two, one | |
2895 pertaining to basic I/O and the other to external I/O. What were | |
2896 formerly chapters 5 and 6 no longer exist as such; the info in | |
2897 them has been distributed across various other chapters. Old | |
2898 chapter 4 got split up, part going to the new chapter 4 on | |
2899 external I/O and part going to the new chapter 5 on the Internet. | |
2900 In this new chapter, stuff not pertaining to a specific package | |
2901 (e.g. VM or GNUS) was taken out of package-specific sections and a | |
2902 general mail section was constituted. Part of old chapter 5 | |
2903 remains in a new chapter 6 devoted to Emacs Lisp and other | |
2904 advanced stuff, and a section from old chapter 3 on basic | |
2905 init-file Lisp and some stuff from old chapter 5 on Info. The | |
2906 rest of chapter 5 was just "misc" and has gotten scattered to the | |
2907 winds (mostly in chapters 3 and 4). Old chapter 6 has also gotten | |
2908 quite scattered; there is no longer any section specifically | |
2909 devoted to Windows except one of the Installation sections (along | |
2910 with a section specfically devoted to Unix), and the rest has | |
2911 moved to join the appropriate non-Windows-specific section | |
2912 elsewhere. A lot of chapters had their sections rearranged and | |
2913 likewise for sections having entries rearranged, with the | |
2914 intention that the new arrangement should be more natural. In | |
2915 general I hope that stuff should be much easier to locate. I also | |
2916 rewrote the entries on the relation between XEmacs and GNU Emacs | |
2917 on the authors of XEmacs, including lots of info on who wrote | |
2918 specific subsections. | |
2919 | |
2418 | 2920 2004-12-05 Adrian Aichner <adrian@xemacs.org> |
2921 | |
2922 * Makefile (TEXI2HTML): Changed to produce unsplit output. | |
2923 * Makefile (TEXI2HTML_SPLIT): New. | |
2924 * Makefile (CP): New. | |
2925 * Makefile (PHOTODIR): New. | |
2926 * Makefile ($(HTMLDIR)/cl.html): Use TEXI2HTML_SPLIT. | |
2927 * Makefile ($(HTMLDIR)/custom.html): Ditto. | |
2928 * Makefile ($(HTMLDIR)/emodules.html): Ditto. | |
2929 * Makefile ($(HTMLDIR)/external-widget.html): Ditto. | |
2930 * Makefile ($(HTMLDIR)/info.html): Ditto. | |
2931 * Makefile ($(HTMLDIR)/standards.html): Ditto. | |
2932 * Makefile ($(HTMLDIR)/term.html): Ditto. | |
2933 * Makefile ($(HTMLDIR)/termcap.html): Ditto. | |
2934 * Makefile ($(HTMLDIR)/texinfo.html): Ditto. | |
2935 * Makefile ($(HTMLDIR)/widget.html): Ditto. | |
2936 * Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto. | |
2937 Produce unsplit output for website also, copy photos to HTMLDIR. | |
2938 * Makefile ($(HTMLDIR)/xemacs.html): Ditto. | |
2939 * Makefile ($(HTMLDIR)/lispref.html): Ditto. | |
2940 * Makefile ($(HTMLDIR)/internals.html): Ditto. | |
2941 * Makefile ($(HTMLDIR)/new-users-guide.html): Ditto. | |
2942 * xemacs-faq.texi (Q1.3.1): Fix broken image links in HTML output. | |
2943 | |
2406 | 2944 2004-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
2945 | |
2946 * internals/internals.texi (Better Rendering Support -- | |
2947 Configuration with the Interim Patches): | |
2948 Add documentation of X resources, especially for GUI elements. | |
2949 (Better Rendering Support -- Implementation): | |
2950 More comments about specification and design issues. | |
2951 (Better Rendering Support -- Current Status): | |
2952 New subsubsection "Bugs Reported in sjt-xft". | |
2953 | |
2405 | 2954 2004-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
2955 | |
2956 * internals/internals.texi (Future Work -- Better Rendering Support): | |
2957 New node. | |
2865 | 2958 (Top): |
2405 | 2959 (Future Work): |
2960 (Future Work -- Lisp Engine Replacement): | |
2961 Add pointers to new node. | |
2962 | |
2393 | 2963 2004-11-16 Ben Wing <ben@xemacs.org> |
2964 | |
2965 * internals/internals.texi (Top): | |
2966 * internals/internals.texi (Introduction): | |
2967 * internals/internals.texi (Authorship of XEmacs): | |
2968 * internals/internals.texi (A History of Emacs): | |
2969 * internals/internals.texi (Through Version 18): | |
2970 * internals/internals.texi (Epoch): | |
2971 * internals/internals.texi (Lucid Emacs): | |
2972 * internals/internals.texi (GNU Emacs 19): | |
2973 * internals/internals.texi (GNU Emacs 20): | |
2974 * internals/internals.texi (XEmacs): | |
2975 * internals/internals.texi (The XEmacs Split): | |
2976 * internals/internals.texi (Build-Time Dependencies): | |
2977 * internals/internals.texi (Low-Level Modules): | |
2978 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
2979 * internals/internals.texi (Rules When Writing New C Code): | |
2980 * internals/internals.texi (Introduction to Writing C Code): | |
2981 * internals/internals.texi (Writing New Modules): | |
2982 * internals/internals.texi (Working with Lisp Objects): | |
2983 * internals/internals.texi (Writing Lisp Primitives): | |
2984 * internals/internals.texi (Adding Global Lisp Variables): | |
2985 * internals/internals.texi (Writing Macros): | |
2986 * internals/internals.texi (Proper Use of Unsigned Types): | |
2987 * internals/internals.texi (Major Textual Changes): | |
2988 * internals/internals.texi (Great Integral Type Renaming): | |
2989 * internals/internals.texi (Text/Char Type Renaming): | |
2990 * internals/internals.texi (Debugging and Testing): | |
2991 * internals/internals.texi (Modules for Regression Testing): | |
2992 * internals/internals.texi (Merging a Branch into the Trunk): | |
2993 * internals/internals.texi (XEmacs from the Inside): | |
2994 * internals/internals.texi (Basic Types): | |
2995 * internals/internals.texi (Low-Level Allocation): | |
2996 * internals/internals.texi (Basic Heap Allocation): | |
2997 * internals/internals.texi (Stack Allocation): | |
2998 * internals/internals.texi (Dynamic Arrays): | |
2999 * internals/internals.texi (Allocation by Blocks): | |
3000 * internals/internals.texi (Modules for Allocation): | |
3001 * internals/internals.texi (Critical Redisplay Sections): | |
3002 * internals/internals.texi (Control-G (Quit) Checking): | |
3003 * internals/internals.texi (Future Work Discussion): | |
3004 * internals/internals.texi (Discussion -- Garbage Collection): | |
3005 * internals/internals.texi (Discussion -- Pure Space): | |
3006 * internals/internals.texi (Discussion -- Hashtable-Based Marking and Cleanup): | |
3007 * internals/internals.texi (Discussion -- The Anti-Cons): | |
3008 * internals/internals.texi (Discussion -- Glyphs): | |
3009 * internals/internals.texi (Discussion -- Dialog Boxes): | |
3010 * internals/internals.texi (Discussion -- Multilingual Issues): | |
3011 * internals/internals.texi (Discussion -- Instantiators and Generic Property Accessors): | |
3012 * internals/internals.texi (image-instance-property): New. | |
3013 * internals/internals.texi (set-image-instance-property): New. | |
3014 * internals/internals.texi (Discussion -- Switching to C++): | |
3015 * internals/internals.texi (Discussion -- Windows External Widget): | |
3016 | |
3017 Add sections on Basic Types and Low-Level Allocation. Move module | |
3018 docs here. Incorporate dynamic array and blocktype docs from | |
3019 source. | |
3020 | |
3021 Add info on beta releases up to present. | |
3022 | |
3023 Redo chapter on "Rules When Writing New C Code", grouping stuff | |
3024 together properly. Put "Major Textual Changes" under this | |
3025 chapter. Incorporate etc/CODING-STANDARDS. | |
3026 | |
3027 Add discussion sections on "Instantiators and Generic Property | |
3028 Accessors" and "Switching to C++". Fill out discussion on garbage | |
3029 collection. | |
3030 | |
3031 Incorporate backtraces showing crashes due to problems with | |
3032 redisplay-critical-section protection. | |
3033 | |
2367 | 3034 2004-11-04 Ben Wing <ben@xemacs.org> |
3035 | |
3036 * lispref/mule.texi (CCL Syntax): | |
3037 * lispref/mule.texi (INT-OR-CHAR): New. | |
3038 * lispref/mule.texi (CCL Statements): | |
3039 Update CCL docs. | |
3040 | |
3041 2004-11-04 Ben Wing <ben@xemacs.org> | |
3042 | |
3043 * internals/internals.texi (Top): | |
3044 * internals/internals.texi (NOTE): New. | |
3045 * internals/internals.texi (list-to-texinfo): New. | |
3046 * internals/internals.texi (remove-spacing): New. | |
3047 * internals/internals.texi (table-to-texinfo): New. | |
3048 * internals/internals.texi (convert-text-to-texinfo): New. | |
3049 * internals/internals.texi ('make-future): New. | |
3050 * internals/internals.texi ('make-discussion): New. | |
3051 * internals/internals.texi ('make-old-future): New. | |
3052 * internals/internals.texi ('make-section): New. | |
3053 * internals/internals.texi ('make-subsection): New. | |
3054 * internals/internals.texi (Introduction): | |
3055 * internals/internals.texi (divisions): New. | |
3056 * internals/internals.texi (Authorship of XEmacs): | |
3057 * internals/internals.texi (XEmacs): | |
3058 * internals/internals.texi (The XEmacs Split): | |
3059 * internals/internals.texi (Author): New. | |
3060 * internals/internals.texi (XEmacs from the Outside): | |
3061 * internals/internals.texi (The Lisp Language): | |
3062 * internals/internals.texi (XEmacs from the Perspective of Building): | |
3063 * internals/internals.texi (Build-Time Dependencies): | |
3064 * internals/internals.texi (The Modules of XEmacs): | |
3065 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
3066 * internals/internals.texi (ways): Removed. | |
3067 * internals/internals.texi (Low-Level Modules): | |
3068 * internals/internals.texi (Basic Lisp Modules): | |
3069 * internals/internals.texi (Modules for Standard Editing Operations): | |
3070 * internals/internals.texi (files): Removed. | |
3071 * internals/internals.texi (Modules for Interfacing with the File System): | |
3072 * internals/internals.texi (some_variable): Removed. | |
3073 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
3074 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
3075 * internals/internals.texi (character): Removed. | |
3076 * internals/internals.texi (Major Textual Changes): | |
3077 * internals/internals.texi (Great Integral Type Renaming): | |
3078 * internals/internals.texi (commands): Removed. | |
3079 * internals/internals.texi (Text/Char Type Renaming): | |
3080 * internals/internals.texi (pattern): Removed. | |
3081 * internals/internals.texi (Rules When Writing New C Code): | |
3082 * internals/internals.texi (A Reader's Guide to XEmacs Coding Conventions): | |
3083 * internals/internals.texi (General Coding Rules): | |
3084 * internals/internals.texi (examples): Removed. | |
3085 * internals/internals.texi (Object-Oriented Techniques for C): | |
3086 * internals/internals.texi (Writing Lisp Primitives): | |
3087 * internals/internals.texi (Writing Good Comments): | |
3088 * internals/internals.texi (Adding Global Lisp Variables): | |
3089 * internals/internals.texi (Writing Macros): | |
3090 * internals/internals.texi (Proper Use of Unsigned Types): | |
3091 * internals/internals.texi (Techniques for XEmacs Developers): | |
3092 * internals/internals.texi (Regression Testing XEmacs): | |
3093 * internals/internals.texi (How to Regression-Test): | |
3094 * internals/internals.texi (Modules for Regression Testing): | |
3095 * internals/internals.texi (CVS Techniques): | |
3096 * internals/internals.texi (Merging a Branch into the Trunk): | |
3097 * internals/internals.texi (XEmacs from the Inside): | |
3098 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
3099 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
3100 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
3101 * internals/internals.texi (Introduction to Allocation): | |
3102 * internals/internals.texi (Garbage Collection): | |
3103 * internals/internals.texi (GCPROing): | |
3104 * internals/internals.texi (Garbage Collection - Step by Step): | |
3105 * internals/internals.texi (Invocation): | |
3106 * internals/internals.texi (garbage_collect_1): | |
3107 * internals/internals.texi (mark_object): | |
3108 * internals/internals.texi (gc_sweep): | |
3109 * internals/internals.texi (sweep_lcrecords_1): | |
3110 * internals/internals.texi (compact_string_chars): | |
3111 * internals/internals.texi (sweep_strings): | |
3112 * internals/internals.texi (sweep_bit_vectors_1): | |
3113 * internals/internals.texi (Integers and Characters): | |
3114 * internals/internals.texi (Allocation from Frob Blocks): | |
3115 * internals/internals.texi (lrecords): | |
3116 * internals/internals.texi (Low-level allocation): | |
3117 * internals/internals.texi (Cons): | |
3118 * internals/internals.texi (Vector): | |
3119 * internals/internals.texi (Bit Vector): | |
3120 * internals/internals.texi (Symbol): | |
3121 * internals/internals.texi (Marker): | |
3122 * internals/internals.texi (String): | |
3123 * internals/internals.texi (Compiled Function): | |
3124 * internals/internals.texi (The Lisp Reader and Compiler): | |
3125 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
3126 * internals/internals.texi (Evaluation): | |
3127 * internals/internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
3128 * internals/internals.texi (Simple Special Forms): | |
3129 * internals/internals.texi (Catch and Throw): | |
3130 * internals/internals.texi (Error Trapping): | |
3131 * internals/internals.texi (Symbols and Variables): | |
3132 * internals/internals.texi (Introduction to Symbols): | |
3133 * internals/internals.texi (Obarrays): | |
3134 * internals/internals.texi (Symbol Values): | |
3135 * internals/internals.texi (Buffers): | |
3136 * internals/internals.texi (Introduction to Buffers): | |
3137 * internals/internals.texi (Buffer Lists): | |
3138 * internals/internals.texi (Markers and Extents): | |
3139 * internals/internals.texi (The Buffer Object): | |
3140 * internals/internals.texi (Text): | |
3141 * internals/internals.texi (The Text in a Buffer): | |
3142 * internals/internals.texi (Ibytes and Ichars): | |
3143 * internals/internals.texi (Byte-Char Position Conversion): | |
3144 * internals/internals.texi (Searching and Matching): | |
3145 * internals/internals.texi (Multilingual Support): | |
3146 * internals/internals.texi (Introduction to Multilingual Issues #1): | |
3147 * internals/internals.texi (Introduction to Multilingual Issues #2): | |
3148 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
3149 * internals/internals.texi (Introduction to Multilingual Issues #4): | |
3150 * internals/internals.texi (Character Sets): | |
3151 * internals/internals.texi (Encodings): | |
3152 * internals/internals.texi (Japanese EUC (Extended Unix Code)): | |
3153 * internals/internals.texi (JIS7): | |
3154 * internals/internals.texi (Internal Mule Encodings): | |
3155 * internals/internals.texi (Internal String Encoding): | |
3156 * internals/internals.texi (Internal Character Encoding): | |
3157 * internals/internals.texi (Byte/Character Types; Buffer Positions; Other Typedefs): | |
3158 * internals/internals.texi (Byte Types): | |
3159 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
3160 * internals/internals.texi (Buffer Positions): | |
3161 * internals/internals.texi (Other Typedefs): | |
3162 * internals/internals.texi (Usage of the Various Representations): | |
3163 * internals/internals.texi (Working With the Various Representations): | |
3164 * internals/internals.texi (Internal Text API's): | |
3165 * internals/internals.texi (Basic internal-format API's): | |
3166 * internals/internals.texi (The DFC API): | |
3167 * internals/internals.texi (The Eistring API): | |
3168 * internals/internals.texi (Coding for Mule): | |
3169 * internals/internals.texi (Character-Related Data Types): | |
3170 * internals/internals.texi (Working With Character and Byte Positions): | |
3171 * internals/internals.texi (Conversion to and from External Data): | |
3172 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
3173 * internals/internals.texi (An Example of Mule-Aware Code): | |
3174 * internals/internals.texi (Mule-izing Code): | |
3175 * internals/internals.texi (CCL): | |
3176 * internals/internals.texi (Microsoft Windows-Related Multilingual Issues): | |
3177 * internals/internals.texi (Microsoft Documentation): | |
3178 * internals/internals.texi (Locales): | |
3179 * internals/internals.texi (More about code pages): | |
3180 * internals/internals.texi (More about locales): | |
3181 * internals/internals.texi (Unicode support under Windows): | |
3182 * internals/internals.texi (The golden rules of writing Unicode-safe code): | |
3183 * internals/internals.texi (The format of the locale in setlocale()): | |
3184 * internals/internals.texi (Random other Windows I18N docs): | |
3185 * internals/internals.texi (Modules for Internationalization): | |
3186 * internals/internals.texi (Consoles; Devices; Frames; Windows): | |
3187 * internals/internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
3188 * internals/internals.texi (Point): | |
3189 * internals/internals.texi (Window Hierarchy): | |
3190 * internals/internals.texi (The Window Object): | |
3191 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
3192 * internals/internals.texi (The Redisplay Mechanism): | |
3193 * internals/internals.texi (Critical Redisplay Sections): | |
3194 * internals/internals.texi (Line Start Cache): | |
3195 * internals/internals.texi (Redisplay Piece by Piece): | |
3196 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
3197 * internals/internals.texi (Modules for other Display-Related Lisp Objects): | |
3198 * internals/internals.texi (Extents): | |
3199 * internals/internals.texi (Introduction to Extents): | |
3200 * internals/internals.texi (Extent Ordering): | |
3201 * internals/internals.texi (Format of the Extent Info): | |
3202 * internals/internals.texi (Zero-Length Extents): | |
3203 * internals/internals.texi (Mathematics of Extent Ordering): | |
3204 * internals/internals.texi (Extent Fragments): | |
3205 * internals/internals.texi (Faces): | |
3206 * internals/internals.texi (Glyphs): | |
3207 * internals/internals.texi (Specifiers): | |
3208 * internals/internals.texi (Menus): | |
3209 * internals/internals.texi (Events and the Event Loop): | |
3210 * internals/internals.texi (Introduction to Events): | |
3211 * internals/internals.texi (Main Loop): | |
3212 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
3213 * internals/internals.texi (Specifics About the Emacs Event): | |
3214 * internals/internals.texi (Event Queues): | |
3215 * internals/internals.texi (Event Stream Callback Routines): | |
3216 * internals/internals.texi (Other Event Loop Functions): | |
3217 * internals/internals.texi (Stream Pairs): | |
3218 * internals/internals.texi (Converting Events): | |
3219 * internals/internals.texi (Dispatching Events; The Command Builder): | |
3220 * internals/internals.texi (Focus Handling): | |
3221 * internals/internals.texi (Editor-Level Control Flow Modules): | |
3222 * internals/internals.texi (Asynchronous Events; Quit Checking): | |
3223 * internals/internals.texi (Signal Handling): | |
3224 * internals/internals.texi (Control-G (Quit) Checking): | |
3225 * internals/internals.texi (Profiling): | |
3226 * internals/internals.texi (Asynchronous Timeouts): | |
3227 * internals/internals.texi (Exiting): | |
3228 * internals/internals.texi (Lstreams): | |
3229 * internals/internals.texi (Creating an Lstream): | |
3230 * internals/internals.texi (Lstream Types): | |
3231 * internals/internals.texi (Lstream Functions): | |
3232 * internals/internals.texi (Lstream Methods): | |
3233 * internals/internals.texi (Subprocesses): | |
3234 * internals/internals.texi (Interface to MS Windows): | |
3235 * internals/internals.texi (Different kinds of Windows environments): | |
3236 * internals/internals.texi (Windows Build Flags): | |
3237 * internals/internals.texi (Windows I18N Introduction): | |
3238 * internals/internals.texi (Modules for Interfacing with MS Windows): | |
3239 * internals/internals.texi (Interface to the X Window System): | |
3240 * internals/internals.texi (Lucid Widget Library): | |
3241 * internals/internals.texi (Generic Widget Interface): | |
3242 * internals/internals.texi (dependencies): New. | |
3243 * internals/internals.texi (routines): New. | |
3244 * internals/internals.texi (Summary): New. | |
3245 * internals/internals.texi (Scrollbars): | |
3246 * internals/internals.texi (Menubars): | |
3247 * internals/internals.texi (Checkboxes and Radio Buttons): | |
3248 * internals/internals.texi (Progress Bars): | |
3249 * internals/internals.texi (Tab Controls): | |
3250 * internals/internals.texi (Modules for Interfacing with X Windows): | |
3251 * internals/internals.texi (Dumping): | |
3252 * internals/internals.texi (Dumping Justification): | |
3253 * internals/internals.texi (Overview): | |
3254 * internals/internals.texi (Data descriptions): | |
3255 * internals/internals.texi (Dumping phase): | |
3256 * internals/internals.texi (Object inventory): | |
3257 * internals/internals.texi (Address allocation): | |
3258 * internals/internals.texi (The header): | |
3259 * internals/internals.texi (Data dumping): | |
3260 * internals/internals.texi (Pointers dumping): | |
3261 * internals/internals.texi (Reloading phase): | |
3262 * internals/internals.texi (Abstract): New. | |
3263 * internals/internals.texi (Remaining issues): | |
3264 * internals/internals.texi (Future Work): | |
3265 * internals/internals.texi (Future Work -- General Suggestions): | |
3266 * internals/internals.texi (Future Work -- Elisp Compatibility Package): | |
3267 * internals/internals.texi (Future Work -- Drag-n-Drop): | |
3268 * internals/internals.texi (Future Work -- Standard Interface for Enabling Extensions): | |
3269 * internals/internals.texi (Future Work -- Better Initialization File Scheme): | |
3270 * internals/internals.texi (Future Work -- Keyword Parameters): | |
3271 * internals/internals.texi (Future Work -- Property Interface Changes): | |
3272 * internals/internals.texi (Future Work -- Toolbars): | |
3273 * internals/internals.texi (Future Work -- Easier Toolbar Customization): | |
3274 * internals/internals.texi (Future Work -- Toolbar Interface Changes): | |
3275 * internals/internals.texi (Future Work -- Menu API Changes): | |
3276 * internals/internals.texi (Future Work -- Removal of Misc-User Event Type): | |
3277 * internals/internals.texi (Future Work -- Mouse Pointer): | |
3278 * internals/internals.texi (Future Work -- Abstracted Mouse Pointer Interface): | |
3279 * internals/internals.texi (Future Work -- Busy Pointer): | |
3280 * internals/internals.texi (Future Work -- Extents): | |
3281 * internals/internals.texi (Future Work -- Everything should obey duplicable extents): | |
3282 * internals/internals.texi (Future Work -- Version Number and Development Tree Organization): | |
3283 * internals/internals.texi (Future Work -- Improvements to the @code{xemacs.org} Website): | |
3284 * internals/internals.texi (Future Work -- Keybindings): | |
3285 * internals/internals.texi (Future Work -- Keybinding Schemes): | |
3286 * internals/internals.texi (Future Work -- Better Support for Windows Style Key Bindings): | |
3287 * internals/internals.texi (Future Work -- Misc Key Binding Ideas): | |
3288 * internals/internals.texi (Future Work -- Byte Code Snippets): | |
3289 * internals/internals.texi (Future Work -- Autodetection): | |
3290 * internals/internals.texi (Future Work -- Conversion Error Detection): | |
3291 * internals/internals.texi (Future Work -- Unicode): | |
3292 * internals/internals.texi (Future Work -- BIDI Support): | |
3293 * internals/internals.texi (Future Work -- Localized Text/Messages): | |
3294 * internals/internals.texi (Future Work -- Lisp Stream API): | |
3295 * internals/internals.texi (Future Work -- Multiple Values): | |
3296 * internals/internals.texi (Future Work -- Macros): | |
3297 * internals/internals.texi (Future Work -- Specifiers): | |
3298 * internals/internals.texi (Future Work -- Display Tables): | |
3299 * internals/internals.texi (Future Work -- Making Elisp Function Calls Faster): | |
3300 * internals/internals.texi (Future Work -- Lisp Engine Replacement): | |
3301 * internals/internals.texi (Future Work -- Lisp Engine Discussion): | |
3302 * internals/internals.texi (Future Work -- Lisp Engine Replacement -- Implementation): | |
3303 * internals/internals.texi (Future Work -- Startup File Modification by Packages): | |
3304 * internals/internals.texi (Future Work Discussion): | |
3305 * internals/internals.texi (Discussion -- garbage collection): | |
3306 * internals/internals.texi (Discussion -- glyphs): | |
3307 * internals/internals.texi (Discussion -- Dialog Boxes): | |
3308 * internals/internals.texi (Discussion -- Multilingual Issues): | |
3309 * internals/internals.texi (Discussion -- Windows External Widget): | |
3310 * internals/internals.texi (Discussion -- Packages): | |
3311 * internals/internals.texi (Discussion -- Distribution Layout): | |
3312 * internals/internals.texi (Old Future Work): | |
3313 * internals/internals.texi (Old Future Work -- A Portable Unexec Replacement): | |
3314 * internals/internals.texi (backtrace): New. | |
3315 * internals/internals.texi (Old Future Work -- Indirect Buffers): | |
3316 * internals/internals.texi (emacs-lisp): New. | |
3317 * internals/internals.texi (Old Future Work -- Improvements in support for non-ASCII (European) keysyms under X): | |
3318 * internals/internals.texi (Newsgroups): New. | |
3319 * internals/internals.texi (Old Future Work -- RTF Clipboard Support): | |
3320 * internals/internals.texi (own-selection): New. | |
3321 * internals/internals.texi (Old Future Work -- xemacs.org Mailing Address Changes): | |
3322 * internals/internals.texi (COMMENT): New. | |
3323 * internals/internals.texi (Old Future Work -- Lisp callbacks from critical areas of the C code): | |
3324 * internals/internals.texi (Now): Removed. | |
3325 * internals/internals.texi (Proof): Removed. | |
3326 * internals/internals.texi (Note): Removed. | |
3327 * internals/internals.texi (Date): New. | |
3328 * internals/internals.texi (ben): Removed. | |
3329 * internals/internals.texi (importance): New. | |
3330 * internals/internals.texi (From): New. | |
3331 Major work on internals manual. Rearranged many chapters so as to | |
3332 lie in coherent divisions. | |
3333 Add tons of stuff to Future Work, Old Future Work, Discussions. | |
3334 Add lots of stuff to Mule section (Multilingual ...). | |
3335 Remove index.texi, incorporate into internals.texi. | |
3336 Section on early history and an introduction. | |
3337 Section on XEmacs split. Lots of new MS Windows docs | |
3338 Mostly recently: Windows-I18N docs. Lots if new I18N docs. | |
3339 Loads of other stuff. | |
3340 | |
2362 | 3341 2004-11-02 Ben Wing <ben@xemacs.org> |
3342 | |
3343 * internals/index.texi: | |
3344 Deleted. Incorporated into internals.texi. Having a separate | |
3345 index file messes up texinfo-master-menu. | |
2865 | 3346 |
2362 | 3347 * internals/internals.texi: |
3348 * internals/internals.texi (Top): | |
3349 * internals/internals.texi (Introduction): | |
3350 * internals/internals.texi (Authorship of XEmacs): | |
3351 * internals/internals.texi (A History of Emacs): | |
3352 * internals/internals.texi (Through Version 18): | |
3353 * internals/internals.texi (Lucid Emacs): | |
3354 * internals/internals.texi (GNU Emacs 19): | |
3355 * internals/internals.texi (GNU Emacs 20): | |
3356 * internals/internals.texi (XEmacs): | |
3357 * internals/internals.texi (XEmacs From the Outside): | |
3358 * internals/internals.texi (The Lisp Language): | |
3359 * internals/internals.texi (XEmacs From the Perspective of Building): | |
3360 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
3361 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
3362 * internals/internals.texi (Major Textual Changes): | |
3363 * internals/internals.texi (Great Integral Type Renaming): | |
3364 * internals/internals.texi (Text/Char Type Renaming): | |
3365 * internals/internals.texi (Rules When Writing New C Code): | |
3366 * internals/internals.texi (A Reader's Guide to XEmacs Coding Conventions): | |
3367 * internals/internals.texi (General Coding Rules): | |
3368 * internals/internals.texi (Object-Oriented Techniques for C): | |
3369 * internals/internals.texi (Writing Lisp Primitives): | |
3370 * internals/internals.texi (Writing Good Comments): | |
3371 * internals/internals.texi (Adding Global Lisp Variables): | |
3372 * internals/internals.texi (Writing Macros): | |
3373 * internals/internals.texi (Proper Use of Unsigned Types): | |
3374 * internals/internals.texi (Techniques for XEmacs Developers): | |
3375 * internals/internals.texi (Regression Testing XEmacs): | |
3376 * internals/internals.texi (How to Regression-Test): | |
3377 * internals/internals.texi (Modules for Regression Testing): | |
3378 * internals/internals.texi (CVS Techniques): | |
3379 * internals/internals.texi (Merging a Branch into the Trunk): | |
3380 * internals/internals.texi (The Modules of XEmacs): | |
3381 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
3382 * internals/internals.texi (Low-Level Modules): | |
3383 * internals/internals.texi (Basic Lisp Modules): | |
3384 * internals/internals.texi (Modules for Standard Editing Operations): | |
3385 * internals/internals.texi (Modules for Interfacing with the File System): | |
3386 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
3387 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
3388 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
3389 * internals/internals.texi (Introduction to Allocation): | |
3390 * internals/internals.texi (Garbage Collection): | |
3391 * internals/internals.texi (GCPROing): | |
3392 * internals/internals.texi (Garbage Collection - Step by Step): | |
3393 * internals/internals.texi (Invocation): | |
3394 * internals/internals.texi (garbage_collect_1): | |
3395 * internals/internals.texi (mark_object): | |
3396 * internals/internals.texi (gc_sweep): | |
3397 * internals/internals.texi (sweep_lcrecords_1): | |
3398 * internals/internals.texi (compact_string_chars): | |
3399 * internals/internals.texi (Integers and Characters): | |
3400 * internals/internals.texi (Allocation from Frob Blocks): | |
3401 * internals/internals.texi (lrecords): | |
3402 * internals/internals.texi (Low-level allocation): | |
3403 * internals/internals.texi (Cons): | |
3404 * internals/internals.texi (Vector): | |
3405 * internals/internals.texi (Symbol): | |
3406 * internals/internals.texi (Marker): | |
3407 * internals/internals.texi (String): | |
3408 * internals/internals.texi (Dumping): | |
3409 * internals/internals.texi (Dumping Justification): | |
3410 * internals/internals.texi (Overview): | |
3411 * internals/internals.texi (Data descriptions): | |
3412 * internals/internals.texi (Dumping phase): | |
3413 * internals/internals.texi (Object inventory): | |
3414 * internals/internals.texi (Address allocation): | |
3415 * internals/internals.texi (The header): | |
3416 * internals/internals.texi (Data dumping): | |
3417 * internals/internals.texi (Pointers dumping): | |
3418 * internals/internals.texi (Reloading phase): | |
3419 * internals/internals.texi (Remaining issues): | |
3420 * internals/internals.texi (Events and the Event Loop): | |
3421 * internals/internals.texi (Introduction to Events): | |
3422 * internals/internals.texi (Main Loop): | |
3423 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
3424 * internals/internals.texi (Specifics About the Emacs Event): | |
3425 * internals/internals.texi (Event Queues): | |
3426 * internals/internals.texi (Event Stream Callback Routines): | |
3427 * internals/internals.texi (IMPORTANT): New. | |
3428 * internals/internals.texi (Other Event Loop Functions): | |
3429 * internals/internals.texi (Stream Pairs): | |
3430 * internals/internals.texi (Converting Events): | |
3431 * internals/internals.texi (Dispatching Events; The Command Builder): | |
3432 * internals/internals.texi (Focus Handling): | |
3433 * internals/internals.texi (Editor-Level Control Flow Modules): | |
3434 * internals/internals.texi (Asynchronous Events; Quit Checking): | |
3435 * internals/internals.texi (Control-G (Quit) Checking): | |
3436 * internals/internals.texi (completely): New. | |
3437 * internals/internals.texi (Profiling): | |
3438 * internals/internals.texi (Exiting): | |
3439 * internals/internals.texi (BEWARE): New. | |
3440 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
3441 * internals/internals.texi (Evaluation): | |
3442 * internals/internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
3443 * internals/internals.texi (Simple Special Forms): | |
3444 * internals/internals.texi (Catch and Throw): | |
3445 * internals/internals.texi (Introduction to Symbols): | |
3446 * internals/internals.texi (Obarrays): | |
3447 * internals/internals.texi (Symbol Values): | |
3448 * internals/internals.texi (Buffers): | |
3449 * internals/internals.texi (Introduction to Buffers): | |
3450 * internals/internals.texi (Buffer Lists): | |
3451 * internals/internals.texi (Markers and Extents): | |
3452 * internals/internals.texi (The Buffer Object): | |
3453 * internals/internals.texi (Text): | |
3454 * internals/internals.texi (The Text in a Buffer): | |
3455 * internals/internals.texi (Ibytes and Ichars): | |
3456 * internals/internals.texi (Byte-Char Position Conversion): | |
3457 * internals/internals.texi (Searching and Matching): | |
3458 * internals/internals.texi (Multilingual Support): | |
3459 * internals/internals.texi (Introduction to Multilingual Issues #1): | |
3460 * internals/internals.texi (Introduction to Multilingual Issues #2): | |
3461 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
3462 * internals/internals.texi (Introduction to Multilingual Issues #4): | |
3463 * internals/internals.texi (Character Sets): | |
3464 * internals/internals.texi (Encodings): | |
3465 * internals/internals.texi (Japanese EUC (Extended Unix Code)): | |
3466 * internals/internals.texi (JIS7): | |
3467 * internals/internals.texi (Internal Mule Encodings): | |
3468 * internals/internals.texi (Internal String Encoding): | |
3469 * internals/internals.texi (Internal Character Encoding): | |
3470 * internals/internals.texi (Byte/Character Types; Buffer Positions; Other Typedefs): | |
3471 * internals/internals.texi (Byte Types): | |
3472 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
3473 * internals/internals.texi (prefixes): New. | |
3474 * internals/internals.texi (C): New. | |
3475 * internals/internals.texi (U): New. | |
3476 * internals/internals.texi (S): New. | |
3477 * internals/internals.texi (Specifically): New. | |
3478 * internals/internals.texi (Buffer Positions): | |
3479 * internals/internals.texi (Other Typedefs): | |
3480 * internals/internals.texi (Usage of the Various Representations): | |
3481 * internals/internals.texi (Working With the Various Representations): | |
3482 * internals/internals.texi (Internal Text API's): | |
3483 * internals/internals.texi (Basic internal-format API's): | |
3484 * internals/internals.texi (The DFC API): | |
3485 * internals/internals.texi (The Eistring API): | |
3486 * internals/internals.texi (Coding for Mule): | |
3487 * internals/internals.texi (Character-Related Data Types): | |
3488 * internals/internals.texi (Working With Character and Byte Positions): | |
3489 * internals/internals.texi (Conversion to and from External Data): | |
3490 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
3491 * internals/internals.texi (An Example of Mule-Aware Code): | |
3492 * internals/internals.texi (Mule-izing Code): | |
3493 * internals/internals.texi (CCL): | |
3494 * internals/internals.texi (Modules for Internationalization): | |
3495 * internals/internals.texi (The Lisp Reader and Compiler): | |
3496 * internals/internals.texi (Lstreams): | |
3497 * internals/internals.texi (Creating an Lstream): | |
3498 * internals/internals.texi (Lstream Types): | |
3499 * internals/internals.texi (Lstream Functions): | |
3500 * internals/internals.texi (Lstream Methods): | |
3501 * internals/internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
3502 * internals/internals.texi (Point): | |
3503 * internals/internals.texi (Window Hierarchy): | |
3504 * internals/internals.texi (The Window Object): | |
3505 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
3506 * internals/internals.texi (The Redisplay Mechanism): | |
3507 * internals/internals.texi (Critical Redisplay Sections): | |
3508 * internals/internals.texi (Line Start Cache): | |
3509 * internals/internals.texi (Redisplay Piece by Piece): | |
3510 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
3511 * internals/internals.texi (Modules for other Display-Related Lisp Objects): | |
3512 * internals/internals.texi (Introduction to Extents): | |
3513 * internals/internals.texi (Extent Ordering): | |
3514 * internals/internals.texi (Format of the Extent Info): | |
3515 * internals/internals.texi (Zero-Length Extents): | |
3516 * internals/internals.texi (Mathematics of Extent Ordering): | |
3517 * internals/internals.texi (Extent Fragments): | |
3518 * internals/internals.texi (Faces): | |
3519 * internals/internals.texi (Glyphs): | |
3520 * internals/internals.texi (Specifiers): | |
3521 * internals/internals.texi (Menus): | |
3522 * internals/internals.texi (Subprocesses): | |
3523 * internals/internals.texi (Interface to MS Windows): | |
3524 * internals/internals.texi (Different kinds of Windows environments): | |
3525 * internals/internals.texi (Windows Build Flags): | |
3526 * internals/internals.texi (Windows I18N Introduction): | |
3527 * internals/internals.texi (Modules for Interfacing with MS Windows): | |
3528 * internals/internals.texi (Interface to the X Window System): | |
3529 * internals/internals.texi (Generic Widget Interface): | |
3530 * internals/internals.texi (Scrollbars): | |
3531 * internals/internals.texi (Menubars): | |
3532 * internals/internals.texi (Checkboxes and Radio Buttons): | |
3533 * internals/internals.texi (Modules for Interfacing with X Windows): | |
3534 * internals/internals.texi (Future Work): | |
3535 * internals/internals.texi (Future Work -- Elisp Compatibility Package): | |
3536 * internals/internals.texi (Future Work -- Drag-n-Drop): | |
3537 * internals/internals.texi (Future Work -- Standard Interface for Enabling Extensions): | |
3538 * internals/internals.texi (Future Work -- Better Initialization File Scheme): | |
3539 * internals/internals.texi (Future Work -- Keyword Parameters): | |
3540 * internals/internals.texi (Future Work -- Property Interface Changes): | |
3541 * internals/internals.texi (Future Work -- Easier Toolbar Customization): | |
3542 * internals/internals.texi (Future Work -- Toolbar Interface Changes): | |
3543 * internals/internals.texi (Future Work -- Menu API Changes): | |
3544 * internals/internals.texi (Future Work -- Removal of Misc-User Event Type): | |
3545 * internals/internals.texi (Future Work -- Mouse Pointer): | |
3546 * internals/internals.texi (Future Work -- Abstracted Mouse Pointer Interface): | |
3547 * internals/internals.texi (Future Work -- Busy Pointer): | |
3548 * internals/internals.texi (Future Work -- Extents): | |
3549 * internals/internals.texi (Future Work -- Everything should obey duplicable extents): | |
3550 * internals/internals.texi (Future Work -- Version Number and Development Tree Organization): | |
3551 * internals/internals.texi (Future Work -- Improvements to the @code{xemacs.org} Website): | |
3552 * internals/internals.texi (Future Work -- Keybinding Schemes): | |
3553 * internals/internals.texi (Future Work -- Better Support for Windows Style Key Bindings): | |
3554 * internals/internals.texi (Future Work -- Misc Key Binding Ideas): | |
3555 * internals/internals.texi (Future Work -- Byte Code Snippets): | |
3556 * internals/internals.texi (Future Work -- Autodetection): | |
3557 * internals/internals.texi (Future Work -- Conversion Error Detection): | |
3558 * internals/internals.texi (Future Work -- BIDI Support): | |
3559 * internals/internals.texi (Future Work -- Localized Text/Messages): | |
3560 * internals/internals.texi (freeze): New. | |
3561 * internals/internals.texi (fail-safe): New. | |
3562 * internals/internals.texi (like): New. | |
3563 * internals/internals.texi (user): New. | |
3564 * internals/internals.texi (ben): New. | |
3565 * internals/internals.texi ('type): New. | |
3566 * internals/internals.texi (NOTE): New. | |
3567 * internals/internals.texi (ILLEGIBLE): New. | |
3568 * internals/internals.texi (language): New. | |
3569 * internals/internals.texi (preprocessing): New. | |
3570 * internals/internals.texi (Subject): New. | |
3571 * internals/internals.texi (http): New. | |
3572 * internals/internals.texi (Now): Removed. | |
3573 * internals/internals.texi (wrong): New. | |
3574 * internals/internals.texi (Proof): Removed. | |
3575 | |
3576 Add bunches and bunches and bunches and bunches of stuff, taken | |
3577 from documentation floating around in various places -- text.c, | |
3578 file-coding.c, other .c and .h files, stuff that I wrote up for an | |
3579 old XEmacs contract, proposals written up in the process of an | |
3580 e-mail discussion, etc. Fix up some mistakes, esp. in CCL. Extra | |
3581 crap from CCL, duplicated with Lispref, removed. Sections on Old | |
3582 Future Work and Future Work Discussion added. | |
3583 | |
3584 Bunches of other work. Add bunches of documentation taken from the | |
3585 source code. Fixup various places to use @strong{}, @code{}, | |
3586 @file{}. Create new Text chapter, split off from Buffers and | |
3587 Textual Representation. Create new chapter for MS Windows, mostly | |
3588 written from scratch. Consolidate all Mule info under | |
3589 "Multilingual Support". Break up chapter on modules and move some | |
3590 parts to the sections discussing the modules, for consolidation | |
3591 purposes. Add a big cross-reference table for all the modules to | |
3592 where they're discussed (or not). New chapter Asynchronous | |
3593 Events; Quit Checking. (Taken from various parts of the code.) New | |
3594 Introduction. New section on Focus Handling (from the code). | |
3595 | |
3596 NOTE that in the process, I discovered that we essentially have | |
3597 FOUR redundant introductions to Mule issues! Someone really needs | |
3598 to go through and clean them up and integrate them (sjt?). | |
3599 | |
2355 | 3600 2003-07-18 Alexey Mahotkin <alexm@hsys.msk.ru> |
3601 | |
3602 * lispref/windows.texi (Basic Windows): Fix typo. | |
3603 | |
2346 | 3604 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
3605 | |
3606 * XEmacs 21.5.18 "chestnut" is released. | |
3607 | |
2297 | 3608 2003-11-02 Stephen J. Turnbull <stephen@xemacs.org> |
3609 | |
3610 * lispref/control.texi (Examples of Catch): Mention use of a cons | |
3611 as a catch tag. | |
3612 | |
3613 2004-07-20 Stephen J. Turnbull <stephen@xemacs.org> | |
3614 | |
3615 * lispref/glyphs.texi (Image Instantiator Formats): Add a few | |
3616 words about the tab control widget. | |
3617 | |
2289 | 3618 2004-05-14 Darryl Okahata <darrylo@xemacs.org> |
3619 | |
3620 * lispref/windows.texi. Added documentation for the functions, | |
3621 ``current-pixel-row'' and ``current-pixel-column''. | |
3622 | |
2269 | 3623 2004-09-13 Jerry James <james@xemacs.org> |
3624 | |
3625 * internals/internals.texi (Modules for Interfacing with the | |
3626 Operating System): The code formerly in callproc.c is now | |
3627 implemented in Lisp in process.el. | |
3628 | |
2256 | 3629 2004-08-30 Jerry James <james@xemacs.org> |
3630 | |
3631 * lispref/text.texi: Document text fields. | |
3632 | |
2255 | 3633 2004-09-08 Stephen J. Turnbull <stephen@xemacs.org> |
3634 | |
3635 * lispref/searching.texi (Syntax of Regexps): Add example of use | |
3636 of shy groups in variable subexpression, correct rumor that there | |
2297 | 3637 may be substantial performance gain. Document double-digit back- |
3638 references. | |
2255 | 3639 |
2214 | 3640 2004-08-13 Stephen J. Turnbull <stephen@xemacs.org> |
3641 | |
2215 | 3642 * xemacs/help.texi (Misc Help): Info-goto-emacs-key-command-node |
3643 to function index. Document Info-goto-emacs-command-node. | |
3644 | |
2214 | 3645 * lispref/positions.texi (Text Lines): makeinfo doesn't like Note:. |
3646 | |
2182 | 3647 2004-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
3648 | |
3649 * lispref/glyphs.texi: Complete reorganization, some content updated. | |
3650 * lispref/lispref.texi (Top): Update menu to match. | |
3651 * lispref/extents.texi (Extent Properties): Update xref. | |
3652 | |
3653 2004-06-29 Stephen J. Turnbull <stephen@xemacs.org> | |
3654 | |
3655 * internals/internals.texi (Modules for Other Aspects of the Lisp | |
3656 Interpreter and Object System): Add description of Sextword syntax | |
3657 class (now obsolete). | |
3658 | |
3659 2004-06-20 Stephen J. Turnbull <stephen@xemacs.org> | |
3660 | |
3661 * internals/internals.texi (Techniques for XEmacs Developers): Be | |
3662 specific when discussing optimization. | |
2255 | 3663 (Techniques for XEmacs Developers): Fragments that are meaningless |
2182 | 3664 by themselves or contain placeholders should be @samp, not @code. |
3665 (Modules for Internationalization): Add description of mule-coding.c | |
3666 and further deprecate mule.c. | |
3667 (Modules for Regression Testing): Add {tag,weak}-tests.el to list. | |
3668 | |
2164 | 3669 2004-07-05 Stephen J. Turnbull <stephen@xemacs.org> |
3670 | |
3671 * xemacs-faq.texi (Q3.10.2): Mention that `pending-delete' is in | |
3672 the "pc" package. | |
3673 | |
2141 | 3674 2004-06-15 Stephen J. Turnbull <stephen@xemacs.org> |
3675 | |
3676 * lispref/specifiers.texi (Specifier Instancing): Add "neon | |
3677 modeline" hack as an example. Thanks to Giacomo Boffi. | |
3678 | |
2135 | 3679 2004-06-07 Jerry James <james@xemacs.org> |
3680 | |
3681 * lispref/modes.texi (Major Modes): Document -mode functions, and | |
3682 the use of a nil argument to defined-derived mode. | |
3683 * lispref/modes.texi (Major Mode Conventions): Describe the use of | |
3684 delay-mode-hooks and define-derived-mode. | |
3685 * lispref/modes.texi (Derived Modes): Warn against the use of | |
3686 interactive specs in derived mode definitions. | |
3687 * lispref/modes.texi (Hooks): Document run-mode-hooks, | |
3688 delay-mode-hooks, run-hook-with-args, | |
3689 run-hook-with-args-until-failure, and0 | |
3690 run-hook-with-args-until-success. | |
3691 | |
2127 | 3692 2004-06-14 Stephen J. Turnbull <stephen@xemacs.org> |
3693 | |
3694 * lispref/glyphs.texi (Creating Glyphs): Improve discussion, fix a | |
3695 couple of typos. | |
3696 | |
3697 * lispref/faces.texi (Face Properties): Background pixmaps | |
3698 can be used on GTK and MS Windows. | |
3699 (Face Convenience Functions): Cross-reference glyph interface. | |
3700 Background pixmap is an image specifier, not a glyph. | |
3701 | |
2091 | 3702 2004-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
3703 | |
3704 * lispref/numbers.texi (Comparison of Numbers): Clarify bigfloat eql. | |
3705 (Predicates on Numbers): Fix thinko in description of `bigfloatp'. | |
3706 | |
2090 | 3707 2004-05-10 Stephen J. Turnbull <stephen@xemacs.org> |
3708 | |
3709 * lispref/numbers.texi (Numbers): Remove reference to "fixed- | |
3710 precision rationals," and fix description of floating-point | |
3711 contagion. | |
3712 (Integer Basics, Float Basics): Fix typos. | |
3713 (Canonicalization and Contagion): Complete rewrite. | |
3714 (Predicates on Numbers): Add fixnump, bignump, ratiop, rationalp, | |
3715 bigfloatp, floatingp, realp, oddp and evenp. | |
3716 (Rational Basics): Add numerator and denominator. | |
3717 (Random Numbers): Fix description of range, and add paranoid | |
3718 comment about how unpredictable `(random t)' is. | |
3719 (Canonicalization and Contagion): Renamed from Contagion and | |
3720 Canonicalization. | |
3721 (The Bignum Extension): Fix it in menu. | |
3722 | |
2069 | 3723 2004-05-10 Stephen J. Turnbull <stephen@xemacs.org> |
3724 | |
3725 * internals/internals.texi (Object-Oriented Techniques for C): | |
3726 Remove reference to "encouraging port to C++". | |
3727 | |
3728 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> | |
2033 | 3729 |
3730 * lispref/numbers.texi (The Bignum Extension): Mention the feature | |
3731 symbols provided. | |
3732 | |
2069 | 3733 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> |
2032 | 3734 |
3735 * lispref/numbers.texi (Rational Basics): There's a reason why | |
3736 this node is named "Rational" and not "Ratio" in the menu.... | |
3737 | |
2028 | 3738 2004-04-18 Stephen J. Turnbull <stephen@xemacs.org> |
3739 | |
3740 * internals/internals.texi (Object-Oriented Techniques in XEmacs): | |
3741 New node. | |
3742 (The XEmacs Object System (Abstractly Speaking)): | |
3743 Reorder the list of objects somewhat. | |
3744 Add brief descriptions of the arbitrary-precision number types. | |
3745 (Writing Good Comments): Slight revision, recommend @xemacs alias. | |
3746 (Character-Related Data Types): Add a few comments re Unicode. | |
3747 (Working With Character and Byte Positions): Ditto. | |
3748 (General Guidelines for Writing Mule-Aware Code): Query. | |
3749 (Conversion to and from External Data): Ditto. | |
3750 (Techniques for XEmacs Developers): Typo. | |
3751 (Modules for Regression Testing): Add an xref. | |
3752 (Overview): Note that dump file is now inside the executable. | |
3753 (Remaining issues): Mention ExecShield vs. pdumper. | |
3754 (Searching and Matching): Mention UTF-8 wrt Mule. | |
3755 | |
3756 2004-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
3757 | |
3758 * widget.texi (Introduction): Update historical references a bit. | |
3759 Fix many typos and grammatical problems. | |
3760 (User Interface): Fix typo. | |
3761 | |
2069 | 3762 2004-04-09 Stephen J. Turnbull <stephen@xemacs.org> |
2028 | 3763 |
3764 * lispref/numbers.texi (Numbers): Describe bignums, ratios, and | |
3765 bigfloats briefly. | |
3766 (Integer Basics): We've had 31-bit integers for a while. Fix the | |
3767 statement of minimum available precision and the examples. | |
3768 Document most-positive-fixnum and most-negative-fixnum. Add a | |
3769 pointer to the node "The Bignum Extension". | |
3770 (Float Basics): Document most-positive-float, most-negative-float, | |
3771 least-positive-float, least-positive-normalized-float, | |
3772 least-negative-float, and least-negative-normalized-float. Add a | |
3773 pointer to the node "The Bignum Extension". | |
3774 (Comparison of Numbers): Update for bignums. | |
3775 | |
3776 (The Bignum Extension): | |
3777 (Bignum Basics): | |
3778 (Ratio Basics): | |
3779 (Bigfloat Basics): | |
3780 (Contagion and Canonicalization): | |
3781 (Compatibility Issues): | |
3782 New nodes. | |
3783 | |
3784 * lispref/lispref.texi (Top): | |
2865 | 3785 * lispref/numbers.texi (Numbers): |
2028 | 3786 Add nodes "Ratio Basics" and "The Bignum Extension" to menus. |
3787 | |
3788 2004-01-26 Stephen J. Turnbull <stephen@xemacs.org> | |
3789 | |
3790 * lispref/specifiers.texi: Update FSF copyright. | |
3791 (Specifier Compatibility Notes): New node. | |
3792 | |
3793 * lispref/glyphs.texi (Glyph Properties): Fix typo. | |
3794 (Glyphs): | |
3795 (Native GUI Widgets): New node. | |
3796 | |
3797 * lispref/gutter.texi (Gutter Descriptor Format): Node deleted. | |
3798 (Gutter): | |
2865 | 3799 (Gutter Intro): |
3800 (Creating Gutter): | |
3801 (Specifying a Gutter): | |
2028 | 3802 Pluralize node name to Creating Gutters. |
3803 (Creating Gutters): Improve explanation of gutter descriptors. | |
3804 (Other Gutter Variables): Remove extraneous text. | |
3805 (Common Gutter Widgets): In lieu of real documentation, at least | |
3806 point to gutter-items.el. | |
3807 | |
2069 | 3808 2004-04-06 Stephen J. Turnbull <stephen@xemacs.org> |
1987 | 3809 |
3810 Lightly revised from <psr7v1j039.fsf@diannao.ittc.ku.edu>. | |
3811 Thanks to Jerry James <james@xemacs.org>. | |
3812 | |
3813 * xemacs-faq.texi (Top, Miscellaneous): In menus, renumber Section | |
3814 5.3 and Q5.3.1-12 as 5.4.x, and add Mathematics and Q5.3.1-4 as | |
3815 replacement section 5.3. | |
3816 (Q5.3.1, Q5.3.2, Q5.3.3, Q5.3.4) New FAQs for bignums. | |
3817 (Q5.2.1, Q8.0.1) Add @unnumberedsec headings. | |
3818 (Q6.4.1) Correct @unnumberedsec heading. | |
3819 | |
1964 | 3820 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
3821 | |
3822 * XEmacs 21.5.17 "chayote" is released. | |
3823 | |
1920 | 3824 2004-02-20 Stephen J. Turnbull <stephen@xemacs.org> |
3825 | |
3826 * internals/internals.texi (GCPROing): Mention `Fsignal'. Clarify | |
3827 that references, not the objects themselves, are what is marked. | |
3828 | |
1882 | 3829 2004-01-26 Stephen J. Turnbull <stephen@xemacs.org> |
3830 | |
3831 * lispref/specifiers.texi (Copyright): Update. | |
3832 | |
3833 (Creating Specifiers): Correct more instances of subject-verb | |
3834 disagreement. | |
3835 | |
1877 | 3836 2004-01-24 Stephen J. Turnbull <stephen@xemacs.org> |
3837 | |
3838 * lispref/specifiers.texi (Specifier Instancing Functions): Fix | |
3839 typos, thanks to Ilpo Nyyssönen. | |
3840 | |
1875 | 3841 2004-01-23 Stephen J. Turnbull <stephen@xemacs.org> |
3842 | |
3843 * lispref/specifiers.texi (Specifier Instancing Functions): Add | |
3844 documentation of `specifier-matching-instance'. | |
3845 (Introduction to Specifiers): Fix typos. | |
3846 (Simple Specifier Usage): Cross-reference Toolbar Intro. | |
3847 (Creating Specifiers): | |
3848 (Specifier Instancing Functions): | |
3849 (Adding Specifications): | |
3850 Various improvements. Deprecate set-specifier a bit more. | |
3851 | |
1869 | 3852 2004-01-20 Stephen J. Turnbull <stephen@xemacs.org> |
3853 | |
3854 * lispref/specifiers.texi (Specifier Examples): Add new example, | |
3855 pluralize node name and section title. | |
3856 (Specifiers): Pluralize "Specifier Examples" in menu. | |
3857 | |
3858 * lispref/lispref.texi (Top): Pluralize "Specifier Examples" in menu. | |
3859 | |
3860 2003-11-04 Stephen J. Turnbull <stephen@xemacs.org> | |
3861 | |
3862 * xemacs-faq.texi: Fix Tony Rossini's address. | |
3863 | |
1833 | 3864 2003-12-15 Steve Youngs <sryoungs@bigpond.net.au> |
3865 | |
3866 * lispref/customize.texi (Defining New Types): New node. | |
3867 From Per Abrahamsen <abraham@dina.kvl.dk> | |
3868 | |
1755 | 3869 2003-10-16 Ilya N. Golubev <gin@mo.msk.ru> |
3870 | |
3871 * lispref/tips.texi (Comment Tips): Typo fix. | |
3872 | |
1738 | 3873 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> |
3874 | |
3875 * new-users-guide/custom2.texi (Init File): | |
3876 | |
3877 Fix up erroneous uses of @var instead of @code for the names of | |
3878 particular variables in programming languages. | |
3879 | |
3880 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> | |
3881 | |
3882 * custom.texi (The Init File): | |
3883 * xemacs-faq.texi (Q2.1.3): | |
3884 (Q2.1.5): | |
3885 | |
3886 * internals/internals.texi (Modules for Internationalization): | |
3887 | |
3888 * lispref/display.texi (Beeping): | |
3889 * lispref/ldap.texi (Encoder/Decoder Functions): | |
3890 * lispref/markers.texi (The Mark): | |
3891 (The Region): | |
3892 * lispref/menus.texi (Menu Accelerator Functions): | |
3893 * lispref/numbers.texi (Math Functions): | |
3894 * lispref/packaging.texi (package-info.in): | |
3895 (Makefile): | |
3896 (Local.rules File): | |
3897 * lispref/postgresql.texi (libpq Lisp Symbols and DataTypes): | |
3898 (libpq Lisp Variables): | |
3899 (Synchronous Interface Functions): | |
3900 (Other libpq Functions): | |
3901 | |
3902 * new-users-guide/custom2.texi (Init File): | |
3903 (Setting Variables): | |
3904 * new-users-guide/files.texi (File Names): | |
3905 (Saving Files): | |
3906 * new-users-guide/search.texi (Search and Replace): | |
3907 | |
3908 * xemacs/custom.texi (X Resources): | |
3909 | |
3910 Fix up erroneous uses of @var instead of @code for the names of | |
3911 particular variables in programming languages. | |
3912 | |
3913 2003-10-10 Stephen J. Turnbull <stephen@xemacs.org> | |
3914 | |
3915 * Makefile: Remove old package and redundant cruft. | |
3916 | |
1734 | 3917 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> |
3918 | |
3919 * lispref/mule.texi (Charset Property Functions): Charset registry | |
3920 can be set. | |
3921 (Predefined Charsets): Add registry to Vietnamese charset names. | |
2865 | 3922 |
1716 | 3923 2003-09-26 Steve Youngs <youngs@xemacs.org> |
3924 | |
3925 * XEmacs 21.5.16 "celeriac" is released. | |
3926 | |
1710 | 3927 2003-09-22 Adrian Aichner <adrian@xemacs.org> |
3928 | |
3929 * lispref/backups.texi (Reverting): Fix the PRINTED-MANUAL-TITLE | |
3930 argument for a cross reference to "The XEmacs User's Manual". | |
3931 | |
1709 | 3932 2003-08-15 Stephen J. Turnbull <stephen@xemacs.org> |
3933 | |
3934 * internals/internals.texi: Update copyright notice. | |
3935 (GCPROing): Add missing period. | |
3936 (Adding Global Lisp Variables): general.c -> general-slots.h. | |
3937 (A Reader's Guide to XEmacs Coding Conventions): New node. | |
3938 | |
1703 | 3939 2003-09-20 Ilya N. Golubev <gin@mo.msk.ru> |
3940 | |
3941 * xemacs/mini.texi (Minibuffer): Add customizing message display | |
3942 reference. | |
3943 * lispref/display.texi (Customizing Message Display): New, | |
3944 describe `redisplay-echo-area-function', | |
3945 `undisplay-echo-area-function', `minibuffer-echo-wait-function'. | |
3946 (The Echo Area): Add menu. | |
3947 | |
1702 | 3948 2003-09-19 Sandra Wambold <wambold@xemacs.org> |
3949 | |
3950 * Makefile: add targets to produce PDF files | |
3951 | |
1665 | 3952 2003-09-03 Steve Youngs <youngs@xemacs.org> |
3953 | |
3954 * XEmacs 21.5.15 "celery" is released. | |
3955 | |
1648 | 3956 2003-08-28 Steve Youngs <youngs@xemacs.org> |
3957 | |
3958 * xemacs-faq.texi (Q2.0.2): Rewrite, mentioning the correct way to | |
3959 remove a package. | |
3960 (Q3.8.2): big-menubar is in the edit-utils package. | |
3961 (Q4.3.2): Add a comment about not needing TM for things like Gnus, | |
3962 MH-E and VM. | |
3963 (Q5.3.3): State correct location of ps-print.el. | |
3964 | |
3965 * xemacs/packages.texi (Packages): Remove "Creating Packages" menu | |
3966 entry. | |
3967 (Package Terminology): Whitespace clean up. | |
3968 (Installing Packages): Whitespace clean up and add some @code | |
2865 | 3969 formatters. |
1648 | 3970 Re-organise the menu so that installation via PUI is first and |
3971 Sumo is last. | |
3972 (Automatically): mule-base is no longer a requirement for using | |
3973 PUI. | |
3974 Mention optionally requiring mailcrypt. | |
3975 (Note): Removed. | |
3976 (Manually): Move to below the PUI installation method. | |
3977 (Sumo): Move to below the manual installation method. | |
3978 (Which Packages): Add mailcrypt. | |
3979 (Building Packages): Remove duplicated stuff that is in | |
3980 lispref/packaging.texi, xref to it instead. | |
3981 (Local.rules File): xref to the appropriate node in | |
2865 | 3982 lispref/packaging.texi. |
1648 | 3983 (Available Packages): Update to current reality. |
3984 (all): Removed. | |
3985 (srckit): Removed. | |
3986 (binkit): Removed. | |
2865 | 3987 |
1648 | 3988 * xemacs/reading.texi (Reading Mail): Mention Gnus and MEW. |
3989 | |
3990 * new-users-guide/custom2.texi (Init File): big-menubar.el is in | |
3991 the edit-utils package. | |
3992 | |
3993 * lispref/packaging.texi (Packaging): | |
3994 (The User View): | |
3995 (The Library Maintainer View): | |
3996 (Infrastructure): | |
3997 (Control Files): | |
3998 (Obtaining): | |
3999 (The Package Release Engineer View): | |
4000 (Package Terminology): | |
4001 (Building Packages): | |
4002 (Makefile Targets): | |
4003 (packages): New. | |
4004 (Local.rules File): | |
4005 (XEMACS_PACKAGES): Removed. | |
4006 (XEMACS_INSTALLED_PACKAGES_ROOT): New. | |
4007 (NONMULE_PACKAGES): New. | |
4008 (EXCLUDES): New. | |
4009 (Creating Packages): | |
4010 (BATCH): New. | |
4011 (VERSION): Removed. | |
4012 (AUTHOR_VERSION): Removed. | |
4013 (MAINTAINER): Removed. | |
4014 (PACKAGE): Removed. | |
4015 (PKG_TYPE): Removed. | |
4016 (REQUIRES): Removed. | |
4017 (CATEGORY): Removed. | |
4018 (ELS): Removed. | |
4019 (ELCS): Removed. | |
4020 (all): Removed. | |
4021 (srckit): Removed. | |
4022 (binkit): Removed. | |
4023 (are): New. | |
4024 (STANDARD_DOCS): New. | |
4025 (ELCS_1_DEST): New. | |
4026 (example): New. | |
4027 (PACKAGE_SUPPRESS): New. | |
4028 (EXPLICIT_DOCS): New. | |
4029 (DATA_DEST): New. | |
4030 (Documenting Packages): | |
4031 | |
4032 Not quite a total rewrite, but a fairly thorough audit | |
4033 nonetheless. | |
4034 | |
1620 | 4035 2003-07-31 René Kyllingstad <listmailxemacs@kyllingstad.com> |
4036 | |
4037 * lispref/display.texi (Invisible Text): | |
4038 mention line-move-ignore-invisible. | |
4039 * lispref/extents.texi (Extent Properties): | |
4040 end-glyph will still be displayed when invisible is set. | |
4041 * lispref/extents.texi (Extents and Events): | |
4042 only begin-glyph is highlighted. | |
4043 | |
1616 | 4044 2003-08-12 Stephen J. Turnbull <stephen@xemacs.org> |
4045 | |
4046 * xemacs-faq.texi (Q1.3.8): Fix typo, note errorneous recognition. | |
4047 | |
1613 | 4048 2003-08-05 Stephen J. Turnbull <stephen@xemacs.org> |
4049 | |
4050 * lispref/packaging.texi (Creating Packages): | |
4051 * xemacs/packages.texi (Creating Packages): | |
4052 Style guideline for package-info.in description. | |
4053 | |
1554 | 4054 2003-06-30 Vin Shelton <acs@xemacs.org> |
4055 | |
4056 * lispref/lists.texi (List-related Predicates): Add @end defun. | |
4057 | |
1549 | 4058 2003-06-30 Stephen J. Turnbull <stephen@xemacs.org> |
4059 | |
4060 * xemacs-faq.texi (Q3.2.2): Fix typo. | |
4061 | |
4062 2003-06-20 Stephen J. Turnbull <stephen@xemacs.org> | |
4063 | |
4064 * lispref/objects.texi (Character Type): Document ?\x00 read | |
4065 syntax and range limitations on ?\000 and ?\x00 read syntaxes. | |
4066 | |
4067 2003-06-16 Stephen J. Turnbull <stephen@xemacs.org> | |
4068 | |
4069 * lispref/lists.texi (List-related Predicates): Document | |
4070 `true-list-p', and reference it from `listp'. | |
4071 | |
1510 | 4072 2003-06-01 Steve Youngs <youngs@xemacs.org> |
4073 | |
4074 * XEmacs 21.5.14 "cassava" is released. | |
4075 | |
1496 | 4076 2003-05-22 Stephen J. Turnbull <stephen@xemacs.org> |
4077 | |
4078 * internals/internals.texi (Searching and Matching): New node. | |
4079 | |
1495 | 4080 2003-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
4081 | |
4082 * xemacs-faq.texi (detail menu): Reformat "Current Events" caption. | |
4083 (Legacy Versions): New section. | |
4084 (Q8.0.1): New question. | |
4085 | |
4086 2003-05-16 Stephen J. Turnbull <stephen@xemacs.org> | |
4087 | |
4088 * lispref/searching.texi (Regexp Search): Update split-string for | |
4089 new specification. | |
4090 | |
4091 * lispref/strings.texi (Creating Strings): Xref split-string | |
4092 (this is where GNU Emacs documents it). | |
4093 | |
1473 | 4094 2003-05-10 Steve Youngs <youngs@xemacs.org> |
4095 | |
4096 * XEmacs 21.5.13 "cauliflower" is released. | |
4097 | |
1468 | 4098 2003-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
4099 | |
4100 * lispref/searching.texi (Match Data): Failed match preserves data. | |
4101 | |
1441 | 4102 2003-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
4103 | |
4104 * xemacs-faq.texi (Q6.4.3): New: auxiliary programs for Windows. | |
4105 | |
1431 | 4106 2003-04-24 Steve Youngs <youngs@xemacs.org> |
4107 | |
4108 * XEmacs 21.5.12 "carrot" is released. | |
4109 | |
1389 | 4110 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org> |
4111 | |
4112 * xemacs/frame.texi (XEmacs under X): | |
4113 * xemacs-faq.texi: | |
4114 Global substitute .Xresources for .Xdefaults. | |
1386 | 4115 |
4116 * xemacs-faq.texi (Q3.2.2): `default' is also a face. | |
4117 (Q3.2.2, Q3.8.4): Describe appropriate use of `fontSet' in Mule. | |
4118 Suggested by Janis Dzerins <jonis@dir.lv>. | |
4119 | |
1366 | 4120 2003-03-20 Steve Youngs <youngs@xemacs.org> |
4121 | |
4122 * xemacs/packages.texi (Automatically): Refer to | |
4123 'pui-set-local-package-get-directory' instead of | |
2865 | 4124 'pui-add-install-directory'. |
1366 | 4125 Remove comment about PGP not being intergrated into PUI. |
4126 Document balloon-help in PUI. | |
4127 Add heading "Keeping Packages Up To Date". | |
4128 (Building Packages): makeinfo 4.2 is required. | |
4129 | |
1362 | 4130 2003-03-18 Stephen J. Turnbull <stephen@xemacs.org> |
4131 | |
4132 * xemacs/frame.texi (Gutter Basics): Describe common options for | |
4133 buffers tab control. | |
4134 | |
1353 | 4135 2003-03-11 Adrian Aichner <adrian@xemacs.org> |
4136 | |
4137 * cl.texi: Change incorrect references to GNU where XEmacs is | |
4138 appropriate. | |
4139 | |
1347 | 4140 2003-03-09 Ben Wing <ben@xemacs.org> |
4141 | |
4142 * widget.texi (Defining New Widgets): | |
4143 Fix Turnbull typos. | |
4144 | |
1339 | 4145 2003-03-02 Stephen Turnbull <stephen@xemacs.org> |
4146 | |
4147 * widget.texi (Defining New Widgets): | |
4148 Document `widget-create-child', `widget-create-child-and-convert', | |
4149 and `widget-create-child-value'. Document the `:copy' method. | |
4150 Improve discussion of the `:convert-widget' method. | |
4151 | |
1333 | 4152 2003-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
4153 | |
4154 * internals/internals.texi (XEmacs From the Perspective of Building): | |
4155 Fix typo. | |
4156 (Build-Time Dependencies): New node. | |
4157 | |
1307 | 4158 2003-02-16 Steve Youngs <youngs@xemacs.org> |
4159 | |
4160 * XEmacs 21.5.11 "cabbage" is released. | |
4161 | |
1288 | 4162 2003-02-11 Adrian Aichner <adrian@xemacs.org> |
4163 | |
4164 * lispref/backups.texi (Auto-Saving): Fix auto-save xref to user | |
4165 manual. | |
4166 | |
1263 | 4167 2003-02-06 Stephen J. Turnbull <stephen@xemacs.org> |
4168 | |
4169 * internals/internals.texi (Top): | |
4170 (Buffers and Textual Representation): | |
4171 Fix up white space in menu. | |
4172 (Character-Related Data Types): | |
4173 (Conversion to and from External Data): | |
4174 (Format of the Extent Info): | |
4175 Pedantic grammatical nits. | |
4176 | |
1261 | 4177 2003-02-05 Ben Wing <ben@xemacs.org> |
4178 | |
4179 * lispref/mule.texi (Internationalization Terminology): | |
4180 Lots of Mule rewriting. | |
4181 | |
4182 2003-02-05 Ben Wing <ben@xemacs.org> | |
4183 | |
4184 * internals/internals.texi (Top): | |
4185 * internals/internals.texi (Coding for Mule): | |
4186 * internals/internals.texi (Character-Related Data Types): | |
4187 * internals/internals.texi (Working With Character and Byte Positions): | |
4188 * internals/internals.texi (Conversion to and from External Data): | |
4189 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
4190 * internals/internals.texi (An Example of Mule-Aware Code): | |
4191 * internals/internals.texi (Mule-izing Code): | |
4192 * internals/internals.texi (help): New. | |
4193 * internals/internals.texi (Buffers and Textual Representation): | |
4194 * internals/internals.texi (The Text in a Buffer): | |
4195 * internals/internals.texi (Markers and Extents): | |
4196 * internals/internals.texi (MULE Character Sets and Encodings): | |
4197 * internals/internals.texi (Lstream Functions): | |
4198 * internals/internals.texi (Lstream Methods): | |
4199 * internals/internals.texi (Format of the Extent Info): | |
4200 * internals/internals.texi (Mathematics of Extent Ordering): | |
4201 Major fixup. Correct for new names of Bytebpos, Ichar, etc. and | |
4202 lots of Mule rewriting. | |
4203 | |
1258 | 4204 2003-02-05 Stephen J. Turnbull <stephen@xemacs.org> |
4205 | |
4206 * xemacs/startup.texi (Startup Paths): Clarification of package | |
4207 hierarchy structure. | |
4208 | |
4209 * xemacs-faq.texi (Q2.0.13, Q2.0.14, Q2.1.24, Q2.1.25): Not NEW. | |
4210 (Q2.1.15): Stylistic changes for clarity. | |
4211 | |
1251 | 4212 2003-02-03 Steve Youngs <youngs@xemacs.org> |
4213 | |
4214 * xemacs/packages.texi (Local.rules File): Update to reflect Ben's | |
4215 recent dabble into the packages. | |
4216 | |
1187 | 4217 2003-01-04 Steve Youngs <youngs@xemacs.org> |
4218 | |
4219 * XEmacs 21.5.10 "burdock" is released. | |
4220 | |
1188 | 4221 2003-01-04 Steve Youngs <youngs@xemacs.org> |
4222 | |
4223 * lispref/mule.texi (Charset Unification): Menu item "Internals" | |
4224 should be "Unification Internals". | |
4225 | |
1183 | 4226 2003-01-03 Stephen J. Turnbull <stephen@xemacs.org> |
4227 | |
4228 * xemacs/startup.texi (Startup Paths): Hierarchy, not package, layout. | |
4229 | |
4230 2003-01-03 Stephen J. Turnbull <stephen@xemacs.org> | |
4231 | |
4232 * xemacs-faq.texi: Debugging FAQ improvements from Ben Wing. | |
4233 (Q2.0.6): Mention union type bugs. | |
4234 (Q2.1.1): Debugging HOWTO improvements. | |
4235 (Q2.1.15): Decoding Lisp objects in the debugger. | |
4236 | |
4237 * widget.texi (Widget Internals): New node. | |
4238 (Top): Add menu item for it. | |
4239 | |
4240 * xemacs/xemacs.texi (Top): Better short description of Mule in | |
4241 menu. Mule submenu. | |
4242 | |
4243 Charset unification docs. What a concept---commit docs first! | |
4244 | |
4245 * lispref/mule.texi (MULE): Add Unification and Tables menu entries. | |
4246 (Unicode Support): Fixup next node. | |
4247 (Charset Unification): | |
4248 (Overview): | |
4249 (Usage): | |
4250 (Basic Functionality): | |
4251 (Interactive Usage): | |
4252 (Configuration): | |
4253 (Theory of Operation): | |
4254 (What Unification Cannot Do for You): | |
4255 (Unification Internals): | |
4256 (Charsets and Coding Systems): | |
4257 New nodes. | |
4258 | |
4259 * xemacs/mule.texi (Mule): Menu items for Unification and Tables. | |
4260 (Recognize Coding): | |
4261 (Specify Coding): | |
4262 Fixup next and previous pointers. | |
4263 (Unification): | |
4264 (Unification Overview): | |
4265 (Unification Usage): | |
4266 (Unification Configuration): | |
4267 (Unification FAQs): | |
4268 (Unification Theory): | |
4269 (What Unification Cannot Do for You): | |
4270 (Charsets and Coding Systems): | |
4271 New nodes. | |
4272 | |
4273 2002-12-17 Stephen Turnbull <stephen@xemacs.org> | |
4274 | |
4275 * widget.texi (Widget Wishlist): Typo. | |
4276 (Defining New Widgets): s/widget-define/define-widget/g. | |
4277 | |
4278 2002-12-27 Stephen J. Turnbull <stephen@xemacs.org> | |
4279 | |
4280 * internals/internals.texi (Regression Testing XEmacs): Hints for | |
4281 test design. | |
4282 | |
1143 | 4283 2002-10-29 Ville Skyttä <scop@xemacs.org> |
4284 | |
4285 * xemacs-faq.texi (Top): | |
4286 The canonical location for FAQ on the website is /FAQ/. | |
4287 | |
1142 | 4288 2002-11-12 Ilya N. Golubev <gin@mo.msk.ru> |
4289 | |
4290 * xemacs/custom.texi (Face Customization): | |
4291 (Faces): | |
4292 Document face-frob-from-locale-first variable. | |
4293 | |
1138 | 4294 2002-12-03 Didier Verna <didier@xemacs.org> |
4295 | |
4296 * xemacs-faq.texi (Customization): add missing menu entry for Q3.2.7. | |
4297 | |
4298 2002-12-03 Didier Verna <didier@xemacs.org> | |
4299 | |
4300 * lispref/specifiers.texi (Introduction to Specifiers): fix case | |
4301 spelling of `Buffer-Local Variables' crossref. | |
4302 | |
1137 | 4303 2002-12-03 Didier Verna <didier@xemacs.org> |
4304 | |
4305 * xemacs/custom.texi (Faces): document | |
4306 `set-face-background-pixmap-file'. | |
4307 | |
4308 2002-12-03 Didier Verna <didier@xemacs.org> | |
4309 | |
4310 * lispref/faces.texi (Face Convenience Functions): ditto. | |
4311 * lispref/glyphs.texi (Creating Glyphs): reference it. | |
4312 | |
1135 | 4313 2002-11-29 Stephen Turnbull <stephen@xemacs.org> |
4314 | |
4315 * lispref/specifiers.texi (Simple Specifier Usage): New node. | |
4316 (Specifiers): Adjust node pointers. | |
4317 (Simple Specifier Usage): Revise. Adjust node pointers. | |
4318 | |
4319 * lispref/toolbar.texi (Creating Toolbar): Xref specifier example. | |
4320 | |
4321 2002-10-20 Stephen Turnbull <stephen@xemacs.org> | |
4322 | |
4323 * xemacs-faq.texi (Q3.2.7): New FAQ on displaying non-ASCII. | |
4324 (Q3.5.7, Q1.3.3): Cross-reference it. | |
4325 | |
4326 2002-10-20 Stephen Turnbull <stephen@xemacs.org> | |
4327 | |
4328 * xemacs-faq.texi (Q2.1.1): Mention bug report commands. | |
4329 (Q2.0.9): Note how out-of-date the entry is. | |
4330 (Q1.3.1, Q1.3.2, Q1.3.3, Q1.3.4, Q1.3.5, Q1.3.6): Revise/update. | |
4331 (Q1.2.1): Fix typo. | |
4332 | |
4333 * internals/internals.texi (Regression Testing XEmacs): Thorough | |
4334 rewrite, documenting macros explicitly. | |
4335 | |
4336 2002-10-29 Stephen J. Turnbull <stephen@xemacs.org> | |
1103 | 4337 |
4338 * lispref/compile.texi (Compilation Options): New node. | |
4339 (Byte Compilation): Add it to menu. | |
4340 (Compilation Functions): Minor mods. | |
4341 (Docs and Compilation): | |
4342 (Dynamic Loading): | |
4343 Document some variable defaults. | |
4344 | |
1135 | 4345 2002-11-07 Stephen J. Turnbull <stephen@xemacs.org> |
1096 | 4346 |
4347 * internals/internals.texi (Low-Level Modules): Add urefs to Doug | |
4348 Lea's and Wolfram Gloger's home pages. | |
4349 | |
1135 | 4350 2002-10-18 Stephen J. Turnbull <stephen@xemacs.org> |
1058 | 4351 |
4352 * xemacs-faq.texi (Q2.0.16): New FAQ on "no cygXpm-noX" fatal error. | |
4353 (Q6.1.4): Document cygXpm-noX. | |
4354 | |
1030 | 4355 2002-10-04 Ville Skyttä <ville.skytta@xemacs.org> |
4356 | |
4357 * xemacs/packages.texi (Available Packages): Add fortran-modes, | |
4358 perl-modes, psgml-dtds, python-modes and ruby-modes. | |
4359 Some consistency tweaks. | |
4360 | |
1026 | 4361 2002-09-22 Ville Skyttä <ville.skytta@xemacs.org> |
4362 | |
4363 * lispref/variables.texi (add-to-list): Document the new | |
4364 (optional) append argument. | |
4365 | |
1024 | 4366 2002-09-20 Stephen J. Turnbull <stephen@xemacs.org> |
4367 | |
4368 * internals/internals.texi (Techniques for XEmacs Developers): | |
4369 More performance optimization hints. | |
4370 (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
4371 Describe syntax code internals. | |
4372 | |
4373 * lispref/syntax.texi (Syntax Basics): XEmacs "20" -> "20 and later". | |
4374 (Syntax Class Table): Deprecate SPC as whitespace designator. | |
4375 (Syntax Flags): Rewrite for `8-bit' comment syntax flags. | |
4376 | |
981 | 4377 2002-08-30 Steve Youngs <youngs@xemacs.org> |
4378 | |
4379 * XEmacs 21.5.9 "brussels sprouts" is released. | |
4380 | |
973 | 4381 2002-08-22 Stephen J. Turnbull <stephen@xemacs.org> |
4382 | |
4383 * internals/internals.texi (Regression Testing XEmacs): Document | |
4384 how to skip and warn about tests that depend on packages. | |
4385 | |
967 | 4386 2002-08-16 Stephen J. Turnbull <stephen@xemacs.org> |
1137 | 4387 |
967 | 4388 * internals/internals.texi (Regression Testing XEmacs): Fix typo. |
4389 | |
965 | 4390 2002-08-15 Stephen J. Turnbull <stephen@xemacs.org> |
1137 | 4391 |
965 | 4392 * internals/internals.texi (GCPROing): Add comment on GCPRO. |
4393 (Regression Testing XEmacs): New node. | |
4394 (Modules for Regression Testing): New node. | |
4395 | |
959 | 4396 2002-08-12 Simon Josefsson <jas@extundo.com> |
4397 | |
4398 * lispref/building.texi (Pure Storage): purecopy is a no-op. | |
4399 | |
955 | 4400 2002-08-08 Ville Skyttä <ville.skytta@xemacs.org> |
4401 | |
4402 * xemacs/packages.texi (Available Packages): Bring up to date. | |
4403 | |
947 | 4404 2002-08-02 Ville Skyttä <ville.skytta@xemacs.org> |
4405 | |
4406 * xemacs/packages.texi (Available Packages): | |
4407 Bring package list up to date, thanks also to Brian Palmer. | |
4408 | |
936 | 4409 2002-07-30 Ville Skyttä <ville.skytta@xemacs.org> |
4410 | |
4411 * term.texi (Input to the inferior): Fix term line/char mode | |
4412 switch keybindings. Kudos to Jacob P. Burckhardt. | |
4413 | |
4414 * xemacs/misc.texi (Term Mode): Ditto. | |
4415 | |
933 | 4416 2002-07-27 Steve Youngs <youngs@xemacs.org> |
4417 | |
4418 * XEmacs 21.5.8 "broccoli" is released. | |
4419 | |
918 | 4420 2002-07-06 Adrian Aichner <adrian@xemacs.org> |
4421 | |
4422 * new-users-guide/custom1.texi (Customizing key Bindings): Fix | |
4423 improper use of indef. art. "a". | |
4424 | |
4425 2002-07-06 Adrian Aichner <adrian@xemacs.org> | |
4426 | |
4427 * lispref/commands.texi (Peeking and Discarding): Ditto. | |
4428 * lispref/customize.texi (Type Keywords): Ditto. | |
4429 * lispref/dragndrop.texi (Drop Interface): Ditto. | |
4430 | |
4431 2002-07-06 Adrian Aichner <adrian@xemacs.org> | |
4432 | |
4433 * termcap.texi (Clearing): Ditto. | |
4434 * widget.texi (User Interface): Ditto. | |
4435 * widget.texi (Basic Types): Ditto. | |
4436 * widget.texi (group): Ditto. | |
4437 | |
901 | 4438 2002-07-05 Adrian Aichner <adrian@xemacs.org> |
4439 | |
4440 * xemacs/menus.texi (Edit Menu): Typo fixes for incorrect use of | |
4441 indef. art. "an". | |
4442 | |
4443 2002-07-05 Adrian Aichner <adrian@xemacs.org> | |
4444 | |
4445 * lispref/control.texi (Processing of Errors): Ditto. | |
4446 * lispref/mule.texi (ISO 2022): Ditto. | |
4447 * lispref/packaging.texi (Package Terminology): Ditto. | |
4448 * lispref/text.texi (Transformations): Ditto. | |
4449 | |
4450 2002-07-05 Adrian Aichner <adrian@xemacs.org> | |
4451 | |
4452 * termcap.texi (Naming): Ditto. | |
4453 * texinfo.texi (itemize): Ditto. | |
4454 * texinfo.texi (Tips): Ditto. | |
4455 * widget.texi (Introduction): Ditto. | |
4456 * widget.texi (group): Ditto. | |
4457 | |
894 | 4458 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
4459 | |
4460 * XEmacs 21.5.7 "broccoflower" is released. | |
4461 | |
892 | 4462 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
4463 | |
4464 * xemacs-faq.texi (Top, Customization, Q3.10.5, Q3.10.6): | |
4465 New "killing is slow" FAQ and link updates. | |
4466 | |
880 | 4467 2002-06-17 Jerry James <james@xemacs.org> |
4468 | |
4469 * emodules.texi (Loading other Modules): Describe why we do not | |
4470 use RTLD_GLOBAL. | |
4471 | |
873 | 4472 2002-06-20 Adrian Aichner <adrian@xemacs.org> |
4473 | |
4474 * xemacs/mule.texi (Language Environments): Typo fix suggested by | |
4475 Frank Schmitt. | |
4476 | |
871 | 4477 2002-06-11 Adrian Aichner <adrian@xemacs.org> |
4478 | |
4479 * xemacs-faq.texi (Q1.3.7): Update broken link to russian.el | |
4480 (found by linklint) with Google's help. | |
4481 | |
4482 2002-05-25 Adrian Aichner <adrian@xemacs.org> | |
4483 | |
4484 * xemacs/custom.texi (Syntax Entry): Deprecate ` ' in favor of `-'. | |
4485 | |
868 | 4486 2002-06-05 Ben Wing <ben@xemacs.org> |
4487 | |
4488 * internals/internals.texi (Top): | |
4489 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
4490 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
4491 * internals/internals.texi (Major Textual Changes): | |
4492 * internals/internals.texi (Great Integral Type Renaming): | |
4493 * internals/internals.texi (Text/Char Type Renaming): | |
4494 * internals/internals.texi (files): New. | |
4495 | |
863 | 4496 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org> |
4497 | |
4498 * custom.texi (The Init File): Rewrite completely. | |
4499 | |
4500 2002-03-19 Adrian Aichner <adrian@xemacs.org> | |
4501 | |
4502 * widget.texi (constants): Typo fix. | |
4503 | |
4504 2002-02-07 Stephen J. Turnbull <stephen@xemacs.org> | |
4505 | |
4506 * external-widget.texi (External Client Widget Internals): New node. | |
4507 | |
4508 2001-11-15 Darryl Okahata <darrylo@xemacs.org> | |
4509 | |
4510 * lispref/glyphs.texi: | |
4511 lispref/lispref.texi: Add examples of how to insert graphics into a | |
4512 buffer. | |
1137 | 4513 |
863 | 4514 2001-12-17 Stephen J. Turnbull <stephen@xemacs.org> |
4515 | |
4516 * xemacs/packages.texi (Packages): | |
4517 (Package Terminology): | |
4518 Carefully distinguish libraries and packages. | |
4519 (Package Terminology): | |
4520 More careful definitions of ``category'' and ``distribution.'' | |
4521 Use ``generic'' instead of ``normal'' (N.B. package tools use | |
4522 ``standard''.) | |
4523 (Installing Packages): | |
4524 Use @var to mark variable version strings, not @t or <>. | |
4525 (Sumo): | |
4526 Add disk space estimate when unpacked. | |
4527 | |
4528 2002-02-06 Stephen J. Turnbull <stephen@xemacs.org> | |
4529 | |
4530 * xemacs-faq.texi (Q1.3.8, Q1.3.9): Unicode support via Mule-UCS. | |
4531 | |
4532 2002-02-01 Steve Youngs <youngs@xemacs.org> | |
4533 | |
4534 * xemacs/packages.texi (Removing Packages): The interactive | |
4535 function is 'package-get-delete-package'. | |
4536 | |
4537 2001-11-27 Adrian Aichner <adrian@xemacs.org> | |
4538 | |
4539 * xemacs-faq.texi: Hyperlink fixes. | |
1137 | 4540 |
863 | 4541 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> |
4542 | |
4543 * xemacs-faq.texi (Q4.7.7): New FAQ on remote files. | |
4544 | |
4545 2002-01-24 Stephen J. Turnbull <stephen@xemacs.org> | |
4546 | |
4547 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
4548 | |
4549 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
4550 | |
4551 * xemacs/files.texi (Files): | |
4552 (File Names): | |
4553 Document remote file editing, refer to EFS and TRAMP. | |
4554 | |
861 | 4555 2002-05-23 Stephen J. Turnbull <stephen@xemacs.org> |
4556 | |
4557 * lispref/packaging.texi (package-info.in Fields): Typo fix. | |
4558 | |
836 | 4559 2002-05-11 Adrian Aichner <adrian@xemacs.org> |
4560 | |
4561 * xemacs-faq.texi (Top): Add Q2.0.15 under "Installation and | |
4562 Trouble Shooting". | |
4563 * xemacs-faq.texi (Installation): Add Q2.0.15 to Installation | |
4564 menu. | |
4565 * xemacs-faq.texi (Q2.0.14): Fix unnumberedsubsec argument. | |
4566 * xemacs-faq.texi (Q2.0.15): New. | |
4567 | |
824 | 4568 2002-05-01 Steve Youngs <youngs@xemacs.org> |
4569 | |
4570 * xemacs/packages.texi (Automatically): Don't mention "Options" | |
4571 menu. | |
4572 (Installing Packages): Don't mention getting list of packages via | |
1137 | 4573 customize. |
824 | 4574 |
804 | 4575 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
4576 | |
4577 * XEmacs 21.5.6 "bok choi" is released. | |
4578 | |
802 | 4579 2002-04-03 Ben Wing <ben@xemacs.org> |
4580 | |
4581 * internals/internals.texi (Top): | |
4582 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
4583 * internals/internals.texi (Techniques for XEmacs Developers): | |
4584 * internals/internals.texi (CVS Techniques): | |
4585 * internals/internals.texi (Merging a Branch into the Trunk): | |
4586 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
4587 Add section on correctly merging a branch back into the trunk. | |
4588 | |
785 | 4589 2002-03-19 Adrian Aichner <adrian@xemacs.org> |
4590 | |
4591 * widget.texi (constants): Typo fix. | |
4592 | |
778 | 4593 2002-03-14 Jonathan Harris <jhar@tardis.ed.ac.uk> |
4594 | |
4595 * cl.texi (Sequence Basics): Avoid splitting link over two lines, | |
4596 which makes cygwin texinfo 4.0 unhappy. | |
4597 | |
776 | 4598 2002-03-15 Ben Wing <ben@xemacs.org> |
4599 | |
4600 * Makefile (new-users-guide-srcs): | |
4601 * Makefile (extraclean): | |
4602 Use -no-packages to avoid problems with package files shadowing | |
4603 core files (e.g. unicode.el in mule-ucs). | |
4604 | |
775 | 4605 2002-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
4606 | |
4607 * emodules.texi (Using DEFUN): Add @ref{Lisp Primitives}. | |
4608 | |
1137 | 4609 * lispref/mule.texi (Unicode Support): |
775 | 4610 * xemacs/custom.texi (Behaviors): |
4611 * lispref/customize.texi (Enabling Behavior): | |
4612 New nodes. | |
4613 | |
774 | 4614 2002-03-12 Ben Wing <ben@xemacs.org> |
4615 | |
3322 | 4616 * The Great Mule Merge of March 2002: |
4617 see node by that name in the Internals Manual. | |
774 | 4618 |
768 | 4619 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
4620 | |
4621 * XEmacs 21.5.5 "beets" is released. | |
4622 | |
761 | 4623 2002-03-01 Jeff Miller <jmiller@cablespeed.com> |
4624 | |
4625 * lispref/packaging.texi (The User View, The Library Maintainer | |
4626 View, The Package Release Engineer View): Remove apostrophes. | |
4627 * lispref/lispref.texi (The User View, The Library Maintainer | |
4628 View, The Package Release Engineer View): Remove apostrophes. | |
4629 | |
759 | 4630 2002-02-28 Stephen J. Turnbull <stephen@xemacs.org> |
4631 | |
4632 * lispref/packaging.texi (The User View, The Library Maintainer | |
4633 View, The Package Release Engineer View): Remove apostrophes. | |
4634 | |
755 | 4635 2002-02-16 Stephen J. Turnbull <stephen@xemacs.org> |
4636 | |
4637 * external-widget.texi | |
4638 (Example Program Using the External Client Widget): Fix braces. | |
4639 From Mats Lidell <matsl@contactor.se>. | |
4640 | |
753 | 4641 2002-02-14 Stephen J. Turnbull <stephen@xemacs.org> |
4642 | |
4643 * external-widget.texi | |
4644 (Example Program Using the External Client Widget): Fix | |
4645 documentation to explain needed resource settings. | |
4646 | |
752 | 4647 2002-02-13 Stephen J. Turnbull <stephen@xemacs.org> |
4648 | |
4649 * lispref/packaging.texi (Documenting Packages): New node. | |
4650 (Makefile Variables): Fix typo per Steve Youngs. | |
4651 | |
750 | 4652 2002-02-09 Stephen J. Turnbull <stephen@xemacs.org> |
4653 | |
4654 * external-widget.texi | |
4655 (Example Program Using the External Client Widget): New node. | |
4656 | |
4657 * lispref/packaging.texi (Documenting Packages): New node. | |
4658 | |
749 | 4659 2002-01-27 Stephen J. Turnbull <stephen@xemacs.org> |
4660 | |
4661 * lispref/packaging.texi (Makefile Variables): Document GENERATED | |
4662 and PRELOADS. Document DATA_FILES_n and DATA_DEST_n forms. | |
4663 | |
745 | 4664 2002-02-06 Stephen J. Turnbull <stephen@xemacs.org> |
4665 | |
4666 * xemacs-faq.texi (Q1.3.8, Q1.3.9): Unicode support via Mule-UCS. | |
4667 | |
742 | 4668 2001-01-24 Adrian Aichner <adrian@xemacs.org> |
4669 | |
4670 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
4671 | |
741 | 4672 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> |
4673 | |
4674 * xemacs/files.texi (Files): | |
4675 (File Names): | |
4676 Document remote file editing, refer to EFS and TRAMP. | |
4677 | |
4678 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
4679 | |
4680 * xemacs-faq.texi (Q4.7.7): New FAQ on remote files. | |
4681 | |
4682 2002-01-24 Stephen J. Turnbull <stephen@xemacs.org> | |
4683 | |
4684 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
4685 | |
737 | 4686 2002-02-01 Steve Youngs <youngs@xemacs.org> |
4687 | |
4688 * xemacs/packages.texi (Removing Packages): The interactive | |
4689 function is 'package-get-delete-package'. | |
4690 | |
725 | 4691 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
4692 | |
4693 * XEmacs 21.5.4 "bamboo" is released. | |
4694 | |
724 | 4695 2001-11-15 Darryl Okahata <darrylo@xemacs.org> |
4696 | |
4697 * glyphs.texi: | |
4698 lispref.texi: Add examples of how to insert graphics into a | |
4699 buffer. | |
1137 | 4700 |
721 | 4701 2002-01-02 Adrian Aichner <adrian@xemacs.org> |
4702 | |
4703 * emodules.texi: Add missing direntry, reword "dynamic loadable" | |
4704 to "dynamically loadable". | |
4705 * external-widget.texi: Add missing direntry. | |
4706 | |
709 | 4707 2001-12-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
4708 | |
4709 * xemacs/programs.texi: Etags update from Francesco. | |
4710 | |
704 | 4711 2001-12-18 Valdis.Kletnieks <Valdis.Kletnieks@vt.edu> |
4712 | |
4713 * xemacs/programs.texi (Tags): Add node name to Ebrowse | |
4714 cross reference. | |
4715 | |
696 | 4716 2001-12-15 Adrian Aichner <adrian@xemacs.org> |
4717 | |
4718 * xemacs\xemacs.texi (Top): Change from @ifinfo to @ifnottex for | |
4719 the benefit of HTML online docs. | |
4720 | |
4721 2001-12-15 Adrian Aichner <adrian@xemacs.org> | |
4722 | |
4723 * term.texi: Fix broken settitle. Make @titlepage, @direntry, and | |
4724 @chapter agree with new title. | |
4725 | |
694 | 4726 2001-12-15 Stephen J. Turnbull <stephen@xemacs.org> |
4727 | |
4728 * lispref/packaging.texi (The User's View): | |
4729 Correct description of man subdirectory. | |
4730 | |
4731 (The Package Release Engineer's View): | |
4732 (package-compile.el): | |
4733 Change hazmat to useful documentation. | |
4734 | |
4735 (Issues): | |
4736 Hazmat removal. | |
4737 | |
693 | 4738 2001-11-27 Stephen J. Turnbull <stephen@xemacs.org> |
4739 | |
4740 * lispref/packaging.texi: New file. | |
4741 * lispref/lispref.texi (Top): Add Packaging & subnodes to menus. | |
4742 Include packaging.texi. | |
4743 * lispref/intro.texi (Introduction): Next -> Packaging. | |
4744 * lispref/objects.texi (Lisp Data Types): Previous -> Packaging. | |
4745 * Makefile (lispref-srcs): Depend on lispref/packaging.texi. | |
1137 | 4746 |
675 | 4747 2001-11-26 Adrian Aichner <adrian@xemacs.org> |
4748 | |
4749 * xemacs-faq.texi (Top): Remove duplicate node "Introduction". | |
4750 * xemacs-faq.texi (Q7.0.2): Rename changes sections uniquely. | |
4751 * xemacs-faq.texi (Q7.0.3): Ditto. | |
4752 | |
4753 2001-11-26 Adrian Aichner <adrian@xemacs.org> | |
4754 | |
4755 * external-widget.texi: Add @settitle to this stand-alone | |
4756 document. | |
4757 | |
4758 2001-11-25 Adrian Aichner <adrian@xemacs.org> | |
4759 | |
4760 * Makefile: Add rule to produce html from texi sources (currently | |
4761 using texi2html). | |
4762 * Makefile (HTMLDIR): New. | |
4763 * Makefile (html_files): New. | |
4764 * Makefile (html): New target. | |
4765 | |
662 | 4766 2001-09-16 Adrian Aichner <adrian@xemacs.org> |
4767 | |
4768 * xemacs-faq.texi (Q4.0.7): Fix link to VM FAQ thanks to word I | |
4769 got from Gregory Neil Shapiro. | |
4770 | |
661 | 4771 2001-09-16 Adrian Aichner <adrian@xemacs.org> |
4772 | |
4773 * xemacs-faq.texi (Q1.3.7): Update moved link. | |
4774 * xemacs-faq.texi (Q7.0.2): Comment out empty list of bullets to | |
4775 avoid HTML error in texi2html translation. | |
4776 | |
660 | 4777 2001-09-15 Adrian Aichner <adrian@xemacs.org> |
4778 | |
4779 * xemacs-faq.texi (Q4.6.1): Infodock is now hosted on SourceForge, | |
4780 infodock.com is no more. | |
4781 * xemacs-faq.texi (Q4.7.1): Take auc out of http://sunsite.auc.dk. | |
4782 | |
4783 2001-09-15 Adrian Aichner <adrian@xemacs.org> | |
4784 | |
4785 * xemacs-faq.texi (Q4.6.1): | |
4786 | |
658 | 4787 2001-09-09 Adrian Aichner <adrian@xemacs.org> |
4788 | |
4789 * xemacs-faq.texi (Q1.0.9): Correct link to snapshots as suggested | |
4790 by Robin S. Socha. | |
4791 | |
654 | 4792 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
4793 | |
4794 * XEmacs 21.5.3 "asparagus" is released. | |
4795 | |
652 | 4796 2001-08-26 Stephen J. Turnbull <stephen@xemacs.org> |
4797 | |
4798 * widget.texi (Basic Types, Defining New Widgets): | |
4799 Distinguish between :action and :notify. | |
4800 | |
641 | 4801 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
4802 | |
4803 * XEmacs 21.5.2 "artichoke" is released. | |
4804 | |
635 | 4805 2001-07-25 Jim Horning <jim.horning@lmco.com> |
4806 | |
4807 * xemacs/packages.texi (Package Terminology): | |
4808 * xemacs/packages.texi (Automatically): | |
4809 In itemize and enumerate lists @item should be on it's own line. | |
4810 | |
626 | 4811 2001-07-02 Adrian Aichner <adrian@xemacs.org> |
4812 | |
4813 * xemacs-faq.texi (Q1.0.14): Update information following a | |
4814 request by Tom Mostyn. | |
4815 | |
625 | 4816 2001-07-02 Adrian Aichner <adrian@xemacs.org> |
4817 | |
4818 * lispref\windows.texi (Window Configurations): Fix typos. | |
4819 * lispref\x-windows.texi (Resources): Ditto. | |
4820 | |
4821 2001-07-02 Adrian Aichner <adrian@xemacs.org> | |
4822 | |
4823 * internals\internals.texi (XEmacs From the Inside): Ditto. | |
4824 | |
4825 2001-07-02 Adrian Aichner <adrian@xemacs.org> | |
4826 | |
4827 * emodules.texi (Initialization Mode): Ditto. | |
4828 * xemacs-faq.texi (Q6.3.2): Ditto. | |
4829 | |
613 | 4830 2001-06-10 Ben Wing <ben@xemacs.org> |
4831 | |
4832 * xemacs-faq.texi (Q1.0.10): | |
4833 * xemacs-faq.texi (Q1.0.11): | |
4834 * xemacs-faq.texi (Q1.0.12): | |
4835 Update sections on Windows and MacOS availability. | |
4836 | |
611 | 4837 2001-06-08 Ben Wing <ben@xemacs.org> |
4838 | |
4839 * xemacs-faq.texi (Top): | |
4840 * xemacs-faq.texi (MS Windows): | |
4841 * xemacs-faq.texi (Q6.2.1): | |
4842 * xemacs-faq.texi (Q6.2.2): | |
4843 * xemacs-faq.texi (Q6.2.3): | |
4844 * xemacs-faq.texi (Q6.2.4): | |
4845 * xemacs-faq.texi (Q6.2.5): | |
4846 * xemacs-faq.texi (Q6.3.1): | |
4847 * xemacs-faq.texi (Q6.3.2): | |
4848 * xemacs-faq.texi (Q6.3.3): | |
4849 * xemacs-faq.texi (Q6.3.4): | |
4850 * xemacs-faq.texi (Q6.4.1): | |
4851 * xemacs-faq.texi (Q6.4.2): | |
4852 * xemacs-faq.texi (Current Events): | |
4853 * xemacs-faq.texi (Q7.0.1): | |
4854 * xemacs-faq.texi (Q7.0.2): | |
4855 * xemacs-faq.texi (Q7.0.3): | |
4856 * xemacs-faq.texi (Q7.0.4): | |
4857 * xemacs-faq.texi (Q7.0.5): | |
4858 * xemacs-faq.texi (Q7.0.6): | |
4859 Merge in the rest of Hrvoje's Windows FAQ. Redo section 7 | |
4860 to update current reality and add condensed versions of | |
4861 new changes for 21.1 and 21.4. (Not quite done for 21.4.) | |
4862 Lots more Windows updates. | |
4863 | |
600 | 4864 2001-05-29 Alexey Mahotkin <alexm@hsys.msk.ru> |
4865 | |
4866 * xemacs/custom.texi: Documented keyboard shortcut. | |
4867 | |
4868 * xemacs/mule.texi: Updated to match reality; tiny fixes. | |
4869 | |
593 | 4870 2001-05-30 Ben Wing <ben@xemacs.org> |
4871 | |
4872 * xemacs-faq.texi (Top): | |
4873 * xemacs-faq.texi (MS Windows): | |
4874 * xemacs-faq.texi (Q6.0.1): | |
4875 * xemacs-faq.texi (Q6.0.2): | |
4876 * xemacs-faq.texi (Q6.0.3): | |
4877 * xemacs-faq.texi (Q6.0.4): | |
4878 * xemacs-faq.texi (Q6.1.1): | |
4879 * xemacs-faq.texi (Q6.1.4): | |
4880 * xemacs-faq.texi (Q6.1.5): | |
4881 * xemacs-faq.texi (Q6.1.6): | |
4882 * xemacs-faq.texi (Q6.2.1): | |
4883 * xemacs-faq.texi (Q6.2.2): | |
4884 * xemacs-faq.texi (Q6.3.1): | |
4885 * xemacs-faq.texi (Q6.3.2): | |
4886 * xemacs-faq.texi (Q6.3.3): | |
4887 * xemacs-faq.texi (Q6.4.1): | |
4888 * xemacs-faq.texi (Current Events): | |
4889 Major rewrite. | |
4890 Update all MS Windows info to current. | |
4891 Redo section 6.1 almost completely. | |
4892 Incorporate sections 1 and 2 of Hrvoje's FAQ. | |
4893 | |
563 | 4894 2001-05-24 Ben Wing <ben@xemacs.org> |
4895 | |
4896 * xemacs-faq.texi (Top): | |
4897 * xemacs-faq.texi (Installation): | |
4898 * xemacs-faq.texi (Q2.1.15): | |
4899 * xemacs-faq.texi (Q2.1.18): | |
4900 * xemacs-faq.texi (Q2.1.19): | |
4901 document how to debug X errors | |
1137 | 4902 |
540 | 4903 2001-05-15 Steve Youngs <youngs@xemacs.org> |
4904 | |
4905 * xemacs/packages.texi (Local.rules): Update to reflect new dir tree. | |
4906 (Creating Packages): Ditto. | |
4907 (Available Packages): Ditto. | |
4908 | |
522 | 4909 2001-05-09 Martin Buchholz <martin@xemacs.org> |
4910 | |
4911 * XEmacs 21.5.1 "anise" is released. | |
4912 | |
511 | 4913 2001-05-07 Martin Buchholz <martin@xemacs.org> |
4914 | |
4915 * make-stds.texi: Support makeinfo 3.12 | |
4916 | |
485 | 4917 2001-04-26 John H. Palmieri <palmieri@math.washington.edu> |
4918 | |
4919 * xemacs/frame.texi (XEmacs under X): Document default-frame-plist | |
4920 rather than default-frame-alist. | |
4921 | |
479 | 4922 2001-04-15 Ben Wing <ben@xemacs.org> |
4923 | |
4924 * xemacs-faq.texi (Q1.0.1): | |
4925 * xemacs-faq.texi (Q1.0.2): | |
4926 Rewrite description of XEmacs to match what's on web page, | |
4927 in about.el. | |
4928 | |
472 | 4929 2001-04-18 Martin Buchholz <martin@xemacs.org> |
4930 | |
4931 * XEmacs 21.5.0 "alfalfa" is released. | |
4932 | |
464 | 4933 2001-03-30 Ben Wing <ben@xemacs.org> |
4934 | |
4935 * internals\internals.texi: | |
4936 * internals\internals.texi (Top): | |
4937 * internals\internals.texi (Lucid Emacs): | |
4938 * internals\internals.texi (XEmacs): | |
4939 * internals\internals.texi (XEmacs From the Outside): | |
4940 Bump version to 1.4 and fix this everywhere. Document all | |
4941 XEmacs releases up through 21.2.46. | |
4942 | |
4943 2001-03-16 Stephen J. Turnbull <stephen@xemacs.org> | |
4944 | |
4945 * lispref/postgresql.texi (libpq Lisp Symbols and DataTypes): Save | |
4946 result of INSERT in R in pq-cmd-status example. | |
4947 | |
462 | 4948 2001-03-21 Martin Buchholz <martin@xemacs.org> |
4949 | |
4950 * XEmacs 21.2.46 "Urania" is released. | |
4951 | |
4952 2001-03-08 Ben Wing <ben@xemacs.org> | |
4953 | |
4954 * internals\internals.texi (Top): | |
4955 * internals\internals.texi (A History of Emacs): | |
4956 * internals\internals.texi (Through Version 18): | |
4957 * internals\internals.texi (Lucid Emacs): | |
4958 * internals\internals.texi (GNU Emacs 19): | |
4959 * internals\internals.texi (GNU Emacs 20): | |
4960 * internals\internals.texi (XEmacs From the Outside): | |
4961 * internals\internals.texi (The Lisp Language): | |
4962 * internals\internals.texi (XEmacs From the Perspective of Building): | |
4963 * internals\internals.texi (XEmacs From the Inside): | |
4964 * internals\internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
4965 * internals\internals.texi (How Lisp Objects Are Represented in C): | |
4966 * internals\internals.texi (Rules When Writing New C Code): | |
4967 * internals\internals.texi (General Coding Rules): | |
4968 * internals\internals.texi (Writing Lisp Primitives): | |
4969 * internals\internals.texi (Writing Good Comments): | |
4970 * internals\internals.texi (Adding Global Lisp Variables): | |
4971 * internals\internals.texi (Proper Use of Unsigned Types): | |
4972 * internals\internals.texi (Coding for Mule): | |
4973 * internals\internals.texi (Character-Related Data Types): | |
4974 * internals\internals.texi (Working With Character and Byte Positions): | |
4975 * internals\internals.texi (Conversion to and from External Data): | |
4976 * internals\internals.texi (General Guidelines for Writing Mule-Aware Code): | |
4977 * internals\internals.texi (An Example of Mule-Aware Code): | |
4978 * internals\internals.texi (Techniques for XEmacs Developers): | |
4979 * internals\internals.texi (A Summary of the Various XEmacs Modules): | |
4980 * internals\internals.texi (Low-Level Modules): | |
4981 * internals\internals.texi (Basic Lisp Modules): | |
4982 * internals\internals.texi (Modules for Standard Editing Operations): | |
4983 * internals\internals.texi (Editor-Level Control Flow Modules): | |
4984 * internals\internals.texi (Modules for the Basic Displayable Lisp Objects): | |
4985 * internals\internals.texi (Modules for other Display-Related Lisp Objects): | |
4986 * internals\internals.texi (Modules for the Redisplay Mechanism): | |
4987 * internals\internals.texi (Modules for Interfacing with the File System): | |
4988 * internals\internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
4989 * internals\internals.texi (Modules for Interfacing with the Operating System): | |
4990 * internals\internals.texi (Modules for Interfacing with X Windows): | |
4991 * internals\internals.texi (Allocation of Objects in XEmacs Lisp): | |
4992 * internals\internals.texi (Introduction to Allocation): | |
4993 * internals\internals.texi (Garbage Collection): | |
4994 * internals\internals.texi (GCPROing): | |
4995 * internals\internals.texi (Garbage Collection - Step by Step): | |
4996 * internals\internals.texi (Invocation): | |
4997 * internals\internals.texi (garbage_collect_1): | |
4998 * internals\internals.texi (mark_object): | |
4999 * internals\internals.texi (gc_sweep): | |
5000 * internals\internals.texi (sweep_lcrecords_1): | |
5001 * internals\internals.texi (compact_string_chars): | |
5002 * internals\internals.texi (sweep_strings): | |
5003 * internals\internals.texi (sweep_bit_vectors_1): | |
5004 * internals\internals.texi (Integers and Characters): | |
5005 * internals\internals.texi (Allocation from Frob Blocks): | |
5006 * internals\internals.texi (lrecords): | |
5007 * internals\internals.texi (Low-level allocation): | |
5008 * internals\internals.texi (Cons): | |
5009 * internals\internals.texi (Vector): | |
5010 * internals\internals.texi (Bit Vector): | |
5011 * internals\internals.texi (Symbol): | |
5012 * internals\internals.texi (Marker): | |
5013 * internals\internals.texi (String): | |
5014 * internals\internals.texi (Dumping): | |
5015 * internals\internals.texi (Overview): | |
5016 * internals\internals.texi (Data descriptions): | |
5017 * internals\internals.texi (Dumping phase): | |
5018 * internals\internals.texi (Object inventory): | |
5019 * internals\internals.texi (Address allocation): | |
5020 * internals\internals.texi (The header): | |
5021 * internals\internals.texi (Data dumping): | |
5022 * internals\internals.texi (Pointers dumping): | |
5023 * internals\internals.texi (Reloading phase): | |
5024 * internals\internals.texi (Events and the Event Loop): | |
5025 * internals\internals.texi (Introduction to Events): | |
5026 * internals\internals.texi (Main Loop): | |
5027 * internals\internals.texi (Specifics of the Event Gathering Mechanism): | |
5028 * internals\internals.texi (Specifics About the Emacs Event): | |
5029 * internals\internals.texi (The Event Stream Callback Routines): | |
5030 * internals\internals.texi (Other Event Loop Functions): | |
5031 * internals\internals.texi (Converting Events): | |
5032 * internals\internals.texi (Evaluation; Stack Frames; Bindings): | |
5033 * internals\internals.texi (Evaluation): | |
5034 * internals\internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
5035 * internals\internals.texi (Simple Special Forms): | |
5036 * internals\internals.texi (Symbols and Variables): | |
5037 * internals\internals.texi (Introduction to Symbols): | |
5038 * internals\internals.texi (Obarrays): | |
5039 * internals\internals.texi (Buffers and Textual Representation): | |
5040 * internals\internals.texi (Introduction to Buffers): | |
5041 * internals\internals.texi (The Text in a Buffer): | |
5042 * internals\internals.texi (Buffer Lists): | |
5043 * internals\internals.texi (Markers and Extents): | |
5044 * internals\internals.texi (Bufbytes and Emchars): | |
5045 * internals\internals.texi (MULE Character Sets and Encodings): | |
5046 * internals\internals.texi (Character Sets): | |
5047 * internals\internals.texi (Encodings): | |
5048 * internals\internals.texi (Japanese EUC (Extended Unix Code)): | |
5049 * internals\internals.texi (JIS7): | |
5050 * internals\internals.texi (Internal Mule Encodings): | |
5051 * internals\internals.texi (Internal String Encoding): | |
5052 * internals\internals.texi (Internal Character Encoding): | |
5053 * internals\internals.texi (The Lisp Reader and Compiler): | |
5054 * internals\internals.texi (Lstreams): | |
5055 * internals\internals.texi (Creating an Lstream): | |
5056 * internals\internals.texi (Lstream Types): | |
5057 * internals\internals.texi (Lstream Functions): | |
5058 * internals\internals.texi (Consoles; Devices; Frames; Windows): | |
5059 * internals\internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
5060 * internals\internals.texi (Point): | |
5061 * internals\internals.texi (Window Hierarchy): | |
5062 * internals\internals.texi (The Redisplay Mechanism): | |
5063 * internals\internals.texi (Critical Redisplay Sections): | |
5064 * internals\internals.texi (Line Start Cache): | |
5065 * internals\internals.texi (Extents): | |
5066 * internals\internals.texi (Introduction to Extents): | |
5067 * internals\internals.texi (Extent Ordering): | |
5068 * internals\internals.texi (Format of the Extent Info): | |
5069 * internals\internals.texi (Zero-Length Extents): | |
5070 * internals\internals.texi (Mathematics of Extent Ordering): | |
5071 * internals\internals.texi (Faces): | |
5072 * internals\internals.texi (Glyphs): | |
5073 * internals\internals.texi (Specifiers): | |
5074 * internals\internals.texi (Menus): | |
5075 * internals\internals.texi (Subprocesses): | |
5076 * internals\internals.texi (Interface to the X Window System): | |
5077 * internals\internals.texi (Lucid Widget Library): | |
5078 * internals\internals.texi (Generic Widget Interface): | |
5079 * internals\internals.texi (Scrollbars): | |
5080 * internals\internals.texi (Menubars): | |
5081 * internals\internals.texi (Checkboxes and Radio Buttons): | |
5082 * internals\internals.texi (Progress Bars): | |
5083 * internals\internals.texi (Tab Controls): | |
5084 Add more index entries. Add sections on comments and unsigned types. | |
5085 | |
5086 2001-03-08 Ben Wing <ben@xemacs.org> | |
5087 | |
5088 * make-stds.texi (Makefile Basics): | |
5089 * make-stds.texi (Command Variables): | |
5090 * make-stds.texi (Directory Variables): | |
5091 * make-stds.texi (Standard Targets): | |
5092 * standards.texi: | |
5093 * standards.texi (Top): | |
5094 * standards.texi (Preface): | |
5095 * standards.texi (Legal Issues): | |
5096 * standards.texi (Reading Non-Free Code): | |
5097 * standards.texi (Contributions): | |
5098 * standards.texi (Trademarks): | |
5099 * standards.texi (Design Advice): | |
5100 * standards.texi (Source Language): | |
5101 * standards.texi (Compatibility): | |
5102 * standards.texi (Using Extensions): | |
5103 * standards.texi (Standard C): | |
5104 * standards.texi (Program Behavior): | |
5105 * standards.texi (Semantics): | |
5106 * standards.texi (Libraries): | |
5107 * standards.texi (Errors): | |
5108 * standards.texi (User Interfaces): | |
5109 * standards.texi (Graphical Interfaces): | |
5110 * standards.texi (Command-Line Interfaces): | |
5111 * standards.texi (Option Table): | |
5112 * standards.texi (Memory Usage): | |
5113 * standards.texi (File Usage): | |
5114 * standards.texi (Formatting): | |
5115 * standards.texi (Comments): | |
5116 * standards.texi (Syntactic Conventions): | |
5117 * standards.texi (Names): | |
5118 * standards.texi (System Portability): | |
5119 * standards.texi (CPU Portability): | |
5120 * standards.texi (System Functions): | |
5121 * standards.texi (Internationalization): | |
5122 * standards.texi (Mmap): | |
5123 * standards.texi (Documentation): | |
5124 * standards.texi (GNU Manuals): | |
5125 * standards.texi (Doc Strings and Manuals): | |
5126 * standards.texi (Manual Structure Details): | |
5127 * standards.texi (License for Manuals): | |
5128 * standards.texi (Manual Credits): | |
5129 * standards.texi (Printed Manuals): | |
5130 * standards.texi (NEWS File): | |
5131 * standards.texi (Change Logs): | |
5132 * standards.texi (Style of Change Logs): | |
5133 * standards.texi (Simple Changes): | |
5134 * standards.texi (Conditional Changes): | |
5135 * standards.texi (Indicating the Part Changed): | |
5136 * standards.texi (Managing Releases): | |
5137 * standards.texi (Configuration): | |
5138 * standards.texi (Releases): | |
5139 * standards.texi (References): | |
5140 * standards.texi (Index): | |
5141 Update to latest GNU version. | |
1137 | 5142 |
462 | 5143 * xemacs-faq.texi (Q6.3.3): |
5144 * xemacs-faq.texi (Q6.4.1): | |
5145 Improve questions on current Windows activity. | |
5146 | |
5147 2001-03-07 Sandra Wambold <wambold@xemacs.org> | |
5148 | |
5149 * xemacs-faq.texi: (Q.1.0.7): changed list archive address | |
5150 | |
5151 2001-02-25 Ben Wing <ben@xemacs.org> | |
5152 | |
5153 * xemacs-faq.texi (Top): | |
5154 * xemacs-faq.texi (Introduction): | |
5155 * xemacs-faq.texi (Q1.0.1): | |
5156 * xemacs-faq.texi (Q1.0.4): | |
5157 * xemacs-faq.texi (Q1.0.6): | |
5158 * xemacs-faq.texi (Q1.0.10): | |
5159 * xemacs-faq.texi (Q1.2.1): | |
5160 * xemacs-faq.texi (Q1.4.1): | |
5161 * xemacs-faq.texi (Q1.4.2): | |
5162 * xemacs-faq.texi (Q2.0.12): | |
5163 * xemacs-faq.texi (Q2.1.1): | |
5164 * xemacs-faq.texi (Q2.1.2): | |
5165 * xemacs-faq.texi (Q2.1.9): | |
5166 * xemacs-faq.texi (Q2.1.15): | |
5167 * xemacs-faq.texi (Q2.1.19): | |
5168 * xemacs-faq.texi (Customization): | |
5169 * xemacs-faq.texi (Q3.0.1): | |
5170 * xemacs-faq.texi (Q3.0.2): | |
5171 * xemacs-faq.texi (Q3.0.3): | |
5172 * xemacs-faq.texi (Q3.0.7): | |
5173 * xemacs-faq.texi (Q3.1.5): | |
5174 * xemacs-faq.texi (Q3.1.6): | |
5175 * xemacs-faq.texi (Q3.2.1): | |
5176 * xemacs-faq.texi (Q3.2.3): | |
5177 * xemacs-faq.texi (Q3.2.4): | |
5178 * xemacs-faq.texi (Q3.3.1): | |
5179 * xemacs-faq.texi (Q3.3.2): | |
5180 * xemacs-faq.texi (Q3.3.3): | |
5181 * xemacs-faq.texi (Q3.3.4): | |
5182 * xemacs-faq.texi (Q3.3.5): | |
5183 * xemacs-faq.texi (Q3.4.1): | |
5184 * xemacs-faq.texi (Q3.4.2): | |
5185 * xemacs-faq.texi (Q3.5.2): | |
5186 * xemacs-faq.texi (Q3.5.4): | |
5187 * xemacs-faq.texi (key-translation-map): New. | |
5188 * xemacs-faq.texi (Q3.5.5): | |
5189 * xemacs-faq.texi (Q3.5.6): | |
5190 * xemacs-faq.texi (Q3.5.7): | |
5191 * xemacs-faq.texi (Q3.5.8): | |
5192 * xemacs-faq.texi (global-map): Removed. | |
5193 * xemacs-faq.texi (Q3.5.9): | |
5194 * xemacs-faq.texi (Q3.6.1): | |
5195 * xemacs-faq.texi (Q3.6.2): | |
5196 * xemacs-faq.texi (Q3.6.3): | |
5197 * xemacs-faq.texi (Q3.7.6): | |
5198 * xemacs-faq.texi (Q3.7.7): | |
5199 * xemacs-faq.texi (Q3.8.1): | |
5200 * xemacs-faq.texi (Q3.8.2): | |
5201 * xemacs-faq.texi (Q3.8.3): | |
5202 * xemacs-faq.texi (Q3.9.1): | |
5203 * xemacs-faq.texi (Q3.9.4): | |
5204 * xemacs-faq.texi (Q3.10.1): | |
5205 * xemacs-faq.texi (Q3.10.2): | |
5206 * xemacs-faq.texi (Q3.10.3): | |
5207 * xemacs-faq.texi (Q4.0.12): | |
5208 * xemacs-faq.texi (Miscellaneous): | |
5209 * xemacs-faq.texi (Q5.0.1): | |
5210 * xemacs-faq.texi (Q5.0.2): | |
5211 * xemacs-faq.texi (Q5.0.3): | |
5212 * xemacs-faq.texi (Q5.0.4): | |
5213 * xemacs-faq.texi (Q5.0.5): | |
5214 * xemacs-faq.texi (Q5.0.8): | |
5215 * xemacs-faq.texi (Q5.0.9): | |
5216 * xemacs-faq.texi (Q5.0.11): | |
5217 * xemacs-faq.texi (Q5.0.12): | |
5218 * xemacs-faq.texi (Q5.0.13): | |
5219 * xemacs-faq.texi (Q5.0.16): | |
5220 * xemacs-faq.texi (Q5.0.17): | |
5221 * xemacs-faq.texi (Q5.1.9): | |
5222 * xemacs-faq.texi (Q5.1.11): | |
5223 * xemacs-faq.texi (Q5.2.1): | |
5224 * xemacs-faq.texi (Q5.2.2): | |
5225 * xemacs-faq.texi (Q5.3.1): | |
5226 * xemacs-faq.texi (Q5.3.2): | |
5227 * xemacs-faq.texi (Q5.3.4): | |
5228 * xemacs-faq.texi (MS Windows): | |
5229 * xemacs-faq.texi (Q6.0.1): | |
5230 * xemacs-faq.texi (Q6.0.2): | |
5231 * xemacs-faq.texi (Q6.0.3): | |
5232 * xemacs-faq.texi (Q6.0.4): | |
5233 * xemacs-faq.texi (Q6.1.5): | |
5234 * xemacs-faq.texi (Q6.2.3): | |
5235 * xemacs-faq.texi (Q6.3.1): | |
5236 | |
5237 Remove most references to XEmacs pre-19.15, since they are way out | |
5238 of date and are cluttering up and confusing many answers. Update | |
5239 references to .emacs to take into account the new init file | |
5240 location. Update information about the MS Windows port. Change | |
5241 description of XEmacs at beginning to match the web site. Update | |
5242 info about current developers. | |
1137 | 5243 |
462 | 5244 |
5245 2001-02-25 Ben Wing <ben@xemacs.org> | |
5246 | |
5247 * lispref\help.texi (Describing Characters): | |
5248 kp- not kp_. | |
1137 | 5249 |
462 | 5250 2001-02-25 Ben Wing <ben@xemacs.org> |
5251 | |
5252 * new-users-guide\custom1.texi (Customization Basics): | |
5253 * new-users-guide\custom1.texi (Customizing key Bindings): | |
5254 * new-users-guide\custom1.texi (Customizing Menus): | |
5255 * new-users-guide\custom2.texi (Other Customizations): | |
5256 * new-users-guide\custom2.texi (Setting Variables): | |
5257 * new-users-guide\custom2.texi (Init File): | |
5258 * new-users-guide\xmenu.texi (Options Menu): | |
5259 * new-users-guide\modes.texi (Major Modes): | |
5260 * new-users-guide\modes.texi (Minor Modes): | |
5261 * new-users-guide\new-users-guide.texi (Top): | |
5262 Fix up references to .emacs to take into account init.el. | |
1137 | 5263 |
460 | 5264 2001-02-23 Martin Buchholz <martin@xemacs.org> |
5265 | |
5266 * XEmacs 21.2.45 "Thelxepeia" is released. | |
5267 | |
5268 2001-02-10 Martin Buchholz <martin@xemacs.org> | |
5269 | |
5270 * xemacs/programs.texi (Tag Syntax): Port to makeinfo 3. | |
5271 | |
458 | 5272 2001-02-08 Martin Buchholz <martin@xemacs.org> |
5273 | |
5274 * XEmacs 21.2.44 "Thalia" is released. | |
5275 | |
5276 2001-02-04 Steve Youngs <youngs@xemacs.org> | |
5277 | |
5278 * xemacs/xemacs.texi: Update to accomodate new and improved | |
5279 packages.texi. | |
5280 | |
5281 * xemacs/packages.texi: Basically, apart from a few things, | |
5282 rewritten from scratch. | |
5283 | |
456 | 5284 2001-01-27 Martin Buchholz <martin@xemacs.org> |
5285 | |
5286 * lispref/variables.texi (max-specpdl-size): Correct default value. | |
5287 * lispref/eval.texi (max-lisp-eval-depth): Correct default value. | |
5288 | |
5289 2001-01-26 Martin Buchholz <martin@xemacs.org> | |
5290 | |
5291 * XEmacs 21.2.43 "Terspichore" is released. | |
5292 | |
454 | 5293 2001-01-20 Martin Buchholz <martin@xemacs.org> |
5294 | |
5295 * XEmacs 21.2.42 "Poseidon" is released. | |
5296 | |
5297 2001-01-18 Martin Buchholz <martin@xemacs.org> | |
5298 | |
5299 * xemacs-faq.texi (Q1.0.11): Change XEmacs for MacOS URL. | |
5300 | |
5301 2001-01-17 Andy Piper <andy@xemacs.org> | |
5302 | |
5303 * internals.texi: some glyph documentation. | |
5304 | |
5305 2001-01-16 Didier Verna <didier@xemacs.org> | |
5306 | |
5307 * frame.texi (Mode Line Basics): new node ... | |
5308 * frame.texi (GUI Components): ... under this one ... | |
5309 * frame.texi (Scrollbar Basics): ... after this one ... | |
5310 * frame.texi (Toolbar Basics): ... before this one. | |
5311 | |
452 | 5312 2001-01-17 Martin Buchholz <martin@xemacs.org> |
5313 | |
5314 * XEmacs 21.2.41 "Polyhymnia" is released. | |
5315 | |
5316 2001-01-12 Martin Buchholz <martin@xemacs.org> | |
5317 | |
5318 * internals/internals.texi: A little post-pdump-rename fixup. | |
5319 | |
5320 2001-01-13 Martin Buchholz <martin@xemacs.org> | |
5321 | |
5322 * internals/internals.texi: See `pdump-rename' in src/ChangeLog. | |
5323 | |
5324 2001-01-10 Martin Buchholz <martin@xemacs.org> | |
5325 | |
5326 * internals/internals.texi: Update for pdump changes. | |
5327 | |
5328 2001-01-04 Adrian Aichner <adrian@xemacs.org> | |
5329 | |
5330 * texinfo.texi (Using Texinfo): Change reference from GNU Emacs to | |
5331 XEmacs. | |
5332 * texinfo.texi (First Node): Fixing grammar. | |
5333 * texinfo.texi (Multitable Rows): Change reference from GNU Emacs | |
5334 to XEmacs. | |
5335 | |
450 | 5336 2001-01-08 Martin Buchholz <martin@xemacs.org> |
5337 | |
5338 * XEmacs 21.2.40 is released. | |
5339 | |
5340 2001-01-06 Stephen J. Turnbull <stephen@xemacs.org> | |
5341 | |
5342 * emodules.texi (Required Functions): Xref coding rules for dual-use | |
5343 modules (module and statically linked). Typo fix. | |
5344 | |
5345 * texinfo.texi (ref): Typo fix. | |
5346 | |
448 | 5347 2000-12-31 Martin Buchholz <martin@xemacs.org> |
5348 | |
5349 * XEmacs 21.2.39 is released. | |
5350 | |
5351 2000-12-05 Stephen J. Turnbull <stephen@xemacs.org> | |
5352 | |
5353 * internals/internals.texi (General Coding Rules): further document | |
5354 usage of symsinit.h. Reorder slightly. | |
5355 | |
446 | 5356 2000-11-29 Stephen J. Turnbull <stephen@xemacs.org> |
5357 | |
5358 * xemacs/packages.texi (Creating Packages): new node. | |
5359 | |
5360 2000-12-05 Martin Buchholz <martin@xemacs.org> | |
5361 | |
5362 * XEmacs 21.2.38 is released. | |
5363 | |
5364 2000-12-01 Martin Buchholz <martin@xemacs.org> | |
5365 | |
5366 * lispref/compile.texi: | |
5367 Document differences between compiler and interpreter. | |
5368 | |
5369 2000-11-29 Stephen J. Turnbull <stephen@xemacs.org> | |
5370 | |
5371 * internals/index.texi: | |
5372 internals/internals.texi: | |
5373 Change "X Windows" to "the X Window System" randomly. | |
5374 * internals/internals.texi (Glyphs): fiddling, move lwlib to new node. | |
5375 (Lucid Widget Library): new node, added new text, ASCII art, subnode | |
5376 structure. | |
5377 * xemacs/frame.texi (GUI Components): new node. | |
5378 * xemacs/packages.texi: minor updates. | |
5379 | |
5380 2000-11-10 Stephen J. Turnbull <stephen@xemacs.org> | |
5381 | |
5382 * info.texi (Creating an Info File): Fix typos in xrefs. | |
5383 | |
5384 2000-11-08 Stephen J. Turnbull <stephen@xemacs.org> | |
5385 | |
5386 * xemacs/cmdargs.texi (Command Switches): Add documentation of | |
5387 portable dumper switches. Other minor edits. | |
5388 | |
5389 2000-11-21 Martin Buchholz <martin@xemacs.org> | |
5390 | |
5391 * lispref/positions.texi (Word Motion): | |
5392 forward-word arg is now optional. | |
5393 backward-word arg is now optional. | |
5394 Remove vile comment advising lisp programmer to use (forward-word -1) | |
5395 instead of (backward-word 1). | |
5396 * lispref/syntax.texi (Parsing Expressions): | |
5397 Similarly for forward-comment. | |
5398 * lispref/text.texi (Deletion): | |
5399 Similarly for delete-char. | |
5400 Similarly for delete-backward-char. | |
5401 | |
5402 2000-11-09 Martin Buchholz <martin@xemacs.org> | |
5403 | |
5404 * cl.texi (Assertions): | |
5405 Remove claim that elisp doesn't have continuable errors. | |
5406 Document check-type as being continuable. | |
5407 | |
5408 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5409 | |
5410 * xemacs/calendar.texi (Calendar/Diary): Correct INFO-FILE-NAME | |
5411 from elisp to lispref and from emacs to xemacs in relevant ?xefs. | |
5412 This should also serve as a reminder for future merges with GNU | |
5413 Emacs. | |
5414 Unify PRINTED-MANUAL-TITLE to "XEmacs Lisp Reference Manual" and | |
5415 "XEmacs User's Manual" for lispref and xemacs respectively. | |
5416 | |
5417 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5418 | |
5419 * lispref/abbrevs.texi (Abbrevs): Ditto. | |
5420 * lispref/backups.texi (Auto-Saving): Ditto. | |
5421 * lispref/backups.texi (Reverting): Ditto. | |
5422 * lispref/display.texi (The Echo Area): Ditto. | |
5423 * lispref/help.texi (Documentation Basics): Ditto. | |
5424 * lispref/help.texi (Help Functions): Ditto. | |
5425 * lispref/keymaps.texi (Scanning Keymaps): Ditto. | |
5426 * lispref/locals.texi (Standard Buffer-Local Variables): Ditto. | |
5427 * lispref/modes.texi (Auto Major Mode): Ditto. | |
5428 * lispref/positions.texi (List Motion): Ditto. | |
5429 * lispref/searching.texi (Regexp Search): Ditto. | |
5430 * lispref/symbols.texi (Symbol Components): Ditto. | |
5431 * lispref/tips.texi (Comment Tips): Ditto. | |
5432 * lispref/tips.texi (Library Headers): Ditto. | |
5433 | |
5434 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5435 | |
5436 * internals/internals.texi (The Buffer Object): Ditto. | |
5437 | |
5438 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5439 | |
5440 * cl.texi (Hash Tables): Ditto. | |
5441 * texinfo.texi (Other Info Files): Ditto. | |
5442 * xemacs-faq.texi (Q1.0.14): Ditto. | |
5443 | |
444 | 5444 2000-11-14 Martin Buchholz <martin@xemacs.org> |
5445 | |
5446 * XEmacs 21.2.37 is released. | |
5447 | |
5448 2000-10-27 Martin Buchholz <martin@xemacs.org> | |
5449 | |
5450 * xemacs/windows.texi (Other Window): | |
5451 | |
5452 * new-users-guide/files.texi (Saving Files): | |
5453 * new-users-guide/search.texi (Search and Replace): | |
5454 | |
5455 * lispref/abbrevs.texi (Abbrev Tables): | |
5456 * lispref/abbrevs.texi (Defining Abbrevs): | |
5457 * lispref/abbrevs.texi (Abbrev Files): | |
5458 * lispref/annotations.texi (Annotation Primitives): | |
5459 * lispref/backups.texi (Auto-Saving): | |
5460 * lispref/backups.texi (Reverting): | |
5461 * lispref/buffers.texi (Current Buffer): | |
5462 * lispref/buffers.texi (Buffer Names): | |
5463 * lispref/buffers.texi (Buffer Modification): | |
5464 * lispref/buffers.texi (Read Only Buffers): | |
5465 * lispref/buffers.texi (The Buffer List): | |
5466 * lispref/buffers.texi (Killing Buffers): | |
5467 * lispref/buffers.texi (Indirect Buffers): | |
5468 * lispref/building.texi (Building XEmacs): | |
5469 * lispref/building.texi (Garbage Collection): | |
5470 * lispref/commands.texi (Interactive Call): | |
5471 * lispref/commands.texi (Events): | |
5472 * lispref/commands.texi (Event Predicates): | |
5473 * lispref/commands.texi (Working With Events): | |
5474 * lispref/commands.texi (Converting Events): | |
5475 * lispref/commands.texi (Key Sequence Input): | |
5476 * lispref/commands.texi (Reading One Event): | |
5477 * lispref/commands.texi (Waiting): | |
5478 * lispref/commands.texi (Prefix Command Arguments): | |
5479 * lispref/commands.texi (Recursive Editing): | |
5480 * lispref/compile.texi (Compilation Functions): | |
5481 * lispref/compile.texi (Compiled-Function Objects): | |
5482 * lispref/consoles-devices.texi (Basic Device Functions): | |
5483 * lispref/consoles-devices.texi (Console Types and Device Classes): | |
5484 * lispref/consoles-devices.texi (Connecting to a Console or Device): | |
5485 * lispref/control.texi (Signaling Errors): | |
5486 * lispref/customize.texi (Type Keywords): | |
5487 * lispref/databases.texi (Connecting to a Database): | |
5488 * lispref/databases.texi (Working With a Database): | |
5489 * lispref/databases.texi (Other Database Functions): | |
5490 * lispref/debugging.texi (Function Debugging): | |
5491 * lispref/display.texi (Refresh Screen): | |
5492 * lispref/display.texi (The Echo Area): | |
5493 * lispref/display.texi (Blinking): | |
5494 * lispref/edebug-inc.texi (Tracing): | |
5495 * lispref/edebug-inc.texi (Instrumenting Macro Calls): | |
5496 * lispref/edebug-inc.texi (Edebug Options): | |
5497 * lispref/eval.texi (Function Indirection): | |
5498 * lispref/extents.texi (Creating and Modifying Extents): | |
5499 * lispref/extents.texi (Finding Extents): | |
5500 * lispref/extents.texi (Mapping Over Extents): | |
5501 * lispref/extents.texi (Extent Properties): | |
5502 * lispref/faces.texi (Basic Face Functions): | |
5503 * lispref/faces.texi (Face Properties): | |
5504 * lispref/faces.texi (Face Convenience Functions): | |
5505 * lispref/faces.texi (Other Face Display Functions): | |
5506 * lispref/faces.texi (Font Instance Characteristics): | |
5507 * lispref/faces.texi (Color Specifiers): | |
5508 * lispref/files.texi (Visiting Functions): | |
5509 * lispref/files.texi (Reading from Files): | |
5510 * lispref/files.texi (Changing File Attributes): | |
5511 * lispref/files.texi (File Names): | |
5512 * lispref/files.texi (File Name Components): | |
5513 * lispref/files.texi (Directory Names): | |
5514 * lispref/files.texi (Relative File Names): | |
5515 * lispref/files.texi (File Name Expansion): | |
5516 * lispref/files.texi (File Name Completion): | |
5517 * lispref/files.texi (User Name Completion): | |
5518 * lispref/files.texi (Magic File Names): | |
5519 * lispref/files.texi (Creating a Partial File): | |
5520 * lispref/files.texi (Format Conversion): | |
5521 * lispref/frames.texi (Creating Frames): | |
5522 * lispref/frames.texi (Property Access): | |
5523 * lispref/frames.texi (Size and Position): | |
5524 * lispref/frames.texi (Deleting Frames): | |
5525 * lispref/frames.texi (Finding All Frames): | |
5526 * lispref/frames.texi (Frames and Windows): | |
5527 * lispref/frames.texi (Visibility of Frames): | |
5528 * lispref/frames.texi (Frame Configurations): | |
5529 * lispref/functions.texi (Calling Functions): | |
5530 * lispref/functions.texi (Function Cells): | |
5531 * lispref/glyphs.texi (Creating Glyphs): | |
5532 * lispref/glyphs.texi (Image Specifiers): | |
5533 * lispref/glyphs.texi (Image Instance Types): | |
5534 * lispref/glyphs.texi (Image Instance Functions): | |
5535 * lispref/gutter.texi (Creating Gutter): | |
5536 * lispref/gutter.texi (Specifying a Gutter): | |
5537 * lispref/gutter.texi (Other Gutter Variables): | |
5538 * lispref/help.texi (Accessing Documentation): | |
5539 * lispref/help.texi (Help Functions): | |
5540 * lispref/help.texi (Obsoleteness): | |
5541 * lispref/internationalization.texi (Domain Specification): | |
5542 * lispref/intro.texi (Caveats): | |
5543 * lispref/keymaps.texi (Active Keymaps): | |
5544 * lispref/keymaps.texi (Functions for Key Lookup): | |
5545 * lispref/keymaps.texi (Changing Key Bindings): | |
5546 * lispref/keymaps.texi (Scanning Keymaps): | |
5547 * lispref/ldap.texi (The High-Level LDAP API): | |
5548 * lispref/ldap.texi (Low-level Operations on a LDAP Server): | |
5549 * lispref/ldap.texi (Encoder/Decoder Functions): | |
5550 * lispref/lists.texi (Setcar): | |
5551 * lispref/lists.texi (Setcdr): | |
5552 * lispref/lists.texi (Working With Normal Plists): | |
5553 * lispref/lists.texi (Working With Lax Plists): | |
5554 * lispref/loading.texi (Autoload): | |
5555 * lispref/loading.texi (Named Features): | |
5556 * lispref/markers.texi (Creating Markers): | |
5557 * lispref/markers.texi (Changing Markers): | |
5558 * lispref/markers.texi (The Mark): | |
5559 * lispref/menus.texi (Modifying Menus): | |
5560 * lispref/menus.texi (Pop-Up Menus): | |
5561 * lispref/menus.texi (Menu Accelerator Functions): | |
5562 * lispref/minibuf.texi (Text from Minibuffer): | |
5563 * lispref/minibuf.texi (Object from Minibuffer): | |
5564 * lispref/minibuf.texi (Basic Completion): | |
5565 * lispref/minibuf.texi (High-Level Completion): | |
5566 * lispref/minibuf.texi (Reading a Password): | |
5567 * lispref/minibuf.texi (Minibuffer Misc): | |
5568 * lispref/mouse.texi (Mouse Tracking): | |
5569 * lispref/syntax.texi (Syntax Table Functions): | |
5570 * lispref/numbers.texi (Arithmetic Operations): | |
5571 * lispref/numbers.texi (Rounding Operations): | |
5572 * lispref/numbers.texi (Math Functions): | |
5573 * lispref/objects.texi (String Type): | |
5574 * lispref/objects.texi (Equality Predicates): | |
5575 * lispref/os.texi (Killing XEmacs): | |
5576 * lispref/os.texi (Suspending XEmacs): | |
5577 * lispref/os.texi (System Environment): | |
5578 * lispref/os.texi (Time Conversion): | |
5579 * lispref/os.texi (Timers): | |
5580 * lispref/os.texi (Input Modes): | |
5581 * lispref/os.texi (Translating Input): | |
5582 * lispref/os.texi (Terminal Output): | |
5583 * lispref/os.texi (Flow Control): | |
5584 * lispref/positions.texi (Character Motion): | |
5585 * lispref/positions.texi (Word Motion): | |
5586 * lispref/positions.texi (Text Lines): | |
5587 * lispref/positions.texi (Screen Lines): | |
5588 * lispref/positions.texi (List Motion): | |
5589 * lispref/positions.texi (Narrowing): | |
5590 * lispref/postgresql.texi (Asynchronous Interface Functions): | |
5591 * lispref/processes.texi (Subprocess Creation): | |
5592 * lispref/processes.texi (Synchronous Processes): | |
5593 * lispref/processes.texi (Asynchronous Processes): | |
5594 * lispref/processes.texi (Process Information): | |
5595 * lispref/processes.texi (Input to Processes): | |
5596 * lispref/processes.texi (Signals to Processes): | |
5597 * lispref/processes.texi (Process Buffers): | |
5598 * lispref/processes.texi (Filter Functions): | |
5599 * lispref/processes.texi (Network): | |
5600 * lispref/range-tables.texi (Working With Range Tables): | |
5601 * lispref/searching.texi (String Search): | |
5602 * lispref/searching.texi (Regexp Search): | |
5603 * lispref/searching.texi (POSIX Regexps): | |
5604 * lispref/searching.texi (Replacing Match): | |
5605 * lispref/searching.texi (Entire Match Data): | |
5606 * lispref/sequences.texi (Bit Vector Functions): | |
5607 * lispref/specifiers.texi (Adding Specifications): | |
5608 * lispref/specifiers.texi (Creating Specifiers): | |
5609 * lispref/specifiers.texi (Specifier Validation Functions): | |
5610 * lispref/specifiers.texi (Other Specification Functions): | |
5611 * lispref/streams.texi (Output Variables): | |
5612 * lispref/symbols.texi (Other Plists): | |
5613 * lispref/text.texi (Insertion): | |
5614 * lispref/text.texi (Commands for Insertion): | |
5615 * lispref/text.texi (Deletion): | |
5616 * lispref/text.texi (User-Level Deletion): | |
5617 * lispref/text.texi (Kill Functions): | |
5618 * lispref/text.texi (Low-Level Kill Ring): | |
5619 * lispref/text.texi (Undo): | |
5620 * lispref/text.texi (Maintaining Undo): | |
5621 * lispref/text.texi (Margins): | |
5622 * lispref/text.texi (Sorting): | |
5623 * lispref/text.texi (Columns): | |
5624 * lispref/text.texi (Primitive Indent): | |
5625 * lispref/text.texi (Mode-Specific Indent): | |
5626 * lispref/text.texi (Region Indent): | |
5627 * lispref/text.texi (Case Changes): | |
5628 * lispref/text.texi (Examining Properties): | |
5629 * lispref/text.texi (Property Search): | |
5630 * lispref/text.texi (Registers): | |
5631 * lispref/text.texi (Transformations): | |
5632 * lispref/mule.texi (Charset Property Functions): | |
5633 * lispref/mule.texi (MULE Characters): | |
5634 * lispref/mule.texi (Composite Characters): | |
5635 * lispref/mule.texi (Coding System Properties): | |
5636 * lispref/mule.texi (Big5 and Shift-JIS Functions): | |
5637 * lispref/mule.texi (CCL Statements): | |
5638 * lispref/mule.texi (Calling CCL): | |
5639 * lispref/mule.texi (Category Tables): | |
5640 * lispref/toolbar.texi (Specifying the Toolbar): | |
5641 * lispref/toolbar.texi (Other Toolbar Variables): | |
5642 * lispref/tooltalk.texi (Elisp Interface for Sending Messages): | |
5643 * lispref/tooltalk.texi (Elisp Interface for Receiving Messages): | |
5644 * lispref/variables.texi (Creating Buffer-Local): | |
5645 * lispref/variables.texi (Variable Aliases): | |
5646 * lispref/windows.texi (Splitting Windows): | |
5647 * lispref/windows.texi (Deleting Windows): | |
5648 * lispref/windows.texi (Selecting Windows): | |
5649 * lispref/windows.texi (Cyclic Window Ordering): | |
5650 * lispref/windows.texi (Buffers and Windows): | |
5651 * lispref/windows.texi (Displaying Buffers): | |
5652 * lispref/windows.texi (Choosing Window): | |
5653 * lispref/windows.texi (Window Point): | |
5654 * lispref/windows.texi (Window Start): | |
5655 * lispref/windows.texi (Vertical Scrolling): | |
5656 * lispref/windows.texi (Horizontal Scrolling): | |
5657 * lispref/windows.texi (Resizing Windows): | |
5658 * lispref/windows.texi (Window Configurations): | |
5659 * lispref/x-windows.texi (X Selections): | |
5660 * lispref/x-windows.texi (Resources): | |
5661 * lispref/strings.texi (Creating Strings): | |
5662 * lispref/strings.texi (Character Codes): | |
5663 * lispref/strings.texi (Text Comparison): | |
5664 * lispref/strings.texi (String Conversion): | |
5665 * lispref/strings.texi (Formatting Strings): | |
5666 * lispref/strings.texi (Character Case): | |
5667 * lispref/strings.texi (Case Tables): | |
5668 * lispref/strings.texi (Char Table Types): | |
5669 * lispref/strings.texi (Working With Char Tables): | |
5670 Giant docstring parameter/Texinfo fixes. | |
5671 | |
5672 Don't use abbreviations for English words, especially when those | |
5673 words have other meanings. For example, use START, not BEG. | |
5674 Use OBJECT, not OBJ. | |
5675 Use VALUE, not VAL. | |
5676 Use BUFFER, not BUF. | |
5677 Use PROCESS, not PROC. (Sometimes PROC was used to mean FUNCTION!) | |
5678 Use CHARACTER, not CH or CHR. | |
5679 Use NUMBER, not NUM. | |
5680 Use COLUMN, not COL. | |
5681 Use POSITION, not POS. | |
5682 Use SYMBOL, not SYM. | |
5683 Use STRING, not STR. | |
5684 Use LIMIT, not LIM. | |
5685 Use OTHER-WINDOW-P, not OTHER-P. | |
5686 Use PRIORITY, not PRI. | |
5687 | |
5688 Use `non-nil', not `true'. | |
5689 | |
5690 Don't call a parameter an ALIST if it can also be a FUNCTION or OBARRAY. | |
5691 | |
5692 Use CASE-TABLE, CATEGORY-TABLE, CHAR-TABLE, etc. instead of TABLE. | |
5693 | |
5694 Try to find better parameter names than ARG. | |
5695 | |
5696 Use consistent parameter names. For example, s/NO-ERROR/NOERROR/g; | |
5697 | |
5698 Use type information in parameter names. For example, use | |
5699 (make-bit-vector length bit), not (make-bit-vector length init). | |
5700 | |
5701 Completion functions should have parameters with names like | |
5702 PARTIAL-FILENAME instead of the misleading FILENAME. | |
5703 | |
5704 Type predicates should consistently take an OBJECT parameter, | |
5705 since any object is valid as input. | |
5706 | |
5707 Use WHICH-FRAMES and WHICH-DEVICES parameters consistently for | |
5708 functions like next-window and next-frame that walk over window or | |
5709 frame lists. | |
5710 | |
5711 Deleted duplicated documentation for: | |
5712 one-window-p, format-insert-file | |
5713 | |
5714 Deleted 21 lines of VMS-specific texinfo documentation. | |
5715 | |
5716 Fixed up a few places where `_' was used in docstring parameter | |
5717 names instead of `-'. | |
5718 | |
5719 Fixed up places that used nil or t without @code. | |
5720 | |
5721 Fixed up places that erroneously used @code instead of @var. | |
5722 | |
5723 Fixed many typos. | |
5724 | |
5725 Fixed many places where the parameters mentioned in the docstring | |
5726 didn't match the actual parameters. | |
5727 | |
5728 Fixed 7 places that used `@var{nil}' instead of `@code{nil}'. | |
5729 | |
5730 Fixed 40 places where docstrings were missing trailing `.' | |
5731 | |
5732 Fixed the texi documentation of 41 functions where the | |
5733 interactiveness of the function in the documentation did not match | |
5734 the implementation. | |
5735 | |
5736 Fixed 117 functions where the names of parameters in the texi was | |
5737 different from the names in the implementation. | |
5738 | |
5739 Fixed the texi documentation of 137 functions where the parameter | |
5740 list of the function in the texi was semantically different from | |
5741 the implementation. | |
5742 | |
5743 2000-10-28 Adrian Aichner <adrian@xemacs.org> | |
5744 | |
5745 * xemacs-faq.texi (Q1.2.1): Use @html instead of @ifhtml to | |
5746 incorporate raw HTML output in the HTML version. | |
5747 | |
5748 2000-11-02 Stephen J. Turnbull <stephen@xemacs.org> | |
5749 | |
5750 * xemacs/menus.texi: | |
5751 * widget.texi: | |
5752 Typo fixes and tiny clarifications. | |
5753 | |
5754 2000-10-19 Stephen J. Turnbull <stephen@xemacs.org> | |
5755 | |
5756 * xemacs-faq.texi: Added Q2.0.13, Q2.0.14 - packages why and how. | |
5757 Added Q2.1.25 - function not found due to package not installed. | |
5758 | |
5759 * xemacs/xemacs.texi: | |
5760 * xemacs/abbrevs.texi: | |
5761 * xemacs/basic.texi: | |
5762 * xemacs/building.texi: | |
5763 * xemacs/packages.texi: | |
5764 * xemacs/startup.texi: | |
5765 Moved "Packages" node to "Important General Concepts" section. | |
5766 | |
5767 * xemacs/packages.texi: Added package list from etc/PACKAGES. | |
5768 | |
442 | 5769 2000-10-04 Martin Buchholz <martin@xemacs.org> |
5770 | |
5771 * XEmacs 21.2.36 is released. | |
5772 | |
5773 2000-09-27 Martin Buchholz <martin@xemacs.org> | |
5774 | |
5775 * lispref/processes.texi (Signals to Processes): Many corrections. | |
5776 | |
5777 2000-09-20 Martin Buchholz <martin@xemacs.org> | |
5778 | |
5779 * xemacs/startup.texi (Startup Paths): Minor fixes. | |
5780 | |
5781 2000-09-19 Martin Buchholz <martin@xemacs.org> | |
5782 | |
5783 * *: Spelling mega-patch | |
5784 | |
5785 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
5786 | |
5787 * internals/internals.texi (Low-Level Modules): | |
5788 Correct the list of source files. | |
5789 | |
5790 2000-08-24 Adrian Aichner <aichner@ecf.teradyne.com> | |
5791 | |
5792 * emodules.texi (Introduction): Trivial typo fix. | |
5793 | |
5794 2000-08-24 Martin Buchholz <martin@xemacs.org> | |
5795 | |
5796 * emodules.texi (Initialization Mode): Spell-Check. | |
5797 | |
5798 2000-08-24 Martin Buchholz <martin@xemacs.org> | |
5799 | |
5800 * lispref/databases.texi (Connecting to a Database): | |
5801 s/berkeley_db/berkeley-db/. Too much C programming. | |
5802 | |
5803 2000-08-02 Stephen J. Turnbull <stephen@xemacs.org> | |
5804 | |
5805 * xemacs/custom.texi (Menubar Resources): Document FontSet resource. | |
5806 | |
5807 2000-07-30 Ben Wing <ben@xemacs.org> | |
5808 | |
5809 * xemacs\search.texi (Regexp Search): | |
5810 * xemacs\search.texi (Regexps): | |
5811 Synch up with updated docs below (describing non-greedy | |
5812 operators and such). | |
5813 | |
5814 2000-07-30 Ben Wing <ben@xemacs.org> | |
5815 | |
5816 * lispref\searching.texi (Syntax of Regexps): | |
5817 Document ??, which we've supported since 20.4. | |
5818 | |
5819 2000-07-31 Sandra Wambold <wambold@cygnus.com> | |
5820 | |
5821 * xemacs-faq.texi: Minor updates in first two sections | |
5822 | |
5823 2000-07-27 Andy Piper <andy@xemacs.org> | |
5824 | |
5825 * lispref/hash-tables.texi: add new hash table type. | |
5826 | |
5827 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
5828 | |
5829 * XEmacs 21.2.35 is released. | |
5830 | |
5831 2000-07-10 Martin Buchholz <martin@xemacs.org> | |
5832 | |
5833 * Makefile: rm -f ==> $(RM) | |
5834 | |
5835 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
5836 | |
454 | 5837 * lispref/postgresql.texi: |
442 | 5838 - Don't mention ".so" extension. |
5839 - Make installation instructions more generic. | |
5840 - Mention M-x describe-installation. | |
5841 | |
5842 2000-07-08 Ben Wing <ben@xemacs.org> | |
5843 | |
5844 * xemacs-faq.texi (Q6.4.1): Update the perennial nonstart under | |
5845 Windows problem with binary locs and latest info. | |
5846 | |
5847 2000-06-17 Adrian Aichner <aichner@ecf.teradyne.com> | |
5848 | |
5849 * lispref/glyphs.texi: Fix trivial typos. | |
5850 * lispref/gutter.texi: Ditto. | |
5851 * lispref/loading.texi: Ditto. | |
5852 * lispref/postgresql.texi: Ditto. | |
5853 | |
5854 2000-06-14 Adrian Aichner <aichner@ecf.teradyne.com> | |
5855 | |
5856 * internals/internals.texi (Markers and Extents): Fix trivial typo. | |
5857 | |
5858 2000-06-11 Adrian Aichner <aichner@ecf.teradyne.com> | |
5859 | |
5860 * make-stds.texi: Fix trivial typos. | |
5861 * xemacs-faq.texi: Ditto. | |
5862 * internals/internals.texi: Ditto. | |
5863 * new-users-guide/edit.texi: Ditto. | |
5864 * new-users-guide/modes.texi: Ditto. | |
5865 * new-users-guide/region.texi: Ditto. | |
5866 | |
5867 2000-06-10 Ben Wing <ben@xemacs.org> | |
5868 | |
5869 * xemacs-faq.texi (Q6.1.2): | |
5870 * xemacs-faq.texi (Q6.1.5): | |
5871 * xemacs-faq.texi (Q6.1.6): | |
5872 Corrections for Cygwin, MinGW. | |
5873 | |
5874 2000-06-07 Adrian Aichner <aichner@ecf.teradyne.com> | |
5875 | |
5876 * xemacs/basic.texi: Fix trivial typos. | |
5877 * xemacs/buffers.texi: Fix trivial typos. | |
5878 * xemacs/building.texi: Ditto. | |
5879 * xemacs/glossary.texi: Ditto. | |
5880 * xemacs/gnu.texi: Ditto. | |
5881 * xemacs/help.texi: Ditto. | |
5882 * xemacs/keystrokes.texi: Ditto. | |
5883 * xemacs/programs.texi: Ditto. | |
5884 * xemacs/search.texi: Ditto. | |
5885 * xemacs/sending.texi: Ditto. | |
5886 | |
5887 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
5888 | |
5889 * XEmacs 21.2.34 is released. | |
5890 | |
5891 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5892 | |
5893 * xemacs/basic.texi: Document translation of tutorial. | |
5894 * xemacs/startup.texi: Remove lock-directory. | |
5895 * xemacs/enterings.texi: Update. | |
5896 | |
5897 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5898 | |
5899 * lispref/display.texi: | |
5900 * lispref/faces.texi: | |
5901 * lispref/glyphs.texi: | |
5902 * lispref/gutter.texi: | |
5903 * lispref/modes.texi: | |
5904 * lispref/specifiers.texi: | |
5905 * lispref/toolbar.texi: | |
5906 Update. Merge Ben's doc-string update. | |
5907 | |
5908 2000-05-08 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5909 | |
5910 * xemacs/basic.texi: | |
5911 * xemacs/enterings.texi: | |
5912 * xemacs/mini.texi: | |
5913 Partial sync with FSF Emacs 20.6 and some update. | |
5914 | |
5915 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
5916 | |
5917 * XEmacs 21.2.33 is released. | |
5918 | |
5919 2000-04-11 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5920 | |
5921 * xemacs-faq.texi (Q2.1.24): Removed wrong header. | |
5922 | |
5923 2000-04-01 Oscar Figueiredo <oscar@xemacs.org> | |
5924 | |
5925 * lispref/ldap.texi: Documentation of the add/modify/delete and | |
5926 internationalization APIs | |
5927 | |
5928 * lispref/lispref.texi: Updated LDAP-related menus | |
5929 | |
5930 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
5931 | |
5932 * XEmacs 21.2.32 is released. | |
5933 | |
5934 2000-03-15 SL Baur <steve@musashimaru.m17n.org> | |
5935 | |
5936 * lispref/postgresql.texi (Unimplemented libpq Functions): Update | |
5937 documentation to reflect the latest code. | |
5938 | |
5939 2000-03-07 SL Baur <steve@musashimaru.m17n.org> | |
5940 | |
5941 * lispref/postgresql.texi (PostgreSQL Support): New File. | |
5942 | |
5943 * lispref/ldap.texi: Insert PostgreSQL/libpq chapter. | |
5944 * lispref/lispref.texi (Top): Ditto. | |
5945 * lispref/internationalization.texi: Ditto. | |
5946 | |
5947 2000-03-07 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5948 | |
5949 * lispref/glyphs.texi (Image Specifiers): Remove parenthesis. | |
5950 | |
5951 2000-03-06 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5952 | |
5953 * xemacs-faq.texi: Put node before section. | |
5954 | |
5955 2000-03-05 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
5956 | |
5957 * xemacs-faq.texi (Macintosh port): Made texinfmt-friendly. | |
5958 | |
5959 2000-03-01 Sandra Wambold <wambold@xemacs.org> | |
5960 | |
5961 * xemacs-faq.texi: Added 6.4.1. XEmacs won't start on Windows | |
5962 | |
5963 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5964 | |
5965 * xemacs/xemacs.texi: Detailed menu update. | |
5966 | |
5967 2000-01-28 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5968 | |
5969 * xemacs/help.texi: Synch with FSF 20.5. Update. | |
5970 | |
5971 2000-02-21 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5972 | |
5973 * lispref/minibuf.texi: Add default argument documentation. | |
5974 | |
5975 2000-02-27 Martin Buchholz <martin@xemacs.org> | |
5976 | |
5977 * internals/internals.texi (lrecords): Update docs for new lisp | |
5978 object representation. | |
5979 | |
5980 2000-02-25 Martin Buchholz <martin@xemacs.org> | |
5981 | |
5982 * internals/internals.texi (Techniques for XEmacs Developers): | |
5983 Document INLINE_HEADER and how to create macros and inline functions. | |
5984 Cleanup entire section. | |
5985 | |
2069 | 5986 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 5987 |
5988 * man/lispref/gutter.texi: New file describing gutter API. | |
5989 | |
5990 * man/lispref/lispref.texi, man/lispref/scrollbars.texi, | |
5991 | |
5992 * man/lispref/toolbar.texi: Fixup links to new node Gutter. | |
5993 | |
2069 | 5994 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 5995 |
5996 * man/lispref/frames.texi, man/xemacs/custom.texi, | |
5997 man/xemacs/frame.texi, man/xemacs/glossary.texi: Mention menubars, | |
5998 toolbars, and gutters as optional components of frames, with | |
5999 pointers to descriptions. | |
6000 | |
2069 | 6001 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 6002 |
6003 * man/lispref/mule.texi: Substantial reorganization and | |
6004 revision for style of descriptions of character sets, | |
6005 encodings, and coding systems. Addition of a complete table | |
6006 of coding systems as of XEmacs 21.2.19. | |
6007 | |
6008 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
6009 | |
6010 * XEmacs 21.2.31 is released. | |
6011 | |
6012 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
6013 | |
6014 * XEmacs 21.2.30 is released. | |
6015 | |
6016 2000-02-21 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
6017 | |
6018 * internals/internals.texi: Made texinfmt-friendly. | |
6019 | |
6020 2000-01-20 Mark Thomas <mthomas@jprc.com> | |
6021 | |
6022 * lispref/backups.texi (Numbered Backups): | |
6023 * xemacs/files.texi (Backup Deletion): | |
6024 Change trim-versions-without-asking to delete-old-versions. | |
6025 | |
6026 2000-02-19 Martin Buchholz <martin@xemacs.org> | |
6027 | |
6028 * internals/internals.texi (Conversion to and from External Data): | |
6029 Document TO_EXTERNAL_FORMAT and friends. | |
6030 Doc bug fixes. | |
6031 | |
6032 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
6033 | |
6034 * XEmacs 21.2.29 is released. | |
6035 | |
6036 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
6037 | |
6038 * internals/internals.texi: Integrate Olivier's portable dumping docs. | |
6039 | |
6040 2000-02-09 Martin Buchholz <martin@xemacs.org> | |
6041 | |
6042 * lispref/symbols.texi (Object Plists): | |
6043 Document `object-plist'. | |
6044 Document `remprop'. | |
6045 Rework all plist frobbing docs for accuracy. | |
6046 | |
440 | 6047 2000-02-07 Martin Buchholz <martin@xemacs.org> |
6048 | |
6049 * XEmacs 21.2.28 is released. | |
6050 | |
6051 2000-02-07 Martin Buchholz <martin@xemacs.org> | |
6052 | |
6053 * cl.texi: Remove (or replace by `get') references to `get*'. | |
6054 | |
6055 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
6056 | |
6057 * widget.texi: | |
6058 * internals/internals.texi: | |
6059 * lispref/commands.texi: | |
6060 * lispref/consoles-devices.texi: | |
6061 * lispref/customize.texi: | |
6062 * lispref/dialog.texi: | |
6063 * lispref/extents.texi: | |
6064 * lispref/faces.texi: | |
6065 * lispref/glyphs.texi: | |
6066 * lispref/keymaps.texi: | |
6067 * lispref/lists.texi: | |
6068 * lispref/markers.texi: | |
6069 * lispref/menus.texi: | |
6070 * lispref/mule.texi: | |
6071 * lispref/objects.texi: | |
6072 * lispref/specifiers.texi: | |
6073 * lispref/toolbar.texi: | |
6074 * lispref/tooltalk.texi: | |
6075 * lispref/x-windows.texi: | |
6076 * new-users-guide/custom2.texi: | |
6077 * new-users-guide/help.texi: | |
6078 * new-users-guide/modes.texi: | |
6079 * xemacs/abbrevs.texi: | |
6080 * xemacs/buffers.texi: | |
6081 * xemacs/custom.texi: | |
6082 * xemacs/help.texi: | |
6083 * xemacs/keystrokes.texi: | |
6084 * xemacs/mini.texi: | |
6085 * xemacs/new.texi: | |
6086 * xemacs/packages.texi: | |
6087 * xemacs/programs.texi: | |
6088 * xemacs/sending.texi: | |
6089 Change ' -- ' to '---' since Texinfo formats --- to --. | |
6090 Untabify. TeX doesn't like TAB. | |
6091 | |
6092 2000-01-27 Sandra Wambold <wambold@xemacs.org> | |
6093 | |
6094 * xemacs-faq.texi (Q6.2.2): updated font instructions to include | |
6095 21.2.* | |
6096 | |
6097 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
6098 | |
6099 * xemacs-faq.texi: Untabify. | |
442 | 6100 |
440 | 6101 2000-01-22 Martin Buchholz <martin@xemacs.org> |
6102 | |
6103 * internals/internals.texi (General Coding Rules): Document why we | |
6104 #include <config.h> | |
6105 | |
6106 2000-01-21 Yoshiki Hayashi <yoshiki@xemacs.org> | |
6107 | |
6108 * xemacs-faq.texi: Change ' -- ' to '---'. | |
442 | 6109 |
440 | 6110 2000-01-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
6111 | |
6112 * lispref/faces.texi (Face Properties): Document | |
6113 remove-face-property. | |
6114 | |
438 | 6115 2000-01-18 Martin Buchholz <martin@xemacs.org> |
6116 | |
6117 * XEmacs 21.2.27 is released. | |
6118 | |
6119 2000-01-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
6120 | |
6121 * xemacs/regs.texi: Synch with FSF 20.5. | |
6122 | |
6123 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
6124 | |
6125 * info.texi: Change cross reference from emacs to xemacs. | |
6126 | |
6127 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
6128 | |
6129 * xemacs/mini.texi: Synch with FSF 20.5. Update. | |
6130 | |
6131 2000-01-16 Martin Buchholz <martin@xemacs.org> | |
6132 | |
6133 * xemacs-faq.texi (Q2.1.15): Fix up @table formatting. | |
6134 | |
6135 2000-01-14 Martin Buchholz <martin@xemacs.org> | |
6136 | |
6137 * xemacs-faq.texi (Q2.1.15): Update dbx/gdb debugging info. | |
6138 | |
6139 2000-01-14 Sandra Wambold <wambold@xemacs.org> | |
6140 | |
6141 * xemacs-faq.texi: removed out-of-date XEmacs 19 questions. | |
6142 | |
6143 2000-01-14 Sandra Wambold <wambold@xemacs.org> | |
6144 | |
6145 * xemacs-faq.texi: Updated Macintosh information, | |
6146 updated OS/2 info, changed turn-on-pending-delete answer. | |
6147 | |
6148 2000-01-08 Martin Buchholz <martin@xemacs.org> | |
6149 | |
6150 * xemacs-faq.texi (Q2.1.15): Make debugging info current. | |
6151 | |
6152 2000-01-08 Hrvoje Niksic <hniksic@iskon.hr> | |
6153 | |
6154 * lispref/control.texi (Signaling Errors): Document that `signal' | |
6155 is continuable. | |
6156 (Signaling Errors): Document `cerror', `signal-error', and | |
6157 `check-argument-type'. | |
6158 (Handling Errors): Mention `debug-on-signal'. | |
6159 (Error Symbols): Document `define-error'. | |
6160 (Processing of Errors): Document `display-error' and | |
6161 `error-message-string'. | |
6162 | |
6163 2000-01-05 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
6164 | |
6165 * internals/internals.texi: Remove latin-1 char. | |
6166 | |
6167 2000-01-05 Didier Verna <didier@xemacs.org> | |
6168 | |
6169 * xemacs/custom.texi (Key bindings using strings): add missing | |
6170 whitespace. | |
6171 | |
6172 * xemacs/xemacs.texi (Top): | |
6173 * new-users-guide/new-users-guide.texi (Top): add missing `@top' | |
6174 node. | |
6175 | |
6176 1999-12-24 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
6177 | |
6178 * lispref/minibuf.texi (Reading a Password): New section. | |
6179 | |
6180 1999-12-21 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
6181 | |
6182 * lispref/minibuf.texi: Remove documentation about | |
6183 minibuffer-local-ns-map, read-no-blanks-input. | |
6184 | |
6185 1999-12-21 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
6186 | |
6187 * lispref/minibuf.texi: Partial Synch with FSF manual. | |
6188 Add description about DEFAULT argument of reading functions. | |
6189 | |
436 | 6190 1999-12-31 Martin Buchholz <martin@xemacs.org> |
6191 | |
6192 * XEmacs 21.2.26 is released. | |
6193 | |
6194 1999-12-26 Karl M. Hegbloom <karlheg@inetarena.com> | |
6195 | |
6196 * internals/internals.texi (garbage_collect_1): Xemacs -> XEmacs | |
6197 | |
434 | 6198 1999-12-24 Martin Buchholz <martin@xemacs.org> |
6199 | |
6200 * XEmacs 21.2.25 is released. | |
6201 | |
6202 1999-12-21 Martin Buchholz <martin@xemacs.org> | |
6203 | |
6204 * lispref/text.texi (Near Point): Document `char-before'. | |
6205 | |
6206 1999-12-20 Adrian Aichner <adrian@xemacs.org> | |
6207 | |
6208 * widget.texi: Fix typos and possessive singular errors. Break | |
6209 long sentences for readability. Remove some redundant commas. | |
6210 | |
6211 1999-12-18 Martin Buchholz <martin@xemacs.org> | |
6212 | |
442 | 6213 * lispref/functions.texi (Mapping Functions): |
434 | 6214 Warn about mapping functions modifying their sequences. |
6215 | |
6216 1999-12-15 Sandra Wambold <wambold@xemacs.org> | |
6217 | |
6218 * xemacs-faq.texi: link to matlab.el added; misc. address changes | |
6219 | |
432 | 6220 1999-12-14 Martin Buchholz <martin@xemacs.org> |
6221 | |
6222 * XEmacs 21.2.24 is released. | |
6223 | |
6224 1999-12-07 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
6225 | |
6226 * xemacs/startup.texi (Startup Paths): fix typo: EMACSPACKAGEPATH | |
442 | 6227 instead of PACKAGEPATH |
432 | 6228 From Marcus Harnisch <harnisch@mikrom.de> |
6229 | |
430 | 6230 1999-12-07 Martin Buchholz <martin@xemacs.org> |
6231 | |
6232 * XEmacs 21.2.23 is released. | |
6233 | |
6234 1999-12-06 Sandra Wambold <wambold@pobox.com> | |
6235 | |
6236 * xemacs-faq.texi: Added MS-Windows questions; some other changes | |
6237 | |
6238 1999-11-29 Martin Buchholz <martin@xemacs.org> | |
6239 | |
442 | 6240 * info.texi (Top): |
430 | 6241 Remove @ifnottex, which gives old makeinfos indigestion. |
442 | 6242 * texinfo.texi (Top): |
430 | 6243 Revert to pre-texinfo-4.0 version, plus small changes to make |
6244 texinfo-3.12, texinfo-3.12f, texinfo-4.0, and TeX happy. | |
6245 | |
6246 1999-11-30 Sandra Wambold <wambold@cygnus.com> | |
6247 | |
6248 * xemacs-faq.texi: fixed and commented out bad URL links | |
6249 | |
428 | 6250 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
6251 | |
6252 * XEmacs 21.2.22 is released | |
6253 | |
6254 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
6255 | |
6256 * XEmacs 21.2.21 is released. | |
6257 | |
6258 1999-11-26 Martin Buchholz <martin@xemacs.org> | |
6259 | |
6260 * internals.texi (Lstream Functions): | |
6261 * internals.texi (Lstream Methods): | |
6262 Types have changed to size_t and ssize_t. Document them. | |
6263 | |
6264 1999-08-12 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
6265 | |
6266 * xemacs-faq.texi (Q4.4.2): added FAQ about Sun Workshop on | |
6267 XEmacs 21 | |
6268 | |
6269 1999-11-15 Martin Buchholz <martin@xemacs.org> | |
6270 | |
6271 * xemacs/programs.texi: Upgrade to etags Version 13.32 | |
442 | 6272 |
428 | 6273 * Makefile: |
6274 - Make sure the default target is `info' instead of cl.info. | |
6275 - Use $(INFODIR) consistently where appropriate. | |
6276 - Remove makeinfo-1.68 warning. (Usually only maintainer rebuilds info). | |
6277 - Comment out unused macros: EMACS EMACSFLAGS | |
6278 - Replace `-rm -f' with `rm -f', XPG4 guarantees exit code == 0. | |
6279 - Get dependencies up to date. | |
6280 | |
6281 * internals/Makefile: | |
6282 * xemacs/Makefile: | |
6283 * lispref/Makefile: | |
6284 * new-users-guide/Makefile: | |
6285 * lispref/index.perm: | |
6286 * lispref/index.unperm: | |
6287 * lispref/permute-index: | |
6288 * internals/index.perm: | |
6289 * internals/index.unperm: | |
6290 Remove these Makefiles. | |
6291 Include all functionality in man/Makefile. | |
6292 Support only non-permuted indexes for simplicity. | |
6293 | |
6294 * emodules.texi: | |
6295 - TeX doesn't tolerate `_' in variable names; use `-' instead. | |
6296 | |
6297 * lispref/commands.texi: | |
6298 * lispref/display.texi: | |
6299 * lispref/faces.texi: | |
6300 * lispref/functions.texi: | |
6301 * lispref/keymaps.texi: | |
6302 * lispref/lists.texi: | |
6303 * lispref/modes.texi: | |
6304 * lispref/objects.texi: | |
6305 * lispref/os.texi: | |
6306 * lispref/sequences.texi: | |
6307 * lispref/strings.texi: | |
6308 * lispref/text.texi: | |
6309 * new-users-guide/custom1.texi: | |
6310 * xemacs/custom.texi: | |
6311 * xemacs/menus.texi: | |
6312 - Make sources compatible with makeinfo 4.0 *and* 3.12. | |
6313 - Replace @sc{ASCII} with @sc{ascii}, etc... | |
6314 - Replace @var{(foo)} with (@var{foo}), etc... | |
6315 | |
6316 * info-stnd.texi: Remove. Who cares about the standalone info reader? | |
6317 | |
6318 * texinfo.tex: | |
6319 * texinfo.texi: | |
6320 * info.texi: | |
6321 * standards.texi: | |
6322 * make-stds.texi: | |
6323 Import FSF-maintained files from texinfo-4.0. | |
6324 | |
6325 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6326 | |
6327 * XEmacs 21.2.20 is released | |
6328 | |
6329 1999-08-30 Robert Pluim <rpluim@bigfoot.com> | |
6330 | |
6331 * xemacs/packages.texi (Using Packages): Added description of | |
6332 package-get-package-provider. | |
6333 | |
6334 1999-07-27 Charles G Waldman <cgw@fnal.gov> | |
6335 | |
6336 * xemacs-faq.texi (Q5.0.6): Describe `shell-multiple-shells' | |
6337 | |
434 | 6338 1999-08-01 Adrian Aichner <adrian@xemacs.org> |
428 | 6339 |
6340 * xemacs/programs.texi (Balanced Editing): Remove broken | |
6341 line-break. | |
6342 | |
6343 * xemacs-faq.texi (Q1.0.6): Provide correct location in XEmacs | |
6344 menus. | |
6345 (Q1.4.1): ditto. | |
6346 (Q1.4.3): ditto. | |
6347 (Q2.0.5): Hyphenate words. | |
6348 | |
6349 * info.texi (Add): Fix one typo. | |
6350 | |
6351 1999-08-23 Stephane Epardaud <stephane@lunatech.com> | |
6352 | |
6353 * internals/internals.texi (Garbage Collection - Step by Step): | |
6354 just added some dots to shut up compile warnings. | |
6355 | |
6356 1999-08-19 Matthias Neubauer <neubauer@informatik.uni-tuebingen.de> | |
6357 | |
6358 * internals/internals.texi (Garbage Collection - Step by Step): | |
6359 new section in chapter Allocation of Objects in XEmacs Lisp. | |
6360 | |
6361 1999-07-28 Andy Piper <andy@xemacs.org> | |
6362 | |
6363 * internals.texi (Glyphs): add some glyph documentation. | |
6364 | |
6365 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6366 | |
6367 * XEmacs 21.2.19 is released | |
6368 | |
434 | 6369 1999-07-10 Adrian Aichner <adrian@xemacs.org> |
428 | 6370 |
6371 * emodules.texi: Use @set emacs and @value{emacs} instead of | |
6372 @macro (unsupported by texinfo package). Remove stray @code. | |
6373 * custom.texi: Add info extension to @setfilename. | |
6374 * texinfo.texi: Ditto. | |
6375 * widget.texi: Ditto. | |
6376 * packages.texi: Reword a sentence, fixing @item Decide where to | |
6377 install ... | |
6378 | |
442 | 6379 1999-07-19 Didier Verna <didier@xemacs.org> |
428 | 6380 |
6381 * custom.texi (Wishlist): removed the Custom Comments wishlist | |
6382 entry. They are implemented. | |
6383 | |
6384 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6385 | |
6386 * XEmacs 21.2.18 is released | |
6387 | |
6388 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6389 | |
6390 * XEmacs 21.2.17 is released | |
6391 | |
6392 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6393 | |
6394 * XEmacs 21.2.16 is released | |
6395 | |
6396 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6397 | |
6398 * XEmacs 21.2.15 is released | |
6399 | |
6400 1999-05-30 Albert Chin-A-Young <china@thewrittenword.com> | |
6401 | |
6402 * custom.texi, external-widget.texi: Minor | |
6403 fix to get info DIR entry correct. | |
6404 | |
6405 1999-05-22 Vin Shelton <acs@xemacs.org> | |
6406 | |
6407 * xemacs/cmdargs.texi: | |
6408 Document -private. | |
6409 | |
6410 1999-05-16 Mike McEwan <mike@lotusland.demon.co.uk> | |
6411 | |
6412 * Makefile: Added `emodules.info' to info targets. | |
6413 | |
6414 1999-05-20 Karl M. Hegbloom <karlheg@debian.org> | |
6415 | |
6416 * internals/internals.texi (The XEmacs Object System | |
6417 (Abstractly Speaking)): typo. | |
6418 | |
6419 1999-05-16 Hrvoje Niksic <hniksic@srce.hr> | |
6420 | |
6421 * lispref/text.texi (Substitution): Document improvements in | |
6422 `translate-region'. | |
6423 | |
6424 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6425 | |
6426 * XEmacs 21.2.14 is released | |
6427 | |
6428 1999-05-11 Albert Chin-A-Young <china@thewrittenword.com> | |
6429 | |
6430 * man/internals/internals.texi: | |
6431 * man/lispref/lispref.texi: | |
6432 * man/new-users-guide/new-users-guide.texi: | |
6433 * man/xemacs/xemacs.texi: | |
6434 * man/cl.texi: | |
6435 * man/custom.texi: | |
6436 * man/term.texi: | |
6437 * man/termcap.texi: | |
6438 * man/widget.texi: | |
6439 * man/xemacs-faq.texi: | |
6440 * man/external-widget.texi: | |
6441 Added info dir entries so install-info will add them to | |
6442 the common `dir' file. | |
6443 | |
2069 | 6444 1999-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
428 | 6445 |
6446 * man/lispref/mule.texi: Document CCL | |
6447 - add sections: syntax, statements, expressions, and examples. | |
6448 - fix naming and description errors. | |
6449 - update links in neighboring nodes. | |
6450 | |
6451 1999-04-24 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
6452 | |
6453 * lispref/eval.texi (Eval): default for max-lisp-eval-depth is 500. | |
6454 | |
6455 1999-04-23 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
6456 | |
6457 * xemacs-faq.texi (Q3.0.7): refer to correct menu (Option->Frame | |
6458 Appearance) | |
6459 | |
6460 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6461 | |
6462 * XEmacs 21.2.13 is released | |
6463 | |
6464 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6465 | |
6466 * XEmacs 21.2.12 is released | |
6467 | |
6468 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6469 | |
6470 * XEmacs 21.2.11 is released | |
6471 | |
6472 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6473 | |
6474 * XEmacs 21.2.10 is released | |
6475 | |
6476 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6477 | |
6478 * XEmacs 21.2.9 is released | |
6479 | |
434 | 6480 1999-01-14 Adrian Aichner <adrian@xemacs.org> |
428 | 6481 |
6482 * internals\internals.texi (Techniques for XEmacs Developers): | |
6483 Fixing documentation. | |
6484 (Basic Lisp Modules): ditto. | |
6485 | |
6486 1999-01-10 J. Kean Johnston <jkj@sco.com> | |
6487 | |
6488 * emodules.texi: New file to describe XEmacs modules. | |
6489 | |
6490 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
6491 | |
6492 * XEmacs 21.2.8 is released. | |
6493 | |
6494 1998-12-24 Martin Buchholz <martin@xemacs.org> | |
6495 | |
6496 * XEmacs 21.2.7 is released. | |
6497 | |
6498 1998-12-16 Andy Piper <andy@xemacs.org> | |
6499 | |
6500 * XEmacs 21.2.6 is released | |
6501 | |
6502 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6503 | |
6504 * XEmacs 21.2.5 is released | |
6505 | |
6506 1998-11-30 Martin Buchholz <martin@xemacs.org> | |
6507 | |
6508 * xemacs/startup.texi (Startup Paths): | |
6509 * xemacs/custom.texi (Widgets): | |
6510 * xemacs-faq.texi (Q3.0.5): | |
6511 * xemacs-faq.texi (Top): | |
6512 | |
6513 * widget.texi (info-link): | |
6514 | |
6515 * lispref/objects.texi (Type Predicates): | |
6516 * lispref/objects.texi (Hash Table Type): | |
6517 * lispref/objects.texi (Primitive Types): | |
6518 * lispref/objects.texi (Lisp Data Types): | |
6519 * lispref/macros.texi (Backquote): | |
6520 * lispref/hash-tables.texi (Weak Hash Tables): | |
6521 * lispref/hash-tables.texi: | |
6522 * lispref/errors.texi (Standard Errors): | |
6523 * lispref/compile.texi (Disassembly): | |
6524 * lispref/compile.texi (Compiled-Function Objects): | |
6525 * lispref/compile.texi (Eval During Compile): | |
6526 * lispref/compile.texi (Docs and Compilation): | |
6527 * lispref/compile.texi (Compilation Functions): | |
6528 * lispref/compile.texi (Speed of Byte-Code): | |
6529 * lispref/compile.texi (Byte Compilation): | |
6530 * lispref/building.texi (Garbage Collection): | |
6531 | |
6532 * internals/internals.texi (Simple Special Forms): | |
6533 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
6534 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
6535 * internals/internals.texi (String): | |
6536 * internals/internals.texi (Introduction to Allocation): | |
6537 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
6538 * internals/internals.texi (Modules for Internationalization): | |
6539 * internals/internals.texi (Modules for Interfacing with X Windows): | |
6540 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
6541 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
6542 * internals/internals.texi (Modules for Interfacing with the File System): | |
6543 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
6544 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
6545 * internals/internals.texi (Editor-Level Control Flow Modules): | |
6546 * internals/internals.texi (Modules for Standard Editing Operations): | |
6547 * internals/internals.texi (Basic Lisp Modules): | |
6548 * internals/internals.texi (Low-Level Modules): | |
6549 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
6550 * internals/internals.texi (An Example of Mule-Aware Code): | |
6551 * internals/internals.texi (Working With Character and Byte Positions): | |
6552 * internals/internals.texi (Writing Lisp Primitives): | |
6553 * internals/internals.texi (General Coding Rules): | |
6554 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
6555 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
6556 * internals/internals.texi (XEmacs From the Perspective of Building): | |
6557 * internals/internals.texi (The Lisp Language): | |
6558 * internals/internals.texi (Top): | |
6559 * internals/internals.texi: | |
6560 - rewrite Internals manual | |
6561 | |
6562 * cl.texi (Porting Common Lisp): | |
6563 * cl.texi (Hash Tables): | |
6564 * cl.texi (Association Lists): | |
6565 * cl.texi (Declarations): | |
6566 * cl.texi (For Clauses): | |
6567 * cl.texi (Basic Setf): | |
6568 * cl.texi (Equality Predicates): | |
6569 - mega patch | |
6570 | |
6571 1998-11-28 SL Baur <steve@altair.xemacs.org> | |
6572 | |
6573 * XEmacs 21.2-beta4 is released. | |
6574 | |
6575 1998-10-15 SL Baur <steve@altair.xemacs.org> | |
6576 | |
6577 * XEmacs 21.2-beta3 is released. | |
6578 | |
6579 1998-10-09 SL Baur <steve@altair.xemacs.org> | |
6580 | |
6581 * Makefile (MAKEINFO): Undo no-split change. | |
6582 | |
6583 1998-09-29 SL Baur <steve@altair.xemacs.org> | |
6584 | |
6585 * XEmacs 21.2-beta2 is released. | |
6586 | |
6587 1998-09-20 Hrvoje Niksic <hniksic@srce.hr> | |
6588 | |
6589 * lispref/customize.texi: New file. | |
6590 | |
6591 1998-09-09 Hrvoje Niksic <hniksic@srce.hr> | |
6592 | |
6593 * internals/internals.texi (Coding for Mule): New node and | |
6594 section. | |
6595 | |
6596 1998-09-03 Darryl Okahata <darrylo@sr.hp.com> | |
6597 | |
6598 * xemacs/packages.texi: Document manually installing binary packages. | |
6599 | |
6600 1998-09-02 Jeff Miller <jmiller@smart.net> | |
6601 | |
6602 * Synch calendar.texi with Emacs 20.3 | |
6603 | |
6604 1998-09-03 Darryl Okahata <darrylo@sr.hp.com> | |
6605 | |
6606 * xemacs/packages.texi: Correct and update package documentation. | |
6607 Updated the package installation section to mention the visual | |
6608 package browser/installer. | |
6609 | |
6610 1998-08-31 Hrvoje Niksic <hniksic@srce.hr> | |
6611 | |
6612 * lispref/buffers.texi (Indirect Buffers): Update with XEmacs | |
6613 specifics. | |
6614 | |
6615 1998-08-21 Greg Klanderman <greg@alphatech.com> | |
6616 | |
6617 * lispref/files.texi (User Name Completion): new section. | |
6618 | |
434 | 6619 1998-07-23 Adrian Aichner <adrian@xemacs.org> |
428 | 6620 |
6621 * xemacs/packages.texi (Packages): Changing @itemize @emph to | |
6622 @itemize @bullet (this is what all other files included in | |
6623 xemacs.texi use) to fix error in texi2dvi (GNU Texinfo 3.12) 0.8. | |
6624 | |
6625 1998-07-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
6626 | |
6627 * xemacs/startup.texi: Small fixes, suggested by Hrvoje. | |
6628 | |
6629 * xemacs/xemacs.texi: | |
6630 * xemacs/packages.texi: More packages documentation. | |
6631 | |
6632 1998-07-19 SL Baur <steve@altair.xemacs.org> | |
6633 | |
6634 * XEmacs 21.2-beta1 is released. | |
6635 | |
6636 1998-07-12 SL Baur <steve@altair.xemacs.org> | |
6637 | |
6638 * XEmacs 21.0-pre5 is released. | |
6639 | |
6640 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
6641 | |
6642 * XEmacs 21.0-pre4 is released. | |
6643 | |
6644 1998-07-09 Oliver Graf <ograf@fga.de> | |
6645 | |
6646 * lispref/dragndrop.texi: added warning to OffiX Protocol section | |
6647 | |
6648 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
6649 | |
6650 * lispref/ldap.texi (Syntax of Search Filters): Fix QP encoding | |
6651 damage in transit. | |
6652 | |
6653 1998-07-05 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
6654 | |
6655 * lispref/tooltalk.texi: Fixed NEXT to @node LDAP | |
6656 | |
6657 * lispref/internationalization.texi: Fixed PREV to @node LDAP | |
6658 | |
6659 * lispref/lispref.texi: Added LDAP chapter from ldap.texi | |
6660 | |
6661 * lispref/Makefile: Added ldap.texi to srcs | |
6662 | |
6663 1998-06-29 SL Baur <steve@altair.xemacs.org> | |
6664 | |
6665 * standards.texi (Preface): Revert previous change to @node | |
6666 because it doesn't pass makeinfo. | |
6667 | |
434 | 6668 1998-06-27 Adrian Aichner <adrian@xemacs.org> |
428 | 6669 |
6670 * cl.texi: See ALL. | |
6671 * info-stnd.texi: Fixed @setfilename. | |
6672 * info.texi: Fixed @setfilename and a typo. | |
6673 * standards.texi: Added NEXT to @node Preface. See ALL. | |
6674 * texinfo.texi: Fixed section names, quoted usage of @TeX{}, | |
442 | 6675 changed some occurrences of `:' to `colon'. |
428 | 6676 * xemacs-faq.texi: See ALL. |
6677 * internals/internals.texi: See ALL. | |
6678 * lispref/back.texi: Fixed @setfilename. | |
6679 * lispref/compile.texi: See ALL. | |
6680 * lispref/debugging.texi: See ALL. | |
6681 * lispref/edebug-inc.texi: Added NEXT and UP to @node Edebug. | |
6682 * lispref/eval.texi: See ALL. | |
6683 * lispref/extents.texi: See ALL. | |
6684 * lispref/loading.texi: See ALL. | |
6685 * lispref/searching.texi: Escaped `(' in | |
6686 @cindex @samp{(?:} in regex | |
6687 * lispref/variables.texi: See ALL. | |
6688 | |
6689 1998-06-28 SL Baur <steve@altair.xemacs.org> | |
6690 | |
6691 * xemacs/calendar.texi: Massive update. | |
6692 From Jeff Miller <jmiller@smart.net> | |
6693 | |
6694 1998-06-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
6695 | |
6696 * xemacs/abbrevs.texi: | |
6697 * xemacs/basic.texi: | |
6698 * xemacs/buildings.texi: | |
6699 * xemacs/cmdargs.texi: | |
6700 * xemacs/files.texi: | |
6701 * xemacs/adjustments.texi: Adjustments to integrate startup.texi | |
6702 and packages.texi stuff. | |
6703 | |
6704 * xemacs/startup.texi: | |
6705 * xemacs/packages.texi: Created. | |
6706 | |
434 | 6707 1998-06-10 Adrian Aichner <adrian@xemacs.org> |
428 | 6708 |
6709 * texinfo.texi: added ../info/ to @setfilename, broke line after | |
6710 @noindent. Changed @var{arg-not-used-by-@TeX{}} to | |
6711 @var{arg-not-used-by-@@TeX{}} to make `texinfo-format-buffer' | |
6712 happy. Fixed refs broken by a previous patch of mine. | |
6713 | |
6714 1998-06-18 Darryl Okahata <darrylo@sr.hp.com> | |
6715 | |
6716 * lispref/os.texi (os.texi): Document `user-home-directory'. | |
6717 | |
6718 1998-06-13 Greg Klanderman <greg@alphatech.com> | |
6719 | |
6720 * lispref/windows.texi (Resizing Windows): document third optional | |
6721 WINDOW argument to enlarge-window and shrink-window. | |
6722 (Selecting Windows): document select-window optional norecord | |
6723 argument. | |
6724 (Size of Window): document window-text-area-pixel-height and | |
6725 window-text-area-pixel-width. | |
6726 (Size of Window): document window-displayed-text-pixel-height. | |
6727 (Position of Window): document window-text-area-pixel-edges. | |
6728 | |
6729 * lispref/positions.texi (Screen Lines): cleanup docs for | |
6730 vertical-motion and vertical-motion-pixels. | |
6731 | |
6732 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
6733 | |
6734 * lispref/windows.texi (Resizing Windows): Document | |
6735 `enlarge-window-pixels' and `shrink-window-pixels'. | |
6736 | |
6737 * lispref/positions.texi (Screen Lines): Update documentation of | |
6738 `vertical-motion'. | |
6739 (Screen Lines): Document `vertical-motion-pixels'. | |
6740 | |
6741 * lispref/frames.texi (Input Focus): Document `focus-frame', | |
6742 `save-selected-frame' and `with-selected-frame'. | |
6743 | |
6744 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
6745 | |
6746 * lispref/searching.texi (Regexp Search): Document `split-path'. | |
6747 | |
6748 * lispref/files.texi (Unique File Names): Update docs for | |
6749 `make-temp-name'; document `temp-directory'. | |
6750 | |
6751 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
6752 | |
6753 * lispref/os.texi (Recording Input): Update docs for `recent-keys'. | |
6754 | |
6755 * lispref/specifiers.texi (Specifier Instancing): Correct | |
6756 instantiation order. | |
6757 (Specifier Instancing Functions): Ditto. | |
6758 | |
6759 1998-06-11 Oliver Graf <ograf@fga.de> | |
6760 | |
6761 * lispref/lispref.texi: references to Drag'n'Drop fixed | |
6762 * lispref/modes.texi: references to Drag'n'Drop fixed | |
6763 * lispref/scrollbars.texi: references to Drag'n'Drop fixed | |
6764 * lispref/dragndrop.texi: naming changed to Drag and Drop | |
6765 added some docu about the drop procedure | |
6766 | |
434 | 6767 1998-06-09 Adrian Aichner <adrian@xemacs.org> |
428 | 6768 |
6769 * info-stnd.texi: added ../info/ to @setfilename. | |
6770 * info.texi: added ../info/ to @setfilename. | |
6771 * lispref/commands.texi: see ALL. | |
6772 * lispref/frames.texi: see ALL. | |
6773 * lispref/os.texi: see ALL. | |
6774 * lispref/text.texi: see ALL. | |
6775 * new-users-guide/custom1.texi: broke line after enumerated @item. | |
6776 * new-users-guide/custom2.texi: see ALL. | |
6777 * new-users-guide/edit.texi: see ALL. | |
6778 * new-users-guide/enter.texi: see ALL. | |
6779 * new-users-guide/files.texi: see ALL. | |
6780 * new-users-guide/help.texi | |
6781 * new-users-guide/modes.texi: see ALL. | |
6782 * new-users-guide/new-users-guide.texi: see ALL. | |
6783 * new-users-guide/region.texi: see ALL. | |
6784 * new-users-guide/search.texi: see ALL. | |
6785 * new-users-guide/xmenu.texi: see ALL. | |
6786 * standards.texi: added ../info/ to @setfilename. | |
6787 * texinfo.texi: added ../info/ to @setfilename, broke line after | |
6788 @noindent. Changed @var{arg-not-used-by-@TeX{}} to | |
6789 @var{arg-not-used-by-@@TeX{}} to make `texinfo-format-buffer' | |
6790 happy. | |
6791 * xemacs-faq.texi: added ../info/ to @setfilename. | |
6792 * ALL: corrected INFO-FILE-NAME to lispref and xemacs in relevant | |
6793 p?xefs (most were empty, some elisp and emacs), used | |
6794 PRINTED-MANUAL-TITLE "XEmacs Lisp Reference Manual" and "XEmacs | |
6795 User's Manual" respectively for all these. | |
6796 | |
6797 1998-06-01 Oliver Graf <ograf@fga.de> | |
6798 | |
6799 * lispref/dragndrop.texi: added experimental | |
6800 | |
6801 1998-05-28 Oliver Graf <ograf@fga.de> | |
6802 | |
6803 * lispref/dragndrop.texi: a warning, and a bit more text this time | |
6804 | |
6805 1998-05-26 Oliver Graf <ograf@fga.de> | |
6806 | |
6807 * lispref/dragndrop.texi: only small changes | |
6808 | |
933 | 6809 1998-05-15 Christian Nybø <chr@mediascience.no> |
428 | 6810 |
6811 * xemacs/killing.texi: Properly document `zap-to-char'. | |
6812 | |
6813 1998-05-13 Greg Klanderman <greg@alphatech.com> | |
6814 | |
6815 * lispref/frames.texi (Input Focus): cleanup select-frame | |
6816 documentation. | |
6817 | |
6818 1998-05-10 Oliver Graf <ograf@fga.de> | |
6819 | |
6820 * lispref/dragndrop.texi: new section for the DnD API | |
6821 * lispref/lispref.texi: added Drag'n'Drop between scrollbars and | |
6822 modes | |
6823 * lispref/modes.texi: changed back-ref to Drag'n'Drop | |
6824 * lispref/scrollbars.texi: changed next-ref to Drag'n'Drop | |
6825 | |
6826 1998-05-05 Oliver Graf <ograf@fga.de> | |
6827 | |
6828 * commands.texi: exchange of dnd-drop with misc-user | |
6829 | |
6830 1998-05-04 Martin Buchholz <martin@xemacs.org> | |
6831 | |
6832 * internals.texi (Techniques for XEmacs Developers): Add some more | |
6833 comments on adding new files, inspired by Olivier Galibert. | |
6834 | |
6835 1998-05-02 Hrvoje Niksic <hniksic@srce.hr> | |
6836 | |
6837 * lispref/windows.texi (Vertical Scrolling): Fixup docstring for | |
6838 scroll-conservatively. | |
6839 | |
6840 * lispref/loading.texi (Named Features): Document advanced args to | |
6841 `feature'. | |
6842 | |
6843 * lispref/files.texi (File Name Expansion): Document that | |
6844 expand-file-name does not treat // and ~/ in the middle of file | |
6845 names specially. | |
6846 | |
6847 * lispref/positions.texi (Excursions): Document | |
6848 `with-current-buffer' and `with-temp-file'. | |
6849 | |
6850 * lispref/strings.texi (Formatting Strings): Document `%*' | |
6851 construct. | |
6852 | |
6853 * lispref/os.texi (Time Conversion): Document that TIME may be | |
6854 omitted from format-time-string. | |
6855 | |
6856 * lispref/strings.texi (String Conversion): Document BASE argument | |
6857 to `string-to-number'. | |
6858 | |
6859 * lispref/searching.texi (Syntax of Regexps): Fix up Perl | |
6860 constructs documentation. | |
6861 (Regexp Search): Document `split-string'. | |
6862 | |
6863 * xemacs/display.texi (Scrolling): Document scroll-conservatively. | |
6864 | |
6865 * xemacs/killing.texi (Active Regions): Document that errors no | |
6866 longer highlight the region. | |
6867 | |
6868 * lispref/display.texi (The Echo Area): Document message log | |
6869 stuff, including `display-message', `lmessage', `clear-message', | |
6870 (Warnings): Document warning stuff. | |
6871 | |
6872 * lispref/commands.texi (Working With Events): Update `make-event' | |
6873 for misc-user events. | |
6874 (Using Interactive): Document `function-interactive'. | |
6875 | |
6876 * lispref/os.texi (System Environment): Document USE-FLOATS | |
6877 argument to `load-average'. | |
6878 (User Identification): Document the new semantics of | |
6879 `user-full-name'. | |
6880 | |
6881 * lispref/strings.texi (Creating Strings): Document `string' | |
6882 function. | |
6883 | |
6884 1998-05-02 Hrvoje Niksic <hniksic@srce.hr> | |
6885 | |
6886 * lispref/numbers.texi (Comparison of Numbers): Document multi-arg | |
6887 comparison functions. | |
6888 | |
6889 1998-04-30 Greg Klanderman <greg@alphatech.com> | |
6890 | |
6891 * lispref/frames.texi (Input Focus): Document behavior of | |
6892 select-frame wrt focus-follows-mouse. | |
6893 | |
6894 1998-04-30 Martin Buchholz <martin@xemacs.org> | |
6895 | |
6896 * Makefile: Support generic makes by avoiding `%' syntax. | |
6897 It breaks my heart to uglify the Makefile like this, but this is | |
6898 going to be a perpetual FAQ otherwise. | |
6899 General cleanup. | |
6900 Comment out w3 and vm info rules. | |
6901 Use paranoid cd ./$@ syntax to avoid losing with luser's CDPATH. | |
6902 | |
2069 | 6903 1998-03-27 Stephen Turnbull <stephen@xemacs.org> |
428 | 6904 |
6905 * xemacs/frame.texi: Document cursor appearance at end of line. | |
6906 | |
6907 1998-03-14 Hrvoje Niksic <hniksic@srce.hr> | |
6908 | |
6909 * internals/internals.texi (GCPROing): Explain when it is | |
6910 necessary to GCPRO function parameters. | |
6911 | |
6912 1998-03-13 Hrvoje Niksic <hniksic@srce.hr> | |
6913 | |
6914 * internals/internals.texi (Writing Lisp Primitives): Updated | |
6915 definition of For(). | |
6916 | |
6917 1998-03-01 Aki Vehtari <Aki.Vehtari@hut.fi> | |
6918 | |
6919 * lispref/menus.texi: Use recommended forms in examples. | |
6920 | |
6921 1998-02-22 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6922 | |
6923 * cl.texi (Creating Symbols): Tell a little bit about the new | |
6924 handling of gensyms. | |
6925 | |
6926 1998-02-21 Greg Klanderman <greg@alphatech.com> | |
6927 | |
6928 * xemacs/custom.texi (X Resources): update to describe automatic | |
6929 setting of x-emacs-application-class. | |
6930 | |
6931 * lispref/x-windows.texi (Resources): update doc for | |
6932 x-emacs-application-class. | |
6933 | |
6934 1998-02-20 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6935 | |
6936 * cl.texi (Equality Predicates): Update to reflect change to | |
6937 `equalp' made in "cl-extra.el" - now compares characters case | |
6938 insensitively. | |
6939 | |
6940 1998-02-23 Aki Vehtari <Aki.Vehtari@hut.fi> | |
6941 | |
6942 * lispref/menus.texi (Menu Format): Doc fix: suffix can be form. | |
6943 | |
6944 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6945 | |
6946 * lispref/display.texi (Beeping): Linux has sound too. | |
6947 | |
6948 1998-02-19 Hrvoje Niksic <hniksic@srce.hr> | |
6949 | |
6950 * cl.texi (Argument Lists): Keywords are handled specially by | |
6951 XEmacs. | |
6952 (Porting Common Lisp): XEmacs backquotes are OK. | |
6953 | |
6954 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6955 | |
6956 * xemacs/custom.texi (Init Syntax): document #b, #o, and #x reader | |
6957 syntax for integers. | |
434 | 6958 From Adrian Aichner <adrian@xemacs.org> |
428 | 6959 * cl.texi (Porting Common Lisp): ' ' |
6960 * lispref/numbers.texi (Numbers): ' ' | |
6961 | |
6962 1998-02-15 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6963 | |
6964 * lispref/searching.texi (Regular Expressions): Document the | |
6965 recent regular expression syntax extensions. | |
6966 | |
6967 1998-02-10 Olivier Galibert <galibert@pobox.com> | |
6968 | |
6969 * internals/internals.texi: Remove all mocklisp references. | |
6970 | |
6971 1997-12-17 SL Baur <steve@altair.xemacs.org> | |
6972 | |
6973 * Makefile (SUBDIR): skk and gnats are packaged. | |
6974 | |
6975 * lispref/intro.texi (Acknowledgements): Update to v3.3. | |
6976 | |
6977 * lispref/lispref.texi: Update to 20.5/v3.3. | |
6978 | |
6979 1997-12-10 SL Baur <steve@altair.xemacs.org> | |
6980 | |
6981 * Makefile: Don't stop on errors. | |
6982 | |
6983 1997-12-06 SL Baur <steve@altair.xemacs.org> | |
6984 | |
6985 * Makefile: add skk manual. | |
6986 | |
6987 1997-11-29 SL Baur <steve@altair.xemacs.org> | |
6988 | |
6989 * internals/internals.texi (XEmacs): Updated history section. | |
6990 | |
6991 1997-11-28 SL Baur <steve@altair.xemacs.org> | |
6992 | |
6993 * lispref/compile.texi (Compilation Functions): Plug in the real | |
6994 return value. | |
6995 (Speed of Byte-Code): Ditto. | |
6996 (Compilation Functions): Ditto. | |
6997 (Compiled-Function Objects): Ditto. | |
6998 (Speed of Byte-Code): Increase loop counter by factor of 50 (the | |
6999 previous value was embarrassing). | |
7000 | |
7001 1997-11-21 SL Baur <steve@altair.xemacs.org> | |
7002 | |
7003 * Makefile (srcs): vhdl-mode has been packaged. | |
7004 | |
7005 1997-11-15 SL Baur <steve@altair.xemacs.org> | |
7006 | |
7007 * lispref/windows.texi (scroll-conservatively): Fix typo. | |
7008 | |
7009 1997-11-12 Hrvoje Niksic <hniksic@srce.hr> | |
7010 | |
7011 * lispref/commands.texi (Working With Events): Document fully. | |
7012 | |
7013 * lispref/windows.texi (Vertical Scrolling): Document | |
7014 scroll-conservatively. | |
7015 | |
7016 1997-11-09 Hrvoje Niksic <hniksic@srce.hr> | |
7017 | |
7018 * lispref/extents.texi (Intro to Extents): Minor correction. | |
7019 (Extent Properties): Document `extent-keymap'. | |
7020 | |
7021 1997-11-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
7022 | |
7023 * xemacs/mule.texi (Mule): Modify description about supported | |
7024 scripts. | |
7025 | |
7026 1997-11-02 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
7027 | |
7028 * xemacs/mule.texi: Add description for | |
7029 `universal-coding-system-argument'. | |
7030 | |
7031 1997-10-31 SL Baur <steve@altair.xemacs.org> | |
7032 | |
7033 * internals/internals.texi: XEmacs 19.16 is released. | |
7034 | |
7035 1997-10-30 SL Baur <steve@altair.xemacs.org> | |
7036 | |
7037 * Makefile (srcs): Mailcrypt, hm--html-menus, vm, psgml and tm have | |
7038 been packaged. | |
7039 | |
7040 1997-10-22 Hrvoje Niksic <hniksic@srce.hr> | |
7041 | |
7042 * xemacs-faq.texi: Added the detailed menu listing. | |
7043 | |
7044 * lispref/extents.texi (Extent Properties): Documented | |
7045 `set-extent-properties'. | |
7046 | |
7047 * xemacs/custom.texi (Face Customization): Updated for XEmacs. | |
7048 | |
7049 1997-10-07 SL Baur <steve@altair.xemacs.org> | |
7050 | |
7051 * xemacs-faq.texi (Q1.3.7): Update Russion URLs. | |
7052 From Rebecca Ore <rebecca.ore@op.net> | |
7053 | |
7054 * lispref/databases.texi (Connecting to a Database): Describe | |
7055 valid types of `type' and `subtype'. | |
7056 From Raymond Toy <toy@rtp.ericsson.se> | |
7057 | |
7058 1997-10-01 Karl M. Hegbloom <karlheg@inetarena.com> | |
7059 | |
7060 * lispref/commands.texi (Keyboard Macros): fixed typo. Changed | |
7061 reference to (emacs) into a reference to (xemacs). | |
7062 | |
7063 1997-10-01 Karl M. Hegbloom <karlheg@inetarena.com> | |
7064 | |
7065 * lispref/keymaps.texi (Keymaps): untabified and reformatted menu | |
7066 to prevent line wrap. | |
7067 | |
7068 1997-09-27 SL Baur <steve@altair.xemacs.org> | |
7069 | |
7070 * gnats/flowchart.eps: New file. | |
7071 | |
7072 1997-09-23 Hrvoje Niksic <hniksic@srce.hr> | |
7073 | |
7074 * xemacs/custom.texi (Easy Customization): Ditto. | |
7075 | |
7076 * xemacs/xemacs.texi (Top): Added pointer to easy customization. | |
7077 | |
7078 1997-09-18 SL Baur <steve@altair.xemacs.org> | |
7079 | |
7080 * internals/Makefile (../../info/$(NAME).info): Warn and clean up | |
7081 if someone hasn't upgraded makeinfo. | |
7082 | |
7083 * Makefile (EMACS): Refer to xemacs binary in source tree. | |
7084 * tm/Makefile (EMACS): Ditto. | |
7085 | |
7086 1997-08-15 Karl M. Hegbloom <karlheg@inetarena.com> | |
7087 | |
7088 * cl.texi (Type Predicates): Update for corrected handling of | |
7089 `string-char' and `character'. | |
7090 | |
7091 Tue Aug 5 21:56:02 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
7092 | |
7093 * cc-mode.texi: | |
7094 In FAQ section, document use of c-mode-base-map instead of c-mode-map. | |
7095 | |
7096 Fri Aug 1 22:44:49 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
7097 | |
7098 * cc-mode.texi: Removed the description of c-enable-//-in-c-mode. | |
7099 | |
7100 Wed Jul 30 00:01:45 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
7101 | |
7102 * cc-mode.texi: | |
7103 Added description of template-args-cont syntactic symbol | |
7104 | |
7105 1997-07-25 Barry A. Warsaw <cc-mode-help@python.org> | |
7106 | |
7107 * cc-mode.texi: Describe support for idl-mode | |
7108 | |
7109 * cc-mode.texi: | |
7110 Document c-initialization-hook. Also rewrite the "Getting Connected" | |
7111 section on byte compiling the source. | |
7112 | |
7113 1997-07-21 Karl M. Hegbloom <karlheg@inetarena.com> | |
7114 | |
7115 * lispref/streams.texi: "Output Streams", change `last-output' | |
7116 result list from integers to characters. | |
7117 | |
7118 * lispref/minibuf.texi: "Object from Minibuffer", correction. | |
7119 | |
7120 * lispref/minibuf.texi: "Minibuffer History", add | |
7121 `Info-minibuffer-history', `Manual-page-minibuffer-history', and | |
7122 short paragraph refering to `M-x apropos'. | |
7123 | |
7124 1997-07-17 Steven L Baur <steve@altair.xemacs.org> | |
7125 | |
7126 * Makefile: makeinfo-1.68 is verified to work. | |
7127 | |
7128 * tm/Makefile (../../info/%-ja.info): Die if not running | |
7129 XEmacs/Mule. | |
7130 (../../info/%-en.info): Inherit setting of MAKEINFO. | |
7131 | |
7132 Tue Jul 15 04:18:38 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
7133 | |
7134 * cc-mode.texi: | |
7135 Describe the variable c-indent-comments-syntactically-p. | |
7136 | |
7137 1997-07-15 Steven L Baur <steve@altair.xemacs.org> | |
7138 | |
7139 * internals/internals.texi (Top): Convert Buffer@'s node name to | |
7140 `Buffer's' because the former confuses makeinfo. | |
7141 | |
7142 Thu Jul 3 22:54:03 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
7143 | |
7144 * cc-mode.texi: Fixed spelling of Texinfo | |
7145 | |
7146 Tue May 6 21:33:06 1997 Steven L Baur <steve@altair.xemacs.org> | |
7147 | |
7148 * lispref/files.texi (Writing to Files): Correct docstring of | |
7149 write-region. | |
7150 | |
7151 Sun May 4 14:28:32 1997 Steven L Baur <steve@altair.xemacs.org> | |
7152 | |
7153 * lispref/annotations.texi (Annotation Primitives): | |
7154 `delete-annotation' does not return the deleted annotation. | |
7155 | |
7156 Wed Apr 30 18:13:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
7157 | |
7158 * lispref/lispref.texi: Correct release dates. | |
7159 | |
7160 Sat Apr 19 20:48:00 1997 Steven L Baur <steve@altair.xemacs.org> | |
7161 | |
7162 * lispref/files.texi (File Name Expansion): Update documentation | |
7163 of file-relative-name. | |
7164 | |
7165 Mon Apr 7 21:02:39 1997 Steven L Baur <steve@altair.xemacs.org> | |
7166 | |
7167 * lispref/lispref.texi: Update version numbers (with patches from | |
7168 Hrvoje Niksic). | |
7169 | |
7170 * lispref/building.texi (Building XEmacs): Update version numbers | |
7171 and build identification. | |
7172 | |
7173 * lispref/intro.texi (Introduction): Update version number. | |
7174 | |
7175 Sun Mar 23 15:47:05 1997 Steven L Baur <steve@altair.xemacs.org> | |
7176 | |
7177 * Makefile (srcs): Add efs.texi. | |
7178 | |
7179 Sat Mar 22 16:39:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
7180 | |
7181 * Makefile (srcs): Add hm--html-mode.texi. | |
7182 | |
7183 Sun Mar 16 18:48:14 1997 Steven L Baur <steve@altair.xemacs.org> | |
7184 | |
7185 * gnats/Makefile (gnats_srcs): New manuals for GNATS. | |
7186 | |
7187 Wed Mar 12 14:39:43 1997 Steven L Baur <steve@altair.xemacs.org> | |
7188 | |
7189 * lispref/strings.texi (Text Comparison): Correct example for | |
7190 `char-equal'. Add new function `char='. | |
7191 | |
7192 Thu Mar 6 13:33:54 1997 Steven L Baur <steve@altair.xemacs.org> | |
7193 | |
7194 * Makefile: Update for new texinfo manual. | |
7195 | |
7196 Tue Mar 4 11:37:42 1997 Steven L Baur <steve@altair.xemacs.org> | |
7197 | |
7198 * Makefile (../info/w3.info): Use special version of makeinfo | |
7199 since this manual is not backwards compatible. | |
7200 Clean up error handling so we only have to type make once to | |
7201 rebuild the info tree. | |
7202 (../info/vm.info): Make sure to continue in the event of error. | |
7203 | |
7204 Tue Feb 25 20:17:53 1997 Steven L Baur <steve@altair.xemacs.org> | |
7205 | |
7206 * auctex/Makefile: Added `mostlyclean' and `distclean' target. | |
7207 | |
7208 Wed Feb 19 17:57:27 1997 Steven L Baur <steve@altair.xemacs.org> | |
7209 | |
7210 * Makefile (auctex): New subdirectory target. | |
7211 | |
7212 Wed Feb 12 12:30:27 1997 Yotam Medini <yotam_medini@tmai.com> | |
7213 | |
7214 * mule/languages.texi: Correct typo. | |
7215 | |
7216 Mon Feb 10 08:17:22 1997 Steven L Baur <steve@altair.xemacs.org> | |
7217 | |
7218 * Makefile (srcs): Add custom and widget to srcs. | |
7219 | |
7220 * lispref/extents.texi (Intro to Extents): Removed erroneous | |
7221 reference to `start-glyph' property. | |
7222 | |
7223 Sun Feb 9 00:27:22 1997 Per Abrahamsen <abraham@dina.kvl.dk> | |
7224 | |
7225 * widget.texi: New file. | |
7226 | |
7227 * custom.texi: New file. | |
7228 | |
7229 Thu Feb 6 22:57:09 1997 Steven L Baur <steve@altair.xemacs.org> | |
7230 | |
7231 * lispref/extents.texi (Duplicable Extents): replicable extents | |
7232 are history. | |
7233 | |
7234 Wed Jan 29 19:59:41 1997 Steven L Baur <steve@altair.xemacs.org> | |
7235 | |
7236 * xemacs-faq.texi (Q1.1.1): Correct typos. | |
7237 | |
7238 Mon Jan 27 22:28:48 1997 Bob Weiner <weiner@infodock.com> | |
7239 | |
7240 * xemacs-faq.texi (Q1.0.14): infodock.com has hardcopies of the | |
7241 XEmacs manual available. | |
7242 (Q4.6.1): Updated Infodock Information. | |
7243 | |
7244 Sat Dec 28 11:08:07 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
7245 | |
7246 * vhdl-mode.texi: Correct typo in email address. | |
7247 | |
7248 Mon Dec 23 09:47:24 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
7249 | |
7250 * Makefile (srcs): Add vhdl-mode. | |
7251 | |
7252 Wed Dec 18 20:21:06 1996 Martin Buchholz <mrb@eng.sun.com> | |
7253 | |
7254 * Makefile (realclean): Don't delete itself `make distclean' | |
7255 | |
7256 * lispref/numbers.texi (Predicates on Numbers): wholenump->natnump. | |
7257 | |
7258 * Makefile: New File. | |
7259 | |
7260 Tue Dec 10 18:35:21 1996 Rod Whitby <rwhitby@asc.sps.mot.com> | |
7261 | |
7262 * vhdl-mode.texi: New file. | |
7263 | |
7264 Thu Jan 24 12:41:33 1991 Richard Stallman (rms at mole.ai.mit.edu) | |
7265 | |
7266 * texinfo.tex: Delete spurious character at beginning. | |
7267 | |
7268 Tue Aug 16 13:09:12 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
7269 | |
7270 * emacs.tex: Corrected two typos. No other changes before | |
7271 Version 19 will be made. | |
7272 | |
7273 * vip.texinfo: Removed menu entry Adding Lisp Code in node | |
7274 Customization since the menu entry did not point to anything. | |
7275 Also added an @finalout command to remove overfull hboxes from the | |
7276 printed output. | |
7277 | |
7278 * cl.texinfo: Added @bye, \input line and @settitle to file. | |
7279 This file is clearly intended to be a chapter of some other work, | |
7280 but the other work does not yet exist. | |
7281 | |
7282 Mon Jul 25 17:47:38 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
7283 | |
7284 * texinfo.texinfo: Three typos corrected. | |
7285 | |
7286 Mon Jul 11 18:02:29 1988 Chris Hanson (cph at kleph) | |
7287 | |
7288 * texindex.c (indexify): when comparing to initial strings to | |
7289 decide whether to change the header, must use `strncmp' to avoid | |
7290 comparing entire strings of which initials are a substring. | |
7291 | |
7292 Sun Jun 26 18:46:16 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu) | |
7293 | |
7294 * texindex.c (sort_in_core, sort_offline, parsefile): | |
7295 Give up on input file if any line doesn't start with backslash. | |
7296 | |
7297 Mon May 23 10:41:35 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
7298 | |
7299 * emacs.tex: Update information for obtaining TeX distribution from the | |
7300 University of Washington. | |
5440
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7301 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7302 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7303 ChangeLog entries synched from GNU Emacs are the property of the FSF. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7304 Other ChangeLog entries are usually the property of the author of the |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7305 change. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7306 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7307 This file is part of XEmacs. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7308 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7309 XEmacs is free software: you can redistribute it and/or modify it |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7310 under the terms of the GNU General Public License as published by the |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7311 Free Software Foundation, either version 3 of the License, or (at your |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7312 option) any later version. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7313 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7314 XEmacs is distributed in the hope that it will be useful, but WITHOUT |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7315 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7316 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7317 for more details. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7318 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7319 You should have received a copy of the GNU General Public License |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7320 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |