Mercurial > hg > xemacs-beta
annotate man/ChangeLog @ 5566:4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
lisp/ChangeLog addition:
2011-09-07 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el:
* bytecomp.el (for-effect): Move this earlier in the file, it's
referenced in byte-compile-initial-macro-environment.
* bytecomp.el (byte-compile-initial-macro-environment):
In the byte-compile-macro-environment definition for #'labels, put
off the compiling the lambda bodies until the point where the rest
of the form is being compiled, allowing the lambda bodies to
access appropriate values for byte-compile-bound-variables, and
reducing excessive warning about free variables.
Add a byte-compile-macro-environment definition for #'flet. This
modifies byte-compile-function-environment appropriately, and
warns about bindings of functions that have macro definitions in
the current environment, about functions that have byte codes, and
about functions that have byte-compile methods (which may not do
what the user wants at runtime).
* bytecomp.el (byte-compile-funcall):
If FUNCTION is constant, call #'byte-compile-callargs-warn if
that's appropriate, giving warnings about problems with calling
functions bound with #'labels.
* cl-macs.el:
* cl-macs.el (flet):
Mention the main difference from Common Lisp, that the bindings
are dynamic, not lexical. Counsel the use of #'labels, not #'flet,
for this and other reasons. Explain the limited single use case for
#'flet. Cross-reference to bytecomp.el in a comment.
* cl-macs.el (labels):
Go into detail on which functions may be called from
where. Explain how to access the function definition of a label
within FORM. Add a comment cross-referencing to bytecomp.el.
man/ChangeLog addition:
2011-09-07 Aidan Kehoe <kehoea@parhasard.net>
* cl.texi (Function Bindings):
Move #'labels first, describe it in more detail, explaining that
it is to be preferred over #'flet, and explaining why.
Explain that dynamic bindings with #'flet will also not work when
functions are accessed through their bytecodes.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 07 Sep 2011 16:26:45 +0100 |
parents | 40a52efbf3a3 |
children | 56144c8593a8 |
rev | line source |
---|---|
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
1 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
|
2 |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
3 * cl.texi (Function Bindings): |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
4 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
|
5 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
|
6 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
|
7 functions are accessed through their bytecodes. |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
8 |
5551
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
9 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
|
10 |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
11 * xemacs-faq.texi: |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
12 * 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
|
13 from lib/ to share/. |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
14 |
5547
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
15 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
|
16 |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
17 * cl.texi (Argument Lists): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
18 * cl.texi (Time of Evaluation): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
19 * cl.texi (Type Predicates): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
20 * cl.texi (Assignment): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
21 * cl.texi (Basic Setf): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
22 * cl.texi (Modify Macros): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
23 * cl.texi (Customizing Setf): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
24 * cl.texi (Dynamic Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
25 * cl.texi (Lexical Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
26 * cl.texi (Function Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
27 * cl.texi (Macro Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
28 * cl.texi (Conditionals): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
29 * cl.texi (Blocks and Exits): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
30 * cl.texi (Iteration): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
31 * cl.texi (Loop Basics): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
32 * cl.texi (Macros): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
33 * cl.texi (Declarations): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
34 * cl.texi (Property Lists): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
35 * cl.texi (Structures): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
36 * cl.texi (Assertions): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
37 * cl.texi (Efficiency Concerns): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
38 * 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
|
39 * 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
|
40 * lispref/eval.texi (Multiple values): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
41 * lispref/frames.texi (Input Focus): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
42 * 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
|
43 * lispref/positions.texi (Excursions): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
44 * lispref/positions.texi (Narrowing): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
45 * 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
|
46 * lispref/specifiers.texi (Adding Specifications): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
47 * lispref/windows.texi: |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
48 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
|
49 #'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
|
50 |
5546
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
51 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
|
52 |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
53 * internals/internals.texi (Mercurial Techniques): New. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
54 (Mercurial Basics): New. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
55 (Preserving Existing Changes with Mercurial Queues): New. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
56 (Top): Update menus. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
57 (Regression Testing XEmacs): Update node pointers. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
58 (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
|
59 Add @ref to Mercurial Techniques. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
60 |
5529
3d1f8f0e690f
Add `function-key-map-parent', for non-console-specific `function-key-map' bindings
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
61 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
|
62 |
3d1f8f0e690f
Add `function-key-map-parent', for non-console-specific `function-key-map' bindings
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
63 * 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
|
64 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
|
65 |
5512
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
66 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
|
67 |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
68 * 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
|
69 one. |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
70 |
5480
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
71 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
|
72 |
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
73 * 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
|
74 |
5464
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5390
diff
changeset
|
75 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
|
76 |
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5390
diff
changeset
|
77 * 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
|
78 |
5390
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
79 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
|
80 |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
81 * 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
|
82 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
|
83 (Top): |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
84 (Installation): |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
85 (Q2.5.6): |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
86 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
|
87 |
5384
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
88 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
|
89 |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
90 * 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
|
91 "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
|
92 (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
|
93 (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
|
94 "anomalies". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
95 (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
|
96 * 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
|
97 * 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
|
98 "occurrences". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
99 * 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
|
100 "pronounciation" -> "pronunciation". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
101 (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
|
102 (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
|
103 "earlier". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
104 (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
|
105 -> "relevant". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
106 (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
|
107 "inadvertantly" -> "inadvertently". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
108 |
5378
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
109 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
|
110 |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
111 * 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
|
112 (Customization): Add entry to menu. |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
113 (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
|
114 (Customization Types): Fixup Previous link. |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
115 |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
116 * lispref/faces.texi (Faces): |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
117 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
|
118 |
5374
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
119 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
|
120 |
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
121 * 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
|
122 * 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
|
123 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
|
124 in years. |
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
125 |
5373
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
126 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
|
127 |
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
128 * 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
|
129 face specifier. |
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
130 |
5361
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
131 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
|
132 |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
133 * 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
|
134 * 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
|
135 * 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
|
136 * lispref/control.texi (Sequencing): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
137 * lispref/control.texi (Conditionals): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
138 * 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
|
139 * lispref/control.texi (Iteration): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
140 * 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
|
141 * 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
|
142 * lispref/control.texi (Cleanups): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
143 * 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
|
144 * lispref/eval.texi (Quoting): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
145 * 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
|
146 * 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
|
147 * 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
|
148 * 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
|
149 * 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
|
150 * 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
|
151 * 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
|
152 * 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
|
153 * 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
|
154 * 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
|
155 * 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
|
156 * lispref/macros.texi (Backquote): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
157 * lispref/positions.texi (Excursions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
158 * lispref/positions.texi (Narrowing): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
159 * 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
|
160 * 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
|
161 * 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
|
162 * 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
|
163 * 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
|
164 * 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
|
165 * 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
|
166 * 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
|
167 * 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
|
168 * 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
|
169 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
|
170 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
|
171 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
|
172 |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
173 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
|
174 |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
175 * cl.texi (Argument Lists): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
176 * 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
|
177 * cl.texi (Type Predicates): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
178 * cl.texi (Assignment): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
179 * cl.texi (Basic Setf): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
180 * cl.texi (Modify Macros): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
181 * cl.texi (Customizing Setf): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
182 * cl.texi (Dynamic Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
183 * cl.texi (Lexical Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
184 * cl.texi (Function Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
185 * cl.texi (Macro Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
186 * cl.texi (Conditionals): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
187 * 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
|
188 * cl.texi (Iteration): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
189 * cl.texi (Loop Basics): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
190 * cl.texi (Macros): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
191 * cl.texi (Declarations): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
192 * cl.texi (Property Lists): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
193 * cl.texi (Structures): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
194 * cl.texi (Assertions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
195 * cl.texi (Efficiency Concerns): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
196 |
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
|
197 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
|
198 |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
199 * 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
|
200 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
|
201 #'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
|
202 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
|
203 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
|
204 #'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
|
205 * 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
|
206 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
|
207 #'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
|
208 * 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
|
209 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
|
210 |
5300
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
211 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
|
212 |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
213 * lispref/lists.texi (Rearrangement, Building Lists): |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
214 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
|
215 just lists, in this file. |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
216 |
5254
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
217 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
|
218 |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
219 * lispref/os.texi (Time Conversion): |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
220 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
|
221 numbers. |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
222 |
5252
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
223 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
|
224 |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
225 * 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
|
226 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
|
227 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
|
228 are discarded. |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
229 |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
230 * 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
|
231 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
|
232 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
|
233 (Rounding Operations): Ditto. |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
234 |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
235 * cl.texi (Multiple Values): |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
236 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
|
237 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
|
238 (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
|
239 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
|
240 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
|
241 |
5247
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
242 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
|
243 |
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
244 * 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
|
245 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
|
246 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
|
247 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
|
248 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
|
249 |
5236
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5215
diff
changeset
|
250 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
|
251 |
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5215
diff
changeset
|
252 * 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
|
253 |
5215
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
254 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
|
255 |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
256 * lispref/windows.texi (Buffers and Windows): |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
257 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
|
258 `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
|
259 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
|
260 `buffer-display-count' was not. |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
261 |
5214
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
262 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
|
263 |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
264 * 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
|
265 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
|
266 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
|
267 |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
268 * 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
|
269 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
|
270 |
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
|
271 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
|
272 |
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
|
273 * 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
|
274 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
|
275 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
|
276 (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
|
277 |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
278 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
|
279 |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
280 * lispref/lists.texi (Rearrangement): |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
281 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
|
282 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
|
283 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
|
284 |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
285 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
|
286 |
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
287 * 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
|
288 * 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
|
289 objects*.[ch] -> fontcolor*.[ch]. |
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
290 |
5148
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
291 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
|
292 |
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
293 * 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
|
294 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
|
295 directories. |
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
296 |
5142
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
297 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
|
298 |
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
299 * 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
|
300 * 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
|
301 * internals/internals.texi (lrecords): |
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
302 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
|
303 *LRECORD* to *LISP_OBJECT*. |
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
304 |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
305 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
|
306 |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
307 * internals/internals.texi (Introduction to Allocation): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
308 * internals/internals.texi (Integers and Characters): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
309 * 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
|
310 * internals/internals.texi (lrecords): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
311 * internals/internals.texi (Low-level allocation): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
312 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
|
313 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
|
314 |
5096 | 315 2010-03-04 Ben Wing <ben@xemacs.org> |
316 | |
317 * internals/internals.texi (Top): | |
318 * internals/internals.texi (list-to-texinfo): Removed. | |
319 * internals/internals.texi (convert-list-to-texinfo): New. | |
320 * internals/internals.texi (table-to-texinfo): Removed. | |
321 * internals/internals.texi (convert-table-to-texinfo): New. | |
322 Update Lisp functions at top to newest versions. | |
323 | |
324 * internals/internals.texi (A History of Emacs): | |
325 * internals/internals.texi (Through Version 18): | |
326 * internals/internals.texi (Lucid Emacs): | |
327 * internals/internals.texi (XEmacs): | |
328 * internals/internals.texi (The XEmacs Split): | |
329 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
330 * internals/internals.texi (Introduction to Writing C Code): | |
331 * internals/internals.texi (Writing Good Comments): | |
332 * internals/internals.texi (Writing Macros): | |
333 * internals/internals.texi (Major Textual Changes): | |
334 * internals/internals.texi (Great Integral Type Renaming): | |
335 * internals/internals.texi (How to Regression-Test): | |
336 * internals/internals.texi (Creating a Branch): | |
337 * internals/internals.texi (Dynamic Arrays): | |
338 * internals/internals.texi (Allocation by Blocks): | |
339 * internals/internals.texi (mark_object): | |
340 * internals/internals.texi (gc_sweep): | |
341 * internals/internals.texi (Byte-Char Position Conversion): | |
342 * internals/internals.texi (Searching and Matching): | |
343 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
344 * internals/internals.texi (Byte Types): | |
345 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
346 * internals/internals.texi (Buffer Positions): | |
347 * internals/internals.texi (Basic internal-format APIs): | |
348 * internals/internals.texi (The DFC API): | |
349 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
350 * internals/internals.texi (Mule-izing Code): | |
351 * internals/internals.texi (Locales): | |
352 * internals/internals.texi (More about code pages): | |
353 * internals/internals.texi (More about locales): | |
354 * internals/internals.texi (Unicode support under Windows): | |
355 * internals/internals.texi (The Frame): | |
356 * internals/internals.texi (The Non-Client Area): | |
357 * internals/internals.texi (The Client Area): | |
358 * internals/internals.texi (The Paned Area): | |
359 * internals/internals.texi (Text Areas): | |
360 * internals/internals.texi (The Displayable Area): | |
361 * internals/internals.texi (Event Queues): | |
362 * internals/internals.texi (Event Stream Callback Routines): | |
363 * internals/internals.texi (Focus Handling): | |
364 * internals/internals.texi (Future Work -- Autodetection): | |
365 Replace " with ``, '' (not complete, maybe about halfway through). | |
366 | |
5090 | 367 2010-03-03 Ben Wing <ben@xemacs.org> |
368 | |
369 * internals/internals.texi (Intro to Window and Frame Geometry): | |
370 * internals/internals.texi (The Paned Area): | |
371 * internals/internals.texi (The Displayable Area): | |
372 Update to make note of e.g. the fact that the bottom gutter is | |
373 actually above the minibuffer. | |
374 | |
5087 | 375 2010-03-02 Jerry James <james@xemacs.org> |
376 | |
377 * custom.texi: Delete, redundant with xemacs/custom.texi and | |
378 lispref/customize.texi. | |
379 * Makefile: Remove all rules relating to custom.texi. | |
380 | |
5089
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5087
diff
changeset
|
381 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
|
382 |
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5087
diff
changeset
|
383 * 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
|
384 * 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
|
385 * 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
|
386 * 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
|
387 * 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
|
388 * 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
|
389 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
|
390 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
|
391 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
|
392 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
|
393 |
5080
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
394 2010-02-25 Didier Verna <didier@xemacs.org> |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
395 |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
396 The background-placement face property. |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
397 * xemacs/custom.texi (Faces): Document it. |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
398 |
5046 | 399 2010-02-20 Ben Wing <ben@xemacs.org> |
400 | |
401 * internals/internals.texi (Intro to Window and Frame Geometry): | |
402 Shrink diagram to fit when offset by five spaces as a result of | |
403 quoting. | |
404 | |
5045 | 405 2010-02-16 Ben Wing <ben@xemacs.org> |
406 | |
407 * internals/internals.texi (Top): | |
408 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
409 * internals/internals.texi (Creating a Window-System Type): | |
410 * internals/internals.texi (Window and Frame Geometry): | |
411 * internals/internals.texi (Intro to Window and Frame Geometry): | |
412 * internals/internals.texi (The Frame): | |
413 * internals/internals.texi (The Non-Client Area): | |
414 * internals/internals.texi (The Client Area): | |
415 * internals/internals.texi (The Paned Area): | |
416 * internals/internals.texi (Text Areas): | |
417 * internals/internals.texi (The Displayable Area): | |
418 * internals/internals.texi (Which Functions Use Which?): | |
419 * internals/internals.texi (The Redisplay Mechanism): | |
420 Integrate the long comment in frame.c into the internals manual. | |
421 | |
5031
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
422 2010-02-17 Jerry James <james@xemacs.org> |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
423 |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
424 * term.texi: Move to the eterm package. |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
425 * Makefile: Remove all rules relating to term.texi. |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
426 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
427 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
|
428 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
429 * widget.texi: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
430 * widget.texi (Top): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
431 * widget.texi (Introduction): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
432 * widget.texi (User Interface): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
433 * widget.texi (Programming Example): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
434 * 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
|
435 * widget.texi (Basic Types): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
436 * widget.texi (link): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
437 * widget.texi (url-link): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
438 * widget.texi (info-link): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
439 * widget.texi (push-button): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
440 * widget.texi (editable-field): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
441 * widget.texi (text): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
442 * widget.texi (menu-choice): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
443 * 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
|
444 * widget.texi (item): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
445 * widget.texi (choice-item): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
446 * widget.texi (toggle): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
447 * widget.texi (checkbox): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
448 * widget.texi (checklist): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
449 * widget.texi (editable-list): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
450 * widget.texi (group): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
451 * widget.texi (Sexp Types): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
452 * widget.texi (constants): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
453 * widget.texi (generic): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
454 * widget.texi (atoms): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
455 * widget.texi (composite): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
456 * widget.texi (Widget Properties): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
457 * 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
|
458 * widget.texi (Widget Browser): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
459 * 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
|
460 * widget.texi (Utilities): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
461 * widget.texi (Widget Wishlist): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
462 * widget.texi (Widget Internals): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
463 * 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
|
464 * widget.texi (Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
465 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
|
466 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
467 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
|
468 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
469 * 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
|
470 * texinfo/texinfo.texi: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
471 * texinfo/texinfo.texi (Top): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
472 * 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
|
473 * texinfo/texinfo.texi (Overview): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
474 * 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
|
475 * 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
|
476 * 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
|
477 * 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
|
478 * 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
|
479 * 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
|
480 * texinfo/texinfo.texi (Conventions): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
481 * texinfo/texinfo.texi (Comments): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
482 * texinfo/texinfo.texi (Minimum): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
483 * 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
|
484 * 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
|
485 * texinfo/texinfo.texi (History): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
486 * 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
|
487 * 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
|
488 * 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
|
489 * texinfo/texinfo.texi (Inserting): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
490 * 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
|
491 * 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
|
492 * 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
|
493 * 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
|
494 * 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
|
495 * 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
|
496 * texinfo/texinfo.texi (Printing): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
497 * 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
|
498 * 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
|
499 * 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
|
500 * 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
|
501 * 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
|
502 * 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
|
503 * texinfo/texinfo.texi (setfilename): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
504 * texinfo/texinfo.texi (settitle): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
505 * 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
|
506 * 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
|
507 * texinfo/texinfo.texi (copying): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
508 * texinfo/texinfo.texi (insertcopying): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
509 * 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
|
510 * texinfo/texinfo.texi (titlepage): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
511 * 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
|
512 * 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
|
513 * texinfo/texinfo.texi (Copyright): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
514 * 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
|
515 * 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
|
516 * texinfo/texinfo.texi (Contents): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
517 * 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
|
518 * 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
|
519 * 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
|
520 * 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
|
521 * texinfo/texinfo.texi (documentdescription): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
522 * texinfo/texinfo.texi (setchapternewpage): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
523 * texinfo/texinfo.texi (paragraphindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
524 * texinfo/texinfo.texi (firstparagraphindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
525 * texinfo/texinfo.texi (exampleindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
526 * 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
|
527 * 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
|
528 * 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
|
529 * 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
|
530 * texinfo/texinfo.texi (Structuring): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
531 * 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
|
532 * 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
|
533 * 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
|
534 * texinfo/texinfo.texi (chapter): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
535 * 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
|
536 * 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
|
537 * texinfo/texinfo.texi (section): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
538 * 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
|
539 * texinfo/texinfo.texi (subsection): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
540 * 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
|
541 * texinfo/texinfo.texi (subsubsection): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
542 * 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
|
543 * texinfo/texinfo.texi (Nodes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
544 * 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
|
545 * 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
|
546 * texinfo/texinfo.texi (node): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
547 * 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
|
548 * 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
|
549 * 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
|
550 * 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
|
551 * 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
|
552 * 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
|
553 * 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
|
554 * texinfo/texinfo.texi (anchor): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
555 * texinfo/texinfo.texi (Menus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
556 * 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
|
557 * 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
|
558 * 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
|
559 * 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
|
560 * 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
|
561 * 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
|
562 * 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
|
563 * texinfo/texinfo.texi (References): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
564 * 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
|
565 * 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
|
566 * texinfo/texinfo.texi (xref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
567 * 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
|
568 * 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
|
569 * 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
|
570 * 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
|
571 * 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
|
572 * 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
|
573 * texinfo/texinfo.texi (ref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
574 * texinfo/texinfo.texi (pxref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
575 * texinfo/texinfo.texi (inforef): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
576 * texinfo/texinfo.texi (uref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
577 * texinfo/texinfo.texi (cite): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
578 * 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
|
579 * texinfo/texinfo.texi (Indicating): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
580 * 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
|
581 * texinfo/texinfo.texi (code): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
582 * texinfo/texinfo.texi (kbd): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
583 * texinfo/texinfo.texi (key): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
584 * texinfo/texinfo.texi (samp): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
585 * texinfo/texinfo.texi (verb): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
586 * texinfo/texinfo.texi (var): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
587 * texinfo/texinfo.texi (env): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
588 * texinfo/texinfo.texi (file): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
589 * texinfo/texinfo.texi (command): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
590 * texinfo/texinfo.texi (option): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
591 * texinfo/texinfo.texi (dfn): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
592 * texinfo/texinfo.texi (abbr): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
593 * texinfo/texinfo.texi (acronym): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
594 * texinfo/texinfo.texi (indicateurl): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
595 * texinfo/texinfo.texi (email): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
596 * texinfo/texinfo.texi (Emphasis): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
597 * 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
|
598 * texinfo/texinfo.texi (Smallcaps): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
599 * texinfo/texinfo.texi (Fonts): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
600 * 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
|
601 * 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
|
602 * texinfo/texinfo.texi (quotation): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
603 * texinfo/texinfo.texi (example): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
604 * texinfo/texinfo.texi (verbatim): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
605 * texinfo/texinfo.texi (verbatiminclude): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
606 * texinfo/texinfo.texi (lisp): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
607 * texinfo/texinfo.texi (small): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
608 * texinfo/texinfo.texi (display): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
609 * texinfo/texinfo.texi (format): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
610 * texinfo/texinfo.texi (exdent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
611 * 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
|
612 * texinfo/texinfo.texi (noindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
613 * texinfo/texinfo.texi (indent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
614 * texinfo/texinfo.texi (cartouche): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
615 * 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
|
616 * 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
|
617 * texinfo/texinfo.texi (itemize): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
618 * texinfo/texinfo.texi (enumerate): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
619 * 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
|
620 * texinfo/texinfo.texi (table): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
621 * 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
|
622 * texinfo/texinfo.texi (itemx): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
623 * 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
|
624 * 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
|
625 * 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
|
626 * 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
|
627 * texinfo/texinfo.texi (Floats): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
628 * texinfo/texinfo.texi (float): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
629 * 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
|
630 * texinfo/texinfo.texi (listoffloats): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
631 * texinfo/texinfo.texi (Images): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
632 * 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
|
633 * 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
|
634 * texinfo/texinfo.texi (Footnotes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
635 * 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
|
636 * 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
|
637 * texinfo/texinfo.texi (Indices): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
638 * 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
|
639 * 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
|
640 * 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
|
641 * 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
|
642 * texinfo/texinfo.texi (syncodeindex): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
643 * texinfo/texinfo.texi (synindex): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
644 * 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
|
645 * texinfo/texinfo.texi (Insertions): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
646 * 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
|
647 * 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
|
648 * 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
|
649 * 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
|
650 * 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
|
651 * 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
|
652 * 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
|
653 * 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
|
654 * 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
|
655 * texinfo/texinfo.texi (frenchspacing): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
656 * texinfo/texinfo.texi (dmn): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
657 * 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
|
658 * 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
|
659 * 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
|
660 * texinfo/texinfo.texi (dots): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
661 * texinfo/texinfo.texi (bullet): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
662 * 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
|
663 * texinfo/texinfo.texi (tex): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
664 * 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
|
665 * 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
|
666 * texinfo/texinfo.texi (euro): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
667 * texinfo/texinfo.texi (pounds): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
668 * texinfo/texinfo.texi (textdegree): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
669 * texinfo/texinfo.texi (minus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
670 * 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
|
671 * texinfo/texinfo.texi (math): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
672 * 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
|
673 * texinfo/texinfo.texi (Glyphs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
674 * 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
|
675 * texinfo/texinfo.texi (result): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
676 * texinfo/texinfo.texi (expansion): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
677 * 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
|
678 * 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
|
679 * texinfo/texinfo.texi (Equivalence): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
680 * 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
|
681 * texinfo/texinfo.texi (Breaks): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
682 * 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
|
683 * 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
|
684 * 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
|
685 * texinfo/texinfo.texi (allowcodebreaks): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
686 * texinfo/texinfo.texi (w): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
687 * texinfo/texinfo.texi (tie): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
688 * texinfo/texinfo.texi (sp): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
689 * texinfo/texinfo.texi (page): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
690 * texinfo/texinfo.texi (group): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
691 * texinfo/texinfo.texi (need): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
692 * 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
|
693 * 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
|
694 * 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
|
695 * 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
|
696 * texinfo/texinfo.texi (deffnx): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
697 * 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
|
698 * 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
|
699 * 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
|
700 * 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
|
701 * 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
|
702 * 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
|
703 * 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
|
704 * 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
|
705 * 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
|
706 * 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
|
707 * 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
|
708 * 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
|
709 * texinfo/texinfo.texi (alias): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
710 * texinfo/texinfo.texi (definfoenclose): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
711 * texinfo/texinfo.texi (Hardcopy): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
712 * 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
|
713 * 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
|
714 * 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
|
715 * 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
|
716 * 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
|
717 * 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
|
718 * 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
|
719 * 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
|
720 * 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
|
721 * 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
|
722 * texinfo/texinfo.texi (smallbook): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
723 * 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
|
724 * texinfo/texinfo.texi (pagesizes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
725 * 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
|
726 * 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
|
727 * 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
|
728 * 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
|
729 * 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
|
730 * 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
|
731 * 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
|
732 * 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
|
733 * 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
|
734 * 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
|
735 * 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
|
736 * 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
|
737 * 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
|
738 * 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
|
739 * 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
|
740 * 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
|
741 * 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
|
742 * 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
|
743 * 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
|
744 * 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
|
745 * 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
|
746 * 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
|
747 * 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
|
748 * 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
|
749 * 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
|
750 * 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
|
751 * 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
|
752 * 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
|
753 * 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
|
754 * 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
|
755 * 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
|
756 * texinfo/texinfo.texi (Tips): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
757 * 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
|
758 * 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
|
759 * 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
|
760 * 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
|
761 * 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
|
762 * texinfo/texinfo.texi (Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
763 * 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
|
764 * 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
|
765 * 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
|
766 * 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
|
767 * 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
|
768 * 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
|
769 * 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
|
770 * 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
|
771 * texinfo/texinfo.texi (Headings): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
772 * 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
|
773 * 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
|
774 * 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
|
775 * 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
|
776 * 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
|
777 * 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
|
778 * 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
|
779 * 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
|
780 * 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
|
781 * 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
|
782 * 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
|
783 * 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
|
784 * texinfo/texinfo.texi (Unsplit): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
785 * texinfo/texinfo.texi (Tagifying): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
786 * texinfo/texinfo.texi (Splitting): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
787 * 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
|
788 * 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
|
789 * 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
|
790 * 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
|
791 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
|
792 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
|
793 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
794 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
|
795 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
796 * Makefile: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
797 * Makefile (src_files1): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
798 * Makefile (DIR): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
799 * Makefile (texinfo-srcs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
800 * Makefile ($(INFODIR)/widget.info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
801 * Makefile ($(INFODIR)/texinfo.info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
802 * Makefile (.PHONY): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
803 * Makefile (texinfo.dvi): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
804 * Makefile (texinfo.pdf): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
805 * Makefile ($(HTMLDIR)/widget.html): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
806 * Makefile ($(HTMLDIR)/texinfo.html): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
807 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
|
808 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
|
809 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
|
810 Solaris make). |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
811 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
812 * doclicense.texi: New file. |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
813 * info.texi: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
814 * info.texi (Top): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
815 * info.texi (Getting Started): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
816 * 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
|
817 * info.texi (Help): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
818 * info.texi (Help-P): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
819 * info.texi (Help-^L): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
820 * info.texi (Help-Inv): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
821 * info.texi (Help-]): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
822 * info.texi (Help-M): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
823 * info.texi (Help-FOO): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
824 * info.texi (Help-Xref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
825 * info.texi (Help-Int): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
826 * info.texi (Help-Q): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
827 * info.texi (Advanced): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
828 * info.texi (Search Text): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
829 * info.texi (Search Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
830 * 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
|
831 * 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
|
832 * 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
|
833 * 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
|
834 * info.texi (Expert Info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
835 * info.texi (Add): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
836 * info.texi (Menus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
837 * info.texi (Cross-refs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
838 * info.texi (Help-Cross): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
839 * info.texi (Tags): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
840 * info.texi (Checking): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
841 * info.texi (Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
842 * texinfo.tex: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
843 * texinfo.tex (paragraphindent{%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
844 * 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
|
845 * texinfo.tex (chapterzzz{#3}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
846 * texinfo.tex (subsubsection = \numberedsubsubsec): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
847 * texinfo.tex (subsubsection = \appendixsubsubsec): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
848 * texinfo.tex (subsubsection = \unnumberedsubsubsec): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
849 * 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
|
850 * 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
|
851 * 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
|
852 * 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
|
853 * 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
|
854 * 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
|
855 * 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
|
856 * 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
|
857 * 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
|
858 * 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
|
859 * 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
|
860 * 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
|
861 * 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
|
862 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
|
863 |
5028
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
864 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
|
865 |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
866 * 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
|
867 (Legacy Versions): Update next pointer. |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
868 (Bleeding Edge): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
869 (Q11.0.1): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
870 (Q11.0.2): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
871 (Q11.0.3): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
872 (Q11.0.4): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
873 (Q11.0.5): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
874 (Q11.1.1): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
875 (Q11.2.1): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
876 (Q11.2.2): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
877 (Q11.2.3): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
878 (Q11.2.4): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
879 (Q11.2.5): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
880 (Q11.2.6): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
881 (Q11.2.7): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
882 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
|
883 |
5011 | 884 2010-02-08 Ben Wing <ben@xemacs.org> |
885 | |
886 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
887 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
888 DEC Alpha is hardly the only 64-bit processor any more. | |
889 Also, ERROR_CHECK_TYPECHECK is now ERROR_CHECK_TYPES. | |
890 | |
5007
bb6a375da086
Relicense J. Kean Johnston's emodules.texi as GPL v2 or later. See
Jerry James <james@xemacs.org>
parents:
4984
diff
changeset
|
891 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
|
892 |
bb6a375da086
Relicense J. Kean Johnston's emodules.texi as GPL v2 or later. See
Jerry James <james@xemacs.org>
parents:
4984
diff
changeset
|
893 * 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
|
894 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
|
895 |
4984 | 896 2010-02-05 Ben Wing <ben@xemacs.org> |
897 | |
898 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
899 * internals/internals.texi (Conversion to and from External Data): | |
900 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
901 Correct names of files renamed common -> xlike. | |
902 Fix up outdated explanation of old-style DFC conversion macros. | |
903 Add a section on the different types of character and their uses, | |
904 taken from a long comment in lisp.h. | |
905 | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
906 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
|
907 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
908 * internals/internals.texi (lrecords): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
909 * internals/internals.texi (The DFC API): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
910 * 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
|
911 * internals/internals.texi (Mule-izing Code): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
912 * 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
|
913 * internals/internals.texi (Ben's README): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
914 * 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
|
915 * emodules.texi (Defining Variables): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
916 Rename: |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
917 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
918 write_c_string -> write_cistring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
919 build_intstring -> build_istring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
920 build_string -> build_cistring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
921 build_ext_string -> build_extstring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
922 make_ext_string -> make_extstring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
923 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
|
924 intern_int -> intern_istring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
925 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
926 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
|
927 |
4917 | 928 2010-02-03 Ben Wing <ben@xemacs.org> |
929 | |
930 * internals/internals.texi (Top): | |
931 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
932 * internals/internals.texi (Ben's README): | |
933 * internals/internals.texi (Consoles; Devices; Frames; Windows): | |
934 * internals/internals.texi (Window Hierarchy): | |
935 * internals/internals.texi (The Window Object): | |
936 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
937 * internals/internals.texi (Window-System Support): | |
938 * internals/internals.texi (Creating a Window-System Type): | |
939 * internals/internals.texi (Discussion -- Garbage Collection): | |
940 Update the part at the top about how to maintain the file with | |
941 more tips. | |
942 | |
943 Add a chapter on "window-system support" describing in a general | |
944 way how the support for different window systems/device types | |
945 works, including the separation between device-independent and | |
946 device-dependent parts, device methods, the specific device types | |
947 and the "xlike" pseudo-type. | |
948 | |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
949 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
|
950 |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
951 * xemacs/programs.texi (Defuns): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
952 * 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
|
953 (Setting Variables, Default Value): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
954 * lispref/symbols.texi (Definitions): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
955 * 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
|
956 * lispref/positions.texi (Excursions, Narrowing): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
957 * 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
|
958 * 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
|
959 * lispref/lispref.texi (Top): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
960 * 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
|
961 * lispref/help.texi (Help Functions): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
962 * 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
|
963 (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
|
964 * lispref/frames.texi (Input Focus): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
965 * 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
|
966 (Special Operators, Quoting): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
967 * lispref/edebug-inc.texi (Instrumenting) |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
968 (Specification Examples): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
969 * 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
|
970 * 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
|
971 (Conditionals, Combining Conditions, Iteration): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
972 (Catch and Throw, Handling Errors): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
973 * 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
|
974 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
|
975 |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
976 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
|
977 macros I don't understand. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
978 |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
979 * 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
|
980 example here. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
981 * lispref/positions.texi (Excursions): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
982 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
|
983 forms. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
984 * 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
|
985 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
|
986 18. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
987 * lispref/specifiers.texi (Adding Specifications): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
988 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
|
989 * lispref/windows.texi (Window Configurations) |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
990 (Selecting Windows): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
991 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
|
992 are macros, not special operators. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
993 |
4894
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4885
diff
changeset
|
994 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
|
995 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4885
diff
changeset
|
996 * 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
|
997 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
|
998 * 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
|
999 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
|
1000 |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1001 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
|
1002 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1003 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
|
1004 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
|
1005 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
|
1006 start. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1007 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1008 * lispref/text.texi (Columns): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1009 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
|
1010 (Registers): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1011 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
|
1012 * 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
|
1013 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
|
1014 general are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1015 (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
|
1016 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
|
1017 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
|
1018 (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
|
1019 values in syntax tables. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1020 * 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
|
1021 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
|
1022 are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1023 * 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
|
1024 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
|
1025 * 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
|
1026 (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
|
1027 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
|
1028 integers are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1029 * 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
|
1030 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
|
1031 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
|
1032 (Equality Predicates): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1033 (Range Table Type): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1034 (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
|
1035 fixed-precision integer. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1036 (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
|
1037 * 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
|
1038 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
|
1039 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
|
1040 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
|
1041 (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
|
1042 Lisp compatibility issues. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1043 (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
|
1044 * 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
|
1045 * 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
|
1046 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
|
1047 general are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1048 |
4803
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
1049 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
|
1050 |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
1051 * 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
|
1052 valgrind configuration and use. |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
1053 |
4790
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
1054 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
|
1055 |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
1056 * 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
|
1057 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
|
1058 * 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
|
1059 (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
|
1060 (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
|
1061 |
4771
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1062 2009-12-10 Jerry James <james@xemacs.org> |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1063 |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1064 * lispref/processes.texi (Functions that Create Subprocesses): Refer |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1065 to etags instead of the obsolete wakeup program. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1066 |
4769
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
1067 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
|
1068 |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
1069 * 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
|
1070 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
|
1071 (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
|
1072 |
4820
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
1073 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
|
1074 |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
1075 * 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
|
1076 * 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
|
1077 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
|
1078 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
|
1079 backward-compatiblity. |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
1080 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1081 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
|
1082 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1083 * 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
|
1084 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
|
1085 (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
|
1086 deleted files. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1087 (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
|
1088 (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
|
1089 NeXTstep. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1090 * 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
|
1091 old unsupported systems. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1092 * 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
|
1093 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
|
1094 * 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
|
1095 Ditto. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1096 |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
1097 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
|
1098 |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
1099 * 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
|
1100 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
|
1101 |
4708
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
1102 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
|
1103 |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
1104 * 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
|
1105 "(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
|
1106 (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
|
1107 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
|
1108 * 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
|
1109 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
|
1110 * 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
|
1111 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
|
1112 |
4678
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1113 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
|
1114 |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1115 * lispref/numbers.texi (Bigfloat Basics): |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1116 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
|
1117 off in mid-sentence). |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1118 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
1119 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
|
1120 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
1121 * cl.texi (Organization): |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
1122 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
|
1123 |
4668
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
1124 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
|
1125 |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
1126 * 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
|
1127 Small improvements. |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
1128 |
4666
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
1129 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
|
1130 |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
1131 * 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
|
1132 from XftFont (now deprecated) to FcFontName. |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
1133 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
|
1134 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
1135 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
|
1136 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
1137 * 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
|
1138 |
4632
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1139 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
|
1140 |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1141 * internals/internals.texi: s/@urlref/@uref/g. |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1142 (Lstreams): Add urefs to David Beasley tutorials. |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1143 |
4658
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
1144 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
|
1145 |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
1146 * 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
|
1147 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
|
1148 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
|
1149 |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
1150 * 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
|
1151 * 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
|
1152 |
4625
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1153 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
|
1154 |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1155 * 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
|
1156 (Top): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1157 (Editing): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1158 (Q3.0.11): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1159 (Q3.1.1): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1160 Fix up Next/Prev/Menu references. |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1161 |
4601
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1162 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
|
1163 |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1164 * xemacs/xemacs.texi (Top): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1165 * xemacs/misc.texi (Emulation): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1166 * xemacs/building.texi (Lisp Libraries): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1167 (Compiling Libraries): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1168 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
|
1169 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
|
1170 which is no longer available. |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1171 |
4509
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1172 2008-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1173 |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1174 * 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
|
1175 antialiased fonts. |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1176 |
4505
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
1177 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
|
1178 |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
1179 * 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
|
1180 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
|
1181 (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
|
1182 alphabet. |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
1183 |
4488 | 1184 2008-07-26 Ville Skyttä <scop@xemacs.org> |
1185 | |
1186 * xemacs/custom.texi, xemacs/frame.texi, xemacs/mule.texi, | |
1187 xemacs/packages.texi, xemacs/programs.texi, xemacs/trouble.texi: | |
1188 Spelling fixes. | |
1189 | |
4486
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1190 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
|
1191 |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1192 * lispref/objects.texi (Character Type): |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1193 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
|
1194 hexadecimal constant. |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1195 |
4485
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
1196 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
|
1197 |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
1198 * lispref/variables.texi (Extent): |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
1199 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
|
1200 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
|
1201 |
4472
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
1202 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
|
1203 |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
1204 * 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
|
1205 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
|
1206 commit. |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
1207 |
4471
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
1208 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
|
1209 |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
1210 * 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
|
1211 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
|
1212 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
|
1213 #'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
|
1214 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
|
1215 |
4466
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
1216 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
|
1217 |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
1218 * 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
|
1219 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
|
1220 #'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
|
1221 |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
1222 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
|
1223 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
1224 * 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
|
1225 Describe --script, -script. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
1226 |
4427
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1227 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
|
1228 |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1229 * 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
|
1230 (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
|
1231 New nodes. |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1232 (Top): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1233 (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
|
1234 (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
|
1235 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
|
1236 |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1237 (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
|
1238 |
4329
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
1239 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
|
1240 |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
1241 * 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
|
1242 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
|
1243 |
4320 | 1244 2007-12-10 Ville Skyttä <scop@xemacs.org> |
1245 | |
1246 * internals/internals.texi: Spelling fixes. | |
1247 | |
4313
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
1248 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
|
1249 |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
1250 * 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
|
1251 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
|
1252 |
4291 | 1253 2007-11-28 Aidan Kehoe <kehoea@parhasard.net> |
1254 | |
1255 * internals/internals.texi (Ibytes and Ichars): | |
1256 Cross reference to the Mule docs describing these typedefs, | |
1257 instead of saying Not yet documented. | |
1258 | |
4265 | 1259 2007-11-14 Aidan Kehoe <kehoea@parhasard.net> |
1260 | |
1261 * lispref/objects.texi (String Type): | |
1262 Describe how one can include a trailing backslash in a raw string, | |
1263 by means of the Unicode escape syntax. | |
1264 | |
4264 | 1265 2007-11-14 Aidan Kehoe <kehoea@parhasard.net> |
1266 | |
1267 * xemacs/keystrokes.texi (Character Representation): | |
1268 Clarify the description of which characters are displayed as | |
1269 themselves and which as octal escapes bzw. "control" characters | |
1270 with an initial caret. | |
1271 | |
4225 | 1272 2007-10-15 Adrian Aichner <adrian@xemacs.org> |
1273 | |
1274 * Makefile (info_files): Sync nt/xemacs.mak and man/Makefile. | |
1275 Sort enries to easy future syncs. | |
1276 | |
4199 | 1277 2007-09-22 Stephen J. Turnbull <stephen@xemacs.org> |
1278 | |
1279 * lispref/searching.texi (Replacing Match): Document the escapes | |
1280 for changing case in `replace-match'. Document the change to | |
1281 STRBUFFER to permit subexpressions in string replacement. | |
1282 | |
4196 | 1283 2007-09-30 Adrian Aichner <adrian@xemacs.org> |
1284 | |
1285 * Makefile (TEXI2HTML_NOSPLIT): New. | |
1286 * Makefile ($(HTMLDIR)/beta.html): Use TEXI2HTML_NOSPLIT. | |
1287 * Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto. | |
1288 | |
4195 | 1289 2007-09-30 Adrian Aichner <adrian@xemacs.org> |
1290 | |
1291 * Makefile (TEXI2HTML): Refactor TEXI2HTML for use by | |
1292 xemacsweb/Documentation/Makefile. | |
1293 | |
4143 | 1294 2007-08-25 Adrian Aichner <adrian@xemacs.org> |
1295 | |
1296 * internals/internals.texi (Through Version 18): Fix error in | |
1297 Emacs Timeline URL. | |
1298 * internals/internals.texi (Better Rendering Support -- Configuration with the Interim Patches): | |
1299 | |
4039 | 1300 2007-06-27 Aidan Kehoe <kehoea@parhasard.net> |
1301 | |
1302 * lispref/variables.texi (Extent): | |
1303 Mention that lexical scope is available using lexical-let and | |
1304 lexical-let* in cl-macs, instead of ignoring them entirely. | |
1305 | |
3979 | 1306 2007-05-21 Ville Skyttä <scop@xemacs.org> |
1307 | |
1308 * internals/internals.texi: Fix corrupted/oddly encoded chars. | |
1309 * lispref/ldap.texi: Ditto. | |
1310 | |
3975 | 1311 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
1312 | |
1313 * XEmacs 21.5.28 "fuki" is released. | |
1314 | |
3955 | 1315 2007-05-15 Aidan Kehoe <kehoea@parhasard.net> |
1316 | |
1317 * internals/internals.texi: | |
1318 Replace an inaccurate description of the read syntax of a Kanji | |
1319 character with one using the recently-added Unicode escapes. Also | |
1320 update the size of an Ichar; they're now 21-bit integers, not | |
1321 19-bit integers. | |
1322 | |
3930 | 1323 2007-04-30 Stephen J. Turnbull <stephen@xemacs.org> |
1324 | |
1325 * internals/internals.texi (Creating a New Console/Device/Frame Type): | |
1326 Typo fix. | |
1327 | |
3773 | 1328 2007-01-01 Malcolm Purvis <malcolmp@xemacs.org> |
1329 | |
1330 * internals/internals.texi (Ben's README): Use 'grep -F' instead | |
1331 of fgrep. | |
1332 | |
3772 | 1333 2006-11-07 Robert Pluim <rpluim@gmail.com> |
1334 | |
1335 * lispref/os.texi (User Identification): The code uses HOMEPATH, | |
1336 not HOMEDIR. | |
1337 | |
3711 | 1338 2006-11-29 Aidan Kehoe <kehoea@parhasard.net> |
1339 | |
1340 * xemacs/custom.texi (Face Resources): | |
1341 Mention that the user should use full XLFD forms for specifying | |
1342 fonts, and that Mule builds reject the short forms by | |
1343 default. Also mention the work-around to the latter design choice | |
1344 that was implemented for Ilya. | |
1345 | |
3685 | 1346 2006-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
1347 | |
1348 * internals/internals.texi | |
1349 (Better Rendering Support -- Configuration with the Interim Patches): | |
1350 Fix examples of configuration via X resources. | |
1351 (Better Rendering Support -- Implementation): Fix description of | |
1352 xftFont resources, introduce fcFontName resource. | |
1353 | |
3674 | 1354 2006-11-11 Aidan Kehoe <kehoea@parhasard.net> |
1355 | |
1356 * lispref/faces.texi (Face Convenience Functions): | |
1357 Add information on how to specify a face's font for a given Mule | |
1358 charset. | |
1359 | |
1360 * lispref/specifiers.texi (Specifiers): | |
1361 * lispref/specifiers.texi (Simple Specifier Usage): | |
1362 * lispref/specifiers.texi (Specifiers In-Depth): | |
1363 * lispref/specifiers.texi (Specifier Tag Functions): | |
1364 * lispref/specifiers.texi (Specifier Instantiation Functions): | |
1365 Update the documentation of specifiers to reflect the new support | |
1366 for Mule character sets and associating tags with them. | |
1367 | |
3543 | 1368 2006-08-05 Aidan Kehoe <kehoea@parhasard.net> |
1369 | |
1370 * lispref/objects.texi (String Type): | |
1371 Give details of the raw string syntax, taken from SXEmacs and | |
1372 Python. | |
1373 | |
3516 | 1374 2006-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
1375 | |
1376 * new-users-guide/edit.texi (Insert): Document bogosity in | |
1377 vendor labeling of DEL key. | |
1378 (Numeric Argument): Remove spurious RETs from keystroke examples. | |
1379 Thanks to Michael C. Wescott <wescott@sc.rr.com>. | |
1380 | |
3510 | 1381 2006-07-16 Aidan Kehoe <kehoea@parhasard.net> |
1382 | |
1383 * xemacs/custom.texi (File Variables): | |
1384 Make it clearer that file variables are buffer-local. | |
1385 * xemacs/custom.texi (Faces): | |
1386 "must be encoding" -> "must be encoded". | |
1387 | |
1388 2006-07-16 Aidan Kehoe <kehoea@parhasard.net> | |
1389 | |
1390 * lispref/variables.texi (Creating Buffer-Local): | |
1391 Mention that buffer-local variables are created when file local | |
1392 variables are set. | |
1393 | |
3496 | 1394 2006-07-08 Aidan Kehoe <kehoea@parhasard.net> |
1395 | |
1396 * internals/internals.texi (Internal String Encoding): | |
1397 Mention that UTF-8 would be a reasonable alternative encoding. | |
1398 * internals/internals.texi (Internal Character Encoding): | |
1399 Re-arrange the description of characters to deal with 21-bit | |
1400 characters. | |
1401 | |
3439 | 1402 2006-06-03 Aidan Kehoe <kehoea@parhasard.net> |
1403 | |
1404 * lispref/mule.texi (CCL Syntax): | |
1405 * lispref/mule.texi (CCL Statements): | |
1406 Describe the mule-to-unicode and unicode-to-mule statements; | |
1407 rename the section they are described in. | |
1408 | |
3404 | 1409 2006-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
1410 | |
1411 * xemacs-faq.texi (Q2.2.3): New node. | |
1412 (Q2.2.2, Q2.3.1): Fix navigation references. | |
1413 (Top, Installation): Add to menus. | |
1414 | |
3402 | 1415 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
1416 | |
1417 * XEmacs 21.5.27 "fiddleheads" is released. | |
1418 | |
3388 | 1419 2006-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
1420 | |
1421 * beta.texi (Building Beta XEmacs): Rename 'Compiling' -> 'Building'. | |
1422 (Reporting Problems): Improve it, make it a top-level node, add | |
1423 some vertical spacing to make node breaks more visible. | |
1424 (Getting the Source): Flesh it out a bit and move it to the | |
1425 Building Beta XEmacs node. | |
1426 | |
3387 | 1427 2006-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
1428 | |
1429 * xemacs/custom.texi (Xft Font Customization): New node. | |
1430 (Faces): Create menu, add new node. | |
1431 * xemacs/xemacs.texi (Top): add new node to detail menu. | |
1432 | |
3367 | 1433 2006-04-29 Aidan Kehoe <kehoea@parhasard.net> |
1434 | |
1435 * lispref/objects.texi (Character Type): | |
1436 Document the Unicode syntax for characters in characters and | |
1437 strings. | |
1438 | |
3354 | 1439 2006-04-23 Stephen J. Turnbull <stephen@xemacs.org> |
1440 | |
1441 * internals/internals.texi: Run texinfo-master-menu. | |
1442 (Creating a New Console/Device/Frame Type): New node. | |
1443 | |
3323 | 1444 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
1445 | |
1446 * XEmacs 21.5.26 "endive" is released. | |
1447 | |
3322 | 1448 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
1449 | |
1450 Miscellaneous doc cleanup, parts 2-4: move CHANGES-msw, | |
1451 TODO.ben-mule-21-5, README.ben-mule-21-5, and | |
1452 README.ben-separate-stderr to Internals Manual. | |
1453 | |
1454 * internals/internals.texi (Ben's TODO list): | |
1455 (CHANGES from 21.4-windows branch): | |
1456 (Ben's README): | |
1457 (Ben's separate stderr notes): | |
1458 New nodes. | |
1459 | |
1460 (Subprocesses): Add "Ben's separate stderr notes" to menu. | |
1461 (The Great Mule Merge of March 2002): Add "Ben's TODO list" and | |
1462 "Ben's README" to menu. | |
1463 (Interface to MS Windows): Add "CHANGES from 21.4-windows branch" | |
1464 to menu. | |
1465 | |
1466 (Top): Update detailmenu. | |
1467 | |
1468 2006-03-30 Stephen J. Turnbull <stephen@xemacs.org> | |
1469 | |
1470 Miscellaneous doc cleanup, part 1: move CHANGES-ben-mule to | |
1471 Internals Manual. | |
1472 | |
1473 * internals/internals.texi (The Great Mule Merge of March 2002): | |
1474 Insert CHANGES-ben-mule here, and reformat for Texinfo. | |
1475 | |
3260 | 1476 2006-02-26 Mike Sperber <mike@xemacs.org> |
1477 | |
1478 * xemacs/building.texi (External Lisp): Document that `run-lisp' | |
1479 needs the os-utils package. | |
1480 | |
3259 | 1481 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
1482 | |
1483 * XEmacs 21.5.25 "eggplant" is released. | |
1484 | |
3179 | 1485 2005-11-25 Mike Sperber <mike@xemacs.org> |
1486 | |
1487 * lispref/packaging.texi (The User View): | |
1488 * xemacs/startup.texi (Startup Paths): | |
1489 * xemacs-faq.texi (Q2.1.6): Document new configure options and | |
1490 environment variables for | |
1491 package locations. | |
1492 | |
3171 | 1493 2005-12-24 Aidan Kehoe <kehoea@parhasard.net> |
1494 | |
1495 * xemacs/keystrokes.texi (Keystrokes): | |
1496 Add new node on keyboards with which one can't type Latin. | |
1497 * xemacs/keystrokes.texi (Non-Latin keyboards): | |
1498 Describe the support for falling back to a US key layout on | |
1499 keyboards where typing the Roman alphabet is difficult. | |
1500 | |
3150 | 1501 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
1502 | |
1503 * XEmacs 21.5.24 "dandelion" is released. | |
1504 | |
3147 | 1505 2005-12-09 Malcolm Purvis <malcolmp@xemacs.org> |
1506 | |
1507 * internals/internals.texi (The configure Script): Documented | |
1508 more fully the behaviour of complex options. Provided examples. | |
1509 | |
3128 | 1510 2005-12-03 Adrian Aichner <adrian@xemacs.org> |
1511 | |
1512 * custom.texi (Declaring Variables): Typo fixes. | |
1513 | |
3111 | 1514 2005-11-29 Stephen J. Turnbull <stephen@xemacs.org> |
1515 | |
1516 * xemacs/custom.texi (Faces): Describe some of the more important | |
1517 font naming syntaxes under `set-face-font'. Fix a typo. | |
1518 | |
3094 | 1519 2005-11-22 Stephen J. Turnbull <stephen@xemacs.org> |
1520 | |
1521 * internals/internals.texi (Working with Lisp Objects): Explain | |
1522 better why DEFSYMBOL is usually preferable to intern. | |
1523 | |
3073 | 1524 2005-11-08 Malcolm Purvis <malcolmp@xemacs.org> |
1525 | |
1526 * internals/internals.texi (The configure Script): Added the | |
1527 definition of the new macro XE_HELP_SUBSECTION. | |
1528 | |
3062 | 1529 2005-11-13 Ben Wing <ben@xemacs.org> |
1530 | |
1531 * Makefile: | |
1532 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
1533 Do some refactoring for cleanliness. | |
1534 | |
3059 | 1535 2005-11-13 Ben Wing <ben@xemacs.org> |
1536 | |
1537 * internals/internals.texi (Top): | |
1538 * internals/internals.texi (CVS Techniques): | |
1539 * internals/internals.texi (Creating a Branch): | |
1540 * internals/internals.texi (Merging a Branch into the Trunk): | |
1541 Add node on Creating a Branch. Update info concerning problems | |
1542 with rtag on symlinks. (#### Is this still valid?) | |
1543 | |
3031 | 1544 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
1545 | |
1546 * XEmacs 21.5.23 "daikon" is released. | |
1547 | |
3018 | 1548 2005-10-20 Malcolm Purvis <malcolmp@xemacs.org> |
1549 | |
1550 * xemacs-faq.texi (Q1.2.2): | |
1551 * xemacs-faq.texi (Q2.1.1): | |
1552 * xemacs-faq.texi (Q2.1.6): | |
1553 * xemacs-faq.texi (Q2.2.1): | |
1554 * xemacs-faq.texi (Q2.3.6): | |
1555 * xemacs-faq.texi (Q2.4.3): | |
1556 * xemacs-faq.texi (Q2.4.4): | |
1557 * xemacs-faq.texi (Q2.4.7): | |
1558 * xemacs-faq.texi (Q5.3.3): | |
1559 * xemacs-faq.texi (Q6.0.8): | |
1560 * xemacs-faq.texi (Q7.2.1): | |
1561 Add 21.5 specific examples of configure options in addition to the | |
1562 existing 21.4 ones. | |
1563 | |
3003 | 1564 2005-10-15 Malcolm Purvis <malcolmp@xemacs.org> |
1565 | |
1566 * internals/internals.texi: "API's" -> "APIs". This fixes | |
1567 problems generating dvi and pdf versions. | |
1568 * internals/internals.texi (The configure Script): | |
1569 Describe the use of XE_MERGED_ARG. | |
1570 | |
2995 | 1571 2005-10-13 Ben Wing <ben@xemacs.org> |
1572 | |
1573 * xemacs-faq.texi (Top): | |
1574 * xemacs-faq.texi (External Subsystems): | |
1575 * xemacs-faq.texi (Q5.4.4): | |
1576 * xemacs-faq.texi (Q5.4.5): | |
1577 * xemacs-faq.texi (Q5.4.6): | |
1578 Add question about need to run `rebaseall' under Cygwin. | |
1579 | |
2972 | 1580 2005-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
1581 | |
1582 * emodules.texi (Distribution with XEmacs): New node describing | |
1583 organization of module-related code in top-level configure.ac and | |
1584 src/Makefile.in.in. | |
1585 | |
2960 | 1586 2005-09-27 Adrian Aichner <adrian@xemacs.org> |
1587 | |
1588 * lispref/compile.texi (Compilation Options): Lowercase SYMBOL | |
1589 argument in `byte-compile-print-gensym' documentation, as | |
1590 suggested by Stephen. | |
1591 | |
2955 | 1592 2005-09-27 Adrian Aichner <adrian@xemacs.org> |
1593 | |
1594 * lispref/packaging.texi: Get file to compile with teinfmt.el. | |
1595 * lispref/packaging.texi (Packaging): Ditto. | |
1596 * lispref/packaging.texi (Package Overview): Ditto. | |
1597 * lispref/packaging.texi (The User View): Ditto. | |
1598 * lispref/packaging.texi (The Library Maintainer View): Ditto. | |
1599 * lispref/packaging.texi (Infrastructure): Ditto. | |
1600 * lispref/packaging.texi (Obtaining): Ditto. | |
1601 * lispref/packaging.texi (Local.rules File): Ditto. | |
1602 * lispref/packaging.texi (package-info.in): Ditto. | |
1603 * lispref/packaging.texi (Makefile): Ditto. | |
1604 * lispref/packaging.texi (Documenting Packages): Ditto. | |
1605 | |
1606 2005-09-27 Adrian Aichner <adrian@xemacs.org> | |
1607 | |
1608 * internals/internals.texi (A Summary of the Various XEmacs | |
1609 Modules): Get file to compile with texinfmt.el. | |
1610 * internals/internals.texi (Windows Build Flags): Ditto. | |
1611 | |
2953 | 1612 2005-09-26 Ben Wing <ben@xemacs.org> |
1613 | |
1614 * lispref/glyphs.texi (Images): | |
1615 * lispref/glyphs.texi (Image Instantiators): | |
1616 * lispref/glyphs.texi (Image Instantiator Formats): | |
1617 * lispref/glyphs.texi (Image Instances): | |
1618 * lispref/glyphs.texi (Image Instance Functions): | |
1619 * lispref/glyphs.texi (Creating Glyphs): | |
1620 * lispref/glyphs.texi (Lisp API to Native Widgets): | |
1621 * lispref/glyphs.texi (Glyph Properties): | |
1622 * lispref/glyphs.texi (Glyph Examples): | |
1623 * lispref/lispref.texi (Top): | |
1624 * lispref/specifiers.texi (Specifiers): | |
1625 * lispref/specifiers.texi (Introduction to Specifiers): | |
1626 * lispref/specifiers.texi (Simple Specifier Usage): | |
1627 * lispref/specifiers.texi (Specifiers In-Depth): | |
1628 * lispref/specifiers.texi (Specifier Instantiation): | |
1629 * lispref/specifiers.texi (Retrieving Specifications): | |
1630 * lispref/specifiers.texi (Specifier Tag Functions): | |
1631 * lispref/specifiers.texi (Specifier Validation Functions): | |
1632 Use "instantiation" not "instancing". Fix some places where | |
1633 "specifier" is used to mean "instantiator". | |
1634 | |
2949 | 1635 2005-09-25 Adrian Aichner <adrian@xemacs.org> |
1636 | |
1637 * lispref/compile.texi (Compilation Options): Supply missing | |
1638 argument to @var{}, using same SYMBOL as in variable docstring of | |
1639 `byte-compile-print-gensym'. | |
1640 | |
2931 | 1641 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
1642 | |
1643 * XEmacs 21.5.22 "cucumber" is released. | |
1644 | |
2867 | 1645 2005-07-20 Didier Verna <didier@xemacs.org> |
1646 | |
1647 * lispref/faces.texi (Basic Face Functions): Rephrase the face | |
1648 aliasing paragraph following a suggestion from Stephen J. | |
1649 Turnbull. | |
1650 | |
2865 | 1651 2005-07-19 Didier Verna <didier@xemacs.org> |
1652 | |
1653 * lispref/faces.texi (Basic Face Functions): Document the face | |
1654 aliasing feature. | |
1655 | |
2862 | 1656 2005-07-17 Aidan Kehoe <kehoea@parhasard.net> |
1657 | |
1658 * lispref/commands.texi (Converting Events): | |
1659 Give details on the deprecated ALLOW-NON-ASCII argument to | |
2865 | 1660 event-to-character, and why you shouldn't use it. |
2862 | 1661 |
2828 | 1662 2005-06-26 Aidan Kehoe <kehoea@parhasard.net> |
1663 | |
2865 | 1664 * lispref/commands.texi (Converting Events): |
2828 | 1665 * lispref/keymaps.texi (Key Sequences): |
1666 Stop pretending ASCII is an eight-bit character set, and remove | |
1667 documentation of event-to-character's vanished fourth argument. | |
1668 | |
1669 * internals/internals.texi (Old Future Work -- Improvements in | |
1670 support for non-ASCII (European) keysyms under X): | |
2865 | 1671 Rename the ascii-character property. |
1672 | |
2818 | 1673 2005-06-19 Aidan Kehoe <kehoea@parhasard.net> |
1674 | |
1675 * lispref/building.texi (Building XEmacs and Object Allocation): | |
2865 | 1676 Pure storage has been gone for half a decade or more. |
1677 * lispref/mule.texi (Internationalization Terminology): | |
1678 Phrase stuff a little more clearly, compare Mule with Unicode. | |
2818 | 1679 * lispref/lispref.texi (Top): |
2865 | 1680 Take out info on pure storage. |
2818 | 1681 |
2791 | 1682 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
1683 | |
1684 * XEmacs 21.5.21 "corn" is released. | |
1685 | |
2769 | 1686 2005-05-10 Aidan Kehoe <kehoea@parhasard.net> |
1687 | |
1688 * xemacs-faq.texi (Q3.2.5): (setq text-mode-hook | |
2865 | 1689 'turn-on-auto-fill) is not a good idea. |
2769 | 1690 |
2768 | 1691 2005-05-10 Aidan Kehoe <kehoea@parhasard.net> |
1692 | |
2865 | 1693 * xemacs/sending.texi (Sending Mail):Document that sendmail.el is |
1694 underfeatured and not getting better anytime soon; suggest using | |
1695 another mailer. | |
2768 | 1696 |
2757 | 1697 2005-05-05 Aidan Kehoe <kehoea@parhasard.net> |
1698 | |
1699 * xemacs/building.texi (Lisp Modes): | |
1700 * xemacs/building.texi (Lisp Interaction): | |
1701 * xemacs/entering.texi (Entering Emacs): | |
1702 * xemacs/menus.texi (File Menu): | |
1703 * xemacs/text.texi (Auto Fill): | |
1704 None of the keymaps I have access to have linefeed keys; they all | |
1705 use Return. As such, for new users, C-j is really the only option | |
1706 for evaluation in Lisp interaction mode, and should be documented | |
2865 | 1707 as such. |
1708 | |
3050 | 1709 2005-04-18 Stephen J. Turnbull <stephen@xemacs.org> |
2736 | 1710 |
1711 * internals/internals.texi | |
1712 (Better Rendering Support -- Modern Font Support): | |
1713 (Modern Font Support -- Font Concepts): | |
1714 (Modern Font Support -- fontconfig): | |
1715 (Modern Font Support -- Xft): | |
1716 New nodes describing the Lisp API. | |
1717 (Future Work -- Better Rendering Support): | |
1718 Add Better Rendering Support -- Modern Font Support to menu. | |
1719 | |
1720 2005-04-05 Stephen J. Turnbull <stephen@xemacs.org> | |
1721 | |
1722 * xemacs/custom.texi (X Resources): Improve wording. | |
1723 | |
1724 2005-03-13 Stephen J. Turnbull <stephen@xemacs.org> | |
1725 | |
1726 * xemacs/custom.texi (Minor Modes): Improve general description. | |
1727 Add description of Pending Delete and Filladapt modes. | |
1728 (File Variables): Improve caution against invoking minor modes. | |
1729 (Syntax Entry): Strengthen caution against "\s ". | |
1730 | |
1731 * xemacs/major.texi (Major Modes): Improve accuracy of wording. | |
1732 (Mode Hooks): Describe use of hooks to invoke minor modes. | |
1733 | |
2715 | 1734 2005-04-06 Ben Wing <ben@xemacs.org> |
1735 | |
1736 * internals/internals.texi (Authorship of XEmacs): Copy authorship | |
1737 section from FAQ and comment out old info, which is quite out of | |
1738 date and full of typos. | |
1739 | |
2690 | 1740 2005-03-26 Aidan Kehoe <kehoea@parhasard.net> |
1741 | |
1742 * lispref/mule.texi (CCL Example): | |
2691 | 1743 char-int -> char-to-int, and hex 41 is decimal 65, both problems |
2865 | 1744 with my previous patch pointed out by Stephen. |
2690 | 1745 * lispref/mule.texi (The actual coding system): |
1746 Give information on the make-coding-system call, and where the | |
2865 | 1747 actual package can be found. |
1748 | |
2681 | 1749 2005-03-24 Aidan Kehoe <kehoea@parhasard.net> |
1750 | |
1751 * xemacs/custom.texi (X Resources): | |
1752 "Emacs" as the application class -> "XEmacs" as the application | |
1753 class, mention the old resource class determination behaviour, and | |
2865 | 1754 how one can temporarily re-instate it. |
1755 | |
2665 | 1756 2005-03-15 Stephen J. Turnbull <stephen@xemacs.org> |
1757 | |
1758 * internals/internals.texi (The XEmacs Split): | |
1759 * standards.texi (Option Table): | |
1760 Shut up makeinfo and hack-local-variables. | |
1761 | |
2662 | 1762 2005-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
1763 | |
1764 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
1765 Document compiler warnings when assert expands to empty statement. | |
1766 | |
2653 | 1767 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
1768 | |
1769 * XEmacs 21.5.20 "cilantro" is released. | |
1770 | |
2647 | 1771 2005-03-05 Malcolm Purvis <malcolmp@xemacs.org> |
1772 | |
1773 * beta.texi : Change configure arguments to the new autoconf 2.5 | |
1774 style configure. | |
1775 * internals/internals.texi (The Build Configuration System): Fill | |
1776 out the details. | |
1777 | |
2640 | 1778 2005-01-19 Aidan Kehoe <kehoea@parhasard.net> |
1779 | |
1780 * lispref/mule.texi (CCL Example): Detail an implementation of the | |
2865 | 1781 web's URL encoding as a CCL coding system example. |
2640 | 1782 |
1783 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
1784 | |
1785 * internals/internals.texi (The version.sh Script): New node. | |
1786 (XEmacs from the Perspective of Building): | |
1787 (Low-Level Modules): | |
1788 (The Build Configuration System): | |
1789 (Adding Configurable Features): | |
1790 Add or update references to the version.sh node and/or file. | |
1791 | |
1792 (XEmacs from the Perspective of Building): Improve text. | |
1793 | |
1794 | |
1795 2005-01-22 Stephen J. Turnbull <stephen@xemacs.org> | |
1796 | |
1797 * internals/internals.texi (XEmacs): Add XEmacs 21.4.16 to list. | |
1798 (The XEmacs Split): Add comments on untrue legal factoids. | |
1799 (The XEmacs Split): Add some @urefs for Jamie's commentary. | |
1800 | |
2608 | 1801 2005-02-23 Aidan Kehoe <kehoea@parhasard.net> |
1802 | |
1803 * lispref/searching.texi (Syntax of Regexps): | |
1804 Mention the \c and \C regular expression constructs; cross | |
2865 | 1805 reference to the Category Table documentation. |
2608 | 1806 |
2602 | 1807 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> |
1808 | |
1809 * internals/internals.texi (The version.sh Script): New node. | |
1810 (XEmacs from the Perspective of Building): | |
1811 (Low-Level Modules): | |
1812 (The Build Configuration System): | |
1813 (Adding Configurable Features): | |
1814 Add or update references to the version.sh node and/or file. | |
1815 | |
1816 (XEmacs from the Perspective of Building): Improve text. | |
1817 | |
2597 | 1818 2005-02-19 Stephen J. Turnbull <stephen@xemacs.org> |
1819 | |
1820 * internals/internals.texi (Introduction to Writing C Code): | |
1821 Change "mostly warning-free" to "warning-free" to encourage | |
1822 reporting warnings as bugs. | |
1823 (The configure Script): | |
1824 Incorporate Malcolm Purvis's notes from configure.ac. Document | |
1825 his implementations of keyword and complex options, and remove | |
1826 descriptions of my obsolete code. | |
1827 | |
1828 2005-01-16 Stephen J. Turnbull <stephen@xemacs.org> | |
1829 | |
1830 * internals/internals.texi (Better Rendering Support -- | |
1831 Configuration with the Interim Patches): | |
1832 Improve notes on configuration. | |
1833 | |
1834 2004-12-15 Stephen J. Turnbull <stephen@xemacs.org> | |
1835 | |
1836 * internals/internals.texi (Better Rendering Support -- | |
1837 Configuration with the Interim Patches): Menubar uses xftFont | |
1838 resource, too. | |
1839 | |
1840 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> | |
1841 | |
1842 * internals/internals.texi (XEmacs from the Perspective of | |
1843 Building): Mention autoconf. | |
1844 (The Modules of XEmacs): Point Next the The Build Configuration | |
1845 System and add Modules for Building XEmacs to the menu. | |
1846 (A Summary of the Various XEmacs Modules): Add Modules for | |
1847 Building XEmacs to menu, and Modules for Build Configuration, | |
1848 Modules for Compiling XEmacs, and Modules for Preloading Lisp to | |
1849 the table of sections. | |
1850 (Low-Level Modules): Point Previous to Modules for Building XEmacs. | |
1851 (Modules for Building XEmacs): | |
1852 (Modules for Build Configuration): | |
1853 (Modules for Compiling XEmacs): | |
1854 (Modules for Preloading Lisp): | |
1855 (The Build Configuration System): | |
1856 (Adding Configurable Features): | |
1857 (The configure Script): | |
1858 (The Makefile Precursors): | |
1859 New nodes. | |
1860 (Rules When Writing New C Code): | |
1861 Point Previous to The Build Configuration System. | |
1862 | |
2594 | 1863 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
1864 | |
1865 * XEmacs 21.5.19 "chives" is released. | |
1866 | |
2559 | 1867 2005-02-03 Ben Wing <ben@xemacs.org> |
1868 | |
1869 * xemacs-faq.texi: | |
1870 * xemacs-faq.texi (Top): | |
1871 * xemacs-faq.texi (Introduction): | |
1872 * xemacs-faq.texi (Q1.2.2): | |
1873 * xemacs-faq.texi (Q1.2.5): | |
1874 * xemacs-faq.texi (Q1.2.9): | |
1875 * xemacs-faq.texi (Q1.2.10): | |
1876 * xemacs-faq.texi (Q1.2.11): | |
1877 * xemacs-faq.texi (Q1.2.12): | |
1878 * xemacs-faq.texi (Q1.4.2): | |
1879 * xemacs-faq.texi (Q1.5.2): | |
1880 * xemacs-faq.texi (Q1.5.3): | |
1881 * xemacs-faq.texi (Q1.5.4): | |
1882 * xemacs-faq.texi (Q1.5.5): | |
1883 * xemacs-faq.texi (Q1.6.6): | |
1884 * xemacs-faq.texi (Q1.7.1): | |
1885 * xemacs-faq.texi (Q1.7.2): | |
1886 * xemacs-faq.texi (Q1.7.3): | |
1887 * xemacs-faq.texi (Q1.7.4): | |
1888 * xemacs-faq.texi (Installation): | |
1889 * xemacs-faq.texi (Q2.0.1): | |
1890 * xemacs-faq.texi (Q2.0.2): | |
1891 * xemacs-faq.texi (Q2.0.3): | |
1892 * xemacs-faq.texi (Q2.0.4): | |
1893 * xemacs-faq.texi (Q2.0.5): | |
1894 * xemacs-faq.texi (Q2.1.1): | |
1895 * xemacs-faq.texi (Q2.1.2): | |
1896 * xemacs-faq.texi (Q2.1.3): | |
1897 * xemacs-faq.texi (Q2.1.4): | |
1898 * xemacs-faq.texi (Q2.1.5): | |
1899 * xemacs-faq.texi (Q2.1.6): | |
1900 * xemacs-faq.texi (Q2.1.7): | |
1901 * xemacs-faq.texi (Q2.2.1): | |
1902 * xemacs-faq.texi (Q2.2.2): | |
1903 * xemacs-faq.texi (Q2.3.1): | |
1904 * xemacs-faq.texi (Q2.3.2): | |
1905 * xemacs-faq.texi (Q2.3.3): | |
1906 * xemacs-faq.texi (Q2.3.4): | |
1907 * xemacs-faq.texi (Q2.3.5): | |
1908 * xemacs-faq.texi (Q2.3.6): | |
1909 * xemacs-faq.texi (Q2.3.7): | |
1910 * xemacs-faq.texi (Q2.3.8): | |
1911 * xemacs-faq.texi (Q2.4.1): | |
1912 * xemacs-faq.texi (Q2.4.2): | |
1913 * xemacs-faq.texi (Q2.4.3): | |
1914 * xemacs-faq.texi (Q2.4.4): | |
1915 * xemacs-faq.texi (Q2.4.5): | |
1916 * xemacs-faq.texi (Q2.4.6): | |
1917 * xemacs-faq.texi (Q2.4.7): | |
1918 * xemacs-faq.texi (Q2.4.8): | |
1919 * xemacs-faq.texi (Q2.4.9): | |
1920 * xemacs-faq.texi (Q2.4.10): | |
1921 * xemacs-faq.texi (Q2.4.11): | |
1922 * xemacs-faq.texi (Q2.4.12): | |
1923 * xemacs-faq.texi (Q2.5.1): | |
1924 * xemacs-faq.texi (Q2.5.2): | |
1925 * xemacs-faq.texi (Q2.5.3): | |
1926 * xemacs-faq.texi (Q2.5.4): | |
1927 * xemacs-faq.texi (Q2.5.5): | |
1928 * xemacs-faq.texi (Legacy Versions): | |
1929 * xemacs-faq.texi (Q10.0.1): | |
1930 * xemacs-faq.texi (Q10.0.2): | |
1931 Flesh out intro section on packages and section on installing | |
1932 packages. Incorporate README, README.packages, BUGS, etc/PACKAGES. | |
1933 Various other changes. | |
1934 | |
2547 | 1935 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> |
1936 | |
1937 * beta.texi: Update Copyright. Add pointer comment. | |
1938 | |
1939 (New packages): Remove personal names, point at jobs.html | |
1940 instead. | |
1941 | |
1942 (Syncing with GNU Emacs): Change "don't assume Mule" to | |
1943 "conditionalize Mule dependencies correctly". RMS stroking: use | |
1944 "GNU", not "FSF", in sync notices. | |
1945 | |
1946 2005-02-02 Robert Delius Royar <xemacs@frinabulax.org> | |
1947 | |
1948 * beta.texi (Top): | |
2865 | 1949 Add reference to Index in catalog to prevent |
2547 | 1950 errors compiling with GNU makeinfo 4.5. |
1951 | |
1952 * beta.texi (Syncing with GNU Emacs): | |
2865 | 1953 Add forward reference to Index in next node to prevent |
2547 | 1954 errors compiling with GNU makeinfo 4.5. |
1955 | |
1956 * beta.texi (Index): | |
1957 Add backward reference to Syncing with GNU Emacs to | |
2865 | 1958 replace obsolete reference to Defining Variables to |
2547 | 1959 prevent errors compiling with GNU makeinfo 4.5. |
1960 | |
2537 | 1961 2005-01-31 Ben Wing <ben@xemacs.org> |
1962 | |
1963 * xemacs/help.texi (Misc Help): | |
1964 Delete references to DISTRIB. Point to FAQ. | |
2865 | 1965 |
2537 | 1966 * xemacs/new.texi: |
1967 Update sample code for version checking. | |
2865 | 1968 |
2537 | 1969 * xemacs/xemacs.texi (Distrib): |
1970 * xemacs/xemacs.texi (Intro): | |
1971 Delete references to DISTRIB. Point directly to web site. | |
1972 Update stuff referring to GNU Emacs. Delete references to Win-Emacs. | |
1973 | |
1974 2005-01-31 Ben Wing <ben@xemacs.org> | |
1975 | |
1976 * Makefile: | |
1977 * Makefile (info_files): | |
1978 * Makefile (html_files): | |
1979 * Makefile (dvi_files): | |
1980 * Makefile (pdf_files): | |
1981 * Makefile ($(INFODIR)/beta.info): | |
1982 Add beta.texi and built files. | |
2865 | 1983 |
2537 | 1984 * xemacs-faq.texi (Top): |
1985 * xemacs-faq.texi (Introduction): | |
1986 * xemacs-faq.texi (Q1.0.3): | |
1987 * xemacs-faq.texi (Q1.0.4): | |
1988 * xemacs-faq.texi (Q1.0.5): | |
1989 * xemacs-faq.texi (Q1.0.6): | |
1990 * xemacs-faq.texi (Q1.1.1): | |
1991 * xemacs-faq.texi (Q1.1.2): | |
1992 * xemacs-faq.texi (Q1.1.3): | |
1993 * xemacs-faq.texi (Q1.1.4): | |
1994 * xemacs-faq.texi (Q1.2.1): | |
1995 * xemacs-faq.texi (Q1.2.2): | |
1996 * xemacs-faq.texi (Q1.2.3): | |
1997 * xemacs-faq.texi (Q1.2.4): | |
1998 * xemacs-faq.texi (Q1.2.5): | |
1999 * xemacs-faq.texi (Q1.2.6): | |
2000 * xemacs-faq.texi (Q1.2.7): | |
2001 * xemacs-faq.texi (Q1.2.8): | |
2002 * xemacs-faq.texi (Q1.2.9): | |
2003 * xemacs-faq.texi (Q1.2.10): | |
2004 * xemacs-faq.texi (Q1.2.11): | |
2005 * xemacs-faq.texi (Q1.2.12): | |
2006 * xemacs-faq.texi (Q1.2.13): | |
2007 * xemacs-faq.texi (Q1.3.1): | |
2008 * xemacs-faq.texi (Q1.3.2): | |
2009 * xemacs-faq.texi (Q1.3.3): | |
2010 * xemacs-faq.texi (Q1.3.4): | |
2011 * xemacs-faq.texi (Q1.3.5): | |
2012 * xemacs-faq.texi (Q1.3.6): | |
2013 * xemacs-faq.texi (Q1.3.7): | |
2014 * xemacs-faq.texi (Q1.3.8): | |
2015 * xemacs-faq.texi (Q1.4.1): | |
2016 * xemacs-faq.texi (Q1.4.2): | |
2017 * xemacs-faq.texi (double-word): New. | |
2018 * xemacs-faq.texi (Q1.4.3): | |
2019 * xemacs-faq.texi (Q1.4.4): | |
2020 * xemacs-faq.texi (Q1.4.5): | |
2021 * xemacs-faq.texi (Q1.5.1): | |
2022 * xemacs-faq.texi (Q1.5.2): | |
2023 * xemacs-faq.texi (Q1.5.3): | |
2024 * xemacs-faq.texi (Q1.6.1): | |
2025 * xemacs-faq.texi (Q1.6.2): | |
2026 * xemacs-faq.texi (Q1.6.3): | |
2027 * xemacs-faq.texi (Q1.6.4): | |
2028 * xemacs-faq.texi (Q1.6.5): | |
2029 * xemacs-faq.texi (Q1.6.6): | |
2030 * xemacs-faq.texi (Q1.7.1): | |
2031 * xemacs-faq.texi (Q1.8.1): | |
2032 * xemacs-faq.texi (Q1.8.2): | |
2033 * xemacs-faq.texi (Q1.8.3): | |
2034 * xemacs-faq.texi (Q1.8.4): | |
2035 * xemacs-faq.texi (Q1.8.5): | |
2036 * xemacs-faq.texi (Q1.8.6): | |
2037 * xemacs-faq.texi (Q1.8.7): | |
2038 * xemacs-faq.texi (Q1.8.8): | |
2039 * xemacs-faq.texi (Q1.8.9): | |
2040 * xemacs-faq.texi (Q2.2.1): | |
2041 * xemacs-faq.texi (Q2.2.2): | |
2042 * xemacs-faq.texi (Q2.4.2): | |
2043 * xemacs-faq.texi (Advanced): | |
2044 * xemacs-faq.texi (Q7.0.1): | |
2045 * xemacs-faq.texi (Q7.0.2): | |
2046 * xemacs-faq.texi (Q7.0.3): | |
2047 * xemacs-faq.texi (Q7.0.4): | |
2048 * xemacs-faq.texi (Q7.0.5): | |
2049 * xemacs-faq.texi (Q7.0.6): | |
2050 * xemacs-faq.texi (Q7.1.1): | |
2051 * xemacs-faq.texi (Q7.1.2): | |
2052 * xemacs-faq.texi (Q7.1.3): | |
2053 * xemacs-faq.texi (Q7.1.4): | |
2054 * xemacs-faq.texi (Q7.1.5): | |
2055 * xemacs-faq.texi (Q7.1.6): | |
2056 * xemacs-faq.texi (Q7.1.7): | |
2057 * xemacs-faq.texi (Q7.1.8): | |
2058 * xemacs-faq.texi (Q7.1.9): | |
2059 * xemacs-faq.texi (Q7.1.10): | |
2060 * xemacs-faq.texi (Q7.1.11): | |
2061 * xemacs-faq.texi (Q7.2.1): | |
2062 * xemacs-faq.texi (Q7.2.2): | |
2063 * xemacs-faq.texi (Q7.2.3): | |
2064 * xemacs-faq.texi (Other Packages): | |
2065 * xemacs-faq.texi (Current Events): | |
2066 * xemacs-faq.texi (Legacy Versions): | |
2067 Major overhaul of section 1. Add mailing list info, update | |
2068 downloading info, add info on CVS, etc. | |
2069 | |
2522 | 2070 2004-10-17 Shyamal Prasad <shyamal@member.fsf.org> |
2071 | |
2072 * xemacs/programs.texi (Program Modes): Updated it to reflect | |
2073 current status of programming modes. | |
2074 * xemacs/programs.texi (CC Mode): New section introduces CC | |
2075 Mode. Introduces customization with reference to CC Mode | |
2076 manual. Also introduce C/AWK modes in prog-modes package | |
2077 * xemacs/programs.texi (C Ident): Removed - it was | |
2078 obsolete. prog-modes package documentation now contains | |
2865 | 2079 indentation description for old C mode |
2522 | 2080 * xemacs/major.texi (Mode Hooks): Add description of major mode |
2081 hooks. Cleaned up and updated programming mode descriptions. | |
2082 * xemacs/xemacs.texi (Top): Updated Detailed Node listing for new | |
2083 CC Mode section in programs.texi | |
2084 | |
2085 | |
2507 | 2086 2005-01-26 Ben Wing <ben@xemacs.org> |
2087 | |
2088 * internals/internals.texi: | |
2089 * internals/internals.texi (Through Version 18): | |
2090 * internals/internals.texi (GNU Emacs 19): | |
2091 * internals/internals.texi (GNU Emacs 20): | |
2092 Update History. | |
2093 | |
2094 * internals/internals.texi (Unicode support under Windows): | |
2095 Redo section on Windows 95 support for Unicode. | |
2096 | |
2492 | 2097 2005-01-19 Aidan Kehoe <kehoea@parhasard.net> |
2098 | |
2099 * man/lispref/functions.texi (Functions): Rename to "Functions and | |
2100 Commands" | |
2101 * man/lispref/functions.texi (What Is a Function): Move the definition | |
2102 of a command further up the list, give information on a trivial | |
2103 (interactive) declaration, and cross-reference to the key binding | |
2104 detail. Cf. 87vf9wgd08.fsf@tleepslib.sk.tsukuba.ac.jp | |
2865 | 2105 (comp.emacs.xemacs, 2005-01-18). |
2492 | 2106 * man/lispref/eval.texi man/lispref/lispref.texi |
2865 | 2107 man/lispref/macros.texi man/lispref/symbols.texi |
2492 | 2108 man/lispref/variables.texi: Fix cross references. |
2109 | |
2459 | 2110 2004-12-28 Ben Wing <ben@xemacs.org> |
2111 | |
2112 * xemacs-faq.texi (Top): | |
2113 * xemacs-faq.texi (Introduction): | |
2114 * xemacs-faq.texi (Q1.0.3): | |
2115 * xemacs-faq.texi (Q1.0.5): | |
2116 * xemacs-faq.texi (Q1.0.10): | |
2117 * xemacs-faq.texi (Q1.1.4): | |
2118 * xemacs-faq.texi (Q1.1.5): | |
2119 * xemacs-faq.texi (Q1.4.1): | |
2120 * xemacs-faq.texi (Q1.4.3): | |
2121 * xemacs-faq.texi (Q1.5.8): | |
2122 * xemacs-faq.texi (Installation): | |
2123 * xemacs-faq.texi (Q2.0.3): | |
2124 * xemacs-faq.texi (Q2.0.5): | |
2125 * xemacs-faq.texi (Q2.1.1): | |
2126 * xemacs-faq.texi (Q2.1.2): | |
2127 * xemacs-faq.texi (Q2.2.7): | |
2128 * xemacs-faq.texi (Q2.4.6): | |
2129 * xemacs-faq.texi (Editing): | |
2130 * xemacs-faq.texi (Q3.0.1): | |
2131 * xemacs-faq.texi (Q3.0.2): | |
2132 * xemacs-faq.texi (Q3.0.3): | |
2133 * xemacs-faq.texi (Q3.0.4): | |
2134 * xemacs-faq.texi (Q3.0.5): | |
2135 * xemacs-faq.texi (Q3.0.6): | |
2136 * xemacs-faq.texi (Q3.0.7): | |
2137 * xemacs-faq.texi (Q3.0.8): | |
2138 * xemacs-faq.texi (Q3.0.9): | |
2139 * xemacs-faq.texi (Q3.0.10): | |
2140 * xemacs-faq.texi (Q3.0.11): | |
2141 * xemacs-faq.texi (Q3.1.1): | |
2142 * xemacs-faq.texi (Q3.1.2): | |
2143 * xemacs-faq.texi (Q3.1.3): | |
2144 * xemacs-faq.texi (Q3.1.4): | |
2145 * xemacs-faq.texi (Q3.1.5): | |
2146 * xemacs-faq.texi (Q3.2.1): | |
2147 * xemacs-faq.texi (Q3.2.2): | |
2148 * xemacs-faq.texi (Q3.2.3): | |
2149 * xemacs-faq.texi (Q3.2.4): | |
2150 * xemacs-faq.texi (Q3.2.5): | |
2151 * xemacs-faq.texi (Q3.3.1): | |
2152 * xemacs-faq.texi (Q3.3.2): | |
2153 * xemacs-faq.texi (Q3.3.3): | |
2154 * xemacs-faq.texi (Q3.3.4): | |
2155 * xemacs-faq.texi (Q3.3.5): | |
2156 * xemacs-faq.texi (Q3.3.6): | |
2157 * xemacs-faq.texi (Q3.4.1): | |
2158 * xemacs-faq.texi (Q3.4.2): | |
2159 * xemacs-faq.texi (Display): | |
2160 * xemacs-faq.texi (Q4.0.1): | |
2161 * xemacs-faq.texi (Q4.0.2): | |
2162 * xemacs-faq.texi (Q4.0.3): | |
2163 * xemacs-faq.texi (Q4.0.4): | |
2164 * xemacs-faq.texi (my-toggle-toolbar): Removed. | |
2165 * xemacs-faq.texi (Q4.0.5): | |
2166 * xemacs-faq.texi (Q4.0.6): | |
2167 * xemacs-faq.texi (Q4.0.7): | |
2168 * xemacs-faq.texi (Q4.0.8): | |
2169 * xemacs-faq.texi (Q4.0.9): | |
2170 * xemacs-faq.texi (Q4.1.1): | |
2171 * xemacs-faq.texi (Q4.1.2): | |
2172 * xemacs-faq.texi (Q4.2.1): | |
2173 * xemacs-faq.texi (Q4.2.2): | |
2174 * xemacs-faq.texi (Q4.2.3): | |
2175 * xemacs-faq.texi (Q4.2.4): | |
2176 * xemacs-faq.texi (Q4.3.1): | |
2177 * xemacs-faq.texi (Q4.3.2): | |
2178 * xemacs-faq.texi (Q4.3.3): | |
2179 * xemacs-faq.texi (Q4.4.1): | |
2180 * xemacs-faq.texi (Q4.4.2): | |
2181 * xemacs-faq.texi (Q4.4.3): | |
2182 * xemacs-faq.texi (Q4.4.4): | |
2183 * xemacs-faq.texi (Q4.4.5): | |
2184 * xemacs-faq.texi (Q4.5.1): | |
2185 * xemacs-faq.texi (Q4.5.2): | |
2186 * xemacs-faq.texi (Q4.5.3): | |
2187 * xemacs-faq.texi (Q4.5.4): | |
2188 * xemacs-faq.texi (Q4.6.1): | |
2189 * xemacs-faq.texi (Q4.6.2): | |
2190 * xemacs-faq.texi (Q4.6.3): | |
2191 * xemacs-faq.texi (Q4.6.4): | |
2192 * xemacs-faq.texi (scroll-up): Removed. | |
2193 * xemacs-faq.texi (Q4.6.5): | |
2194 * xemacs-faq.texi (scroll-down): Removed. | |
2195 * xemacs-faq.texi (Q4.6.6): | |
2196 * xemacs-faq.texi (Q4.6.7): | |
2197 * xemacs-faq.texi (Q4.7.1): | |
2198 * xemacs-faq.texi (Q4.7.2): | |
2199 * xemacs-faq.texi (Q4.7.3): | |
2200 * xemacs-faq.texi (Q4.7.4): | |
2201 * xemacs-faq.texi (External Subsystems): | |
2202 * xemacs-faq.texi (Q5.0.1): | |
2203 * xemacs-faq.texi (Q5.0.2): | |
2204 * xemacs-faq.texi (Q5.0.3): | |
2205 * xemacs-faq.texi (Q5.0.4): | |
2206 * xemacs-faq.texi (Q5.0.5): | |
2207 * xemacs-faq.texi (Q5.0.6): | |
2208 * xemacs-faq.texi (Q5.1.1): | |
2209 * xemacs-faq.texi (Q5.1.2): | |
2210 * xemacs-faq.texi (Q5.2.1): | |
2211 * xemacs-faq.texi (Q5.2.2): | |
2212 * xemacs-faq.texi (Q5.2.3): | |
2213 * xemacs-faq.texi (Q5.2.4): | |
2214 * xemacs-faq.texi (Q5.3.1): | |
2215 * xemacs-faq.texi (Q5.3.2): | |
2216 * xemacs-faq.texi (Q5.3.3): | |
2217 * xemacs-faq.texi (Q5.3.4): | |
2218 * xemacs-faq.texi (Q5.4.1): | |
2219 * xemacs-faq.texi (Q5.4.2): | |
2220 * xemacs-faq.texi (Q5.4.3): | |
2221 * xemacs-faq.texi (Q5.4.4): | |
2222 * xemacs-faq.texi (Q5.4.5): | |
2223 * xemacs-faq.texi (Q5.5.1): | |
2224 * xemacs-faq.texi (Q5.5.2): | |
2225 * xemacs-faq.texi (Q5.5.3): | |
2226 * xemacs-faq.texi (Q5.5.4): | |
2227 * xemacs-faq.texi (Q5.5.5): | |
2228 * xemacs-faq.texi (Internet): | |
2229 * xemacs-faq.texi (Q6.0.1): | |
2230 * xemacs-faq.texi (Q6.0.2): | |
2231 * xemacs-faq.texi (Q6.0.3): | |
2232 * xemacs-faq.texi (Q6.0.4): | |
2233 * xemacs-faq.texi (Q6.0.5): | |
2234 * xemacs-faq.texi (Q6.0.6): | |
2235 * xemacs-faq.texi (Q6.0.7): | |
2236 * xemacs-faq.texi (Q6.0.8): | |
2237 * xemacs-faq.texi (Q6.0.9): | |
2238 * xemacs-faq.texi (Q6.0.10): | |
2239 * xemacs-faq.texi (Q6.0.11): | |
2240 * xemacs-faq.texi (Q6.1.1): | |
2241 * xemacs-faq.texi (Q6.1.2): | |
2242 * xemacs-faq.texi (Q6.1.3): | |
2243 * xemacs-faq.texi (Q6.1.4): | |
2244 * xemacs-faq.texi (Q6.1.5): | |
2245 * xemacs-faq.texi (Q6.1.6): | |
2246 * xemacs-faq.texi (Q6.2.1): | |
2247 * xemacs-faq.texi (Q6.2.2): | |
2248 * xemacs-faq.texi (Q6.3.1): | |
2249 * xemacs-faq.texi (Q6.3.2): | |
2250 * xemacs-faq.texi (Q6.4.1): | |
2251 * xemacs-faq.texi (Q6.4.2): | |
2252 * xemacs-faq.texi (Q6.4.3): | |
2253 * xemacs-faq.texi (Advanced): | |
2254 * xemacs-faq.texi (Q7.0.1): | |
2255 * xemacs-faq.texi (Q7.0.2): | |
2256 * xemacs-faq.texi (Q7.1.1): | |
2257 * xemacs-faq.texi (Q7.1.2): | |
2258 * xemacs-faq.texi (Q7.1.3): | |
2259 * xemacs-faq.texi (Q7.1.4): | |
2260 * xemacs-faq.texi (Q7.1.5): | |
2261 * xemacs-faq.texi (Q7.1.6): | |
2262 * xemacs-faq.texi (Q7.2.1): | |
2263 * xemacs-faq.texi (Q7.2.2): | |
2264 * xemacs-faq.texi (Q7.2.3): | |
2265 * xemacs-faq.texi (Q7.2.4): | |
2266 * xemacs-faq.texi (Q7.2.5): | |
2267 * xemacs-faq.texi (Q7.2.6): | |
2268 * xemacs-faq.texi (Q7.2.7): | |
2269 * xemacs-faq.texi (Q7.2.8): | |
2270 * xemacs-faq.texi (Q7.2.9): | |
2271 * xemacs-faq.texi (Q7.2.10): | |
2272 * xemacs-faq.texi (Q7.2.11): | |
2273 * xemacs-faq.texi (Q7.3.1): | |
2274 * xemacs-faq.texi (Q7.3.2): | |
2275 * xemacs-faq.texi (Q7.3.3): | |
2276 * xemacs-faq.texi (Q7.3.4): | |
2277 * xemacs-faq.texi (Other Packages): | |
2278 * xemacs-faq.texi (Q8.0.1): | |
2279 * xemacs-faq.texi (Q8.0.2): | |
2280 * xemacs-faq.texi (Q8.0.3): | |
2281 * xemacs-faq.texi (Q8.0.4): | |
2282 * xemacs-faq.texi (Q8.1.1): | |
2283 * xemacs-faq.texi (Q8.1.2): | |
2284 * xemacs-faq.texi (Q8.1.3): | |
2285 * xemacs-faq.texi (Q8.2.1): | |
2286 * xemacs-faq.texi (Q8.2.2): | |
2287 * xemacs-faq.texi (Q8.2.3): | |
2288 * xemacs-faq.texi (Q8.2.4): | |
2289 * xemacs-faq.texi (Current Events): | |
2290 * xemacs-faq.texi (Q9.0.1): | |
2291 * xemacs-faq.texi (my-function): Removed. | |
2292 * xemacs-faq.texi (Q9.0.2): | |
2293 * xemacs-faq.texi (Q9.0.3): | |
2294 * xemacs-faq.texi (Q9.0.4): | |
2295 * xemacs-faq.texi (Q9.0.5): | |
2296 * xemacs-faq.texi (Legacy Versions): | |
2297 Major rearrangement. Expand to 10 sections. Add various questions, | |
2298 mostly stubs currently. Remove some obsolete stuff. Update a bunch | |
2299 of the links. | |
2300 | |
2444 | 2301 2004-12-15 Ville Skyttä <scop@xemacs.org> |
2302 | |
2303 * lispref/help.texi: Document 3rd arg to `make-obsolete'. | |
2304 | |
2441 | 2305 2004-12-15 Robert Delius Royar <xemacs@frinabulax.org> |
2306 | |
2307 * internals/internals.texi (Modules for the Basic Displayable Lisp | |
2308 Objects): Remove Mote in Make's eye, fix build. | |
2309 | |
2438 | 2310 2004-12-12 Stephen J. Turnbull <stephen@xemacs.org> |
2311 | |
2312 * internals/internals.texi (Modules for the Basic Displayable Lisp | |
2313 Objects): Comment on problems, and extensions needed to handle | |
2314 native widgets properly. | |
2315 | |
2431 | 2316 2004-12-10 Stephen J. Turnbull <stephen@xemacs.org> |
2317 | |
2318 * internals/internals.texi (Better Rendering Support -- | |
2319 Implementation): Document reasons for Label Widget crash. | |
2320 | |
2427 | 2321 2004-12-07 Malcolm Purvis <malcolmp@xemacs.org> |
2322 | |
2323 * Makefile (RECURSIVE_MAKE): Removed. | |
2324 * Makefile (RECURSIVE_MAKE_ARGS): New. The new method for | |
2325 handling parallel builds. | |
2326 | |
2421 | 2327 2004-12-05 Ben Wing <ben@xemacs.org> |
2328 | |
2329 * xemacs/packages.texi (Packages): | |
2330 * xemacs/packages.texi (Manually): | |
2331 * xemacs/packages.texi (Building Packages): | |
2332 * xemacs/packages.texi (Local.rules File): | |
2333 * xemacs/packages.texi (Available Packages): | |
2334 Add long form of Lisp Reference Manual to links. | |
2335 Add links pointing to Lisp Reference Manual for more detailed | |
2336 package discussion. | |
2422 | 2337 |
2338 * xemacs/xemacs-faq.texi: | |
2339 As per Adrian's suggestion, mention that Pitts Jarvis is deceased. | |
2340 | |
2421 | 2341 2004-12-05 Ben Wing <ben@xemacs.org> |
2342 | |
2343 * lispref/range-tables.texi (Range Tables): | |
2344 * lispref/range-tables.texi (Introduction to Range Tables): | |
2345 * lispref/range-tables.texi (Working With Range Tables): | |
2346 Document range-table changes. | |
2347 | |
2348 2004-12-05 Ben Wing <ben@xemacs.org> | |
2349 | |
2350 * internals/internals.texi (A History of Emacs): | |
2351 Update history section. | |
2352 | |
2353 2004-12-05 Ben Wing <ben@xemacs.org> | |
2354 | |
2355 * xemacs-faq.texi: | |
2356 * xemacs-faq.texi (fix-main-menu): New. | |
2357 * xemacs-faq.texi (fix-omitted-menu-lines): New. | |
2358 * xemacs-faq.texi (Top): | |
2359 * xemacs-faq.texi (Introduction): | |
2360 * xemacs-faq.texi (Q1.0.1): | |
2361 * xemacs-faq.texi (Q1.0.2): | |
2362 * xemacs-faq.texi (Q1.0.4): | |
2363 * xemacs-faq.texi (Q1.0.5): | |
2364 * xemacs-faq.texi (Q1.0.6): | |
2365 * xemacs-faq.texi (Q1.0.7): | |
2366 * xemacs-faq.texi (Q1.0.8): | |
2367 * xemacs-faq.texi (Q1.0.9): | |
2368 * xemacs-faq.texi (Q1.0.10): | |
2369 * xemacs-faq.texi (Q1.0.11): | |
2370 * xemacs-faq.texi (Q1.0.12): | |
2371 * xemacs-faq.texi (Q1.0.13): | |
2372 * xemacs-faq.texi (Q1.0.14): | |
2373 * xemacs-faq.texi (Q1.1.1): | |
2374 * xemacs-faq.texi (Q1.1.2): | |
2375 * xemacs-faq.texi (Q1.1.3): | |
2376 * xemacs-faq.texi (Q1.1.4): | |
2377 * xemacs-faq.texi (Q1.1.5): | |
2378 * xemacs-faq.texi (Q1.1.6): | |
2379 * xemacs-faq.texi (Q1.1.7): | |
2380 * xemacs-faq.texi (Q1.1.8): | |
2381 * xemacs-faq.texi (Q1.1.9): | |
2382 * xemacs-faq.texi (Q1.2.1): | |
2383 * xemacs-faq.texi (Q1.2.2): | |
2384 * xemacs-faq.texi (Q1.2.3): | |
2385 * xemacs-faq.texi (Q1.3.1): | |
2386 * xemacs-faq.texi (Q1.3.2): | |
2387 * xemacs-faq.texi (Q1.3.3): | |
2388 * xemacs-faq.texi (Q1.4.1): | |
2389 * xemacs-faq.texi (Q1.4.2): | |
2390 * xemacs-faq.texi (Q1.4.3): | |
2391 * xemacs-faq.texi (Q1.4.4): | |
2392 * xemacs-faq.texi (Q1.4.5): | |
2393 * xemacs-faq.texi (Q1.4.6): | |
2394 * xemacs-faq.texi (Q1.4.7): | |
2395 * xemacs-faq.texi (Q1.4.8): | |
2396 * xemacs-faq.texi (Q1.4.9): | |
2397 * xemacs-faq.texi (Q1.5.1): | |
2398 * xemacs-faq.texi (Q1.5.2): | |
2399 * xemacs-faq.texi (Q1.5.3): | |
2400 * xemacs-faq.texi (Q1.5.4): | |
2401 * xemacs-faq.texi (Q1.5.5): | |
2402 * xemacs-faq.texi (Q1.5.6): | |
2403 * xemacs-faq.texi (Q1.5.7): | |
2404 * xemacs-faq.texi (Q1.5.8): | |
2405 * xemacs-faq.texi (Installation): | |
2406 * xemacs-faq.texi (Q2.0.1): | |
2407 * xemacs-faq.texi (Q2.0.2): | |
2408 * xemacs-faq.texi (Q2.0.3): | |
2409 * xemacs-faq.texi (Q2.0.4): | |
2410 * xemacs-faq.texi (Q2.0.5): | |
2411 * xemacs-faq.texi (Q2.0.6): | |
2412 * xemacs-faq.texi (Q2.0.7): | |
2413 * xemacs-faq.texi (Q2.1.1): | |
2414 * xemacs-faq.texi (Q2.1.2): | |
2415 * xemacs-faq.texi (Q2.1.3): | |
2416 * xemacs-faq.texi (Q2.1.4): | |
2417 * xemacs-faq.texi (Q2.2.1): | |
2418 * xemacs-faq.texi (Q2.2.2): | |
2419 * xemacs-faq.texi (Q2.2.3): | |
2420 * xemacs-faq.texi (Q2.2.4): | |
2421 * xemacs-faq.texi (Q2.2.5): | |
2422 * xemacs-faq.texi (Q2.2.6): | |
2423 * xemacs-faq.texi (Q2.2.7): | |
2424 * xemacs-faq.texi (Q2.2.8): | |
2425 * xemacs-faq.texi (Q2.3.1): | |
2426 * xemacs-faq.texi (Q2.3.2): | |
2427 * xemacs-faq.texi (Q2.3.3): | |
2428 * xemacs-faq.texi (Q2.3.4): | |
2429 * xemacs-faq.texi (Q2.3.5): | |
2430 * xemacs-faq.texi (Q2.3.6): | |
2431 * xemacs-faq.texi (Q2.3.7): | |
2432 * xemacs-faq.texi (Q2.3.8): | |
2433 * xemacs-faq.texi (Q2.3.9): | |
2434 * xemacs-faq.texi (Q2.3.10): | |
2435 * xemacs-faq.texi (Q2.3.11): | |
2436 * xemacs-faq.texi (Q2.4.1): | |
2437 * xemacs-faq.texi (Q2.4.2): | |
2438 * xemacs-faq.texi (Q2.4.3): | |
2439 * xemacs-faq.texi (Q2.4.4): | |
2440 * xemacs-faq.texi (Q2.4.5): | |
2441 * xemacs-faq.texi (Q2.4.6): | |
2442 * xemacs-faq.texi (Display Subsystems): | |
2443 * xemacs-faq.texi (running-xemacs): Removed. | |
2444 * xemacs-faq.texi (Q3.0.1): | |
2445 * xemacs-faq.texi (Q3.0.2): | |
2446 * xemacs-faq.texi (Q3.0.3): | |
2447 * xemacs-faq.texi (Q3.0.4): | |
2448 * xemacs-faq.texi (Q3.0.5): | |
2449 * xemacs-faq.texi (Q3.0.6): | |
2450 * xemacs-faq.texi (foo-old-losing-code-p): Removed. | |
2451 * xemacs-faq.texi (Q3.0.7): | |
2452 * xemacs-faq.texi (Q3.0.8): | |
2453 * xemacs-faq.texi (Q3.0.9): | |
2454 * xemacs-faq.texi (Q3.0.10): | |
2455 * xemacs-faq.texi (Q3.1.1): | |
2456 * xemacs-faq.texi (Q3.1.2): | |
2457 * xemacs-faq.texi (Q3.1.3): | |
2458 * xemacs-faq.texi (Q3.1.4): | |
2459 * xemacs-faq.texi (Q3.1.5): | |
2460 * xemacs-faq.texi (Q3.2.1): | |
2461 * xemacs-faq.texi (Q3.2.2): | |
2462 * xemacs-faq.texi (Q3.2.3): | |
2463 * xemacs-faq.texi (Q3.2.4): | |
2464 * xemacs-faq.texi (Q3.2.5): | |
2465 * xemacs-faq.texi (Q3.2.6): | |
2466 * xemacs-faq.texi (Q3.2.7): | |
2467 * xemacs-faq.texi (Q3.2.8): | |
2468 * xemacs-faq.texi (Q3.2.9): | |
2469 * xemacs-faq.texi (Q3.3.1): | |
2470 * xemacs-faq.texi (Q3.3.2): | |
2471 * xemacs-faq.texi (Q3.3.3): | |
2472 * xemacs-faq.texi (Q3.3.4): | |
2473 * xemacs-faq.texi (Q3.3.5): | |
2474 * xemacs-faq.texi (Q3.3.6): | |
2475 * xemacs-faq.texi (Q3.4.1): | |
2476 * xemacs-faq.texi (Q3.4.2): | |
2477 * xemacs-faq.texi (Q3.4.3): | |
2478 * xemacs-faq.texi (Q3.4.4): | |
2479 * xemacs-faq.texi (Q3.4.5): | |
2480 * xemacs-faq.texi (Q3.4.6): | |
2481 * xemacs-faq.texi (Q3.5.1): | |
2482 * xemacs-faq.texi (Q3.5.2): | |
2483 * xemacs-faq.texi (Q3.5.3): | |
2484 * xemacs-faq.texi (Q3.5.4): | |
2485 * xemacs-faq.texi (Q3.6.1): | |
2486 * xemacs-faq.texi (Q3.6.2): | |
2487 * xemacs-faq.texi (Q3.6.3): | |
2488 * xemacs-faq.texi (Q3.7.1): | |
2489 * xemacs-faq.texi (Q3.7.2): | |
2490 * xemacs-faq.texi (Q3.7.3): | |
2491 * xemacs-faq.texi (Q3.7.4): | |
2492 * xemacs-faq.texi (Q3.7.5): | |
2493 * xemacs-faq.texi (Q3.7.6): | |
2494 * xemacs-faq.texi (Q3.7.7): | |
2495 * xemacs-faq.texi (Q3.7.8): | |
2496 * xemacs-faq.texi (Q3.8.1): | |
2497 * xemacs-faq.texi (Q3.8.2): | |
2498 * xemacs-faq.texi (Q3.8.3): | |
2499 * xemacs-faq.texi (my-toggle-toolbar): New. | |
2500 * xemacs-faq.texi (Q3.8.4): | |
2501 * xemacs-faq.texi (scroll-one-line-up): Removed. | |
2502 * xemacs-faq.texi (scroll-one-line-down): Removed. | |
2503 * xemacs-faq.texi (Q3.8.5): | |
2504 * xemacs-faq.texi (Q3.9.1): | |
2505 * xemacs-faq.texi (Q3.9.2): | |
2506 * xemacs-faq.texi (Q3.9.3): | |
2507 * xemacs-faq.texi (Q3.9.4): | |
2508 * xemacs-faq.texi (Q3.9.5): | |
2509 * xemacs-faq.texi (External Subsystems): | |
2510 * xemacs-faq.texi (Q4.0.1): | |
2511 * xemacs-faq.texi (Q4.0.2): | |
2512 * xemacs-faq.texi (Q4.0.3): | |
2513 * xemacs-faq.texi (Q4.0.4): | |
2514 * xemacs-faq.texi (Q4.0.5): | |
2515 * xemacs-faq.texi (Q4.0.6): | |
2516 * xemacs-faq.texi (global-map): Removed. | |
2517 * xemacs-faq.texi (Q4.1.1): | |
2518 * xemacs-faq.texi (Q4.1.2): | |
2519 * xemacs-faq.texi (Q4.2.1): | |
2520 * xemacs-faq.texi (Q4.2.2): | |
2521 * xemacs-faq.texi (Q4.2.3): | |
2522 * xemacs-faq.texi (Q4.2.4): | |
2523 * xemacs-faq.texi (Q4.3.1): | |
2524 * xemacs-faq.texi (Q4.3.2): | |
2525 * xemacs-faq.texi (Q4.3.3): | |
2526 * xemacs-faq.texi (Q4.3.4): | |
2527 * xemacs-faq.texi (Q4.4.1): | |
2528 * xemacs-faq.texi (Q4.4.2): | |
2529 * xemacs-faq.texi (Q4.4.3): | |
2530 * xemacs-faq.texi (Q4.4.4): | |
2531 * xemacs-faq.texi (Q4.4.5): | |
2532 * xemacs-faq.texi (Q4.5.1): | |
2533 * xemacs-faq.texi (Q4.5.2): | |
2534 * xemacs-faq.texi (Q4.5.3): | |
2535 * xemacs-faq.texi (Q4.5.4): | |
2536 * xemacs-faq.texi (Q4.5.5): | |
2537 * xemacs-faq.texi (Q4.6.1): | |
2538 * xemacs-faq.texi (Q4.6.2): | |
2539 * xemacs-faq.texi (Q4.6.3): | |
2540 * xemacs-faq.texi (Q4.6.4): | |
2541 * xemacs-faq.texi (Q4.7.1): | |
2542 * xemacs-faq.texi (Q4.7.2): | |
2543 * xemacs-faq.texi (Q4.7.3): | |
2544 * xemacs-faq.texi (Q4.8.1): | |
2545 * xemacs-faq.texi (Q4.8.2): | |
2546 * xemacs-faq.texi (Q4.8.3): | |
2547 * xemacs-faq.texi (Q4.8.4): | |
2548 * xemacs-faq.texi (Internet): | |
2549 * xemacs-faq.texi (Q5.0.1): | |
2550 * xemacs-faq.texi (Q5.0.2): | |
2551 * xemacs-faq.texi (Q5.0.3): | |
2552 * xemacs-faq.texi (Q5.0.4): | |
2553 * xemacs-faq.texi (Q5.0.5): | |
2554 * xemacs-faq.texi (Q5.0.6): | |
2555 * xemacs-faq.texi (Q5.0.7): | |
2556 * xemacs-faq.texi (Q5.0.8): | |
2557 * xemacs-faq.texi (Q5.0.9): | |
2558 * xemacs-faq.texi (Q5.0.10): | |
2559 * xemacs-faq.texi (Q5.0.11): | |
2560 * xemacs-faq.texi (Q5.1.1): | |
2561 * xemacs-faq.texi (Q5.1.2): | |
2562 * xemacs-faq.texi (Q5.1.3): | |
2563 * xemacs-faq.texi (Q5.1.4): | |
2564 * xemacs-faq.texi (Q5.1.5): | |
2565 * xemacs-faq.texi (Q5.1.6): | |
2566 * xemacs-faq.texi (Q5.2.1): | |
2567 * xemacs-faq.texi (Q5.2.2): | |
2568 * xemacs-faq.texi (Q5.3.1): | |
2569 * xemacs-faq.texi (Q5.3.2): | |
2570 * xemacs-faq.texi (Q5.4.1): | |
2571 * xemacs-faq.texi (Q5.4.2): | |
2572 * xemacs-faq.texi (Q5.4.3): | |
2573 * xemacs-faq.texi (Advanced): | |
2574 * xemacs-faq.texi (Q6.0.1): | |
2575 * xemacs-faq.texi (Q6.0.2): | |
2576 * xemacs-faq.texi (Q6.1.1): | |
2577 * xemacs-faq.texi (Q6.1.2): | |
2578 * xemacs-faq.texi (Q6.1.3): | |
2579 * xemacs-faq.texi (Q6.1.4): | |
2580 * xemacs-faq.texi (Q6.1.5): | |
2581 * xemacs-faq.texi (Q6.1.6): | |
2582 * xemacs-faq.texi (Q6.2.1): | |
2583 * xemacs-faq.texi (Q6.2.2): | |
2584 * xemacs-faq.texi (Q6.2.3): | |
2585 * xemacs-faq.texi (Q6.2.4): | |
2586 * xemacs-faq.texi (Q6.2.5): | |
2587 * xemacs-faq.texi (Q6.2.6): | |
2588 * xemacs-faq.texi (Q6.2.7): | |
2589 * xemacs-faq.texi (Q6.2.8): | |
2590 * xemacs-faq.texi (Q6.2.9): | |
2591 * xemacs-faq.texi (Q6.2.10): | |
2592 * xemacs-faq.texi (Q6.2.11): | |
2593 * xemacs-faq.texi (Q6.3.1): | |
2594 * xemacs-faq.texi (Q6.3.2): | |
2595 * xemacs-faq.texi (Q6.3.3): | |
2596 * xemacs-faq.texi (Q6.3.4): | |
2597 * xemacs-faq.texi (Current Events): | |
2598 * xemacs-faq.texi (Q7.0.1): | |
2599 * xemacs-faq.texi (Q7.0.2): | |
2600 * xemacs-faq.texi (Q7.0.3): | |
2601 * xemacs-faq.texi (Q7.0.5): | |
2602 * xemacs-faq.texi (Q7.0.6): | |
2603 * xemacs-faq.texi (Legacy Versions): | |
2604 * xemacs-faq.texi (my-function): Removed. | |
2605 * xemacs-faq.texi (Q8.0.1): | |
2606 | |
2607 The section on Troubleshooting (now 2.3) has been completely | |
2608 written and includes a lot of stuff that is not properly | |
2609 documented anywhere else. A fair amount of obsolete info has been | |
2610 deleted and I've incorporated the comments that people (mostly | |
2611 Stephen T) made. Former chapter 3 has been split up in two, one | |
2612 pertaining to basic I/O and the other to external I/O. What were | |
2613 formerly chapters 5 and 6 no longer exist as such; the info in | |
2614 them has been distributed across various other chapters. Old | |
2615 chapter 4 got split up, part going to the new chapter 4 on | |
2616 external I/O and part going to the new chapter 5 on the Internet. | |
2617 In this new chapter, stuff not pertaining to a specific package | |
2618 (e.g. VM or GNUS) was taken out of package-specific sections and a | |
2619 general mail section was constituted. Part of old chapter 5 | |
2620 remains in a new chapter 6 devoted to Emacs Lisp and other | |
2621 advanced stuff, and a section from old chapter 3 on basic | |
2622 init-file Lisp and some stuff from old chapter 5 on Info. The | |
2623 rest of chapter 5 was just "misc" and has gotten scattered to the | |
2624 winds (mostly in chapters 3 and 4). Old chapter 6 has also gotten | |
2625 quite scattered; there is no longer any section specifically | |
2626 devoted to Windows except one of the Installation sections (along | |
2627 with a section specfically devoted to Unix), and the rest has | |
2628 moved to join the appropriate non-Windows-specific section | |
2629 elsewhere. A lot of chapters had their sections rearranged and | |
2630 likewise for sections having entries rearranged, with the | |
2631 intention that the new arrangement should be more natural. In | |
2632 general I hope that stuff should be much easier to locate. I also | |
2633 rewrote the entries on the relation between XEmacs and GNU Emacs | |
2634 on the authors of XEmacs, including lots of info on who wrote | |
2635 specific subsections. | |
2636 | |
2418 | 2637 2004-12-05 Adrian Aichner <adrian@xemacs.org> |
2638 | |
2639 * Makefile (TEXI2HTML): Changed to produce unsplit output. | |
2640 * Makefile (TEXI2HTML_SPLIT): New. | |
2641 * Makefile (CP): New. | |
2642 * Makefile (PHOTODIR): New. | |
2643 * Makefile ($(HTMLDIR)/cl.html): Use TEXI2HTML_SPLIT. | |
2644 * Makefile ($(HTMLDIR)/custom.html): Ditto. | |
2645 * Makefile ($(HTMLDIR)/emodules.html): Ditto. | |
2646 * Makefile ($(HTMLDIR)/external-widget.html): Ditto. | |
2647 * Makefile ($(HTMLDIR)/info.html): Ditto. | |
2648 * Makefile ($(HTMLDIR)/standards.html): Ditto. | |
2649 * Makefile ($(HTMLDIR)/term.html): Ditto. | |
2650 * Makefile ($(HTMLDIR)/termcap.html): Ditto. | |
2651 * Makefile ($(HTMLDIR)/texinfo.html): Ditto. | |
2652 * Makefile ($(HTMLDIR)/widget.html): Ditto. | |
2653 * Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto. | |
2654 Produce unsplit output for website also, copy photos to HTMLDIR. | |
2655 * Makefile ($(HTMLDIR)/xemacs.html): Ditto. | |
2656 * Makefile ($(HTMLDIR)/lispref.html): Ditto. | |
2657 * Makefile ($(HTMLDIR)/internals.html): Ditto. | |
2658 * Makefile ($(HTMLDIR)/new-users-guide.html): Ditto. | |
2659 * xemacs-faq.texi (Q1.3.1): Fix broken image links in HTML output. | |
2660 | |
2406 | 2661 2004-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
2662 | |
2663 * internals/internals.texi (Better Rendering Support -- | |
2664 Configuration with the Interim Patches): | |
2665 Add documentation of X resources, especially for GUI elements. | |
2666 (Better Rendering Support -- Implementation): | |
2667 More comments about specification and design issues. | |
2668 (Better Rendering Support -- Current Status): | |
2669 New subsubsection "Bugs Reported in sjt-xft". | |
2670 | |
2405 | 2671 2004-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
2672 | |
2673 * internals/internals.texi (Future Work -- Better Rendering Support): | |
2674 New node. | |
2865 | 2675 (Top): |
2405 | 2676 (Future Work): |
2677 (Future Work -- Lisp Engine Replacement): | |
2678 Add pointers to new node. | |
2679 | |
2393 | 2680 2004-11-16 Ben Wing <ben@xemacs.org> |
2681 | |
2682 * internals/internals.texi (Top): | |
2683 * internals/internals.texi (Introduction): | |
2684 * internals/internals.texi (Authorship of XEmacs): | |
2685 * internals/internals.texi (A History of Emacs): | |
2686 * internals/internals.texi (Through Version 18): | |
2687 * internals/internals.texi (Epoch): | |
2688 * internals/internals.texi (Lucid Emacs): | |
2689 * internals/internals.texi (GNU Emacs 19): | |
2690 * internals/internals.texi (GNU Emacs 20): | |
2691 * internals/internals.texi (XEmacs): | |
2692 * internals/internals.texi (The XEmacs Split): | |
2693 * internals/internals.texi (Build-Time Dependencies): | |
2694 * internals/internals.texi (Low-Level Modules): | |
2695 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
2696 * internals/internals.texi (Rules When Writing New C Code): | |
2697 * internals/internals.texi (Introduction to Writing C Code): | |
2698 * internals/internals.texi (Writing New Modules): | |
2699 * internals/internals.texi (Working with Lisp Objects): | |
2700 * internals/internals.texi (Writing Lisp Primitives): | |
2701 * internals/internals.texi (Adding Global Lisp Variables): | |
2702 * internals/internals.texi (Writing Macros): | |
2703 * internals/internals.texi (Proper Use of Unsigned Types): | |
2704 * internals/internals.texi (Major Textual Changes): | |
2705 * internals/internals.texi (Great Integral Type Renaming): | |
2706 * internals/internals.texi (Text/Char Type Renaming): | |
2707 * internals/internals.texi (Debugging and Testing): | |
2708 * internals/internals.texi (Modules for Regression Testing): | |
2709 * internals/internals.texi (Merging a Branch into the Trunk): | |
2710 * internals/internals.texi (XEmacs from the Inside): | |
2711 * internals/internals.texi (Basic Types): | |
2712 * internals/internals.texi (Low-Level Allocation): | |
2713 * internals/internals.texi (Basic Heap Allocation): | |
2714 * internals/internals.texi (Stack Allocation): | |
2715 * internals/internals.texi (Dynamic Arrays): | |
2716 * internals/internals.texi (Allocation by Blocks): | |
2717 * internals/internals.texi (Modules for Allocation): | |
2718 * internals/internals.texi (Critical Redisplay Sections): | |
2719 * internals/internals.texi (Control-G (Quit) Checking): | |
2720 * internals/internals.texi (Future Work Discussion): | |
2721 * internals/internals.texi (Discussion -- Garbage Collection): | |
2722 * internals/internals.texi (Discussion -- Pure Space): | |
2723 * internals/internals.texi (Discussion -- Hashtable-Based Marking and Cleanup): | |
2724 * internals/internals.texi (Discussion -- The Anti-Cons): | |
2725 * internals/internals.texi (Discussion -- Glyphs): | |
2726 * internals/internals.texi (Discussion -- Dialog Boxes): | |
2727 * internals/internals.texi (Discussion -- Multilingual Issues): | |
2728 * internals/internals.texi (Discussion -- Instantiators and Generic Property Accessors): | |
2729 * internals/internals.texi (image-instance-property): New. | |
2730 * internals/internals.texi (set-image-instance-property): New. | |
2731 * internals/internals.texi (Discussion -- Switching to C++): | |
2732 * internals/internals.texi (Discussion -- Windows External Widget): | |
2733 | |
2734 Add sections on Basic Types and Low-Level Allocation. Move module | |
2735 docs here. Incorporate dynamic array and blocktype docs from | |
2736 source. | |
2737 | |
2738 Add info on beta releases up to present. | |
2739 | |
2740 Redo chapter on "Rules When Writing New C Code", grouping stuff | |
2741 together properly. Put "Major Textual Changes" under this | |
2742 chapter. Incorporate etc/CODING-STANDARDS. | |
2743 | |
2744 Add discussion sections on "Instantiators and Generic Property | |
2745 Accessors" and "Switching to C++". Fill out discussion on garbage | |
2746 collection. | |
2747 | |
2748 Incorporate backtraces showing crashes due to problems with | |
2749 redisplay-critical-section protection. | |
2750 | |
2367 | 2751 2004-11-04 Ben Wing <ben@xemacs.org> |
2752 | |
2753 * lispref/mule.texi (CCL Syntax): | |
2754 * lispref/mule.texi (INT-OR-CHAR): New. | |
2755 * lispref/mule.texi (CCL Statements): | |
2756 Update CCL docs. | |
2757 | |
2758 2004-11-04 Ben Wing <ben@xemacs.org> | |
2759 | |
2760 * internals/internals.texi (Top): | |
2761 * internals/internals.texi (NOTE): New. | |
2762 * internals/internals.texi (list-to-texinfo): New. | |
2763 * internals/internals.texi (remove-spacing): New. | |
2764 * internals/internals.texi (table-to-texinfo): New. | |
2765 * internals/internals.texi (convert-text-to-texinfo): New. | |
2766 * internals/internals.texi ('make-future): New. | |
2767 * internals/internals.texi ('make-discussion): New. | |
2768 * internals/internals.texi ('make-old-future): New. | |
2769 * internals/internals.texi ('make-section): New. | |
2770 * internals/internals.texi ('make-subsection): New. | |
2771 * internals/internals.texi (Introduction): | |
2772 * internals/internals.texi (divisions): New. | |
2773 * internals/internals.texi (Authorship of XEmacs): | |
2774 * internals/internals.texi (XEmacs): | |
2775 * internals/internals.texi (The XEmacs Split): | |
2776 * internals/internals.texi (Author): New. | |
2777 * internals/internals.texi (XEmacs from the Outside): | |
2778 * internals/internals.texi (The Lisp Language): | |
2779 * internals/internals.texi (XEmacs from the Perspective of Building): | |
2780 * internals/internals.texi (Build-Time Dependencies): | |
2781 * internals/internals.texi (The Modules of XEmacs): | |
2782 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
2783 * internals/internals.texi (ways): Removed. | |
2784 * internals/internals.texi (Low-Level Modules): | |
2785 * internals/internals.texi (Basic Lisp Modules): | |
2786 * internals/internals.texi (Modules for Standard Editing Operations): | |
2787 * internals/internals.texi (files): Removed. | |
2788 * internals/internals.texi (Modules for Interfacing with the File System): | |
2789 * internals/internals.texi (some_variable): Removed. | |
2790 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
2791 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
2792 * internals/internals.texi (character): Removed. | |
2793 * internals/internals.texi (Major Textual Changes): | |
2794 * internals/internals.texi (Great Integral Type Renaming): | |
2795 * internals/internals.texi (commands): Removed. | |
2796 * internals/internals.texi (Text/Char Type Renaming): | |
2797 * internals/internals.texi (pattern): Removed. | |
2798 * internals/internals.texi (Rules When Writing New C Code): | |
2799 * internals/internals.texi (A Reader's Guide to XEmacs Coding Conventions): | |
2800 * internals/internals.texi (General Coding Rules): | |
2801 * internals/internals.texi (examples): Removed. | |
2802 * internals/internals.texi (Object-Oriented Techniques for C): | |
2803 * internals/internals.texi (Writing Lisp Primitives): | |
2804 * internals/internals.texi (Writing Good Comments): | |
2805 * internals/internals.texi (Adding Global Lisp Variables): | |
2806 * internals/internals.texi (Writing Macros): | |
2807 * internals/internals.texi (Proper Use of Unsigned Types): | |
2808 * internals/internals.texi (Techniques for XEmacs Developers): | |
2809 * internals/internals.texi (Regression Testing XEmacs): | |
2810 * internals/internals.texi (How to Regression-Test): | |
2811 * internals/internals.texi (Modules for Regression Testing): | |
2812 * internals/internals.texi (CVS Techniques): | |
2813 * internals/internals.texi (Merging a Branch into the Trunk): | |
2814 * internals/internals.texi (XEmacs from the Inside): | |
2815 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
2816 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
2817 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
2818 * internals/internals.texi (Introduction to Allocation): | |
2819 * internals/internals.texi (Garbage Collection): | |
2820 * internals/internals.texi (GCPROing): | |
2821 * internals/internals.texi (Garbage Collection - Step by Step): | |
2822 * internals/internals.texi (Invocation): | |
2823 * internals/internals.texi (garbage_collect_1): | |
2824 * internals/internals.texi (mark_object): | |
2825 * internals/internals.texi (gc_sweep): | |
2826 * internals/internals.texi (sweep_lcrecords_1): | |
2827 * internals/internals.texi (compact_string_chars): | |
2828 * internals/internals.texi (sweep_strings): | |
2829 * internals/internals.texi (sweep_bit_vectors_1): | |
2830 * internals/internals.texi (Integers and Characters): | |
2831 * internals/internals.texi (Allocation from Frob Blocks): | |
2832 * internals/internals.texi (lrecords): | |
2833 * internals/internals.texi (Low-level allocation): | |
2834 * internals/internals.texi (Cons): | |
2835 * internals/internals.texi (Vector): | |
2836 * internals/internals.texi (Bit Vector): | |
2837 * internals/internals.texi (Symbol): | |
2838 * internals/internals.texi (Marker): | |
2839 * internals/internals.texi (String): | |
2840 * internals/internals.texi (Compiled Function): | |
2841 * internals/internals.texi (The Lisp Reader and Compiler): | |
2842 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
2843 * internals/internals.texi (Evaluation): | |
2844 * internals/internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
2845 * internals/internals.texi (Simple Special Forms): | |
2846 * internals/internals.texi (Catch and Throw): | |
2847 * internals/internals.texi (Error Trapping): | |
2848 * internals/internals.texi (Symbols and Variables): | |
2849 * internals/internals.texi (Introduction to Symbols): | |
2850 * internals/internals.texi (Obarrays): | |
2851 * internals/internals.texi (Symbol Values): | |
2852 * internals/internals.texi (Buffers): | |
2853 * internals/internals.texi (Introduction to Buffers): | |
2854 * internals/internals.texi (Buffer Lists): | |
2855 * internals/internals.texi (Markers and Extents): | |
2856 * internals/internals.texi (The Buffer Object): | |
2857 * internals/internals.texi (Text): | |
2858 * internals/internals.texi (The Text in a Buffer): | |
2859 * internals/internals.texi (Ibytes and Ichars): | |
2860 * internals/internals.texi (Byte-Char Position Conversion): | |
2861 * internals/internals.texi (Searching and Matching): | |
2862 * internals/internals.texi (Multilingual Support): | |
2863 * internals/internals.texi (Introduction to Multilingual Issues #1): | |
2864 * internals/internals.texi (Introduction to Multilingual Issues #2): | |
2865 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
2866 * internals/internals.texi (Introduction to Multilingual Issues #4): | |
2867 * internals/internals.texi (Character Sets): | |
2868 * internals/internals.texi (Encodings): | |
2869 * internals/internals.texi (Japanese EUC (Extended Unix Code)): | |
2870 * internals/internals.texi (JIS7): | |
2871 * internals/internals.texi (Internal Mule Encodings): | |
2872 * internals/internals.texi (Internal String Encoding): | |
2873 * internals/internals.texi (Internal Character Encoding): | |
2874 * internals/internals.texi (Byte/Character Types; Buffer Positions; Other Typedefs): | |
2875 * internals/internals.texi (Byte Types): | |
2876 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
2877 * internals/internals.texi (Buffer Positions): | |
2878 * internals/internals.texi (Other Typedefs): | |
2879 * internals/internals.texi (Usage of the Various Representations): | |
2880 * internals/internals.texi (Working With the Various Representations): | |
2881 * internals/internals.texi (Internal Text API's): | |
2882 * internals/internals.texi (Basic internal-format API's): | |
2883 * internals/internals.texi (The DFC API): | |
2884 * internals/internals.texi (The Eistring API): | |
2885 * internals/internals.texi (Coding for Mule): | |
2886 * internals/internals.texi (Character-Related Data Types): | |
2887 * internals/internals.texi (Working With Character and Byte Positions): | |
2888 * internals/internals.texi (Conversion to and from External Data): | |
2889 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
2890 * internals/internals.texi (An Example of Mule-Aware Code): | |
2891 * internals/internals.texi (Mule-izing Code): | |
2892 * internals/internals.texi (CCL): | |
2893 * internals/internals.texi (Microsoft Windows-Related Multilingual Issues): | |
2894 * internals/internals.texi (Microsoft Documentation): | |
2895 * internals/internals.texi (Locales): | |
2896 * internals/internals.texi (More about code pages): | |
2897 * internals/internals.texi (More about locales): | |
2898 * internals/internals.texi (Unicode support under Windows): | |
2899 * internals/internals.texi (The golden rules of writing Unicode-safe code): | |
2900 * internals/internals.texi (The format of the locale in setlocale()): | |
2901 * internals/internals.texi (Random other Windows I18N docs): | |
2902 * internals/internals.texi (Modules for Internationalization): | |
2903 * internals/internals.texi (Consoles; Devices; Frames; Windows): | |
2904 * internals/internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
2905 * internals/internals.texi (Point): | |
2906 * internals/internals.texi (Window Hierarchy): | |
2907 * internals/internals.texi (The Window Object): | |
2908 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
2909 * internals/internals.texi (The Redisplay Mechanism): | |
2910 * internals/internals.texi (Critical Redisplay Sections): | |
2911 * internals/internals.texi (Line Start Cache): | |
2912 * internals/internals.texi (Redisplay Piece by Piece): | |
2913 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
2914 * internals/internals.texi (Modules for other Display-Related Lisp Objects): | |
2915 * internals/internals.texi (Extents): | |
2916 * internals/internals.texi (Introduction to Extents): | |
2917 * internals/internals.texi (Extent Ordering): | |
2918 * internals/internals.texi (Format of the Extent Info): | |
2919 * internals/internals.texi (Zero-Length Extents): | |
2920 * internals/internals.texi (Mathematics of Extent Ordering): | |
2921 * internals/internals.texi (Extent Fragments): | |
2922 * internals/internals.texi (Faces): | |
2923 * internals/internals.texi (Glyphs): | |
2924 * internals/internals.texi (Specifiers): | |
2925 * internals/internals.texi (Menus): | |
2926 * internals/internals.texi (Events and the Event Loop): | |
2927 * internals/internals.texi (Introduction to Events): | |
2928 * internals/internals.texi (Main Loop): | |
2929 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
2930 * internals/internals.texi (Specifics About the Emacs Event): | |
2931 * internals/internals.texi (Event Queues): | |
2932 * internals/internals.texi (Event Stream Callback Routines): | |
2933 * internals/internals.texi (Other Event Loop Functions): | |
2934 * internals/internals.texi (Stream Pairs): | |
2935 * internals/internals.texi (Converting Events): | |
2936 * internals/internals.texi (Dispatching Events; The Command Builder): | |
2937 * internals/internals.texi (Focus Handling): | |
2938 * internals/internals.texi (Editor-Level Control Flow Modules): | |
2939 * internals/internals.texi (Asynchronous Events; Quit Checking): | |
2940 * internals/internals.texi (Signal Handling): | |
2941 * internals/internals.texi (Control-G (Quit) Checking): | |
2942 * internals/internals.texi (Profiling): | |
2943 * internals/internals.texi (Asynchronous Timeouts): | |
2944 * internals/internals.texi (Exiting): | |
2945 * internals/internals.texi (Lstreams): | |
2946 * internals/internals.texi (Creating an Lstream): | |
2947 * internals/internals.texi (Lstream Types): | |
2948 * internals/internals.texi (Lstream Functions): | |
2949 * internals/internals.texi (Lstream Methods): | |
2950 * internals/internals.texi (Subprocesses): | |
2951 * internals/internals.texi (Interface to MS Windows): | |
2952 * internals/internals.texi (Different kinds of Windows environments): | |
2953 * internals/internals.texi (Windows Build Flags): | |
2954 * internals/internals.texi (Windows I18N Introduction): | |
2955 * internals/internals.texi (Modules for Interfacing with MS Windows): | |
2956 * internals/internals.texi (Interface to the X Window System): | |
2957 * internals/internals.texi (Lucid Widget Library): | |
2958 * internals/internals.texi (Generic Widget Interface): | |
2959 * internals/internals.texi (dependencies): New. | |
2960 * internals/internals.texi (routines): New. | |
2961 * internals/internals.texi (Summary): New. | |
2962 * internals/internals.texi (Scrollbars): | |
2963 * internals/internals.texi (Menubars): | |
2964 * internals/internals.texi (Checkboxes and Radio Buttons): | |
2965 * internals/internals.texi (Progress Bars): | |
2966 * internals/internals.texi (Tab Controls): | |
2967 * internals/internals.texi (Modules for Interfacing with X Windows): | |
2968 * internals/internals.texi (Dumping): | |
2969 * internals/internals.texi (Dumping Justification): | |
2970 * internals/internals.texi (Overview): | |
2971 * internals/internals.texi (Data descriptions): | |
2972 * internals/internals.texi (Dumping phase): | |
2973 * internals/internals.texi (Object inventory): | |
2974 * internals/internals.texi (Address allocation): | |
2975 * internals/internals.texi (The header): | |
2976 * internals/internals.texi (Data dumping): | |
2977 * internals/internals.texi (Pointers dumping): | |
2978 * internals/internals.texi (Reloading phase): | |
2979 * internals/internals.texi (Abstract): New. | |
2980 * internals/internals.texi (Remaining issues): | |
2981 * internals/internals.texi (Future Work): | |
2982 * internals/internals.texi (Future Work -- General Suggestions): | |
2983 * internals/internals.texi (Future Work -- Elisp Compatibility Package): | |
2984 * internals/internals.texi (Future Work -- Drag-n-Drop): | |
2985 * internals/internals.texi (Future Work -- Standard Interface for Enabling Extensions): | |
2986 * internals/internals.texi (Future Work -- Better Initialization File Scheme): | |
2987 * internals/internals.texi (Future Work -- Keyword Parameters): | |
2988 * internals/internals.texi (Future Work -- Property Interface Changes): | |
2989 * internals/internals.texi (Future Work -- Toolbars): | |
2990 * internals/internals.texi (Future Work -- Easier Toolbar Customization): | |
2991 * internals/internals.texi (Future Work -- Toolbar Interface Changes): | |
2992 * internals/internals.texi (Future Work -- Menu API Changes): | |
2993 * internals/internals.texi (Future Work -- Removal of Misc-User Event Type): | |
2994 * internals/internals.texi (Future Work -- Mouse Pointer): | |
2995 * internals/internals.texi (Future Work -- Abstracted Mouse Pointer Interface): | |
2996 * internals/internals.texi (Future Work -- Busy Pointer): | |
2997 * internals/internals.texi (Future Work -- Extents): | |
2998 * internals/internals.texi (Future Work -- Everything should obey duplicable extents): | |
2999 * internals/internals.texi (Future Work -- Version Number and Development Tree Organization): | |
3000 * internals/internals.texi (Future Work -- Improvements to the @code{xemacs.org} Website): | |
3001 * internals/internals.texi (Future Work -- Keybindings): | |
3002 * internals/internals.texi (Future Work -- Keybinding Schemes): | |
3003 * internals/internals.texi (Future Work -- Better Support for Windows Style Key Bindings): | |
3004 * internals/internals.texi (Future Work -- Misc Key Binding Ideas): | |
3005 * internals/internals.texi (Future Work -- Byte Code Snippets): | |
3006 * internals/internals.texi (Future Work -- Autodetection): | |
3007 * internals/internals.texi (Future Work -- Conversion Error Detection): | |
3008 * internals/internals.texi (Future Work -- Unicode): | |
3009 * internals/internals.texi (Future Work -- BIDI Support): | |
3010 * internals/internals.texi (Future Work -- Localized Text/Messages): | |
3011 * internals/internals.texi (Future Work -- Lisp Stream API): | |
3012 * internals/internals.texi (Future Work -- Multiple Values): | |
3013 * internals/internals.texi (Future Work -- Macros): | |
3014 * internals/internals.texi (Future Work -- Specifiers): | |
3015 * internals/internals.texi (Future Work -- Display Tables): | |
3016 * internals/internals.texi (Future Work -- Making Elisp Function Calls Faster): | |
3017 * internals/internals.texi (Future Work -- Lisp Engine Replacement): | |
3018 * internals/internals.texi (Future Work -- Lisp Engine Discussion): | |
3019 * internals/internals.texi (Future Work -- Lisp Engine Replacement -- Implementation): | |
3020 * internals/internals.texi (Future Work -- Startup File Modification by Packages): | |
3021 * internals/internals.texi (Future Work Discussion): | |
3022 * internals/internals.texi (Discussion -- garbage collection): | |
3023 * internals/internals.texi (Discussion -- glyphs): | |
3024 * internals/internals.texi (Discussion -- Dialog Boxes): | |
3025 * internals/internals.texi (Discussion -- Multilingual Issues): | |
3026 * internals/internals.texi (Discussion -- Windows External Widget): | |
3027 * internals/internals.texi (Discussion -- Packages): | |
3028 * internals/internals.texi (Discussion -- Distribution Layout): | |
3029 * internals/internals.texi (Old Future Work): | |
3030 * internals/internals.texi (Old Future Work -- A Portable Unexec Replacement): | |
3031 * internals/internals.texi (backtrace): New. | |
3032 * internals/internals.texi (Old Future Work -- Indirect Buffers): | |
3033 * internals/internals.texi (emacs-lisp): New. | |
3034 * internals/internals.texi (Old Future Work -- Improvements in support for non-ASCII (European) keysyms under X): | |
3035 * internals/internals.texi (Newsgroups): New. | |
3036 * internals/internals.texi (Old Future Work -- RTF Clipboard Support): | |
3037 * internals/internals.texi (own-selection): New. | |
3038 * internals/internals.texi (Old Future Work -- xemacs.org Mailing Address Changes): | |
3039 * internals/internals.texi (COMMENT): New. | |
3040 * internals/internals.texi (Old Future Work -- Lisp callbacks from critical areas of the C code): | |
3041 * internals/internals.texi (Now): Removed. | |
3042 * internals/internals.texi (Proof): Removed. | |
3043 * internals/internals.texi (Note): Removed. | |
3044 * internals/internals.texi (Date): New. | |
3045 * internals/internals.texi (ben): Removed. | |
3046 * internals/internals.texi (importance): New. | |
3047 * internals/internals.texi (From): New. | |
3048 Major work on internals manual. Rearranged many chapters so as to | |
3049 lie in coherent divisions. | |
3050 Add tons of stuff to Future Work, Old Future Work, Discussions. | |
3051 Add lots of stuff to Mule section (Multilingual ...). | |
3052 Remove index.texi, incorporate into internals.texi. | |
3053 Section on early history and an introduction. | |
3054 Section on XEmacs split. Lots of new MS Windows docs | |
3055 Mostly recently: Windows-I18N docs. Lots if new I18N docs. | |
3056 Loads of other stuff. | |
3057 | |
2362 | 3058 2004-11-02 Ben Wing <ben@xemacs.org> |
3059 | |
3060 * internals/index.texi: | |
3061 Deleted. Incorporated into internals.texi. Having a separate | |
3062 index file messes up texinfo-master-menu. | |
2865 | 3063 |
2362 | 3064 * internals/internals.texi: |
3065 * internals/internals.texi (Top): | |
3066 * internals/internals.texi (Introduction): | |
3067 * internals/internals.texi (Authorship of XEmacs): | |
3068 * internals/internals.texi (A History of Emacs): | |
3069 * internals/internals.texi (Through Version 18): | |
3070 * internals/internals.texi (Lucid Emacs): | |
3071 * internals/internals.texi (GNU Emacs 19): | |
3072 * internals/internals.texi (GNU Emacs 20): | |
3073 * internals/internals.texi (XEmacs): | |
3074 * internals/internals.texi (XEmacs From the Outside): | |
3075 * internals/internals.texi (The Lisp Language): | |
3076 * internals/internals.texi (XEmacs From the Perspective of Building): | |
3077 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
3078 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
3079 * internals/internals.texi (Major Textual Changes): | |
3080 * internals/internals.texi (Great Integral Type Renaming): | |
3081 * internals/internals.texi (Text/Char Type Renaming): | |
3082 * internals/internals.texi (Rules When Writing New C Code): | |
3083 * internals/internals.texi (A Reader's Guide to XEmacs Coding Conventions): | |
3084 * internals/internals.texi (General Coding Rules): | |
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 (The Modules of XEmacs): | |
3098 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
3099 * internals/internals.texi (Low-Level Modules): | |
3100 * internals/internals.texi (Basic Lisp Modules): | |
3101 * internals/internals.texi (Modules for Standard Editing Operations): | |
3102 * internals/internals.texi (Modules for Interfacing with the File System): | |
3103 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
3104 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
3105 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
3106 * internals/internals.texi (Introduction to Allocation): | |
3107 * internals/internals.texi (Garbage Collection): | |
3108 * internals/internals.texi (GCPROing): | |
3109 * internals/internals.texi (Garbage Collection - Step by Step): | |
3110 * internals/internals.texi (Invocation): | |
3111 * internals/internals.texi (garbage_collect_1): | |
3112 * internals/internals.texi (mark_object): | |
3113 * internals/internals.texi (gc_sweep): | |
3114 * internals/internals.texi (sweep_lcrecords_1): | |
3115 * internals/internals.texi (compact_string_chars): | |
3116 * internals/internals.texi (Integers and Characters): | |
3117 * internals/internals.texi (Allocation from Frob Blocks): | |
3118 * internals/internals.texi (lrecords): | |
3119 * internals/internals.texi (Low-level allocation): | |
3120 * internals/internals.texi (Cons): | |
3121 * internals/internals.texi (Vector): | |
3122 * internals/internals.texi (Symbol): | |
3123 * internals/internals.texi (Marker): | |
3124 * internals/internals.texi (String): | |
3125 * internals/internals.texi (Dumping): | |
3126 * internals/internals.texi (Dumping Justification): | |
3127 * internals/internals.texi (Overview): | |
3128 * internals/internals.texi (Data descriptions): | |
3129 * internals/internals.texi (Dumping phase): | |
3130 * internals/internals.texi (Object inventory): | |
3131 * internals/internals.texi (Address allocation): | |
3132 * internals/internals.texi (The header): | |
3133 * internals/internals.texi (Data dumping): | |
3134 * internals/internals.texi (Pointers dumping): | |
3135 * internals/internals.texi (Reloading phase): | |
3136 * internals/internals.texi (Remaining issues): | |
3137 * internals/internals.texi (Events and the Event Loop): | |
3138 * internals/internals.texi (Introduction to Events): | |
3139 * internals/internals.texi (Main Loop): | |
3140 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
3141 * internals/internals.texi (Specifics About the Emacs Event): | |
3142 * internals/internals.texi (Event Queues): | |
3143 * internals/internals.texi (Event Stream Callback Routines): | |
3144 * internals/internals.texi (IMPORTANT): New. | |
3145 * internals/internals.texi (Other Event Loop Functions): | |
3146 * internals/internals.texi (Stream Pairs): | |
3147 * internals/internals.texi (Converting Events): | |
3148 * internals/internals.texi (Dispatching Events; The Command Builder): | |
3149 * internals/internals.texi (Focus Handling): | |
3150 * internals/internals.texi (Editor-Level Control Flow Modules): | |
3151 * internals/internals.texi (Asynchronous Events; Quit Checking): | |
3152 * internals/internals.texi (Control-G (Quit) Checking): | |
3153 * internals/internals.texi (completely): New. | |
3154 * internals/internals.texi (Profiling): | |
3155 * internals/internals.texi (Exiting): | |
3156 * internals/internals.texi (BEWARE): New. | |
3157 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
3158 * internals/internals.texi (Evaluation): | |
3159 * internals/internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
3160 * internals/internals.texi (Simple Special Forms): | |
3161 * internals/internals.texi (Catch and Throw): | |
3162 * internals/internals.texi (Introduction to Symbols): | |
3163 * internals/internals.texi (Obarrays): | |
3164 * internals/internals.texi (Symbol Values): | |
3165 * internals/internals.texi (Buffers): | |
3166 * internals/internals.texi (Introduction to Buffers): | |
3167 * internals/internals.texi (Buffer Lists): | |
3168 * internals/internals.texi (Markers and Extents): | |
3169 * internals/internals.texi (The Buffer Object): | |
3170 * internals/internals.texi (Text): | |
3171 * internals/internals.texi (The Text in a Buffer): | |
3172 * internals/internals.texi (Ibytes and Ichars): | |
3173 * internals/internals.texi (Byte-Char Position Conversion): | |
3174 * internals/internals.texi (Searching and Matching): | |
3175 * internals/internals.texi (Multilingual Support): | |
3176 * internals/internals.texi (Introduction to Multilingual Issues #1): | |
3177 * internals/internals.texi (Introduction to Multilingual Issues #2): | |
3178 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
3179 * internals/internals.texi (Introduction to Multilingual Issues #4): | |
3180 * internals/internals.texi (Character Sets): | |
3181 * internals/internals.texi (Encodings): | |
3182 * internals/internals.texi (Japanese EUC (Extended Unix Code)): | |
3183 * internals/internals.texi (JIS7): | |
3184 * internals/internals.texi (Internal Mule Encodings): | |
3185 * internals/internals.texi (Internal String Encoding): | |
3186 * internals/internals.texi (Internal Character Encoding): | |
3187 * internals/internals.texi (Byte/Character Types; Buffer Positions; Other Typedefs): | |
3188 * internals/internals.texi (Byte Types): | |
3189 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
3190 * internals/internals.texi (prefixes): New. | |
3191 * internals/internals.texi (C): New. | |
3192 * internals/internals.texi (U): New. | |
3193 * internals/internals.texi (S): New. | |
3194 * internals/internals.texi (Specifically): New. | |
3195 * internals/internals.texi (Buffer Positions): | |
3196 * internals/internals.texi (Other Typedefs): | |
3197 * internals/internals.texi (Usage of the Various Representations): | |
3198 * internals/internals.texi (Working With the Various Representations): | |
3199 * internals/internals.texi (Internal Text API's): | |
3200 * internals/internals.texi (Basic internal-format API's): | |
3201 * internals/internals.texi (The DFC API): | |
3202 * internals/internals.texi (The Eistring API): | |
3203 * internals/internals.texi (Coding for Mule): | |
3204 * internals/internals.texi (Character-Related Data Types): | |
3205 * internals/internals.texi (Working With Character and Byte Positions): | |
3206 * internals/internals.texi (Conversion to and from External Data): | |
3207 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
3208 * internals/internals.texi (An Example of Mule-Aware Code): | |
3209 * internals/internals.texi (Mule-izing Code): | |
3210 * internals/internals.texi (CCL): | |
3211 * internals/internals.texi (Modules for Internationalization): | |
3212 * internals/internals.texi (The Lisp Reader and Compiler): | |
3213 * internals/internals.texi (Lstreams): | |
3214 * internals/internals.texi (Creating an Lstream): | |
3215 * internals/internals.texi (Lstream Types): | |
3216 * internals/internals.texi (Lstream Functions): | |
3217 * internals/internals.texi (Lstream Methods): | |
3218 * internals/internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
3219 * internals/internals.texi (Point): | |
3220 * internals/internals.texi (Window Hierarchy): | |
3221 * internals/internals.texi (The Window Object): | |
3222 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
3223 * internals/internals.texi (The Redisplay Mechanism): | |
3224 * internals/internals.texi (Critical Redisplay Sections): | |
3225 * internals/internals.texi (Line Start Cache): | |
3226 * internals/internals.texi (Redisplay Piece by Piece): | |
3227 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
3228 * internals/internals.texi (Modules for other Display-Related Lisp Objects): | |
3229 * internals/internals.texi (Introduction to Extents): | |
3230 * internals/internals.texi (Extent Ordering): | |
3231 * internals/internals.texi (Format of the Extent Info): | |
3232 * internals/internals.texi (Zero-Length Extents): | |
3233 * internals/internals.texi (Mathematics of Extent Ordering): | |
3234 * internals/internals.texi (Extent Fragments): | |
3235 * internals/internals.texi (Faces): | |
3236 * internals/internals.texi (Glyphs): | |
3237 * internals/internals.texi (Specifiers): | |
3238 * internals/internals.texi (Menus): | |
3239 * internals/internals.texi (Subprocesses): | |
3240 * internals/internals.texi (Interface to MS Windows): | |
3241 * internals/internals.texi (Different kinds of Windows environments): | |
3242 * internals/internals.texi (Windows Build Flags): | |
3243 * internals/internals.texi (Windows I18N Introduction): | |
3244 * internals/internals.texi (Modules for Interfacing with MS Windows): | |
3245 * internals/internals.texi (Interface to the X Window System): | |
3246 * internals/internals.texi (Generic Widget Interface): | |
3247 * internals/internals.texi (Scrollbars): | |
3248 * internals/internals.texi (Menubars): | |
3249 * internals/internals.texi (Checkboxes and Radio Buttons): | |
3250 * internals/internals.texi (Modules for Interfacing with X Windows): | |
3251 * internals/internals.texi (Future Work): | |
3252 * internals/internals.texi (Future Work -- Elisp Compatibility Package): | |
3253 * internals/internals.texi (Future Work -- Drag-n-Drop): | |
3254 * internals/internals.texi (Future Work -- Standard Interface for Enabling Extensions): | |
3255 * internals/internals.texi (Future Work -- Better Initialization File Scheme): | |
3256 * internals/internals.texi (Future Work -- Keyword Parameters): | |
3257 * internals/internals.texi (Future Work -- Property Interface Changes): | |
3258 * internals/internals.texi (Future Work -- Easier Toolbar Customization): | |
3259 * internals/internals.texi (Future Work -- Toolbar Interface Changes): | |
3260 * internals/internals.texi (Future Work -- Menu API Changes): | |
3261 * internals/internals.texi (Future Work -- Removal of Misc-User Event Type): | |
3262 * internals/internals.texi (Future Work -- Mouse Pointer): | |
3263 * internals/internals.texi (Future Work -- Abstracted Mouse Pointer Interface): | |
3264 * internals/internals.texi (Future Work -- Busy Pointer): | |
3265 * internals/internals.texi (Future Work -- Extents): | |
3266 * internals/internals.texi (Future Work -- Everything should obey duplicable extents): | |
3267 * internals/internals.texi (Future Work -- Version Number and Development Tree Organization): | |
3268 * internals/internals.texi (Future Work -- Improvements to the @code{xemacs.org} Website): | |
3269 * internals/internals.texi (Future Work -- Keybinding Schemes): | |
3270 * internals/internals.texi (Future Work -- Better Support for Windows Style Key Bindings): | |
3271 * internals/internals.texi (Future Work -- Misc Key Binding Ideas): | |
3272 * internals/internals.texi (Future Work -- Byte Code Snippets): | |
3273 * internals/internals.texi (Future Work -- Autodetection): | |
3274 * internals/internals.texi (Future Work -- Conversion Error Detection): | |
3275 * internals/internals.texi (Future Work -- BIDI Support): | |
3276 * internals/internals.texi (Future Work -- Localized Text/Messages): | |
3277 * internals/internals.texi (freeze): New. | |
3278 * internals/internals.texi (fail-safe): New. | |
3279 * internals/internals.texi (like): New. | |
3280 * internals/internals.texi (user): New. | |
3281 * internals/internals.texi (ben): New. | |
3282 * internals/internals.texi ('type): New. | |
3283 * internals/internals.texi (NOTE): New. | |
3284 * internals/internals.texi (ILLEGIBLE): New. | |
3285 * internals/internals.texi (language): New. | |
3286 * internals/internals.texi (preprocessing): New. | |
3287 * internals/internals.texi (Subject): New. | |
3288 * internals/internals.texi (http): New. | |
3289 * internals/internals.texi (Now): Removed. | |
3290 * internals/internals.texi (wrong): New. | |
3291 * internals/internals.texi (Proof): Removed. | |
3292 | |
3293 Add bunches and bunches and bunches and bunches of stuff, taken | |
3294 from documentation floating around in various places -- text.c, | |
3295 file-coding.c, other .c and .h files, stuff that I wrote up for an | |
3296 old XEmacs contract, proposals written up in the process of an | |
3297 e-mail discussion, etc. Fix up some mistakes, esp. in CCL. Extra | |
3298 crap from CCL, duplicated with Lispref, removed. Sections on Old | |
3299 Future Work and Future Work Discussion added. | |
3300 | |
3301 Bunches of other work. Add bunches of documentation taken from the | |
3302 source code. Fixup various places to use @strong{}, @code{}, | |
3303 @file{}. Create new Text chapter, split off from Buffers and | |
3304 Textual Representation. Create new chapter for MS Windows, mostly | |
3305 written from scratch. Consolidate all Mule info under | |
3306 "Multilingual Support". Break up chapter on modules and move some | |
3307 parts to the sections discussing the modules, for consolidation | |
3308 purposes. Add a big cross-reference table for all the modules to | |
3309 where they're discussed (or not). New chapter Asynchronous | |
3310 Events; Quit Checking. (Taken from various parts of the code.) New | |
3311 Introduction. New section on Focus Handling (from the code). | |
3312 | |
3313 NOTE that in the process, I discovered that we essentially have | |
3314 FOUR redundant introductions to Mule issues! Someone really needs | |
3315 to go through and clean them up and integrate them (sjt?). | |
3316 | |
2355 | 3317 2003-07-18 Alexey Mahotkin <alexm@hsys.msk.ru> |
3318 | |
3319 * lispref/windows.texi (Basic Windows): Fix typo. | |
3320 | |
2346 | 3321 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
3322 | |
3323 * XEmacs 21.5.18 "chestnut" is released. | |
3324 | |
2297 | 3325 2003-11-02 Stephen J. Turnbull <stephen@xemacs.org> |
3326 | |
3327 * lispref/control.texi (Examples of Catch): Mention use of a cons | |
3328 as a catch tag. | |
3329 | |
3330 2004-07-20 Stephen J. Turnbull <stephen@xemacs.org> | |
3331 | |
3332 * lispref/glyphs.texi (Image Instantiator Formats): Add a few | |
3333 words about the tab control widget. | |
3334 | |
2289 | 3335 2004-05-14 Darryl Okahata <darrylo@xemacs.org> |
3336 | |
3337 * lispref/windows.texi. Added documentation for the functions, | |
3338 ``current-pixel-row'' and ``current-pixel-column''. | |
3339 | |
2269 | 3340 2004-09-13 Jerry James <james@xemacs.org> |
3341 | |
3342 * internals/internals.texi (Modules for Interfacing with the | |
3343 Operating System): The code formerly in callproc.c is now | |
3344 implemented in Lisp in process.el. | |
3345 | |
2256 | 3346 2004-08-30 Jerry James <james@xemacs.org> |
3347 | |
3348 * lispref/text.texi: Document text fields. | |
3349 | |
2255 | 3350 2004-09-08 Stephen J. Turnbull <stephen@xemacs.org> |
3351 | |
3352 * lispref/searching.texi (Syntax of Regexps): Add example of use | |
3353 of shy groups in variable subexpression, correct rumor that there | |
2297 | 3354 may be substantial performance gain. Document double-digit back- |
3355 references. | |
2255 | 3356 |
2214 | 3357 2004-08-13 Stephen J. Turnbull <stephen@xemacs.org> |
3358 | |
2215 | 3359 * xemacs/help.texi (Misc Help): Info-goto-emacs-key-command-node |
3360 to function index. Document Info-goto-emacs-command-node. | |
3361 | |
2214 | 3362 * lispref/positions.texi (Text Lines): makeinfo doesn't like Note:. |
3363 | |
2182 | 3364 2004-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
3365 | |
3366 * lispref/glyphs.texi: Complete reorganization, some content updated. | |
3367 * lispref/lispref.texi (Top): Update menu to match. | |
3368 * lispref/extents.texi (Extent Properties): Update xref. | |
3369 | |
3370 2004-06-29 Stephen J. Turnbull <stephen@xemacs.org> | |
3371 | |
3372 * internals/internals.texi (Modules for Other Aspects of the Lisp | |
3373 Interpreter and Object System): Add description of Sextword syntax | |
3374 class (now obsolete). | |
3375 | |
3376 2004-06-20 Stephen J. Turnbull <stephen@xemacs.org> | |
3377 | |
3378 * internals/internals.texi (Techniques for XEmacs Developers): Be | |
3379 specific when discussing optimization. | |
2255 | 3380 (Techniques for XEmacs Developers): Fragments that are meaningless |
2182 | 3381 by themselves or contain placeholders should be @samp, not @code. |
3382 (Modules for Internationalization): Add description of mule-coding.c | |
3383 and further deprecate mule.c. | |
3384 (Modules for Regression Testing): Add {tag,weak}-tests.el to list. | |
3385 | |
2164 | 3386 2004-07-05 Stephen J. Turnbull <stephen@xemacs.org> |
3387 | |
3388 * xemacs-faq.texi (Q3.10.2): Mention that `pending-delete' is in | |
3389 the "pc" package. | |
3390 | |
2141 | 3391 2004-06-15 Stephen J. Turnbull <stephen@xemacs.org> |
3392 | |
3393 * lispref/specifiers.texi (Specifier Instancing): Add "neon | |
3394 modeline" hack as an example. Thanks to Giacomo Boffi. | |
3395 | |
2135 | 3396 2004-06-07 Jerry James <james@xemacs.org> |
3397 | |
3398 * lispref/modes.texi (Major Modes): Document -mode functions, and | |
3399 the use of a nil argument to defined-derived mode. | |
3400 * lispref/modes.texi (Major Mode Conventions): Describe the use of | |
3401 delay-mode-hooks and define-derived-mode. | |
3402 * lispref/modes.texi (Derived Modes): Warn against the use of | |
3403 interactive specs in derived mode definitions. | |
3404 * lispref/modes.texi (Hooks): Document run-mode-hooks, | |
3405 delay-mode-hooks, run-hook-with-args, | |
3406 run-hook-with-args-until-failure, and0 | |
3407 run-hook-with-args-until-success. | |
3408 | |
2127 | 3409 2004-06-14 Stephen J. Turnbull <stephen@xemacs.org> |
3410 | |
3411 * lispref/glyphs.texi (Creating Glyphs): Improve discussion, fix a | |
3412 couple of typos. | |
3413 | |
3414 * lispref/faces.texi (Face Properties): Background pixmaps | |
3415 can be used on GTK and MS Windows. | |
3416 (Face Convenience Functions): Cross-reference glyph interface. | |
3417 Background pixmap is an image specifier, not a glyph. | |
3418 | |
2091 | 3419 2004-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
3420 | |
3421 * lispref/numbers.texi (Comparison of Numbers): Clarify bigfloat eql. | |
3422 (Predicates on Numbers): Fix thinko in description of `bigfloatp'. | |
3423 | |
2090 | 3424 2004-05-10 Stephen J. Turnbull <stephen@xemacs.org> |
3425 | |
3426 * lispref/numbers.texi (Numbers): Remove reference to "fixed- | |
3427 precision rationals," and fix description of floating-point | |
3428 contagion. | |
3429 (Integer Basics, Float Basics): Fix typos. | |
3430 (Canonicalization and Contagion): Complete rewrite. | |
3431 (Predicates on Numbers): Add fixnump, bignump, ratiop, rationalp, | |
3432 bigfloatp, floatingp, realp, oddp and evenp. | |
3433 (Rational Basics): Add numerator and denominator. | |
3434 (Random Numbers): Fix description of range, and add paranoid | |
3435 comment about how unpredictable `(random t)' is. | |
3436 (Canonicalization and Contagion): Renamed from Contagion and | |
3437 Canonicalization. | |
3438 (The Bignum Extension): Fix it in menu. | |
3439 | |
2069 | 3440 2004-05-10 Stephen J. Turnbull <stephen@xemacs.org> |
3441 | |
3442 * internals/internals.texi (Object-Oriented Techniques for C): | |
3443 Remove reference to "encouraging port to C++". | |
3444 | |
3445 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> | |
2033 | 3446 |
3447 * lispref/numbers.texi (The Bignum Extension): Mention the feature | |
3448 symbols provided. | |
3449 | |
2069 | 3450 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> |
2032 | 3451 |
3452 * lispref/numbers.texi (Rational Basics): There's a reason why | |
3453 this node is named "Rational" and not "Ratio" in the menu.... | |
3454 | |
2028 | 3455 2004-04-18 Stephen J. Turnbull <stephen@xemacs.org> |
3456 | |
3457 * internals/internals.texi (Object-Oriented Techniques in XEmacs): | |
3458 New node. | |
3459 (The XEmacs Object System (Abstractly Speaking)): | |
3460 Reorder the list of objects somewhat. | |
3461 Add brief descriptions of the arbitrary-precision number types. | |
3462 (Writing Good Comments): Slight revision, recommend @xemacs alias. | |
3463 (Character-Related Data Types): Add a few comments re Unicode. | |
3464 (Working With Character and Byte Positions): Ditto. | |
3465 (General Guidelines for Writing Mule-Aware Code): Query. | |
3466 (Conversion to and from External Data): Ditto. | |
3467 (Techniques for XEmacs Developers): Typo. | |
3468 (Modules for Regression Testing): Add an xref. | |
3469 (Overview): Note that dump file is now inside the executable. | |
3470 (Remaining issues): Mention ExecShield vs. pdumper. | |
3471 (Searching and Matching): Mention UTF-8 wrt Mule. | |
3472 | |
3473 2004-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
3474 | |
3475 * widget.texi (Introduction): Update historical references a bit. | |
3476 Fix many typos and grammatical problems. | |
3477 (User Interface): Fix typo. | |
3478 | |
2069 | 3479 2004-04-09 Stephen J. Turnbull <stephen@xemacs.org> |
2028 | 3480 |
3481 * lispref/numbers.texi (Numbers): Describe bignums, ratios, and | |
3482 bigfloats briefly. | |
3483 (Integer Basics): We've had 31-bit integers for a while. Fix the | |
3484 statement of minimum available precision and the examples. | |
3485 Document most-positive-fixnum and most-negative-fixnum. Add a | |
3486 pointer to the node "The Bignum Extension". | |
3487 (Float Basics): Document most-positive-float, most-negative-float, | |
3488 least-positive-float, least-positive-normalized-float, | |
3489 least-negative-float, and least-negative-normalized-float. Add a | |
3490 pointer to the node "The Bignum Extension". | |
3491 (Comparison of Numbers): Update for bignums. | |
3492 | |
3493 (The Bignum Extension): | |
3494 (Bignum Basics): | |
3495 (Ratio Basics): | |
3496 (Bigfloat Basics): | |
3497 (Contagion and Canonicalization): | |
3498 (Compatibility Issues): | |
3499 New nodes. | |
3500 | |
3501 * lispref/lispref.texi (Top): | |
2865 | 3502 * lispref/numbers.texi (Numbers): |
2028 | 3503 Add nodes "Ratio Basics" and "The Bignum Extension" to menus. |
3504 | |
3505 2004-01-26 Stephen J. Turnbull <stephen@xemacs.org> | |
3506 | |
3507 * lispref/specifiers.texi: Update FSF copyright. | |
3508 (Specifier Compatibility Notes): New node. | |
3509 | |
3510 * lispref/glyphs.texi (Glyph Properties): Fix typo. | |
3511 (Glyphs): | |
3512 (Native GUI Widgets): New node. | |
3513 | |
3514 * lispref/gutter.texi (Gutter Descriptor Format): Node deleted. | |
3515 (Gutter): | |
2865 | 3516 (Gutter Intro): |
3517 (Creating Gutter): | |
3518 (Specifying a Gutter): | |
2028 | 3519 Pluralize node name to Creating Gutters. |
3520 (Creating Gutters): Improve explanation of gutter descriptors. | |
3521 (Other Gutter Variables): Remove extraneous text. | |
3522 (Common Gutter Widgets): In lieu of real documentation, at least | |
3523 point to gutter-items.el. | |
3524 | |
2069 | 3525 2004-04-06 Stephen J. Turnbull <stephen@xemacs.org> |
1987 | 3526 |
3527 Lightly revised from <psr7v1j039.fsf@diannao.ittc.ku.edu>. | |
3528 Thanks to Jerry James <james@xemacs.org>. | |
3529 | |
3530 * xemacs-faq.texi (Top, Miscellaneous): In menus, renumber Section | |
3531 5.3 and Q5.3.1-12 as 5.4.x, and add Mathematics and Q5.3.1-4 as | |
3532 replacement section 5.3. | |
3533 (Q5.3.1, Q5.3.2, Q5.3.3, Q5.3.4) New FAQs for bignums. | |
3534 (Q5.2.1, Q8.0.1) Add @unnumberedsec headings. | |
3535 (Q6.4.1) Correct @unnumberedsec heading. | |
3536 | |
1964 | 3537 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
3538 | |
3539 * XEmacs 21.5.17 "chayote" is released. | |
3540 | |
1920 | 3541 2004-02-20 Stephen J. Turnbull <stephen@xemacs.org> |
3542 | |
3543 * internals/internals.texi (GCPROing): Mention `Fsignal'. Clarify | |
3544 that references, not the objects themselves, are what is marked. | |
3545 | |
1882 | 3546 2004-01-26 Stephen J. Turnbull <stephen@xemacs.org> |
3547 | |
3548 * lispref/specifiers.texi (Copyright): Update. | |
3549 | |
3550 (Creating Specifiers): Correct more instances of subject-verb | |
3551 disagreement. | |
3552 | |
1877 | 3553 2004-01-24 Stephen J. Turnbull <stephen@xemacs.org> |
3554 | |
3555 * lispref/specifiers.texi (Specifier Instancing Functions): Fix | |
3556 typos, thanks to Ilpo Nyyssönen. | |
3557 | |
1875 | 3558 2004-01-23 Stephen J. Turnbull <stephen@xemacs.org> |
3559 | |
3560 * lispref/specifiers.texi (Specifier Instancing Functions): Add | |
3561 documentation of `specifier-matching-instance'. | |
3562 (Introduction to Specifiers): Fix typos. | |
3563 (Simple Specifier Usage): Cross-reference Toolbar Intro. | |
3564 (Creating Specifiers): | |
3565 (Specifier Instancing Functions): | |
3566 (Adding Specifications): | |
3567 Various improvements. Deprecate set-specifier a bit more. | |
3568 | |
1869 | 3569 2004-01-20 Stephen J. Turnbull <stephen@xemacs.org> |
3570 | |
3571 * lispref/specifiers.texi (Specifier Examples): Add new example, | |
3572 pluralize node name and section title. | |
3573 (Specifiers): Pluralize "Specifier Examples" in menu. | |
3574 | |
3575 * lispref/lispref.texi (Top): Pluralize "Specifier Examples" in menu. | |
3576 | |
3577 2003-11-04 Stephen J. Turnbull <stephen@xemacs.org> | |
3578 | |
3579 * xemacs-faq.texi: Fix Tony Rossini's address. | |
3580 | |
1833 | 3581 2003-12-15 Steve Youngs <sryoungs@bigpond.net.au> |
3582 | |
3583 * lispref/customize.texi (Defining New Types): New node. | |
3584 From Per Abrahamsen <abraham@dina.kvl.dk> | |
3585 | |
1755 | 3586 2003-10-16 Ilya N. Golubev <gin@mo.msk.ru> |
3587 | |
3588 * lispref/tips.texi (Comment Tips): Typo fix. | |
3589 | |
1738 | 3590 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> |
3591 | |
3592 * new-users-guide/custom2.texi (Init File): | |
3593 | |
3594 Fix up erroneous uses of @var instead of @code for the names of | |
3595 particular variables in programming languages. | |
3596 | |
3597 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> | |
3598 | |
3599 * custom.texi (The Init File): | |
3600 * xemacs-faq.texi (Q2.1.3): | |
3601 (Q2.1.5): | |
3602 | |
3603 * internals/internals.texi (Modules for Internationalization): | |
3604 | |
3605 * lispref/display.texi (Beeping): | |
3606 * lispref/ldap.texi (Encoder/Decoder Functions): | |
3607 * lispref/markers.texi (The Mark): | |
3608 (The Region): | |
3609 * lispref/menus.texi (Menu Accelerator Functions): | |
3610 * lispref/numbers.texi (Math Functions): | |
3611 * lispref/packaging.texi (package-info.in): | |
3612 (Makefile): | |
3613 (Local.rules File): | |
3614 * lispref/postgresql.texi (libpq Lisp Symbols and DataTypes): | |
3615 (libpq Lisp Variables): | |
3616 (Synchronous Interface Functions): | |
3617 (Other libpq Functions): | |
3618 | |
3619 * new-users-guide/custom2.texi (Init File): | |
3620 (Setting Variables): | |
3621 * new-users-guide/files.texi (File Names): | |
3622 (Saving Files): | |
3623 * new-users-guide/search.texi (Search and Replace): | |
3624 | |
3625 * xemacs/custom.texi (X Resources): | |
3626 | |
3627 Fix up erroneous uses of @var instead of @code for the names of | |
3628 particular variables in programming languages. | |
3629 | |
3630 2003-10-10 Stephen J. Turnbull <stephen@xemacs.org> | |
3631 | |
3632 * Makefile: Remove old package and redundant cruft. | |
3633 | |
1734 | 3634 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> |
3635 | |
3636 * lispref/mule.texi (Charset Property Functions): Charset registry | |
3637 can be set. | |
3638 (Predefined Charsets): Add registry to Vietnamese charset names. | |
2865 | 3639 |
1716 | 3640 2003-09-26 Steve Youngs <youngs@xemacs.org> |
3641 | |
3642 * XEmacs 21.5.16 "celeriac" is released. | |
3643 | |
1710 | 3644 2003-09-22 Adrian Aichner <adrian@xemacs.org> |
3645 | |
3646 * lispref/backups.texi (Reverting): Fix the PRINTED-MANUAL-TITLE | |
3647 argument for a cross reference to "The XEmacs User's Manual". | |
3648 | |
1709 | 3649 2003-08-15 Stephen J. Turnbull <stephen@xemacs.org> |
3650 | |
3651 * internals/internals.texi: Update copyright notice. | |
3652 (GCPROing): Add missing period. | |
3653 (Adding Global Lisp Variables): general.c -> general-slots.h. | |
3654 (A Reader's Guide to XEmacs Coding Conventions): New node. | |
3655 | |
1703 | 3656 2003-09-20 Ilya N. Golubev <gin@mo.msk.ru> |
3657 | |
3658 * xemacs/mini.texi (Minibuffer): Add customizing message display | |
3659 reference. | |
3660 * lispref/display.texi (Customizing Message Display): New, | |
3661 describe `redisplay-echo-area-function', | |
3662 `undisplay-echo-area-function', `minibuffer-echo-wait-function'. | |
3663 (The Echo Area): Add menu. | |
3664 | |
1702 | 3665 2003-09-19 Sandra Wambold <wambold@xemacs.org> |
3666 | |
3667 * Makefile: add targets to produce PDF files | |
3668 | |
1665 | 3669 2003-09-03 Steve Youngs <youngs@xemacs.org> |
3670 | |
3671 * XEmacs 21.5.15 "celery" is released. | |
3672 | |
1648 | 3673 2003-08-28 Steve Youngs <youngs@xemacs.org> |
3674 | |
3675 * xemacs-faq.texi (Q2.0.2): Rewrite, mentioning the correct way to | |
3676 remove a package. | |
3677 (Q3.8.2): big-menubar is in the edit-utils package. | |
3678 (Q4.3.2): Add a comment about not needing TM for things like Gnus, | |
3679 MH-E and VM. | |
3680 (Q5.3.3): State correct location of ps-print.el. | |
3681 | |
3682 * xemacs/packages.texi (Packages): Remove "Creating Packages" menu | |
3683 entry. | |
3684 (Package Terminology): Whitespace clean up. | |
3685 (Installing Packages): Whitespace clean up and add some @code | |
2865 | 3686 formatters. |
1648 | 3687 Re-organise the menu so that installation via PUI is first and |
3688 Sumo is last. | |
3689 (Automatically): mule-base is no longer a requirement for using | |
3690 PUI. | |
3691 Mention optionally requiring mailcrypt. | |
3692 (Note): Removed. | |
3693 (Manually): Move to below the PUI installation method. | |
3694 (Sumo): Move to below the manual installation method. | |
3695 (Which Packages): Add mailcrypt. | |
3696 (Building Packages): Remove duplicated stuff that is in | |
3697 lispref/packaging.texi, xref to it instead. | |
3698 (Local.rules File): xref to the appropriate node in | |
2865 | 3699 lispref/packaging.texi. |
1648 | 3700 (Available Packages): Update to current reality. |
3701 (all): Removed. | |
3702 (srckit): Removed. | |
3703 (binkit): Removed. | |
2865 | 3704 |
1648 | 3705 * xemacs/reading.texi (Reading Mail): Mention Gnus and MEW. |
3706 | |
3707 * new-users-guide/custom2.texi (Init File): big-menubar.el is in | |
3708 the edit-utils package. | |
3709 | |
3710 * lispref/packaging.texi (Packaging): | |
3711 (The User View): | |
3712 (The Library Maintainer View): | |
3713 (Infrastructure): | |
3714 (Control Files): | |
3715 (Obtaining): | |
3716 (The Package Release Engineer View): | |
3717 (Package Terminology): | |
3718 (Building Packages): | |
3719 (Makefile Targets): | |
3720 (packages): New. | |
3721 (Local.rules File): | |
3722 (XEMACS_PACKAGES): Removed. | |
3723 (XEMACS_INSTALLED_PACKAGES_ROOT): New. | |
3724 (NONMULE_PACKAGES): New. | |
3725 (EXCLUDES): New. | |
3726 (Creating Packages): | |
3727 (BATCH): New. | |
3728 (VERSION): Removed. | |
3729 (AUTHOR_VERSION): Removed. | |
3730 (MAINTAINER): Removed. | |
3731 (PACKAGE): Removed. | |
3732 (PKG_TYPE): Removed. | |
3733 (REQUIRES): Removed. | |
3734 (CATEGORY): Removed. | |
3735 (ELS): Removed. | |
3736 (ELCS): Removed. | |
3737 (all): Removed. | |
3738 (srckit): Removed. | |
3739 (binkit): Removed. | |
3740 (are): New. | |
3741 (STANDARD_DOCS): New. | |
3742 (ELCS_1_DEST): New. | |
3743 (example): New. | |
3744 (PACKAGE_SUPPRESS): New. | |
3745 (EXPLICIT_DOCS): New. | |
3746 (DATA_DEST): New. | |
3747 (Documenting Packages): | |
3748 | |
3749 Not quite a total rewrite, but a fairly thorough audit | |
3750 nonetheless. | |
3751 | |
1620 | 3752 2003-07-31 René Kyllingstad <listmailxemacs@kyllingstad.com> |
3753 | |
3754 * lispref/display.texi (Invisible Text): | |
3755 mention line-move-ignore-invisible. | |
3756 * lispref/extents.texi (Extent Properties): | |
3757 end-glyph will still be displayed when invisible is set. | |
3758 * lispref/extents.texi (Extents and Events): | |
3759 only begin-glyph is highlighted. | |
3760 | |
1616 | 3761 2003-08-12 Stephen J. Turnbull <stephen@xemacs.org> |
3762 | |
3763 * xemacs-faq.texi (Q1.3.8): Fix typo, note errorneous recognition. | |
3764 | |
1613 | 3765 2003-08-05 Stephen J. Turnbull <stephen@xemacs.org> |
3766 | |
3767 * lispref/packaging.texi (Creating Packages): | |
3768 * xemacs/packages.texi (Creating Packages): | |
3769 Style guideline for package-info.in description. | |
3770 | |
1554 | 3771 2003-06-30 Vin Shelton <acs@xemacs.org> |
3772 | |
3773 * lispref/lists.texi (List-related Predicates): Add @end defun. | |
3774 | |
1549 | 3775 2003-06-30 Stephen J. Turnbull <stephen@xemacs.org> |
3776 | |
3777 * xemacs-faq.texi (Q3.2.2): Fix typo. | |
3778 | |
3779 2003-06-20 Stephen J. Turnbull <stephen@xemacs.org> | |
3780 | |
3781 * lispref/objects.texi (Character Type): Document ?\x00 read | |
3782 syntax and range limitations on ?\000 and ?\x00 read syntaxes. | |
3783 | |
3784 2003-06-16 Stephen J. Turnbull <stephen@xemacs.org> | |
3785 | |
3786 * lispref/lists.texi (List-related Predicates): Document | |
3787 `true-list-p', and reference it from `listp'. | |
3788 | |
1510 | 3789 2003-06-01 Steve Youngs <youngs@xemacs.org> |
3790 | |
3791 * XEmacs 21.5.14 "cassava" is released. | |
3792 | |
1496 | 3793 2003-05-22 Stephen J. Turnbull <stephen@xemacs.org> |
3794 | |
3795 * internals/internals.texi (Searching and Matching): New node. | |
3796 | |
1495 | 3797 2003-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
3798 | |
3799 * xemacs-faq.texi (detail menu): Reformat "Current Events" caption. | |
3800 (Legacy Versions): New section. | |
3801 (Q8.0.1): New question. | |
3802 | |
3803 2003-05-16 Stephen J. Turnbull <stephen@xemacs.org> | |
3804 | |
3805 * lispref/searching.texi (Regexp Search): Update split-string for | |
3806 new specification. | |
3807 | |
3808 * lispref/strings.texi (Creating Strings): Xref split-string | |
3809 (this is where GNU Emacs documents it). | |
3810 | |
1473 | 3811 2003-05-10 Steve Youngs <youngs@xemacs.org> |
3812 | |
3813 * XEmacs 21.5.13 "cauliflower" is released. | |
3814 | |
1468 | 3815 2003-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
3816 | |
3817 * lispref/searching.texi (Match Data): Failed match preserves data. | |
3818 | |
1441 | 3819 2003-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
3820 | |
3821 * xemacs-faq.texi (Q6.4.3): New: auxiliary programs for Windows. | |
3822 | |
1431 | 3823 2003-04-24 Steve Youngs <youngs@xemacs.org> |
3824 | |
3825 * XEmacs 21.5.12 "carrot" is released. | |
3826 | |
1389 | 3827 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org> |
3828 | |
3829 * xemacs/frame.texi (XEmacs under X): | |
3830 * xemacs-faq.texi: | |
3831 Global substitute .Xresources for .Xdefaults. | |
1386 | 3832 |
3833 * xemacs-faq.texi (Q3.2.2): `default' is also a face. | |
3834 (Q3.2.2, Q3.8.4): Describe appropriate use of `fontSet' in Mule. | |
3835 Suggested by Janis Dzerins <jonis@dir.lv>. | |
3836 | |
1366 | 3837 2003-03-20 Steve Youngs <youngs@xemacs.org> |
3838 | |
3839 * xemacs/packages.texi (Automatically): Refer to | |
3840 'pui-set-local-package-get-directory' instead of | |
2865 | 3841 'pui-add-install-directory'. |
1366 | 3842 Remove comment about PGP not being intergrated into PUI. |
3843 Document balloon-help in PUI. | |
3844 Add heading "Keeping Packages Up To Date". | |
3845 (Building Packages): makeinfo 4.2 is required. | |
3846 | |
1362 | 3847 2003-03-18 Stephen J. Turnbull <stephen@xemacs.org> |
3848 | |
3849 * xemacs/frame.texi (Gutter Basics): Describe common options for | |
3850 buffers tab control. | |
3851 | |
1353 | 3852 2003-03-11 Adrian Aichner <adrian@xemacs.org> |
3853 | |
3854 * cl.texi: Change incorrect references to GNU where XEmacs is | |
3855 appropriate. | |
3856 | |
1347 | 3857 2003-03-09 Ben Wing <ben@xemacs.org> |
3858 | |
3859 * widget.texi (Defining New Widgets): | |
3860 Fix Turnbull typos. | |
3861 | |
1339 | 3862 2003-03-02 Stephen Turnbull <stephen@xemacs.org> |
3863 | |
3864 * widget.texi (Defining New Widgets): | |
3865 Document `widget-create-child', `widget-create-child-and-convert', | |
3866 and `widget-create-child-value'. Document the `:copy' method. | |
3867 Improve discussion of the `:convert-widget' method. | |
3868 | |
1333 | 3869 2003-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
3870 | |
3871 * internals/internals.texi (XEmacs From the Perspective of Building): | |
3872 Fix typo. | |
3873 (Build-Time Dependencies): New node. | |
3874 | |
1307 | 3875 2003-02-16 Steve Youngs <youngs@xemacs.org> |
3876 | |
3877 * XEmacs 21.5.11 "cabbage" is released. | |
3878 | |
1288 | 3879 2003-02-11 Adrian Aichner <adrian@xemacs.org> |
3880 | |
3881 * lispref/backups.texi (Auto-Saving): Fix auto-save xref to user | |
3882 manual. | |
3883 | |
1263 | 3884 2003-02-06 Stephen J. Turnbull <stephen@xemacs.org> |
3885 | |
3886 * internals/internals.texi (Top): | |
3887 (Buffers and Textual Representation): | |
3888 Fix up white space in menu. | |
3889 (Character-Related Data Types): | |
3890 (Conversion to and from External Data): | |
3891 (Format of the Extent Info): | |
3892 Pedantic grammatical nits. | |
3893 | |
1261 | 3894 2003-02-05 Ben Wing <ben@xemacs.org> |
3895 | |
3896 * lispref/mule.texi (Internationalization Terminology): | |
3897 Lots of Mule rewriting. | |
3898 | |
3899 2003-02-05 Ben Wing <ben@xemacs.org> | |
3900 | |
3901 * internals/internals.texi (Top): | |
3902 * internals/internals.texi (Coding for Mule): | |
3903 * internals/internals.texi (Character-Related Data Types): | |
3904 * internals/internals.texi (Working With Character and Byte Positions): | |
3905 * internals/internals.texi (Conversion to and from External Data): | |
3906 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
3907 * internals/internals.texi (An Example of Mule-Aware Code): | |
3908 * internals/internals.texi (Mule-izing Code): | |
3909 * internals/internals.texi (help): New. | |
3910 * internals/internals.texi (Buffers and Textual Representation): | |
3911 * internals/internals.texi (The Text in a Buffer): | |
3912 * internals/internals.texi (Markers and Extents): | |
3913 * internals/internals.texi (MULE Character Sets and Encodings): | |
3914 * internals/internals.texi (Lstream Functions): | |
3915 * internals/internals.texi (Lstream Methods): | |
3916 * internals/internals.texi (Format of the Extent Info): | |
3917 * internals/internals.texi (Mathematics of Extent Ordering): | |
3918 Major fixup. Correct for new names of Bytebpos, Ichar, etc. and | |
3919 lots of Mule rewriting. | |
3920 | |
1258 | 3921 2003-02-05 Stephen J. Turnbull <stephen@xemacs.org> |
3922 | |
3923 * xemacs/startup.texi (Startup Paths): Clarification of package | |
3924 hierarchy structure. | |
3925 | |
3926 * xemacs-faq.texi (Q2.0.13, Q2.0.14, Q2.1.24, Q2.1.25): Not NEW. | |
3927 (Q2.1.15): Stylistic changes for clarity. | |
3928 | |
1251 | 3929 2003-02-03 Steve Youngs <youngs@xemacs.org> |
3930 | |
3931 * xemacs/packages.texi (Local.rules File): Update to reflect Ben's | |
3932 recent dabble into the packages. | |
3933 | |
1187 | 3934 2003-01-04 Steve Youngs <youngs@xemacs.org> |
3935 | |
3936 * XEmacs 21.5.10 "burdock" is released. | |
3937 | |
1188 | 3938 2003-01-04 Steve Youngs <youngs@xemacs.org> |
3939 | |
3940 * lispref/mule.texi (Charset Unification): Menu item "Internals" | |
3941 should be "Unification Internals". | |
3942 | |
1183 | 3943 2003-01-03 Stephen J. Turnbull <stephen@xemacs.org> |
3944 | |
3945 * xemacs/startup.texi (Startup Paths): Hierarchy, not package, layout. | |
3946 | |
3947 2003-01-03 Stephen J. Turnbull <stephen@xemacs.org> | |
3948 | |
3949 * xemacs-faq.texi: Debugging FAQ improvements from Ben Wing. | |
3950 (Q2.0.6): Mention union type bugs. | |
3951 (Q2.1.1): Debugging HOWTO improvements. | |
3952 (Q2.1.15): Decoding Lisp objects in the debugger. | |
3953 | |
3954 * widget.texi (Widget Internals): New node. | |
3955 (Top): Add menu item for it. | |
3956 | |
3957 * xemacs/xemacs.texi (Top): Better short description of Mule in | |
3958 menu. Mule submenu. | |
3959 | |
3960 Charset unification docs. What a concept---commit docs first! | |
3961 | |
3962 * lispref/mule.texi (MULE): Add Unification and Tables menu entries. | |
3963 (Unicode Support): Fixup next node. | |
3964 (Charset Unification): | |
3965 (Overview): | |
3966 (Usage): | |
3967 (Basic Functionality): | |
3968 (Interactive Usage): | |
3969 (Configuration): | |
3970 (Theory of Operation): | |
3971 (What Unification Cannot Do for You): | |
3972 (Unification Internals): | |
3973 (Charsets and Coding Systems): | |
3974 New nodes. | |
3975 | |
3976 * xemacs/mule.texi (Mule): Menu items for Unification and Tables. | |
3977 (Recognize Coding): | |
3978 (Specify Coding): | |
3979 Fixup next and previous pointers. | |
3980 (Unification): | |
3981 (Unification Overview): | |
3982 (Unification Usage): | |
3983 (Unification Configuration): | |
3984 (Unification FAQs): | |
3985 (Unification Theory): | |
3986 (What Unification Cannot Do for You): | |
3987 (Charsets and Coding Systems): | |
3988 New nodes. | |
3989 | |
3990 2002-12-17 Stephen Turnbull <stephen@xemacs.org> | |
3991 | |
3992 * widget.texi (Widget Wishlist): Typo. | |
3993 (Defining New Widgets): s/widget-define/define-widget/g. | |
3994 | |
3995 2002-12-27 Stephen J. Turnbull <stephen@xemacs.org> | |
3996 | |
3997 * internals/internals.texi (Regression Testing XEmacs): Hints for | |
3998 test design. | |
3999 | |
1143 | 4000 2002-10-29 Ville Skyttä <scop@xemacs.org> |
4001 | |
4002 * xemacs-faq.texi (Top): | |
4003 The canonical location for FAQ on the website is /FAQ/. | |
4004 | |
1142 | 4005 2002-11-12 Ilya N. Golubev <gin@mo.msk.ru> |
4006 | |
4007 * xemacs/custom.texi (Face Customization): | |
4008 (Faces): | |
4009 Document face-frob-from-locale-first variable. | |
4010 | |
1138 | 4011 2002-12-03 Didier Verna <didier@xemacs.org> |
4012 | |
4013 * xemacs-faq.texi (Customization): add missing menu entry for Q3.2.7. | |
4014 | |
4015 2002-12-03 Didier Verna <didier@xemacs.org> | |
4016 | |
4017 * lispref/specifiers.texi (Introduction to Specifiers): fix case | |
4018 spelling of `Buffer-Local Variables' crossref. | |
4019 | |
1137 | 4020 2002-12-03 Didier Verna <didier@xemacs.org> |
4021 | |
4022 * xemacs/custom.texi (Faces): document | |
4023 `set-face-background-pixmap-file'. | |
4024 | |
4025 2002-12-03 Didier Verna <didier@xemacs.org> | |
4026 | |
4027 * lispref/faces.texi (Face Convenience Functions): ditto. | |
4028 * lispref/glyphs.texi (Creating Glyphs): reference it. | |
4029 | |
1135 | 4030 2002-11-29 Stephen Turnbull <stephen@xemacs.org> |
4031 | |
4032 * lispref/specifiers.texi (Simple Specifier Usage): New node. | |
4033 (Specifiers): Adjust node pointers. | |
4034 (Simple Specifier Usage): Revise. Adjust node pointers. | |
4035 | |
4036 * lispref/toolbar.texi (Creating Toolbar): Xref specifier example. | |
4037 | |
4038 2002-10-20 Stephen Turnbull <stephen@xemacs.org> | |
4039 | |
4040 * xemacs-faq.texi (Q3.2.7): New FAQ on displaying non-ASCII. | |
4041 (Q3.5.7, Q1.3.3): Cross-reference it. | |
4042 | |
4043 2002-10-20 Stephen Turnbull <stephen@xemacs.org> | |
4044 | |
4045 * xemacs-faq.texi (Q2.1.1): Mention bug report commands. | |
4046 (Q2.0.9): Note how out-of-date the entry is. | |
4047 (Q1.3.1, Q1.3.2, Q1.3.3, Q1.3.4, Q1.3.5, Q1.3.6): Revise/update. | |
4048 (Q1.2.1): Fix typo. | |
4049 | |
4050 * internals/internals.texi (Regression Testing XEmacs): Thorough | |
4051 rewrite, documenting macros explicitly. | |
4052 | |
4053 2002-10-29 Stephen J. Turnbull <stephen@xemacs.org> | |
1103 | 4054 |
4055 * lispref/compile.texi (Compilation Options): New node. | |
4056 (Byte Compilation): Add it to menu. | |
4057 (Compilation Functions): Minor mods. | |
4058 (Docs and Compilation): | |
4059 (Dynamic Loading): | |
4060 Document some variable defaults. | |
4061 | |
1135 | 4062 2002-11-07 Stephen J. Turnbull <stephen@xemacs.org> |
1096 | 4063 |
4064 * internals/internals.texi (Low-Level Modules): Add urefs to Doug | |
4065 Lea's and Wolfram Gloger's home pages. | |
4066 | |
1135 | 4067 2002-10-18 Stephen J. Turnbull <stephen@xemacs.org> |
1058 | 4068 |
4069 * xemacs-faq.texi (Q2.0.16): New FAQ on "no cygXpm-noX" fatal error. | |
4070 (Q6.1.4): Document cygXpm-noX. | |
4071 | |
1030 | 4072 2002-10-04 Ville Skyttä <ville.skytta@xemacs.org> |
4073 | |
4074 * xemacs/packages.texi (Available Packages): Add fortran-modes, | |
4075 perl-modes, psgml-dtds, python-modes and ruby-modes. | |
4076 Some consistency tweaks. | |
4077 | |
1026 | 4078 2002-09-22 Ville Skyttä <ville.skytta@xemacs.org> |
4079 | |
4080 * lispref/variables.texi (add-to-list): Document the new | |
4081 (optional) append argument. | |
4082 | |
1024 | 4083 2002-09-20 Stephen J. Turnbull <stephen@xemacs.org> |
4084 | |
4085 * internals/internals.texi (Techniques for XEmacs Developers): | |
4086 More performance optimization hints. | |
4087 (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
4088 Describe syntax code internals. | |
4089 | |
4090 * lispref/syntax.texi (Syntax Basics): XEmacs "20" -> "20 and later". | |
4091 (Syntax Class Table): Deprecate SPC as whitespace designator. | |
4092 (Syntax Flags): Rewrite for `8-bit' comment syntax flags. | |
4093 | |
981 | 4094 2002-08-30 Steve Youngs <youngs@xemacs.org> |
4095 | |
4096 * XEmacs 21.5.9 "brussels sprouts" is released. | |
4097 | |
973 | 4098 2002-08-22 Stephen J. Turnbull <stephen@xemacs.org> |
4099 | |
4100 * internals/internals.texi (Regression Testing XEmacs): Document | |
4101 how to skip and warn about tests that depend on packages. | |
4102 | |
967 | 4103 2002-08-16 Stephen J. Turnbull <stephen@xemacs.org> |
1137 | 4104 |
967 | 4105 * internals/internals.texi (Regression Testing XEmacs): Fix typo. |
4106 | |
965 | 4107 2002-08-15 Stephen J. Turnbull <stephen@xemacs.org> |
1137 | 4108 |
965 | 4109 * internals/internals.texi (GCPROing): Add comment on GCPRO. |
4110 (Regression Testing XEmacs): New node. | |
4111 (Modules for Regression Testing): New node. | |
4112 | |
959 | 4113 2002-08-12 Simon Josefsson <jas@extundo.com> |
4114 | |
4115 * lispref/building.texi (Pure Storage): purecopy is a no-op. | |
4116 | |
955 | 4117 2002-08-08 Ville Skyttä <ville.skytta@xemacs.org> |
4118 | |
4119 * xemacs/packages.texi (Available Packages): Bring up to date. | |
4120 | |
947 | 4121 2002-08-02 Ville Skyttä <ville.skytta@xemacs.org> |
4122 | |
4123 * xemacs/packages.texi (Available Packages): | |
4124 Bring package list up to date, thanks also to Brian Palmer. | |
4125 | |
936 | 4126 2002-07-30 Ville Skyttä <ville.skytta@xemacs.org> |
4127 | |
4128 * term.texi (Input to the inferior): Fix term line/char mode | |
4129 switch keybindings. Kudos to Jacob P. Burckhardt. | |
4130 | |
4131 * xemacs/misc.texi (Term Mode): Ditto. | |
4132 | |
933 | 4133 2002-07-27 Steve Youngs <youngs@xemacs.org> |
4134 | |
4135 * XEmacs 21.5.8 "broccoli" is released. | |
4136 | |
918 | 4137 2002-07-06 Adrian Aichner <adrian@xemacs.org> |
4138 | |
4139 * new-users-guide/custom1.texi (Customizing key Bindings): Fix | |
4140 improper use of indef. art. "a". | |
4141 | |
4142 2002-07-06 Adrian Aichner <adrian@xemacs.org> | |
4143 | |
4144 * lispref/commands.texi (Peeking and Discarding): Ditto. | |
4145 * lispref/customize.texi (Type Keywords): Ditto. | |
4146 * lispref/dragndrop.texi (Drop Interface): Ditto. | |
4147 | |
4148 2002-07-06 Adrian Aichner <adrian@xemacs.org> | |
4149 | |
4150 * termcap.texi (Clearing): Ditto. | |
4151 * widget.texi (User Interface): Ditto. | |
4152 * widget.texi (Basic Types): Ditto. | |
4153 * widget.texi (group): Ditto. | |
4154 | |
901 | 4155 2002-07-05 Adrian Aichner <adrian@xemacs.org> |
4156 | |
4157 * xemacs/menus.texi (Edit Menu): Typo fixes for incorrect use of | |
4158 indef. art. "an". | |
4159 | |
4160 2002-07-05 Adrian Aichner <adrian@xemacs.org> | |
4161 | |
4162 * lispref/control.texi (Processing of Errors): Ditto. | |
4163 * lispref/mule.texi (ISO 2022): Ditto. | |
4164 * lispref/packaging.texi (Package Terminology): Ditto. | |
4165 * lispref/text.texi (Transformations): Ditto. | |
4166 | |
4167 2002-07-05 Adrian Aichner <adrian@xemacs.org> | |
4168 | |
4169 * termcap.texi (Naming): Ditto. | |
4170 * texinfo.texi (itemize): Ditto. | |
4171 * texinfo.texi (Tips): Ditto. | |
4172 * widget.texi (Introduction): Ditto. | |
4173 * widget.texi (group): Ditto. | |
4174 | |
894 | 4175 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
4176 | |
4177 * XEmacs 21.5.7 "broccoflower" is released. | |
4178 | |
892 | 4179 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
4180 | |
4181 * xemacs-faq.texi (Top, Customization, Q3.10.5, Q3.10.6): | |
4182 New "killing is slow" FAQ and link updates. | |
4183 | |
880 | 4184 2002-06-17 Jerry James <james@xemacs.org> |
4185 | |
4186 * emodules.texi (Loading other Modules): Describe why we do not | |
4187 use RTLD_GLOBAL. | |
4188 | |
873 | 4189 2002-06-20 Adrian Aichner <adrian@xemacs.org> |
4190 | |
4191 * xemacs/mule.texi (Language Environments): Typo fix suggested by | |
4192 Frank Schmitt. | |
4193 | |
871 | 4194 2002-06-11 Adrian Aichner <adrian@xemacs.org> |
4195 | |
4196 * xemacs-faq.texi (Q1.3.7): Update broken link to russian.el | |
4197 (found by linklint) with Google's help. | |
4198 | |
4199 2002-05-25 Adrian Aichner <adrian@xemacs.org> | |
4200 | |
4201 * xemacs/custom.texi (Syntax Entry): Deprecate ` ' in favor of `-'. | |
4202 | |
868 | 4203 2002-06-05 Ben Wing <ben@xemacs.org> |
4204 | |
4205 * internals/internals.texi (Top): | |
4206 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
4207 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
4208 * internals/internals.texi (Major Textual Changes): | |
4209 * internals/internals.texi (Great Integral Type Renaming): | |
4210 * internals/internals.texi (Text/Char Type Renaming): | |
4211 * internals/internals.texi (files): New. | |
4212 | |
863 | 4213 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org> |
4214 | |
4215 * custom.texi (The Init File): Rewrite completely. | |
4216 | |
4217 2002-03-19 Adrian Aichner <adrian@xemacs.org> | |
4218 | |
4219 * widget.texi (constants): Typo fix. | |
4220 | |
4221 2002-02-07 Stephen J. Turnbull <stephen@xemacs.org> | |
4222 | |
4223 * external-widget.texi (External Client Widget Internals): New node. | |
4224 | |
4225 2001-11-15 Darryl Okahata <darrylo@xemacs.org> | |
4226 | |
4227 * lispref/glyphs.texi: | |
4228 lispref/lispref.texi: Add examples of how to insert graphics into a | |
4229 buffer. | |
1137 | 4230 |
863 | 4231 2001-12-17 Stephen J. Turnbull <stephen@xemacs.org> |
4232 | |
4233 * xemacs/packages.texi (Packages): | |
4234 (Package Terminology): | |
4235 Carefully distinguish libraries and packages. | |
4236 (Package Terminology): | |
4237 More careful definitions of ``category'' and ``distribution.'' | |
4238 Use ``generic'' instead of ``normal'' (N.B. package tools use | |
4239 ``standard''.) | |
4240 (Installing Packages): | |
4241 Use @var to mark variable version strings, not @t or <>. | |
4242 (Sumo): | |
4243 Add disk space estimate when unpacked. | |
4244 | |
4245 2002-02-06 Stephen J. Turnbull <stephen@xemacs.org> | |
4246 | |
4247 * xemacs-faq.texi (Q1.3.8, Q1.3.9): Unicode support via Mule-UCS. | |
4248 | |
4249 2002-02-01 Steve Youngs <youngs@xemacs.org> | |
4250 | |
4251 * xemacs/packages.texi (Removing Packages): The interactive | |
4252 function is 'package-get-delete-package'. | |
4253 | |
4254 2001-11-27 Adrian Aichner <adrian@xemacs.org> | |
4255 | |
4256 * xemacs-faq.texi: Hyperlink fixes. | |
1137 | 4257 |
863 | 4258 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> |
4259 | |
4260 * xemacs-faq.texi (Q4.7.7): New FAQ on remote files. | |
4261 | |
4262 2002-01-24 Stephen J. Turnbull <stephen@xemacs.org> | |
4263 | |
4264 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
4265 | |
4266 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
4267 | |
4268 * xemacs/files.texi (Files): | |
4269 (File Names): | |
4270 Document remote file editing, refer to EFS and TRAMP. | |
4271 | |
861 | 4272 2002-05-23 Stephen J. Turnbull <stephen@xemacs.org> |
4273 | |
4274 * lispref/packaging.texi (package-info.in Fields): Typo fix. | |
4275 | |
836 | 4276 2002-05-11 Adrian Aichner <adrian@xemacs.org> |
4277 | |
4278 * xemacs-faq.texi (Top): Add Q2.0.15 under "Installation and | |
4279 Trouble Shooting". | |
4280 * xemacs-faq.texi (Installation): Add Q2.0.15 to Installation | |
4281 menu. | |
4282 * xemacs-faq.texi (Q2.0.14): Fix unnumberedsubsec argument. | |
4283 * xemacs-faq.texi (Q2.0.15): New. | |
4284 | |
824 | 4285 2002-05-01 Steve Youngs <youngs@xemacs.org> |
4286 | |
4287 * xemacs/packages.texi (Automatically): Don't mention "Options" | |
4288 menu. | |
4289 (Installing Packages): Don't mention getting list of packages via | |
1137 | 4290 customize. |
824 | 4291 |
804 | 4292 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
4293 | |
4294 * XEmacs 21.5.6 "bok choi" is released. | |
4295 | |
802 | 4296 2002-04-03 Ben Wing <ben@xemacs.org> |
4297 | |
4298 * internals/internals.texi (Top): | |
4299 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
4300 * internals/internals.texi (Techniques for XEmacs Developers): | |
4301 * internals/internals.texi (CVS Techniques): | |
4302 * internals/internals.texi (Merging a Branch into the Trunk): | |
4303 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
4304 Add section on correctly merging a branch back into the trunk. | |
4305 | |
785 | 4306 2002-03-19 Adrian Aichner <adrian@xemacs.org> |
4307 | |
4308 * widget.texi (constants): Typo fix. | |
4309 | |
778 | 4310 2002-03-14 Jonathan Harris <jhar@tardis.ed.ac.uk> |
4311 | |
4312 * cl.texi (Sequence Basics): Avoid splitting link over two lines, | |
4313 which makes cygwin texinfo 4.0 unhappy. | |
4314 | |
776 | 4315 2002-03-15 Ben Wing <ben@xemacs.org> |
4316 | |
4317 * Makefile (new-users-guide-srcs): | |
4318 * Makefile (extraclean): | |
4319 Use -no-packages to avoid problems with package files shadowing | |
4320 core files (e.g. unicode.el in mule-ucs). | |
4321 | |
775 | 4322 2002-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
4323 | |
4324 * emodules.texi (Using DEFUN): Add @ref{Lisp Primitives}. | |
4325 | |
1137 | 4326 * lispref/mule.texi (Unicode Support): |
775 | 4327 * xemacs/custom.texi (Behaviors): |
4328 * lispref/customize.texi (Enabling Behavior): | |
4329 New nodes. | |
4330 | |
774 | 4331 2002-03-12 Ben Wing <ben@xemacs.org> |
4332 | |
3322 | 4333 * The Great Mule Merge of March 2002: |
4334 see node by that name in the Internals Manual. | |
774 | 4335 |
768 | 4336 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
4337 | |
4338 * XEmacs 21.5.5 "beets" is released. | |
4339 | |
761 | 4340 2002-03-01 Jeff Miller <jmiller@cablespeed.com> |
4341 | |
4342 * lispref/packaging.texi (The User View, The Library Maintainer | |
4343 View, The Package Release Engineer View): Remove apostrophes. | |
4344 * lispref/lispref.texi (The User View, The Library Maintainer | |
4345 View, The Package Release Engineer View): Remove apostrophes. | |
4346 | |
759 | 4347 2002-02-28 Stephen J. Turnbull <stephen@xemacs.org> |
4348 | |
4349 * lispref/packaging.texi (The User View, The Library Maintainer | |
4350 View, The Package Release Engineer View): Remove apostrophes. | |
4351 | |
755 | 4352 2002-02-16 Stephen J. Turnbull <stephen@xemacs.org> |
4353 | |
4354 * external-widget.texi | |
4355 (Example Program Using the External Client Widget): Fix braces. | |
4356 From Mats Lidell <matsl@contactor.se>. | |
4357 | |
753 | 4358 2002-02-14 Stephen J. Turnbull <stephen@xemacs.org> |
4359 | |
4360 * external-widget.texi | |
4361 (Example Program Using the External Client Widget): Fix | |
4362 documentation to explain needed resource settings. | |
4363 | |
752 | 4364 2002-02-13 Stephen J. Turnbull <stephen@xemacs.org> |
4365 | |
4366 * lispref/packaging.texi (Documenting Packages): New node. | |
4367 (Makefile Variables): Fix typo per Steve Youngs. | |
4368 | |
750 | 4369 2002-02-09 Stephen J. Turnbull <stephen@xemacs.org> |
4370 | |
4371 * external-widget.texi | |
4372 (Example Program Using the External Client Widget): New node. | |
4373 | |
4374 * lispref/packaging.texi (Documenting Packages): New node. | |
4375 | |
749 | 4376 2002-01-27 Stephen J. Turnbull <stephen@xemacs.org> |
4377 | |
4378 * lispref/packaging.texi (Makefile Variables): Document GENERATED | |
4379 and PRELOADS. Document DATA_FILES_n and DATA_DEST_n forms. | |
4380 | |
745 | 4381 2002-02-06 Stephen J. Turnbull <stephen@xemacs.org> |
4382 | |
4383 * xemacs-faq.texi (Q1.3.8, Q1.3.9): Unicode support via Mule-UCS. | |
4384 | |
742 | 4385 2001-01-24 Adrian Aichner <adrian@xemacs.org> |
4386 | |
4387 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
4388 | |
741 | 4389 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> |
4390 | |
4391 * xemacs/files.texi (Files): | |
4392 (File Names): | |
4393 Document remote file editing, refer to EFS and TRAMP. | |
4394 | |
4395 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
4396 | |
4397 * xemacs-faq.texi (Q4.7.7): New FAQ on remote files. | |
4398 | |
4399 2002-01-24 Stephen J. Turnbull <stephen@xemacs.org> | |
4400 | |
4401 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
4402 | |
737 | 4403 2002-02-01 Steve Youngs <youngs@xemacs.org> |
4404 | |
4405 * xemacs/packages.texi (Removing Packages): The interactive | |
4406 function is 'package-get-delete-package'. | |
4407 | |
725 | 4408 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
4409 | |
4410 * XEmacs 21.5.4 "bamboo" is released. | |
4411 | |
724 | 4412 2001-11-15 Darryl Okahata <darrylo@xemacs.org> |
4413 | |
4414 * glyphs.texi: | |
4415 lispref.texi: Add examples of how to insert graphics into a | |
4416 buffer. | |
1137 | 4417 |
721 | 4418 2002-01-02 Adrian Aichner <adrian@xemacs.org> |
4419 | |
4420 * emodules.texi: Add missing direntry, reword "dynamic loadable" | |
4421 to "dynamically loadable". | |
4422 * external-widget.texi: Add missing direntry. | |
4423 | |
709 | 4424 2001-12-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
4425 | |
4426 * xemacs/programs.texi: Etags update from Francesco. | |
4427 | |
704 | 4428 2001-12-18 Valdis.Kletnieks <Valdis.Kletnieks@vt.edu> |
4429 | |
4430 * xemacs/programs.texi (Tags): Add node name to Ebrowse | |
4431 cross reference. | |
4432 | |
696 | 4433 2001-12-15 Adrian Aichner <adrian@xemacs.org> |
4434 | |
4435 * xemacs\xemacs.texi (Top): Change from @ifinfo to @ifnottex for | |
4436 the benefit of HTML online docs. | |
4437 | |
4438 2001-12-15 Adrian Aichner <adrian@xemacs.org> | |
4439 | |
4440 * term.texi: Fix broken settitle. Make @titlepage, @direntry, and | |
4441 @chapter agree with new title. | |
4442 | |
694 | 4443 2001-12-15 Stephen J. Turnbull <stephen@xemacs.org> |
4444 | |
4445 * lispref/packaging.texi (The User's View): | |
4446 Correct description of man subdirectory. | |
4447 | |
4448 (The Package Release Engineer's View): | |
4449 (package-compile.el): | |
4450 Change hazmat to useful documentation. | |
4451 | |
4452 (Issues): | |
4453 Hazmat removal. | |
4454 | |
693 | 4455 2001-11-27 Stephen J. Turnbull <stephen@xemacs.org> |
4456 | |
4457 * lispref/packaging.texi: New file. | |
4458 * lispref/lispref.texi (Top): Add Packaging & subnodes to menus. | |
4459 Include packaging.texi. | |
4460 * lispref/intro.texi (Introduction): Next -> Packaging. | |
4461 * lispref/objects.texi (Lisp Data Types): Previous -> Packaging. | |
4462 * Makefile (lispref-srcs): Depend on lispref/packaging.texi. | |
1137 | 4463 |
675 | 4464 2001-11-26 Adrian Aichner <adrian@xemacs.org> |
4465 | |
4466 * xemacs-faq.texi (Top): Remove duplicate node "Introduction". | |
4467 * xemacs-faq.texi (Q7.0.2): Rename changes sections uniquely. | |
4468 * xemacs-faq.texi (Q7.0.3): Ditto. | |
4469 | |
4470 2001-11-26 Adrian Aichner <adrian@xemacs.org> | |
4471 | |
4472 * external-widget.texi: Add @settitle to this stand-alone | |
4473 document. | |
4474 | |
4475 2001-11-25 Adrian Aichner <adrian@xemacs.org> | |
4476 | |
4477 * Makefile: Add rule to produce html from texi sources (currently | |
4478 using texi2html). | |
4479 * Makefile (HTMLDIR): New. | |
4480 * Makefile (html_files): New. | |
4481 * Makefile (html): New target. | |
4482 | |
662 | 4483 2001-09-16 Adrian Aichner <adrian@xemacs.org> |
4484 | |
4485 * xemacs-faq.texi (Q4.0.7): Fix link to VM FAQ thanks to word I | |
4486 got from Gregory Neil Shapiro. | |
4487 | |
661 | 4488 2001-09-16 Adrian Aichner <adrian@xemacs.org> |
4489 | |
4490 * xemacs-faq.texi (Q1.3.7): Update moved link. | |
4491 * xemacs-faq.texi (Q7.0.2): Comment out empty list of bullets to | |
4492 avoid HTML error in texi2html translation. | |
4493 | |
660 | 4494 2001-09-15 Adrian Aichner <adrian@xemacs.org> |
4495 | |
4496 * xemacs-faq.texi (Q4.6.1): Infodock is now hosted on SourceForge, | |
4497 infodock.com is no more. | |
4498 * xemacs-faq.texi (Q4.7.1): Take auc out of http://sunsite.auc.dk. | |
4499 | |
4500 2001-09-15 Adrian Aichner <adrian@xemacs.org> | |
4501 | |
4502 * xemacs-faq.texi (Q4.6.1): | |
4503 | |
658 | 4504 2001-09-09 Adrian Aichner <adrian@xemacs.org> |
4505 | |
4506 * xemacs-faq.texi (Q1.0.9): Correct link to snapshots as suggested | |
4507 by Robin S. Socha. | |
4508 | |
654 | 4509 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
4510 | |
4511 * XEmacs 21.5.3 "asparagus" is released. | |
4512 | |
652 | 4513 2001-08-26 Stephen J. Turnbull <stephen@xemacs.org> |
4514 | |
4515 * widget.texi (Basic Types, Defining New Widgets): | |
4516 Distinguish between :action and :notify. | |
4517 | |
641 | 4518 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
4519 | |
4520 * XEmacs 21.5.2 "artichoke" is released. | |
4521 | |
635 | 4522 2001-07-25 Jim Horning <jim.horning@lmco.com> |
4523 | |
4524 * xemacs/packages.texi (Package Terminology): | |
4525 * xemacs/packages.texi (Automatically): | |
4526 In itemize and enumerate lists @item should be on it's own line. | |
4527 | |
626 | 4528 2001-07-02 Adrian Aichner <adrian@xemacs.org> |
4529 | |
4530 * xemacs-faq.texi (Q1.0.14): Update information following a | |
4531 request by Tom Mostyn. | |
4532 | |
625 | 4533 2001-07-02 Adrian Aichner <adrian@xemacs.org> |
4534 | |
4535 * lispref\windows.texi (Window Configurations): Fix typos. | |
4536 * lispref\x-windows.texi (Resources): Ditto. | |
4537 | |
4538 2001-07-02 Adrian Aichner <adrian@xemacs.org> | |
4539 | |
4540 * internals\internals.texi (XEmacs From the Inside): Ditto. | |
4541 | |
4542 2001-07-02 Adrian Aichner <adrian@xemacs.org> | |
4543 | |
4544 * emodules.texi (Initialization Mode): Ditto. | |
4545 * xemacs-faq.texi (Q6.3.2): Ditto. | |
4546 | |
613 | 4547 2001-06-10 Ben Wing <ben@xemacs.org> |
4548 | |
4549 * xemacs-faq.texi (Q1.0.10): | |
4550 * xemacs-faq.texi (Q1.0.11): | |
4551 * xemacs-faq.texi (Q1.0.12): | |
4552 Update sections on Windows and MacOS availability. | |
4553 | |
611 | 4554 2001-06-08 Ben Wing <ben@xemacs.org> |
4555 | |
4556 * xemacs-faq.texi (Top): | |
4557 * xemacs-faq.texi (MS Windows): | |
4558 * xemacs-faq.texi (Q6.2.1): | |
4559 * xemacs-faq.texi (Q6.2.2): | |
4560 * xemacs-faq.texi (Q6.2.3): | |
4561 * xemacs-faq.texi (Q6.2.4): | |
4562 * xemacs-faq.texi (Q6.2.5): | |
4563 * xemacs-faq.texi (Q6.3.1): | |
4564 * xemacs-faq.texi (Q6.3.2): | |
4565 * xemacs-faq.texi (Q6.3.3): | |
4566 * xemacs-faq.texi (Q6.3.4): | |
4567 * xemacs-faq.texi (Q6.4.1): | |
4568 * xemacs-faq.texi (Q6.4.2): | |
4569 * xemacs-faq.texi (Current Events): | |
4570 * xemacs-faq.texi (Q7.0.1): | |
4571 * xemacs-faq.texi (Q7.0.2): | |
4572 * xemacs-faq.texi (Q7.0.3): | |
4573 * xemacs-faq.texi (Q7.0.4): | |
4574 * xemacs-faq.texi (Q7.0.5): | |
4575 * xemacs-faq.texi (Q7.0.6): | |
4576 Merge in the rest of Hrvoje's Windows FAQ. Redo section 7 | |
4577 to update current reality and add condensed versions of | |
4578 new changes for 21.1 and 21.4. (Not quite done for 21.4.) | |
4579 Lots more Windows updates. | |
4580 | |
600 | 4581 2001-05-29 Alexey Mahotkin <alexm@hsys.msk.ru> |
4582 | |
4583 * xemacs/custom.texi: Documented keyboard shortcut. | |
4584 | |
4585 * xemacs/mule.texi: Updated to match reality; tiny fixes. | |
4586 | |
593 | 4587 2001-05-30 Ben Wing <ben@xemacs.org> |
4588 | |
4589 * xemacs-faq.texi (Top): | |
4590 * xemacs-faq.texi (MS Windows): | |
4591 * xemacs-faq.texi (Q6.0.1): | |
4592 * xemacs-faq.texi (Q6.0.2): | |
4593 * xemacs-faq.texi (Q6.0.3): | |
4594 * xemacs-faq.texi (Q6.0.4): | |
4595 * xemacs-faq.texi (Q6.1.1): | |
4596 * xemacs-faq.texi (Q6.1.4): | |
4597 * xemacs-faq.texi (Q6.1.5): | |
4598 * xemacs-faq.texi (Q6.1.6): | |
4599 * xemacs-faq.texi (Q6.2.1): | |
4600 * xemacs-faq.texi (Q6.2.2): | |
4601 * xemacs-faq.texi (Q6.3.1): | |
4602 * xemacs-faq.texi (Q6.3.2): | |
4603 * xemacs-faq.texi (Q6.3.3): | |
4604 * xemacs-faq.texi (Q6.4.1): | |
4605 * xemacs-faq.texi (Current Events): | |
4606 Major rewrite. | |
4607 Update all MS Windows info to current. | |
4608 Redo section 6.1 almost completely. | |
4609 Incorporate sections 1 and 2 of Hrvoje's FAQ. | |
4610 | |
563 | 4611 2001-05-24 Ben Wing <ben@xemacs.org> |
4612 | |
4613 * xemacs-faq.texi (Top): | |
4614 * xemacs-faq.texi (Installation): | |
4615 * xemacs-faq.texi (Q2.1.15): | |
4616 * xemacs-faq.texi (Q2.1.18): | |
4617 * xemacs-faq.texi (Q2.1.19): | |
4618 document how to debug X errors | |
1137 | 4619 |
540 | 4620 2001-05-15 Steve Youngs <youngs@xemacs.org> |
4621 | |
4622 * xemacs/packages.texi (Local.rules): Update to reflect new dir tree. | |
4623 (Creating Packages): Ditto. | |
4624 (Available Packages): Ditto. | |
4625 | |
522 | 4626 2001-05-09 Martin Buchholz <martin@xemacs.org> |
4627 | |
4628 * XEmacs 21.5.1 "anise" is released. | |
4629 | |
511 | 4630 2001-05-07 Martin Buchholz <martin@xemacs.org> |
4631 | |
4632 * make-stds.texi: Support makeinfo 3.12 | |
4633 | |
485 | 4634 2001-04-26 John H. Palmieri <palmieri@math.washington.edu> |
4635 | |
4636 * xemacs/frame.texi (XEmacs under X): Document default-frame-plist | |
4637 rather than default-frame-alist. | |
4638 | |
479 | 4639 2001-04-15 Ben Wing <ben@xemacs.org> |
4640 | |
4641 * xemacs-faq.texi (Q1.0.1): | |
4642 * xemacs-faq.texi (Q1.0.2): | |
4643 Rewrite description of XEmacs to match what's on web page, | |
4644 in about.el. | |
4645 | |
472 | 4646 2001-04-18 Martin Buchholz <martin@xemacs.org> |
4647 | |
4648 * XEmacs 21.5.0 "alfalfa" is released. | |
4649 | |
464 | 4650 2001-03-30 Ben Wing <ben@xemacs.org> |
4651 | |
4652 * internals\internals.texi: | |
4653 * internals\internals.texi (Top): | |
4654 * internals\internals.texi (Lucid Emacs): | |
4655 * internals\internals.texi (XEmacs): | |
4656 * internals\internals.texi (XEmacs From the Outside): | |
4657 Bump version to 1.4 and fix this everywhere. Document all | |
4658 XEmacs releases up through 21.2.46. | |
4659 | |
4660 2001-03-16 Stephen J. Turnbull <stephen@xemacs.org> | |
4661 | |
4662 * lispref/postgresql.texi (libpq Lisp Symbols and DataTypes): Save | |
4663 result of INSERT in R in pq-cmd-status example. | |
4664 | |
462 | 4665 2001-03-21 Martin Buchholz <martin@xemacs.org> |
4666 | |
4667 * XEmacs 21.2.46 "Urania" is released. | |
4668 | |
4669 2001-03-08 Ben Wing <ben@xemacs.org> | |
4670 | |
4671 * internals\internals.texi (Top): | |
4672 * internals\internals.texi (A History of Emacs): | |
4673 * internals\internals.texi (Through Version 18): | |
4674 * internals\internals.texi (Lucid Emacs): | |
4675 * internals\internals.texi (GNU Emacs 19): | |
4676 * internals\internals.texi (GNU Emacs 20): | |
4677 * internals\internals.texi (XEmacs From the Outside): | |
4678 * internals\internals.texi (The Lisp Language): | |
4679 * internals\internals.texi (XEmacs From the Perspective of Building): | |
4680 * internals\internals.texi (XEmacs From the Inside): | |
4681 * internals\internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
4682 * internals\internals.texi (How Lisp Objects Are Represented in C): | |
4683 * internals\internals.texi (Rules When Writing New C Code): | |
4684 * internals\internals.texi (General Coding Rules): | |
4685 * internals\internals.texi (Writing Lisp Primitives): | |
4686 * internals\internals.texi (Writing Good Comments): | |
4687 * internals\internals.texi (Adding Global Lisp Variables): | |
4688 * internals\internals.texi (Proper Use of Unsigned Types): | |
4689 * internals\internals.texi (Coding for Mule): | |
4690 * internals\internals.texi (Character-Related Data Types): | |
4691 * internals\internals.texi (Working With Character and Byte Positions): | |
4692 * internals\internals.texi (Conversion to and from External Data): | |
4693 * internals\internals.texi (General Guidelines for Writing Mule-Aware Code): | |
4694 * internals\internals.texi (An Example of Mule-Aware Code): | |
4695 * internals\internals.texi (Techniques for XEmacs Developers): | |
4696 * internals\internals.texi (A Summary of the Various XEmacs Modules): | |
4697 * internals\internals.texi (Low-Level Modules): | |
4698 * internals\internals.texi (Basic Lisp Modules): | |
4699 * internals\internals.texi (Modules for Standard Editing Operations): | |
4700 * internals\internals.texi (Editor-Level Control Flow Modules): | |
4701 * internals\internals.texi (Modules for the Basic Displayable Lisp Objects): | |
4702 * internals\internals.texi (Modules for other Display-Related Lisp Objects): | |
4703 * internals\internals.texi (Modules for the Redisplay Mechanism): | |
4704 * internals\internals.texi (Modules for Interfacing with the File System): | |
4705 * internals\internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
4706 * internals\internals.texi (Modules for Interfacing with the Operating System): | |
4707 * internals\internals.texi (Modules for Interfacing with X Windows): | |
4708 * internals\internals.texi (Allocation of Objects in XEmacs Lisp): | |
4709 * internals\internals.texi (Introduction to Allocation): | |
4710 * internals\internals.texi (Garbage Collection): | |
4711 * internals\internals.texi (GCPROing): | |
4712 * internals\internals.texi (Garbage Collection - Step by Step): | |
4713 * internals\internals.texi (Invocation): | |
4714 * internals\internals.texi (garbage_collect_1): | |
4715 * internals\internals.texi (mark_object): | |
4716 * internals\internals.texi (gc_sweep): | |
4717 * internals\internals.texi (sweep_lcrecords_1): | |
4718 * internals\internals.texi (compact_string_chars): | |
4719 * internals\internals.texi (sweep_strings): | |
4720 * internals\internals.texi (sweep_bit_vectors_1): | |
4721 * internals\internals.texi (Integers and Characters): | |
4722 * internals\internals.texi (Allocation from Frob Blocks): | |
4723 * internals\internals.texi (lrecords): | |
4724 * internals\internals.texi (Low-level allocation): | |
4725 * internals\internals.texi (Cons): | |
4726 * internals\internals.texi (Vector): | |
4727 * internals\internals.texi (Bit Vector): | |
4728 * internals\internals.texi (Symbol): | |
4729 * internals\internals.texi (Marker): | |
4730 * internals\internals.texi (String): | |
4731 * internals\internals.texi (Dumping): | |
4732 * internals\internals.texi (Overview): | |
4733 * internals\internals.texi (Data descriptions): | |
4734 * internals\internals.texi (Dumping phase): | |
4735 * internals\internals.texi (Object inventory): | |
4736 * internals\internals.texi (Address allocation): | |
4737 * internals\internals.texi (The header): | |
4738 * internals\internals.texi (Data dumping): | |
4739 * internals\internals.texi (Pointers dumping): | |
4740 * internals\internals.texi (Reloading phase): | |
4741 * internals\internals.texi (Events and the Event Loop): | |
4742 * internals\internals.texi (Introduction to Events): | |
4743 * internals\internals.texi (Main Loop): | |
4744 * internals\internals.texi (Specifics of the Event Gathering Mechanism): | |
4745 * internals\internals.texi (Specifics About the Emacs Event): | |
4746 * internals\internals.texi (The Event Stream Callback Routines): | |
4747 * internals\internals.texi (Other Event Loop Functions): | |
4748 * internals\internals.texi (Converting Events): | |
4749 * internals\internals.texi (Evaluation; Stack Frames; Bindings): | |
4750 * internals\internals.texi (Evaluation): | |
4751 * internals\internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
4752 * internals\internals.texi (Simple Special Forms): | |
4753 * internals\internals.texi (Symbols and Variables): | |
4754 * internals\internals.texi (Introduction to Symbols): | |
4755 * internals\internals.texi (Obarrays): | |
4756 * internals\internals.texi (Buffers and Textual Representation): | |
4757 * internals\internals.texi (Introduction to Buffers): | |
4758 * internals\internals.texi (The Text in a Buffer): | |
4759 * internals\internals.texi (Buffer Lists): | |
4760 * internals\internals.texi (Markers and Extents): | |
4761 * internals\internals.texi (Bufbytes and Emchars): | |
4762 * internals\internals.texi (MULE Character Sets and Encodings): | |
4763 * internals\internals.texi (Character Sets): | |
4764 * internals\internals.texi (Encodings): | |
4765 * internals\internals.texi (Japanese EUC (Extended Unix Code)): | |
4766 * internals\internals.texi (JIS7): | |
4767 * internals\internals.texi (Internal Mule Encodings): | |
4768 * internals\internals.texi (Internal String Encoding): | |
4769 * internals\internals.texi (Internal Character Encoding): | |
4770 * internals\internals.texi (The Lisp Reader and Compiler): | |
4771 * internals\internals.texi (Lstreams): | |
4772 * internals\internals.texi (Creating an Lstream): | |
4773 * internals\internals.texi (Lstream Types): | |
4774 * internals\internals.texi (Lstream Functions): | |
4775 * internals\internals.texi (Consoles; Devices; Frames; Windows): | |
4776 * internals\internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
4777 * internals\internals.texi (Point): | |
4778 * internals\internals.texi (Window Hierarchy): | |
4779 * internals\internals.texi (The Redisplay Mechanism): | |
4780 * internals\internals.texi (Critical Redisplay Sections): | |
4781 * internals\internals.texi (Line Start Cache): | |
4782 * internals\internals.texi (Extents): | |
4783 * internals\internals.texi (Introduction to Extents): | |
4784 * internals\internals.texi (Extent Ordering): | |
4785 * internals\internals.texi (Format of the Extent Info): | |
4786 * internals\internals.texi (Zero-Length Extents): | |
4787 * internals\internals.texi (Mathematics of Extent Ordering): | |
4788 * internals\internals.texi (Faces): | |
4789 * internals\internals.texi (Glyphs): | |
4790 * internals\internals.texi (Specifiers): | |
4791 * internals\internals.texi (Menus): | |
4792 * internals\internals.texi (Subprocesses): | |
4793 * internals\internals.texi (Interface to the X Window System): | |
4794 * internals\internals.texi (Lucid Widget Library): | |
4795 * internals\internals.texi (Generic Widget Interface): | |
4796 * internals\internals.texi (Scrollbars): | |
4797 * internals\internals.texi (Menubars): | |
4798 * internals\internals.texi (Checkboxes and Radio Buttons): | |
4799 * internals\internals.texi (Progress Bars): | |
4800 * internals\internals.texi (Tab Controls): | |
4801 Add more index entries. Add sections on comments and unsigned types. | |
4802 | |
4803 2001-03-08 Ben Wing <ben@xemacs.org> | |
4804 | |
4805 * make-stds.texi (Makefile Basics): | |
4806 * make-stds.texi (Command Variables): | |
4807 * make-stds.texi (Directory Variables): | |
4808 * make-stds.texi (Standard Targets): | |
4809 * standards.texi: | |
4810 * standards.texi (Top): | |
4811 * standards.texi (Preface): | |
4812 * standards.texi (Legal Issues): | |
4813 * standards.texi (Reading Non-Free Code): | |
4814 * standards.texi (Contributions): | |
4815 * standards.texi (Trademarks): | |
4816 * standards.texi (Design Advice): | |
4817 * standards.texi (Source Language): | |
4818 * standards.texi (Compatibility): | |
4819 * standards.texi (Using Extensions): | |
4820 * standards.texi (Standard C): | |
4821 * standards.texi (Program Behavior): | |
4822 * standards.texi (Semantics): | |
4823 * standards.texi (Libraries): | |
4824 * standards.texi (Errors): | |
4825 * standards.texi (User Interfaces): | |
4826 * standards.texi (Graphical Interfaces): | |
4827 * standards.texi (Command-Line Interfaces): | |
4828 * standards.texi (Option Table): | |
4829 * standards.texi (Memory Usage): | |
4830 * standards.texi (File Usage): | |
4831 * standards.texi (Formatting): | |
4832 * standards.texi (Comments): | |
4833 * standards.texi (Syntactic Conventions): | |
4834 * standards.texi (Names): | |
4835 * standards.texi (System Portability): | |
4836 * standards.texi (CPU Portability): | |
4837 * standards.texi (System Functions): | |
4838 * standards.texi (Internationalization): | |
4839 * standards.texi (Mmap): | |
4840 * standards.texi (Documentation): | |
4841 * standards.texi (GNU Manuals): | |
4842 * standards.texi (Doc Strings and Manuals): | |
4843 * standards.texi (Manual Structure Details): | |
4844 * standards.texi (License for Manuals): | |
4845 * standards.texi (Manual Credits): | |
4846 * standards.texi (Printed Manuals): | |
4847 * standards.texi (NEWS File): | |
4848 * standards.texi (Change Logs): | |
4849 * standards.texi (Style of Change Logs): | |
4850 * standards.texi (Simple Changes): | |
4851 * standards.texi (Conditional Changes): | |
4852 * standards.texi (Indicating the Part Changed): | |
4853 * standards.texi (Managing Releases): | |
4854 * standards.texi (Configuration): | |
4855 * standards.texi (Releases): | |
4856 * standards.texi (References): | |
4857 * standards.texi (Index): | |
4858 Update to latest GNU version. | |
1137 | 4859 |
462 | 4860 * xemacs-faq.texi (Q6.3.3): |
4861 * xemacs-faq.texi (Q6.4.1): | |
4862 Improve questions on current Windows activity. | |
4863 | |
4864 2001-03-07 Sandra Wambold <wambold@xemacs.org> | |
4865 | |
4866 * xemacs-faq.texi: (Q.1.0.7): changed list archive address | |
4867 | |
4868 2001-02-25 Ben Wing <ben@xemacs.org> | |
4869 | |
4870 * xemacs-faq.texi (Top): | |
4871 * xemacs-faq.texi (Introduction): | |
4872 * xemacs-faq.texi (Q1.0.1): | |
4873 * xemacs-faq.texi (Q1.0.4): | |
4874 * xemacs-faq.texi (Q1.0.6): | |
4875 * xemacs-faq.texi (Q1.0.10): | |
4876 * xemacs-faq.texi (Q1.2.1): | |
4877 * xemacs-faq.texi (Q1.4.1): | |
4878 * xemacs-faq.texi (Q1.4.2): | |
4879 * xemacs-faq.texi (Q2.0.12): | |
4880 * xemacs-faq.texi (Q2.1.1): | |
4881 * xemacs-faq.texi (Q2.1.2): | |
4882 * xemacs-faq.texi (Q2.1.9): | |
4883 * xemacs-faq.texi (Q2.1.15): | |
4884 * xemacs-faq.texi (Q2.1.19): | |
4885 * xemacs-faq.texi (Customization): | |
4886 * xemacs-faq.texi (Q3.0.1): | |
4887 * xemacs-faq.texi (Q3.0.2): | |
4888 * xemacs-faq.texi (Q3.0.3): | |
4889 * xemacs-faq.texi (Q3.0.7): | |
4890 * xemacs-faq.texi (Q3.1.5): | |
4891 * xemacs-faq.texi (Q3.1.6): | |
4892 * xemacs-faq.texi (Q3.2.1): | |
4893 * xemacs-faq.texi (Q3.2.3): | |
4894 * xemacs-faq.texi (Q3.2.4): | |
4895 * xemacs-faq.texi (Q3.3.1): | |
4896 * xemacs-faq.texi (Q3.3.2): | |
4897 * xemacs-faq.texi (Q3.3.3): | |
4898 * xemacs-faq.texi (Q3.3.4): | |
4899 * xemacs-faq.texi (Q3.3.5): | |
4900 * xemacs-faq.texi (Q3.4.1): | |
4901 * xemacs-faq.texi (Q3.4.2): | |
4902 * xemacs-faq.texi (Q3.5.2): | |
4903 * xemacs-faq.texi (Q3.5.4): | |
4904 * xemacs-faq.texi (key-translation-map): New. | |
4905 * xemacs-faq.texi (Q3.5.5): | |
4906 * xemacs-faq.texi (Q3.5.6): | |
4907 * xemacs-faq.texi (Q3.5.7): | |
4908 * xemacs-faq.texi (Q3.5.8): | |
4909 * xemacs-faq.texi (global-map): Removed. | |
4910 * xemacs-faq.texi (Q3.5.9): | |
4911 * xemacs-faq.texi (Q3.6.1): | |
4912 * xemacs-faq.texi (Q3.6.2): | |
4913 * xemacs-faq.texi (Q3.6.3): | |
4914 * xemacs-faq.texi (Q3.7.6): | |
4915 * xemacs-faq.texi (Q3.7.7): | |
4916 * xemacs-faq.texi (Q3.8.1): | |
4917 * xemacs-faq.texi (Q3.8.2): | |
4918 * xemacs-faq.texi (Q3.8.3): | |
4919 * xemacs-faq.texi (Q3.9.1): | |
4920 * xemacs-faq.texi (Q3.9.4): | |
4921 * xemacs-faq.texi (Q3.10.1): | |
4922 * xemacs-faq.texi (Q3.10.2): | |
4923 * xemacs-faq.texi (Q3.10.3): | |
4924 * xemacs-faq.texi (Q4.0.12): | |
4925 * xemacs-faq.texi (Miscellaneous): | |
4926 * xemacs-faq.texi (Q5.0.1): | |
4927 * xemacs-faq.texi (Q5.0.2): | |
4928 * xemacs-faq.texi (Q5.0.3): | |
4929 * xemacs-faq.texi (Q5.0.4): | |
4930 * xemacs-faq.texi (Q5.0.5): | |
4931 * xemacs-faq.texi (Q5.0.8): | |
4932 * xemacs-faq.texi (Q5.0.9): | |
4933 * xemacs-faq.texi (Q5.0.11): | |
4934 * xemacs-faq.texi (Q5.0.12): | |
4935 * xemacs-faq.texi (Q5.0.13): | |
4936 * xemacs-faq.texi (Q5.0.16): | |
4937 * xemacs-faq.texi (Q5.0.17): | |
4938 * xemacs-faq.texi (Q5.1.9): | |
4939 * xemacs-faq.texi (Q5.1.11): | |
4940 * xemacs-faq.texi (Q5.2.1): | |
4941 * xemacs-faq.texi (Q5.2.2): | |
4942 * xemacs-faq.texi (Q5.3.1): | |
4943 * xemacs-faq.texi (Q5.3.2): | |
4944 * xemacs-faq.texi (Q5.3.4): | |
4945 * xemacs-faq.texi (MS Windows): | |
4946 * xemacs-faq.texi (Q6.0.1): | |
4947 * xemacs-faq.texi (Q6.0.2): | |
4948 * xemacs-faq.texi (Q6.0.3): | |
4949 * xemacs-faq.texi (Q6.0.4): | |
4950 * xemacs-faq.texi (Q6.1.5): | |
4951 * xemacs-faq.texi (Q6.2.3): | |
4952 * xemacs-faq.texi (Q6.3.1): | |
4953 | |
4954 Remove most references to XEmacs pre-19.15, since they are way out | |
4955 of date and are cluttering up and confusing many answers. Update | |
4956 references to .emacs to take into account the new init file | |
4957 location. Update information about the MS Windows port. Change | |
4958 description of XEmacs at beginning to match the web site. Update | |
4959 info about current developers. | |
1137 | 4960 |
462 | 4961 |
4962 2001-02-25 Ben Wing <ben@xemacs.org> | |
4963 | |
4964 * lispref\help.texi (Describing Characters): | |
4965 kp- not kp_. | |
1137 | 4966 |
462 | 4967 2001-02-25 Ben Wing <ben@xemacs.org> |
4968 | |
4969 * new-users-guide\custom1.texi (Customization Basics): | |
4970 * new-users-guide\custom1.texi (Customizing key Bindings): | |
4971 * new-users-guide\custom1.texi (Customizing Menus): | |
4972 * new-users-guide\custom2.texi (Other Customizations): | |
4973 * new-users-guide\custom2.texi (Setting Variables): | |
4974 * new-users-guide\custom2.texi (Init File): | |
4975 * new-users-guide\xmenu.texi (Options Menu): | |
4976 * new-users-guide\modes.texi (Major Modes): | |
4977 * new-users-guide\modes.texi (Minor Modes): | |
4978 * new-users-guide\new-users-guide.texi (Top): | |
4979 Fix up references to .emacs to take into account init.el. | |
1137 | 4980 |
460 | 4981 2001-02-23 Martin Buchholz <martin@xemacs.org> |
4982 | |
4983 * XEmacs 21.2.45 "Thelxepeia" is released. | |
4984 | |
4985 2001-02-10 Martin Buchholz <martin@xemacs.org> | |
4986 | |
4987 * xemacs/programs.texi (Tag Syntax): Port to makeinfo 3. | |
4988 | |
458 | 4989 2001-02-08 Martin Buchholz <martin@xemacs.org> |
4990 | |
4991 * XEmacs 21.2.44 "Thalia" is released. | |
4992 | |
4993 2001-02-04 Steve Youngs <youngs@xemacs.org> | |
4994 | |
4995 * xemacs/xemacs.texi: Update to accomodate new and improved | |
4996 packages.texi. | |
4997 | |
4998 * xemacs/packages.texi: Basically, apart from a few things, | |
4999 rewritten from scratch. | |
5000 | |
456 | 5001 2001-01-27 Martin Buchholz <martin@xemacs.org> |
5002 | |
5003 * lispref/variables.texi (max-specpdl-size): Correct default value. | |
5004 * lispref/eval.texi (max-lisp-eval-depth): Correct default value. | |
5005 | |
5006 2001-01-26 Martin Buchholz <martin@xemacs.org> | |
5007 | |
5008 * XEmacs 21.2.43 "Terspichore" is released. | |
5009 | |
454 | 5010 2001-01-20 Martin Buchholz <martin@xemacs.org> |
5011 | |
5012 * XEmacs 21.2.42 "Poseidon" is released. | |
5013 | |
5014 2001-01-18 Martin Buchholz <martin@xemacs.org> | |
5015 | |
5016 * xemacs-faq.texi (Q1.0.11): Change XEmacs for MacOS URL. | |
5017 | |
5018 2001-01-17 Andy Piper <andy@xemacs.org> | |
5019 | |
5020 * internals.texi: some glyph documentation. | |
5021 | |
5022 2001-01-16 Didier Verna <didier@xemacs.org> | |
5023 | |
5024 * frame.texi (Mode Line Basics): new node ... | |
5025 * frame.texi (GUI Components): ... under this one ... | |
5026 * frame.texi (Scrollbar Basics): ... after this one ... | |
5027 * frame.texi (Toolbar Basics): ... before this one. | |
5028 | |
452 | 5029 2001-01-17 Martin Buchholz <martin@xemacs.org> |
5030 | |
5031 * XEmacs 21.2.41 "Polyhymnia" is released. | |
5032 | |
5033 2001-01-12 Martin Buchholz <martin@xemacs.org> | |
5034 | |
5035 * internals/internals.texi: A little post-pdump-rename fixup. | |
5036 | |
5037 2001-01-13 Martin Buchholz <martin@xemacs.org> | |
5038 | |
5039 * internals/internals.texi: See `pdump-rename' in src/ChangeLog. | |
5040 | |
5041 2001-01-10 Martin Buchholz <martin@xemacs.org> | |
5042 | |
5043 * internals/internals.texi: Update for pdump changes. | |
5044 | |
5045 2001-01-04 Adrian Aichner <adrian@xemacs.org> | |
5046 | |
5047 * texinfo.texi (Using Texinfo): Change reference from GNU Emacs to | |
5048 XEmacs. | |
5049 * texinfo.texi (First Node): Fixing grammar. | |
5050 * texinfo.texi (Multitable Rows): Change reference from GNU Emacs | |
5051 to XEmacs. | |
5052 | |
450 | 5053 2001-01-08 Martin Buchholz <martin@xemacs.org> |
5054 | |
5055 * XEmacs 21.2.40 is released. | |
5056 | |
5057 2001-01-06 Stephen J. Turnbull <stephen@xemacs.org> | |
5058 | |
5059 * emodules.texi (Required Functions): Xref coding rules for dual-use | |
5060 modules (module and statically linked). Typo fix. | |
5061 | |
5062 * texinfo.texi (ref): Typo fix. | |
5063 | |
448 | 5064 2000-12-31 Martin Buchholz <martin@xemacs.org> |
5065 | |
5066 * XEmacs 21.2.39 is released. | |
5067 | |
5068 2000-12-05 Stephen J. Turnbull <stephen@xemacs.org> | |
5069 | |
5070 * internals/internals.texi (General Coding Rules): further document | |
5071 usage of symsinit.h. Reorder slightly. | |
5072 | |
446 | 5073 2000-11-29 Stephen J. Turnbull <stephen@xemacs.org> |
5074 | |
5075 * xemacs/packages.texi (Creating Packages): new node. | |
5076 | |
5077 2000-12-05 Martin Buchholz <martin@xemacs.org> | |
5078 | |
5079 * XEmacs 21.2.38 is released. | |
5080 | |
5081 2000-12-01 Martin Buchholz <martin@xemacs.org> | |
5082 | |
5083 * lispref/compile.texi: | |
5084 Document differences between compiler and interpreter. | |
5085 | |
5086 2000-11-29 Stephen J. Turnbull <stephen@xemacs.org> | |
5087 | |
5088 * internals/index.texi: | |
5089 internals/internals.texi: | |
5090 Change "X Windows" to "the X Window System" randomly. | |
5091 * internals/internals.texi (Glyphs): fiddling, move lwlib to new node. | |
5092 (Lucid Widget Library): new node, added new text, ASCII art, subnode | |
5093 structure. | |
5094 * xemacs/frame.texi (GUI Components): new node. | |
5095 * xemacs/packages.texi: minor updates. | |
5096 | |
5097 2000-11-10 Stephen J. Turnbull <stephen@xemacs.org> | |
5098 | |
5099 * info.texi (Creating an Info File): Fix typos in xrefs. | |
5100 | |
5101 2000-11-08 Stephen J. Turnbull <stephen@xemacs.org> | |
5102 | |
5103 * xemacs/cmdargs.texi (Command Switches): Add documentation of | |
5104 portable dumper switches. Other minor edits. | |
5105 | |
5106 2000-11-21 Martin Buchholz <martin@xemacs.org> | |
5107 | |
5108 * lispref/positions.texi (Word Motion): | |
5109 forward-word arg is now optional. | |
5110 backward-word arg is now optional. | |
5111 Remove vile comment advising lisp programmer to use (forward-word -1) | |
5112 instead of (backward-word 1). | |
5113 * lispref/syntax.texi (Parsing Expressions): | |
5114 Similarly for forward-comment. | |
5115 * lispref/text.texi (Deletion): | |
5116 Similarly for delete-char. | |
5117 Similarly for delete-backward-char. | |
5118 | |
5119 2000-11-09 Martin Buchholz <martin@xemacs.org> | |
5120 | |
5121 * cl.texi (Assertions): | |
5122 Remove claim that elisp doesn't have continuable errors. | |
5123 Document check-type as being continuable. | |
5124 | |
5125 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5126 | |
5127 * xemacs/calendar.texi (Calendar/Diary): Correct INFO-FILE-NAME | |
5128 from elisp to lispref and from emacs to xemacs in relevant ?xefs. | |
5129 This should also serve as a reminder for future merges with GNU | |
5130 Emacs. | |
5131 Unify PRINTED-MANUAL-TITLE to "XEmacs Lisp Reference Manual" and | |
5132 "XEmacs User's Manual" for lispref and xemacs respectively. | |
5133 | |
5134 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5135 | |
5136 * lispref/abbrevs.texi (Abbrevs): Ditto. | |
5137 * lispref/backups.texi (Auto-Saving): Ditto. | |
5138 * lispref/backups.texi (Reverting): Ditto. | |
5139 * lispref/display.texi (The Echo Area): Ditto. | |
5140 * lispref/help.texi (Documentation Basics): Ditto. | |
5141 * lispref/help.texi (Help Functions): Ditto. | |
5142 * lispref/keymaps.texi (Scanning Keymaps): Ditto. | |
5143 * lispref/locals.texi (Standard Buffer-Local Variables): Ditto. | |
5144 * lispref/modes.texi (Auto Major Mode): Ditto. | |
5145 * lispref/positions.texi (List Motion): Ditto. | |
5146 * lispref/searching.texi (Regexp Search): Ditto. | |
5147 * lispref/symbols.texi (Symbol Components): Ditto. | |
5148 * lispref/tips.texi (Comment Tips): Ditto. | |
5149 * lispref/tips.texi (Library Headers): Ditto. | |
5150 | |
5151 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5152 | |
5153 * internals/internals.texi (The Buffer Object): Ditto. | |
5154 | |
5155 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5156 | |
5157 * cl.texi (Hash Tables): Ditto. | |
5158 * texinfo.texi (Other Info Files): Ditto. | |
5159 * xemacs-faq.texi (Q1.0.14): Ditto. | |
5160 | |
444 | 5161 2000-11-14 Martin Buchholz <martin@xemacs.org> |
5162 | |
5163 * XEmacs 21.2.37 is released. | |
5164 | |
5165 2000-10-27 Martin Buchholz <martin@xemacs.org> | |
5166 | |
5167 * xemacs/windows.texi (Other Window): | |
5168 | |
5169 * new-users-guide/files.texi (Saving Files): | |
5170 * new-users-guide/search.texi (Search and Replace): | |
5171 | |
5172 * lispref/abbrevs.texi (Abbrev Tables): | |
5173 * lispref/abbrevs.texi (Defining Abbrevs): | |
5174 * lispref/abbrevs.texi (Abbrev Files): | |
5175 * lispref/annotations.texi (Annotation Primitives): | |
5176 * lispref/backups.texi (Auto-Saving): | |
5177 * lispref/backups.texi (Reverting): | |
5178 * lispref/buffers.texi (Current Buffer): | |
5179 * lispref/buffers.texi (Buffer Names): | |
5180 * lispref/buffers.texi (Buffer Modification): | |
5181 * lispref/buffers.texi (Read Only Buffers): | |
5182 * lispref/buffers.texi (The Buffer List): | |
5183 * lispref/buffers.texi (Killing Buffers): | |
5184 * lispref/buffers.texi (Indirect Buffers): | |
5185 * lispref/building.texi (Building XEmacs): | |
5186 * lispref/building.texi (Garbage Collection): | |
5187 * lispref/commands.texi (Interactive Call): | |
5188 * lispref/commands.texi (Events): | |
5189 * lispref/commands.texi (Event Predicates): | |
5190 * lispref/commands.texi (Working With Events): | |
5191 * lispref/commands.texi (Converting Events): | |
5192 * lispref/commands.texi (Key Sequence Input): | |
5193 * lispref/commands.texi (Reading One Event): | |
5194 * lispref/commands.texi (Waiting): | |
5195 * lispref/commands.texi (Prefix Command Arguments): | |
5196 * lispref/commands.texi (Recursive Editing): | |
5197 * lispref/compile.texi (Compilation Functions): | |
5198 * lispref/compile.texi (Compiled-Function Objects): | |
5199 * lispref/consoles-devices.texi (Basic Device Functions): | |
5200 * lispref/consoles-devices.texi (Console Types and Device Classes): | |
5201 * lispref/consoles-devices.texi (Connecting to a Console or Device): | |
5202 * lispref/control.texi (Signaling Errors): | |
5203 * lispref/customize.texi (Type Keywords): | |
5204 * lispref/databases.texi (Connecting to a Database): | |
5205 * lispref/databases.texi (Working With a Database): | |
5206 * lispref/databases.texi (Other Database Functions): | |
5207 * lispref/debugging.texi (Function Debugging): | |
5208 * lispref/display.texi (Refresh Screen): | |
5209 * lispref/display.texi (The Echo Area): | |
5210 * lispref/display.texi (Blinking): | |
5211 * lispref/edebug-inc.texi (Tracing): | |
5212 * lispref/edebug-inc.texi (Instrumenting Macro Calls): | |
5213 * lispref/edebug-inc.texi (Edebug Options): | |
5214 * lispref/eval.texi (Function Indirection): | |
5215 * lispref/extents.texi (Creating and Modifying Extents): | |
5216 * lispref/extents.texi (Finding Extents): | |
5217 * lispref/extents.texi (Mapping Over Extents): | |
5218 * lispref/extents.texi (Extent Properties): | |
5219 * lispref/faces.texi (Basic Face Functions): | |
5220 * lispref/faces.texi (Face Properties): | |
5221 * lispref/faces.texi (Face Convenience Functions): | |
5222 * lispref/faces.texi (Other Face Display Functions): | |
5223 * lispref/faces.texi (Font Instance Characteristics): | |
5224 * lispref/faces.texi (Color Specifiers): | |
5225 * lispref/files.texi (Visiting Functions): | |
5226 * lispref/files.texi (Reading from Files): | |
5227 * lispref/files.texi (Changing File Attributes): | |
5228 * lispref/files.texi (File Names): | |
5229 * lispref/files.texi (File Name Components): | |
5230 * lispref/files.texi (Directory Names): | |
5231 * lispref/files.texi (Relative File Names): | |
5232 * lispref/files.texi (File Name Expansion): | |
5233 * lispref/files.texi (File Name Completion): | |
5234 * lispref/files.texi (User Name Completion): | |
5235 * lispref/files.texi (Magic File Names): | |
5236 * lispref/files.texi (Creating a Partial File): | |
5237 * lispref/files.texi (Format Conversion): | |
5238 * lispref/frames.texi (Creating Frames): | |
5239 * lispref/frames.texi (Property Access): | |
5240 * lispref/frames.texi (Size and Position): | |
5241 * lispref/frames.texi (Deleting Frames): | |
5242 * lispref/frames.texi (Finding All Frames): | |
5243 * lispref/frames.texi (Frames and Windows): | |
5244 * lispref/frames.texi (Visibility of Frames): | |
5245 * lispref/frames.texi (Frame Configurations): | |
5246 * lispref/functions.texi (Calling Functions): | |
5247 * lispref/functions.texi (Function Cells): | |
5248 * lispref/glyphs.texi (Creating Glyphs): | |
5249 * lispref/glyphs.texi (Image Specifiers): | |
5250 * lispref/glyphs.texi (Image Instance Types): | |
5251 * lispref/glyphs.texi (Image Instance Functions): | |
5252 * lispref/gutter.texi (Creating Gutter): | |
5253 * lispref/gutter.texi (Specifying a Gutter): | |
5254 * lispref/gutter.texi (Other Gutter Variables): | |
5255 * lispref/help.texi (Accessing Documentation): | |
5256 * lispref/help.texi (Help Functions): | |
5257 * lispref/help.texi (Obsoleteness): | |
5258 * lispref/internationalization.texi (Domain Specification): | |
5259 * lispref/intro.texi (Caveats): | |
5260 * lispref/keymaps.texi (Active Keymaps): | |
5261 * lispref/keymaps.texi (Functions for Key Lookup): | |
5262 * lispref/keymaps.texi (Changing Key Bindings): | |
5263 * lispref/keymaps.texi (Scanning Keymaps): | |
5264 * lispref/ldap.texi (The High-Level LDAP API): | |
5265 * lispref/ldap.texi (Low-level Operations on a LDAP Server): | |
5266 * lispref/ldap.texi (Encoder/Decoder Functions): | |
5267 * lispref/lists.texi (Setcar): | |
5268 * lispref/lists.texi (Setcdr): | |
5269 * lispref/lists.texi (Working With Normal Plists): | |
5270 * lispref/lists.texi (Working With Lax Plists): | |
5271 * lispref/loading.texi (Autoload): | |
5272 * lispref/loading.texi (Named Features): | |
5273 * lispref/markers.texi (Creating Markers): | |
5274 * lispref/markers.texi (Changing Markers): | |
5275 * lispref/markers.texi (The Mark): | |
5276 * lispref/menus.texi (Modifying Menus): | |
5277 * lispref/menus.texi (Pop-Up Menus): | |
5278 * lispref/menus.texi (Menu Accelerator Functions): | |
5279 * lispref/minibuf.texi (Text from Minibuffer): | |
5280 * lispref/minibuf.texi (Object from Minibuffer): | |
5281 * lispref/minibuf.texi (Basic Completion): | |
5282 * lispref/minibuf.texi (High-Level Completion): | |
5283 * lispref/minibuf.texi (Reading a Password): | |
5284 * lispref/minibuf.texi (Minibuffer Misc): | |
5285 * lispref/mouse.texi (Mouse Tracking): | |
5286 * lispref/syntax.texi (Syntax Table Functions): | |
5287 * lispref/numbers.texi (Arithmetic Operations): | |
5288 * lispref/numbers.texi (Rounding Operations): | |
5289 * lispref/numbers.texi (Math Functions): | |
5290 * lispref/objects.texi (String Type): | |
5291 * lispref/objects.texi (Equality Predicates): | |
5292 * lispref/os.texi (Killing XEmacs): | |
5293 * lispref/os.texi (Suspending XEmacs): | |
5294 * lispref/os.texi (System Environment): | |
5295 * lispref/os.texi (Time Conversion): | |
5296 * lispref/os.texi (Timers): | |
5297 * lispref/os.texi (Input Modes): | |
5298 * lispref/os.texi (Translating Input): | |
5299 * lispref/os.texi (Terminal Output): | |
5300 * lispref/os.texi (Flow Control): | |
5301 * lispref/positions.texi (Character Motion): | |
5302 * lispref/positions.texi (Word Motion): | |
5303 * lispref/positions.texi (Text Lines): | |
5304 * lispref/positions.texi (Screen Lines): | |
5305 * lispref/positions.texi (List Motion): | |
5306 * lispref/positions.texi (Narrowing): | |
5307 * lispref/postgresql.texi (Asynchronous Interface Functions): | |
5308 * lispref/processes.texi (Subprocess Creation): | |
5309 * lispref/processes.texi (Synchronous Processes): | |
5310 * lispref/processes.texi (Asynchronous Processes): | |
5311 * lispref/processes.texi (Process Information): | |
5312 * lispref/processes.texi (Input to Processes): | |
5313 * lispref/processes.texi (Signals to Processes): | |
5314 * lispref/processes.texi (Process Buffers): | |
5315 * lispref/processes.texi (Filter Functions): | |
5316 * lispref/processes.texi (Network): | |
5317 * lispref/range-tables.texi (Working With Range Tables): | |
5318 * lispref/searching.texi (String Search): | |
5319 * lispref/searching.texi (Regexp Search): | |
5320 * lispref/searching.texi (POSIX Regexps): | |
5321 * lispref/searching.texi (Replacing Match): | |
5322 * lispref/searching.texi (Entire Match Data): | |
5323 * lispref/sequences.texi (Bit Vector Functions): | |
5324 * lispref/specifiers.texi (Adding Specifications): | |
5325 * lispref/specifiers.texi (Creating Specifiers): | |
5326 * lispref/specifiers.texi (Specifier Validation Functions): | |
5327 * lispref/specifiers.texi (Other Specification Functions): | |
5328 * lispref/streams.texi (Output Variables): | |
5329 * lispref/symbols.texi (Other Plists): | |
5330 * lispref/text.texi (Insertion): | |
5331 * lispref/text.texi (Commands for Insertion): | |
5332 * lispref/text.texi (Deletion): | |
5333 * lispref/text.texi (User-Level Deletion): | |
5334 * lispref/text.texi (Kill Functions): | |
5335 * lispref/text.texi (Low-Level Kill Ring): | |
5336 * lispref/text.texi (Undo): | |
5337 * lispref/text.texi (Maintaining Undo): | |
5338 * lispref/text.texi (Margins): | |
5339 * lispref/text.texi (Sorting): | |
5340 * lispref/text.texi (Columns): | |
5341 * lispref/text.texi (Primitive Indent): | |
5342 * lispref/text.texi (Mode-Specific Indent): | |
5343 * lispref/text.texi (Region Indent): | |
5344 * lispref/text.texi (Case Changes): | |
5345 * lispref/text.texi (Examining Properties): | |
5346 * lispref/text.texi (Property Search): | |
5347 * lispref/text.texi (Registers): | |
5348 * lispref/text.texi (Transformations): | |
5349 * lispref/mule.texi (Charset Property Functions): | |
5350 * lispref/mule.texi (MULE Characters): | |
5351 * lispref/mule.texi (Composite Characters): | |
5352 * lispref/mule.texi (Coding System Properties): | |
5353 * lispref/mule.texi (Big5 and Shift-JIS Functions): | |
5354 * lispref/mule.texi (CCL Statements): | |
5355 * lispref/mule.texi (Calling CCL): | |
5356 * lispref/mule.texi (Category Tables): | |
5357 * lispref/toolbar.texi (Specifying the Toolbar): | |
5358 * lispref/toolbar.texi (Other Toolbar Variables): | |
5359 * lispref/tooltalk.texi (Elisp Interface for Sending Messages): | |
5360 * lispref/tooltalk.texi (Elisp Interface for Receiving Messages): | |
5361 * lispref/variables.texi (Creating Buffer-Local): | |
5362 * lispref/variables.texi (Variable Aliases): | |
5363 * lispref/windows.texi (Splitting Windows): | |
5364 * lispref/windows.texi (Deleting Windows): | |
5365 * lispref/windows.texi (Selecting Windows): | |
5366 * lispref/windows.texi (Cyclic Window Ordering): | |
5367 * lispref/windows.texi (Buffers and Windows): | |
5368 * lispref/windows.texi (Displaying Buffers): | |
5369 * lispref/windows.texi (Choosing Window): | |
5370 * lispref/windows.texi (Window Point): | |
5371 * lispref/windows.texi (Window Start): | |
5372 * lispref/windows.texi (Vertical Scrolling): | |
5373 * lispref/windows.texi (Horizontal Scrolling): | |
5374 * lispref/windows.texi (Resizing Windows): | |
5375 * lispref/windows.texi (Window Configurations): | |
5376 * lispref/x-windows.texi (X Selections): | |
5377 * lispref/x-windows.texi (Resources): | |
5378 * lispref/strings.texi (Creating Strings): | |
5379 * lispref/strings.texi (Character Codes): | |
5380 * lispref/strings.texi (Text Comparison): | |
5381 * lispref/strings.texi (String Conversion): | |
5382 * lispref/strings.texi (Formatting Strings): | |
5383 * lispref/strings.texi (Character Case): | |
5384 * lispref/strings.texi (Case Tables): | |
5385 * lispref/strings.texi (Char Table Types): | |
5386 * lispref/strings.texi (Working With Char Tables): | |
5387 Giant docstring parameter/Texinfo fixes. | |
5388 | |
5389 Don't use abbreviations for English words, especially when those | |
5390 words have other meanings. For example, use START, not BEG. | |
5391 Use OBJECT, not OBJ. | |
5392 Use VALUE, not VAL. | |
5393 Use BUFFER, not BUF. | |
5394 Use PROCESS, not PROC. (Sometimes PROC was used to mean FUNCTION!) | |
5395 Use CHARACTER, not CH or CHR. | |
5396 Use NUMBER, not NUM. | |
5397 Use COLUMN, not COL. | |
5398 Use POSITION, not POS. | |
5399 Use SYMBOL, not SYM. | |
5400 Use STRING, not STR. | |
5401 Use LIMIT, not LIM. | |
5402 Use OTHER-WINDOW-P, not OTHER-P. | |
5403 Use PRIORITY, not PRI. | |
5404 | |
5405 Use `non-nil', not `true'. | |
5406 | |
5407 Don't call a parameter an ALIST if it can also be a FUNCTION or OBARRAY. | |
5408 | |
5409 Use CASE-TABLE, CATEGORY-TABLE, CHAR-TABLE, etc. instead of TABLE. | |
5410 | |
5411 Try to find better parameter names than ARG. | |
5412 | |
5413 Use consistent parameter names. For example, s/NO-ERROR/NOERROR/g; | |
5414 | |
5415 Use type information in parameter names. For example, use | |
5416 (make-bit-vector length bit), not (make-bit-vector length init). | |
5417 | |
5418 Completion functions should have parameters with names like | |
5419 PARTIAL-FILENAME instead of the misleading FILENAME. | |
5420 | |
5421 Type predicates should consistently take an OBJECT parameter, | |
5422 since any object is valid as input. | |
5423 | |
5424 Use WHICH-FRAMES and WHICH-DEVICES parameters consistently for | |
5425 functions like next-window and next-frame that walk over window or | |
5426 frame lists. | |
5427 | |
5428 Deleted duplicated documentation for: | |
5429 one-window-p, format-insert-file | |
5430 | |
5431 Deleted 21 lines of VMS-specific texinfo documentation. | |
5432 | |
5433 Fixed up a few places where `_' was used in docstring parameter | |
5434 names instead of `-'. | |
5435 | |
5436 Fixed up places that used nil or t without @code. | |
5437 | |
5438 Fixed up places that erroneously used @code instead of @var. | |
5439 | |
5440 Fixed many typos. | |
5441 | |
5442 Fixed many places where the parameters mentioned in the docstring | |
5443 didn't match the actual parameters. | |
5444 | |
5445 Fixed 7 places that used `@var{nil}' instead of `@code{nil}'. | |
5446 | |
5447 Fixed 40 places where docstrings were missing trailing `.' | |
5448 | |
5449 Fixed the texi documentation of 41 functions where the | |
5450 interactiveness of the function in the documentation did not match | |
5451 the implementation. | |
5452 | |
5453 Fixed 117 functions where the names of parameters in the texi was | |
5454 different from the names in the implementation. | |
5455 | |
5456 Fixed the texi documentation of 137 functions where the parameter | |
5457 list of the function in the texi was semantically different from | |
5458 the implementation. | |
5459 | |
5460 2000-10-28 Adrian Aichner <adrian@xemacs.org> | |
5461 | |
5462 * xemacs-faq.texi (Q1.2.1): Use @html instead of @ifhtml to | |
5463 incorporate raw HTML output in the HTML version. | |
5464 | |
5465 2000-11-02 Stephen J. Turnbull <stephen@xemacs.org> | |
5466 | |
5467 * xemacs/menus.texi: | |
5468 * widget.texi: | |
5469 Typo fixes and tiny clarifications. | |
5470 | |
5471 2000-10-19 Stephen J. Turnbull <stephen@xemacs.org> | |
5472 | |
5473 * xemacs-faq.texi: Added Q2.0.13, Q2.0.14 - packages why and how. | |
5474 Added Q2.1.25 - function not found due to package not installed. | |
5475 | |
5476 * xemacs/xemacs.texi: | |
5477 * xemacs/abbrevs.texi: | |
5478 * xemacs/basic.texi: | |
5479 * xemacs/building.texi: | |
5480 * xemacs/packages.texi: | |
5481 * xemacs/startup.texi: | |
5482 Moved "Packages" node to "Important General Concepts" section. | |
5483 | |
5484 * xemacs/packages.texi: Added package list from etc/PACKAGES. | |
5485 | |
442 | 5486 2000-10-04 Martin Buchholz <martin@xemacs.org> |
5487 | |
5488 * XEmacs 21.2.36 is released. | |
5489 | |
5490 2000-09-27 Martin Buchholz <martin@xemacs.org> | |
5491 | |
5492 * lispref/processes.texi (Signals to Processes): Many corrections. | |
5493 | |
5494 2000-09-20 Martin Buchholz <martin@xemacs.org> | |
5495 | |
5496 * xemacs/startup.texi (Startup Paths): Minor fixes. | |
5497 | |
5498 2000-09-19 Martin Buchholz <martin@xemacs.org> | |
5499 | |
5500 * *: Spelling mega-patch | |
5501 | |
5502 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
5503 | |
5504 * internals/internals.texi (Low-Level Modules): | |
5505 Correct the list of source files. | |
5506 | |
5507 2000-08-24 Adrian Aichner <aichner@ecf.teradyne.com> | |
5508 | |
5509 * emodules.texi (Introduction): Trivial typo fix. | |
5510 | |
5511 2000-08-24 Martin Buchholz <martin@xemacs.org> | |
5512 | |
5513 * emodules.texi (Initialization Mode): Spell-Check. | |
5514 | |
5515 2000-08-24 Martin Buchholz <martin@xemacs.org> | |
5516 | |
5517 * lispref/databases.texi (Connecting to a Database): | |
5518 s/berkeley_db/berkeley-db/. Too much C programming. | |
5519 | |
5520 2000-08-02 Stephen J. Turnbull <stephen@xemacs.org> | |
5521 | |
5522 * xemacs/custom.texi (Menubar Resources): Document FontSet resource. | |
5523 | |
5524 2000-07-30 Ben Wing <ben@xemacs.org> | |
5525 | |
5526 * xemacs\search.texi (Regexp Search): | |
5527 * xemacs\search.texi (Regexps): | |
5528 Synch up with updated docs below (describing non-greedy | |
5529 operators and such). | |
5530 | |
5531 2000-07-30 Ben Wing <ben@xemacs.org> | |
5532 | |
5533 * lispref\searching.texi (Syntax of Regexps): | |
5534 Document ??, which we've supported since 20.4. | |
5535 | |
5536 2000-07-31 Sandra Wambold <wambold@cygnus.com> | |
5537 | |
5538 * xemacs-faq.texi: Minor updates in first two sections | |
5539 | |
5540 2000-07-27 Andy Piper <andy@xemacs.org> | |
5541 | |
5542 * lispref/hash-tables.texi: add new hash table type. | |
5543 | |
5544 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
5545 | |
5546 * XEmacs 21.2.35 is released. | |
5547 | |
5548 2000-07-10 Martin Buchholz <martin@xemacs.org> | |
5549 | |
5550 * Makefile: rm -f ==> $(RM) | |
5551 | |
5552 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
5553 | |
454 | 5554 * lispref/postgresql.texi: |
442 | 5555 - Don't mention ".so" extension. |
5556 - Make installation instructions more generic. | |
5557 - Mention M-x describe-installation. | |
5558 | |
5559 2000-07-08 Ben Wing <ben@xemacs.org> | |
5560 | |
5561 * xemacs-faq.texi (Q6.4.1): Update the perennial nonstart under | |
5562 Windows problem with binary locs and latest info. | |
5563 | |
5564 2000-06-17 Adrian Aichner <aichner@ecf.teradyne.com> | |
5565 | |
5566 * lispref/glyphs.texi: Fix trivial typos. | |
5567 * lispref/gutter.texi: Ditto. | |
5568 * lispref/loading.texi: Ditto. | |
5569 * lispref/postgresql.texi: Ditto. | |
5570 | |
5571 2000-06-14 Adrian Aichner <aichner@ecf.teradyne.com> | |
5572 | |
5573 * internals/internals.texi (Markers and Extents): Fix trivial typo. | |
5574 | |
5575 2000-06-11 Adrian Aichner <aichner@ecf.teradyne.com> | |
5576 | |
5577 * make-stds.texi: Fix trivial typos. | |
5578 * xemacs-faq.texi: Ditto. | |
5579 * internals/internals.texi: Ditto. | |
5580 * new-users-guide/edit.texi: Ditto. | |
5581 * new-users-guide/modes.texi: Ditto. | |
5582 * new-users-guide/region.texi: Ditto. | |
5583 | |
5584 2000-06-10 Ben Wing <ben@xemacs.org> | |
5585 | |
5586 * xemacs-faq.texi (Q6.1.2): | |
5587 * xemacs-faq.texi (Q6.1.5): | |
5588 * xemacs-faq.texi (Q6.1.6): | |
5589 Corrections for Cygwin, MinGW. | |
5590 | |
5591 2000-06-07 Adrian Aichner <aichner@ecf.teradyne.com> | |
5592 | |
5593 * xemacs/basic.texi: Fix trivial typos. | |
5594 * xemacs/buffers.texi: Fix trivial typos. | |
5595 * xemacs/building.texi: Ditto. | |
5596 * xemacs/glossary.texi: Ditto. | |
5597 * xemacs/gnu.texi: Ditto. | |
5598 * xemacs/help.texi: Ditto. | |
5599 * xemacs/keystrokes.texi: Ditto. | |
5600 * xemacs/programs.texi: Ditto. | |
5601 * xemacs/search.texi: Ditto. | |
5602 * xemacs/sending.texi: Ditto. | |
5603 | |
5604 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
5605 | |
5606 * XEmacs 21.2.34 is released. | |
5607 | |
5608 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5609 | |
5610 * xemacs/basic.texi: Document translation of tutorial. | |
5611 * xemacs/startup.texi: Remove lock-directory. | |
5612 * xemacs/enterings.texi: Update. | |
5613 | |
5614 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5615 | |
5616 * lispref/display.texi: | |
5617 * lispref/faces.texi: | |
5618 * lispref/glyphs.texi: | |
5619 * lispref/gutter.texi: | |
5620 * lispref/modes.texi: | |
5621 * lispref/specifiers.texi: | |
5622 * lispref/toolbar.texi: | |
5623 Update. Merge Ben's doc-string update. | |
5624 | |
5625 2000-05-08 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5626 | |
5627 * xemacs/basic.texi: | |
5628 * xemacs/enterings.texi: | |
5629 * xemacs/mini.texi: | |
5630 Partial sync with FSF Emacs 20.6 and some update. | |
5631 | |
5632 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
5633 | |
5634 * XEmacs 21.2.33 is released. | |
5635 | |
5636 2000-04-11 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5637 | |
5638 * xemacs-faq.texi (Q2.1.24): Removed wrong header. | |
5639 | |
5640 2000-04-01 Oscar Figueiredo <oscar@xemacs.org> | |
5641 | |
5642 * lispref/ldap.texi: Documentation of the add/modify/delete and | |
5643 internationalization APIs | |
5644 | |
5645 * lispref/lispref.texi: Updated LDAP-related menus | |
5646 | |
5647 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
5648 | |
5649 * XEmacs 21.2.32 is released. | |
5650 | |
5651 2000-03-15 SL Baur <steve@musashimaru.m17n.org> | |
5652 | |
5653 * lispref/postgresql.texi (Unimplemented libpq Functions): Update | |
5654 documentation to reflect the latest code. | |
5655 | |
5656 2000-03-07 SL Baur <steve@musashimaru.m17n.org> | |
5657 | |
5658 * lispref/postgresql.texi (PostgreSQL Support): New File. | |
5659 | |
5660 * lispref/ldap.texi: Insert PostgreSQL/libpq chapter. | |
5661 * lispref/lispref.texi (Top): Ditto. | |
5662 * lispref/internationalization.texi: Ditto. | |
5663 | |
5664 2000-03-07 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5665 | |
5666 * lispref/glyphs.texi (Image Specifiers): Remove parenthesis. | |
5667 | |
5668 2000-03-06 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5669 | |
5670 * xemacs-faq.texi: Put node before section. | |
5671 | |
5672 2000-03-05 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
5673 | |
5674 * xemacs-faq.texi (Macintosh port): Made texinfmt-friendly. | |
5675 | |
5676 2000-03-01 Sandra Wambold <wambold@xemacs.org> | |
5677 | |
5678 * xemacs-faq.texi: Added 6.4.1. XEmacs won't start on Windows | |
5679 | |
5680 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5681 | |
5682 * xemacs/xemacs.texi: Detailed menu update. | |
5683 | |
5684 2000-01-28 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5685 | |
5686 * xemacs/help.texi: Synch with FSF 20.5. Update. | |
5687 | |
5688 2000-02-21 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5689 | |
5690 * lispref/minibuf.texi: Add default argument documentation. | |
5691 | |
5692 2000-02-27 Martin Buchholz <martin@xemacs.org> | |
5693 | |
5694 * internals/internals.texi (lrecords): Update docs for new lisp | |
5695 object representation. | |
5696 | |
5697 2000-02-25 Martin Buchholz <martin@xemacs.org> | |
5698 | |
5699 * internals/internals.texi (Techniques for XEmacs Developers): | |
5700 Document INLINE_HEADER and how to create macros and inline functions. | |
5701 Cleanup entire section. | |
5702 | |
2069 | 5703 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 5704 |
5705 * man/lispref/gutter.texi: New file describing gutter API. | |
5706 | |
5707 * man/lispref/lispref.texi, man/lispref/scrollbars.texi, | |
5708 | |
5709 * man/lispref/toolbar.texi: Fixup links to new node Gutter. | |
5710 | |
2069 | 5711 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 5712 |
5713 * man/lispref/frames.texi, man/xemacs/custom.texi, | |
5714 man/xemacs/frame.texi, man/xemacs/glossary.texi: Mention menubars, | |
5715 toolbars, and gutters as optional components of frames, with | |
5716 pointers to descriptions. | |
5717 | |
2069 | 5718 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 5719 |
5720 * man/lispref/mule.texi: Substantial reorganization and | |
5721 revision for style of descriptions of character sets, | |
5722 encodings, and coding systems. Addition of a complete table | |
5723 of coding systems as of XEmacs 21.2.19. | |
5724 | |
5725 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
5726 | |
5727 * XEmacs 21.2.31 is released. | |
5728 | |
5729 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
5730 | |
5731 * XEmacs 21.2.30 is released. | |
5732 | |
5733 2000-02-21 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
5734 | |
5735 * internals/internals.texi: Made texinfmt-friendly. | |
5736 | |
5737 2000-01-20 Mark Thomas <mthomas@jprc.com> | |
5738 | |
5739 * lispref/backups.texi (Numbered Backups): | |
5740 * xemacs/files.texi (Backup Deletion): | |
5741 Change trim-versions-without-asking to delete-old-versions. | |
5742 | |
5743 2000-02-19 Martin Buchholz <martin@xemacs.org> | |
5744 | |
5745 * internals/internals.texi (Conversion to and from External Data): | |
5746 Document TO_EXTERNAL_FORMAT and friends. | |
5747 Doc bug fixes. | |
5748 | |
5749 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
5750 | |
5751 * XEmacs 21.2.29 is released. | |
5752 | |
5753 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
5754 | |
5755 * internals/internals.texi: Integrate Olivier's portable dumping docs. | |
5756 | |
5757 2000-02-09 Martin Buchholz <martin@xemacs.org> | |
5758 | |
5759 * lispref/symbols.texi (Object Plists): | |
5760 Document `object-plist'. | |
5761 Document `remprop'. | |
5762 Rework all plist frobbing docs for accuracy. | |
5763 | |
440 | 5764 2000-02-07 Martin Buchholz <martin@xemacs.org> |
5765 | |
5766 * XEmacs 21.2.28 is released. | |
5767 | |
5768 2000-02-07 Martin Buchholz <martin@xemacs.org> | |
5769 | |
5770 * cl.texi: Remove (or replace by `get') references to `get*'. | |
5771 | |
5772 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5773 | |
5774 * widget.texi: | |
5775 * internals/internals.texi: | |
5776 * lispref/commands.texi: | |
5777 * lispref/consoles-devices.texi: | |
5778 * lispref/customize.texi: | |
5779 * lispref/dialog.texi: | |
5780 * lispref/extents.texi: | |
5781 * lispref/faces.texi: | |
5782 * lispref/glyphs.texi: | |
5783 * lispref/keymaps.texi: | |
5784 * lispref/lists.texi: | |
5785 * lispref/markers.texi: | |
5786 * lispref/menus.texi: | |
5787 * lispref/mule.texi: | |
5788 * lispref/objects.texi: | |
5789 * lispref/specifiers.texi: | |
5790 * lispref/toolbar.texi: | |
5791 * lispref/tooltalk.texi: | |
5792 * lispref/x-windows.texi: | |
5793 * new-users-guide/custom2.texi: | |
5794 * new-users-guide/help.texi: | |
5795 * new-users-guide/modes.texi: | |
5796 * xemacs/abbrevs.texi: | |
5797 * xemacs/buffers.texi: | |
5798 * xemacs/custom.texi: | |
5799 * xemacs/help.texi: | |
5800 * xemacs/keystrokes.texi: | |
5801 * xemacs/mini.texi: | |
5802 * xemacs/new.texi: | |
5803 * xemacs/packages.texi: | |
5804 * xemacs/programs.texi: | |
5805 * xemacs/sending.texi: | |
5806 Change ' -- ' to '---' since Texinfo formats --- to --. | |
5807 Untabify. TeX doesn't like TAB. | |
5808 | |
5809 2000-01-27 Sandra Wambold <wambold@xemacs.org> | |
5810 | |
5811 * xemacs-faq.texi (Q6.2.2): updated font instructions to include | |
5812 21.2.* | |
5813 | |
5814 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5815 | |
5816 * xemacs-faq.texi: Untabify. | |
442 | 5817 |
440 | 5818 2000-01-22 Martin Buchholz <martin@xemacs.org> |
5819 | |
5820 * internals/internals.texi (General Coding Rules): Document why we | |
5821 #include <config.h> | |
5822 | |
5823 2000-01-21 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5824 | |
5825 * xemacs-faq.texi: Change ' -- ' to '---'. | |
442 | 5826 |
440 | 5827 2000-01-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
5828 | |
5829 * lispref/faces.texi (Face Properties): Document | |
5830 remove-face-property. | |
5831 | |
438 | 5832 2000-01-18 Martin Buchholz <martin@xemacs.org> |
5833 | |
5834 * XEmacs 21.2.27 is released. | |
5835 | |
5836 2000-01-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5837 | |
5838 * xemacs/regs.texi: Synch with FSF 20.5. | |
5839 | |
5840 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5841 | |
5842 * info.texi: Change cross reference from emacs to xemacs. | |
5843 | |
5844 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5845 | |
5846 * xemacs/mini.texi: Synch with FSF 20.5. Update. | |
5847 | |
5848 2000-01-16 Martin Buchholz <martin@xemacs.org> | |
5849 | |
5850 * xemacs-faq.texi (Q2.1.15): Fix up @table formatting. | |
5851 | |
5852 2000-01-14 Martin Buchholz <martin@xemacs.org> | |
5853 | |
5854 * xemacs-faq.texi (Q2.1.15): Update dbx/gdb debugging info. | |
5855 | |
5856 2000-01-14 Sandra Wambold <wambold@xemacs.org> | |
5857 | |
5858 * xemacs-faq.texi: removed out-of-date XEmacs 19 questions. | |
5859 | |
5860 2000-01-14 Sandra Wambold <wambold@xemacs.org> | |
5861 | |
5862 * xemacs-faq.texi: Updated Macintosh information, | |
5863 updated OS/2 info, changed turn-on-pending-delete answer. | |
5864 | |
5865 2000-01-08 Martin Buchholz <martin@xemacs.org> | |
5866 | |
5867 * xemacs-faq.texi (Q2.1.15): Make debugging info current. | |
5868 | |
5869 2000-01-08 Hrvoje Niksic <hniksic@iskon.hr> | |
5870 | |
5871 * lispref/control.texi (Signaling Errors): Document that `signal' | |
5872 is continuable. | |
5873 (Signaling Errors): Document `cerror', `signal-error', and | |
5874 `check-argument-type'. | |
5875 (Handling Errors): Mention `debug-on-signal'. | |
5876 (Error Symbols): Document `define-error'. | |
5877 (Processing of Errors): Document `display-error' and | |
5878 `error-message-string'. | |
5879 | |
5880 2000-01-05 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5881 | |
5882 * internals/internals.texi: Remove latin-1 char. | |
5883 | |
5884 2000-01-05 Didier Verna <didier@xemacs.org> | |
5885 | |
5886 * xemacs/custom.texi (Key bindings using strings): add missing | |
5887 whitespace. | |
5888 | |
5889 * xemacs/xemacs.texi (Top): | |
5890 * new-users-guide/new-users-guide.texi (Top): add missing `@top' | |
5891 node. | |
5892 | |
5893 1999-12-24 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5894 | |
5895 * lispref/minibuf.texi (Reading a Password): New section. | |
5896 | |
5897 1999-12-21 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5898 | |
5899 * lispref/minibuf.texi: Remove documentation about | |
5900 minibuffer-local-ns-map, read-no-blanks-input. | |
5901 | |
5902 1999-12-21 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5903 | |
5904 * lispref/minibuf.texi: Partial Synch with FSF manual. | |
5905 Add description about DEFAULT argument of reading functions. | |
5906 | |
436 | 5907 1999-12-31 Martin Buchholz <martin@xemacs.org> |
5908 | |
5909 * XEmacs 21.2.26 is released. | |
5910 | |
5911 1999-12-26 Karl M. Hegbloom <karlheg@inetarena.com> | |
5912 | |
5913 * internals/internals.texi (garbage_collect_1): Xemacs -> XEmacs | |
5914 | |
434 | 5915 1999-12-24 Martin Buchholz <martin@xemacs.org> |
5916 | |
5917 * XEmacs 21.2.25 is released. | |
5918 | |
5919 1999-12-21 Martin Buchholz <martin@xemacs.org> | |
5920 | |
5921 * lispref/text.texi (Near Point): Document `char-before'. | |
5922 | |
5923 1999-12-20 Adrian Aichner <adrian@xemacs.org> | |
5924 | |
5925 * widget.texi: Fix typos and possessive singular errors. Break | |
5926 long sentences for readability. Remove some redundant commas. | |
5927 | |
5928 1999-12-18 Martin Buchholz <martin@xemacs.org> | |
5929 | |
442 | 5930 * lispref/functions.texi (Mapping Functions): |
434 | 5931 Warn about mapping functions modifying their sequences. |
5932 | |
5933 1999-12-15 Sandra Wambold <wambold@xemacs.org> | |
5934 | |
5935 * xemacs-faq.texi: link to matlab.el added; misc. address changes | |
5936 | |
432 | 5937 1999-12-14 Martin Buchholz <martin@xemacs.org> |
5938 | |
5939 * XEmacs 21.2.24 is released. | |
5940 | |
5941 1999-12-07 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
5942 | |
5943 * xemacs/startup.texi (Startup Paths): fix typo: EMACSPACKAGEPATH | |
442 | 5944 instead of PACKAGEPATH |
432 | 5945 From Marcus Harnisch <harnisch@mikrom.de> |
5946 | |
430 | 5947 1999-12-07 Martin Buchholz <martin@xemacs.org> |
5948 | |
5949 * XEmacs 21.2.23 is released. | |
5950 | |
5951 1999-12-06 Sandra Wambold <wambold@pobox.com> | |
5952 | |
5953 * xemacs-faq.texi: Added MS-Windows questions; some other changes | |
5954 | |
5955 1999-11-29 Martin Buchholz <martin@xemacs.org> | |
5956 | |
442 | 5957 * info.texi (Top): |
430 | 5958 Remove @ifnottex, which gives old makeinfos indigestion. |
442 | 5959 * texinfo.texi (Top): |
430 | 5960 Revert to pre-texinfo-4.0 version, plus small changes to make |
5961 texinfo-3.12, texinfo-3.12f, texinfo-4.0, and TeX happy. | |
5962 | |
5963 1999-11-30 Sandra Wambold <wambold@cygnus.com> | |
5964 | |
5965 * xemacs-faq.texi: fixed and commented out bad URL links | |
5966 | |
428 | 5967 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
5968 | |
5969 * XEmacs 21.2.22 is released | |
5970 | |
5971 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
5972 | |
5973 * XEmacs 21.2.21 is released. | |
5974 | |
5975 1999-11-26 Martin Buchholz <martin@xemacs.org> | |
5976 | |
5977 * internals.texi (Lstream Functions): | |
5978 * internals.texi (Lstream Methods): | |
5979 Types have changed to size_t and ssize_t. Document them. | |
5980 | |
5981 1999-08-12 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
5982 | |
5983 * xemacs-faq.texi (Q4.4.2): added FAQ about Sun Workshop on | |
5984 XEmacs 21 | |
5985 | |
5986 1999-11-15 Martin Buchholz <martin@xemacs.org> | |
5987 | |
5988 * xemacs/programs.texi: Upgrade to etags Version 13.32 | |
442 | 5989 |
428 | 5990 * Makefile: |
5991 - Make sure the default target is `info' instead of cl.info. | |
5992 - Use $(INFODIR) consistently where appropriate. | |
5993 - Remove makeinfo-1.68 warning. (Usually only maintainer rebuilds info). | |
5994 - Comment out unused macros: EMACS EMACSFLAGS | |
5995 - Replace `-rm -f' with `rm -f', XPG4 guarantees exit code == 0. | |
5996 - Get dependencies up to date. | |
5997 | |
5998 * internals/Makefile: | |
5999 * xemacs/Makefile: | |
6000 * lispref/Makefile: | |
6001 * new-users-guide/Makefile: | |
6002 * lispref/index.perm: | |
6003 * lispref/index.unperm: | |
6004 * lispref/permute-index: | |
6005 * internals/index.perm: | |
6006 * internals/index.unperm: | |
6007 Remove these Makefiles. | |
6008 Include all functionality in man/Makefile. | |
6009 Support only non-permuted indexes for simplicity. | |
6010 | |
6011 * emodules.texi: | |
6012 - TeX doesn't tolerate `_' in variable names; use `-' instead. | |
6013 | |
6014 * lispref/commands.texi: | |
6015 * lispref/display.texi: | |
6016 * lispref/faces.texi: | |
6017 * lispref/functions.texi: | |
6018 * lispref/keymaps.texi: | |
6019 * lispref/lists.texi: | |
6020 * lispref/modes.texi: | |
6021 * lispref/objects.texi: | |
6022 * lispref/os.texi: | |
6023 * lispref/sequences.texi: | |
6024 * lispref/strings.texi: | |
6025 * lispref/text.texi: | |
6026 * new-users-guide/custom1.texi: | |
6027 * xemacs/custom.texi: | |
6028 * xemacs/menus.texi: | |
6029 - Make sources compatible with makeinfo 4.0 *and* 3.12. | |
6030 - Replace @sc{ASCII} with @sc{ascii}, etc... | |
6031 - Replace @var{(foo)} with (@var{foo}), etc... | |
6032 | |
6033 * info-stnd.texi: Remove. Who cares about the standalone info reader? | |
6034 | |
6035 * texinfo.tex: | |
6036 * texinfo.texi: | |
6037 * info.texi: | |
6038 * standards.texi: | |
6039 * make-stds.texi: | |
6040 Import FSF-maintained files from texinfo-4.0. | |
6041 | |
6042 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6043 | |
6044 * XEmacs 21.2.20 is released | |
6045 | |
6046 1999-08-30 Robert Pluim <rpluim@bigfoot.com> | |
6047 | |
6048 * xemacs/packages.texi (Using Packages): Added description of | |
6049 package-get-package-provider. | |
6050 | |
6051 1999-07-27 Charles G Waldman <cgw@fnal.gov> | |
6052 | |
6053 * xemacs-faq.texi (Q5.0.6): Describe `shell-multiple-shells' | |
6054 | |
434 | 6055 1999-08-01 Adrian Aichner <adrian@xemacs.org> |
428 | 6056 |
6057 * xemacs/programs.texi (Balanced Editing): Remove broken | |
6058 line-break. | |
6059 | |
6060 * xemacs-faq.texi (Q1.0.6): Provide correct location in XEmacs | |
6061 menus. | |
6062 (Q1.4.1): ditto. | |
6063 (Q1.4.3): ditto. | |
6064 (Q2.0.5): Hyphenate words. | |
6065 | |
6066 * info.texi (Add): Fix one typo. | |
6067 | |
6068 1999-08-23 Stephane Epardaud <stephane@lunatech.com> | |
6069 | |
6070 * internals/internals.texi (Garbage Collection - Step by Step): | |
6071 just added some dots to shut up compile warnings. | |
6072 | |
6073 1999-08-19 Matthias Neubauer <neubauer@informatik.uni-tuebingen.de> | |
6074 | |
6075 * internals/internals.texi (Garbage Collection - Step by Step): | |
6076 new section in chapter Allocation of Objects in XEmacs Lisp. | |
6077 | |
6078 1999-07-28 Andy Piper <andy@xemacs.org> | |
6079 | |
6080 * internals.texi (Glyphs): add some glyph documentation. | |
6081 | |
6082 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6083 | |
6084 * XEmacs 21.2.19 is released | |
6085 | |
434 | 6086 1999-07-10 Adrian Aichner <adrian@xemacs.org> |
428 | 6087 |
6088 * emodules.texi: Use @set emacs and @value{emacs} instead of | |
6089 @macro (unsupported by texinfo package). Remove stray @code. | |
6090 * custom.texi: Add info extension to @setfilename. | |
6091 * texinfo.texi: Ditto. | |
6092 * widget.texi: Ditto. | |
6093 * packages.texi: Reword a sentence, fixing @item Decide where to | |
6094 install ... | |
6095 | |
442 | 6096 1999-07-19 Didier Verna <didier@xemacs.org> |
428 | 6097 |
6098 * custom.texi (Wishlist): removed the Custom Comments wishlist | |
6099 entry. They are implemented. | |
6100 | |
6101 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6102 | |
6103 * XEmacs 21.2.18 is released | |
6104 | |
6105 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6106 | |
6107 * XEmacs 21.2.17 is released | |
6108 | |
6109 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6110 | |
6111 * XEmacs 21.2.16 is released | |
6112 | |
6113 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6114 | |
6115 * XEmacs 21.2.15 is released | |
6116 | |
6117 1999-05-30 Albert Chin-A-Young <china@thewrittenword.com> | |
6118 | |
6119 * custom.texi, external-widget.texi: Minor | |
6120 fix to get info DIR entry correct. | |
6121 | |
6122 1999-05-22 Vin Shelton <acs@xemacs.org> | |
6123 | |
6124 * xemacs/cmdargs.texi: | |
6125 Document -private. | |
6126 | |
6127 1999-05-16 Mike McEwan <mike@lotusland.demon.co.uk> | |
6128 | |
6129 * Makefile: Added `emodules.info' to info targets. | |
6130 | |
6131 1999-05-20 Karl M. Hegbloom <karlheg@debian.org> | |
6132 | |
6133 * internals/internals.texi (The XEmacs Object System | |
6134 (Abstractly Speaking)): typo. | |
6135 | |
6136 1999-05-16 Hrvoje Niksic <hniksic@srce.hr> | |
6137 | |
6138 * lispref/text.texi (Substitution): Document improvements in | |
6139 `translate-region'. | |
6140 | |
6141 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6142 | |
6143 * XEmacs 21.2.14 is released | |
6144 | |
6145 1999-05-11 Albert Chin-A-Young <china@thewrittenword.com> | |
6146 | |
6147 * man/internals/internals.texi: | |
6148 * man/lispref/lispref.texi: | |
6149 * man/new-users-guide/new-users-guide.texi: | |
6150 * man/xemacs/xemacs.texi: | |
6151 * man/cl.texi: | |
6152 * man/custom.texi: | |
6153 * man/term.texi: | |
6154 * man/termcap.texi: | |
6155 * man/widget.texi: | |
6156 * man/xemacs-faq.texi: | |
6157 * man/external-widget.texi: | |
6158 Added info dir entries so install-info will add them to | |
6159 the common `dir' file. | |
6160 | |
2069 | 6161 1999-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
428 | 6162 |
6163 * man/lispref/mule.texi: Document CCL | |
6164 - add sections: syntax, statements, expressions, and examples. | |
6165 - fix naming and description errors. | |
6166 - update links in neighboring nodes. | |
6167 | |
6168 1999-04-24 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
6169 | |
6170 * lispref/eval.texi (Eval): default for max-lisp-eval-depth is 500. | |
6171 | |
6172 1999-04-23 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
6173 | |
6174 * xemacs-faq.texi (Q3.0.7): refer to correct menu (Option->Frame | |
6175 Appearance) | |
6176 | |
6177 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6178 | |
6179 * XEmacs 21.2.13 is released | |
6180 | |
6181 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6182 | |
6183 * XEmacs 21.2.12 is released | |
6184 | |
6185 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6186 | |
6187 * XEmacs 21.2.11 is released | |
6188 | |
6189 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6190 | |
6191 * XEmacs 21.2.10 is released | |
6192 | |
6193 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6194 | |
6195 * XEmacs 21.2.9 is released | |
6196 | |
434 | 6197 1999-01-14 Adrian Aichner <adrian@xemacs.org> |
428 | 6198 |
6199 * internals\internals.texi (Techniques for XEmacs Developers): | |
6200 Fixing documentation. | |
6201 (Basic Lisp Modules): ditto. | |
6202 | |
6203 1999-01-10 J. Kean Johnston <jkj@sco.com> | |
6204 | |
6205 * emodules.texi: New file to describe XEmacs modules. | |
6206 | |
6207 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
6208 | |
6209 * XEmacs 21.2.8 is released. | |
6210 | |
6211 1998-12-24 Martin Buchholz <martin@xemacs.org> | |
6212 | |
6213 * XEmacs 21.2.7 is released. | |
6214 | |
6215 1998-12-16 Andy Piper <andy@xemacs.org> | |
6216 | |
6217 * XEmacs 21.2.6 is released | |
6218 | |
6219 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6220 | |
6221 * XEmacs 21.2.5 is released | |
6222 | |
6223 1998-11-30 Martin Buchholz <martin@xemacs.org> | |
6224 | |
6225 * xemacs/startup.texi (Startup Paths): | |
6226 * xemacs/custom.texi (Widgets): | |
6227 * xemacs-faq.texi (Q3.0.5): | |
6228 * xemacs-faq.texi (Top): | |
6229 | |
6230 * widget.texi (info-link): | |
6231 | |
6232 * lispref/objects.texi (Type Predicates): | |
6233 * lispref/objects.texi (Hash Table Type): | |
6234 * lispref/objects.texi (Primitive Types): | |
6235 * lispref/objects.texi (Lisp Data Types): | |
6236 * lispref/macros.texi (Backquote): | |
6237 * lispref/hash-tables.texi (Weak Hash Tables): | |
6238 * lispref/hash-tables.texi: | |
6239 * lispref/errors.texi (Standard Errors): | |
6240 * lispref/compile.texi (Disassembly): | |
6241 * lispref/compile.texi (Compiled-Function Objects): | |
6242 * lispref/compile.texi (Eval During Compile): | |
6243 * lispref/compile.texi (Docs and Compilation): | |
6244 * lispref/compile.texi (Compilation Functions): | |
6245 * lispref/compile.texi (Speed of Byte-Code): | |
6246 * lispref/compile.texi (Byte Compilation): | |
6247 * lispref/building.texi (Garbage Collection): | |
6248 | |
6249 * internals/internals.texi (Simple Special Forms): | |
6250 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
6251 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
6252 * internals/internals.texi (String): | |
6253 * internals/internals.texi (Introduction to Allocation): | |
6254 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
6255 * internals/internals.texi (Modules for Internationalization): | |
6256 * internals/internals.texi (Modules for Interfacing with X Windows): | |
6257 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
6258 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
6259 * internals/internals.texi (Modules for Interfacing with the File System): | |
6260 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
6261 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
6262 * internals/internals.texi (Editor-Level Control Flow Modules): | |
6263 * internals/internals.texi (Modules for Standard Editing Operations): | |
6264 * internals/internals.texi (Basic Lisp Modules): | |
6265 * internals/internals.texi (Low-Level Modules): | |
6266 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
6267 * internals/internals.texi (An Example of Mule-Aware Code): | |
6268 * internals/internals.texi (Working With Character and Byte Positions): | |
6269 * internals/internals.texi (Writing Lisp Primitives): | |
6270 * internals/internals.texi (General Coding Rules): | |
6271 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
6272 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
6273 * internals/internals.texi (XEmacs From the Perspective of Building): | |
6274 * internals/internals.texi (The Lisp Language): | |
6275 * internals/internals.texi (Top): | |
6276 * internals/internals.texi: | |
6277 - rewrite Internals manual | |
6278 | |
6279 * cl.texi (Porting Common Lisp): | |
6280 * cl.texi (Hash Tables): | |
6281 * cl.texi (Association Lists): | |
6282 * cl.texi (Declarations): | |
6283 * cl.texi (For Clauses): | |
6284 * cl.texi (Basic Setf): | |
6285 * cl.texi (Equality Predicates): | |
6286 - mega patch | |
6287 | |
6288 1998-11-28 SL Baur <steve@altair.xemacs.org> | |
6289 | |
6290 * XEmacs 21.2-beta4 is released. | |
6291 | |
6292 1998-10-15 SL Baur <steve@altair.xemacs.org> | |
6293 | |
6294 * XEmacs 21.2-beta3 is released. | |
6295 | |
6296 1998-10-09 SL Baur <steve@altair.xemacs.org> | |
6297 | |
6298 * Makefile (MAKEINFO): Undo no-split change. | |
6299 | |
6300 1998-09-29 SL Baur <steve@altair.xemacs.org> | |
6301 | |
6302 * XEmacs 21.2-beta2 is released. | |
6303 | |
6304 1998-09-20 Hrvoje Niksic <hniksic@srce.hr> | |
6305 | |
6306 * lispref/customize.texi: New file. | |
6307 | |
6308 1998-09-09 Hrvoje Niksic <hniksic@srce.hr> | |
6309 | |
6310 * internals/internals.texi (Coding for Mule): New node and | |
6311 section. | |
6312 | |
6313 1998-09-03 Darryl Okahata <darrylo@sr.hp.com> | |
6314 | |
6315 * xemacs/packages.texi: Document manually installing binary packages. | |
6316 | |
6317 1998-09-02 Jeff Miller <jmiller@smart.net> | |
6318 | |
6319 * Synch calendar.texi with Emacs 20.3 | |
6320 | |
6321 1998-09-03 Darryl Okahata <darrylo@sr.hp.com> | |
6322 | |
6323 * xemacs/packages.texi: Correct and update package documentation. | |
6324 Updated the package installation section to mention the visual | |
6325 package browser/installer. | |
6326 | |
6327 1998-08-31 Hrvoje Niksic <hniksic@srce.hr> | |
6328 | |
6329 * lispref/buffers.texi (Indirect Buffers): Update with XEmacs | |
6330 specifics. | |
6331 | |
6332 1998-08-21 Greg Klanderman <greg@alphatech.com> | |
6333 | |
6334 * lispref/files.texi (User Name Completion): new section. | |
6335 | |
434 | 6336 1998-07-23 Adrian Aichner <adrian@xemacs.org> |
428 | 6337 |
6338 * xemacs/packages.texi (Packages): Changing @itemize @emph to | |
6339 @itemize @bullet (this is what all other files included in | |
6340 xemacs.texi use) to fix error in texi2dvi (GNU Texinfo 3.12) 0.8. | |
6341 | |
6342 1998-07-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
6343 | |
6344 * xemacs/startup.texi: Small fixes, suggested by Hrvoje. | |
6345 | |
6346 * xemacs/xemacs.texi: | |
6347 * xemacs/packages.texi: More packages documentation. | |
6348 | |
6349 1998-07-19 SL Baur <steve@altair.xemacs.org> | |
6350 | |
6351 * XEmacs 21.2-beta1 is released. | |
6352 | |
6353 1998-07-12 SL Baur <steve@altair.xemacs.org> | |
6354 | |
6355 * XEmacs 21.0-pre5 is released. | |
6356 | |
6357 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
6358 | |
6359 * XEmacs 21.0-pre4 is released. | |
6360 | |
6361 1998-07-09 Oliver Graf <ograf@fga.de> | |
6362 | |
6363 * lispref/dragndrop.texi: added warning to OffiX Protocol section | |
6364 | |
6365 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
6366 | |
6367 * lispref/ldap.texi (Syntax of Search Filters): Fix QP encoding | |
6368 damage in transit. | |
6369 | |
6370 1998-07-05 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
6371 | |
6372 * lispref/tooltalk.texi: Fixed NEXT to @node LDAP | |
6373 | |
6374 * lispref/internationalization.texi: Fixed PREV to @node LDAP | |
6375 | |
6376 * lispref/lispref.texi: Added LDAP chapter from ldap.texi | |
6377 | |
6378 * lispref/Makefile: Added ldap.texi to srcs | |
6379 | |
6380 1998-06-29 SL Baur <steve@altair.xemacs.org> | |
6381 | |
6382 * standards.texi (Preface): Revert previous change to @node | |
6383 because it doesn't pass makeinfo. | |
6384 | |
434 | 6385 1998-06-27 Adrian Aichner <adrian@xemacs.org> |
428 | 6386 |
6387 * cl.texi: See ALL. | |
6388 * info-stnd.texi: Fixed @setfilename. | |
6389 * info.texi: Fixed @setfilename and a typo. | |
6390 * standards.texi: Added NEXT to @node Preface. See ALL. | |
6391 * texinfo.texi: Fixed section names, quoted usage of @TeX{}, | |
442 | 6392 changed some occurrences of `:' to `colon'. |
428 | 6393 * xemacs-faq.texi: See ALL. |
6394 * internals/internals.texi: See ALL. | |
6395 * lispref/back.texi: Fixed @setfilename. | |
6396 * lispref/compile.texi: See ALL. | |
6397 * lispref/debugging.texi: See ALL. | |
6398 * lispref/edebug-inc.texi: Added NEXT and UP to @node Edebug. | |
6399 * lispref/eval.texi: See ALL. | |
6400 * lispref/extents.texi: See ALL. | |
6401 * lispref/loading.texi: See ALL. | |
6402 * lispref/searching.texi: Escaped `(' in | |
6403 @cindex @samp{(?:} in regex | |
6404 * lispref/variables.texi: See ALL. | |
6405 | |
6406 1998-06-28 SL Baur <steve@altair.xemacs.org> | |
6407 | |
6408 * xemacs/calendar.texi: Massive update. | |
6409 From Jeff Miller <jmiller@smart.net> | |
6410 | |
6411 1998-06-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
6412 | |
6413 * xemacs/abbrevs.texi: | |
6414 * xemacs/basic.texi: | |
6415 * xemacs/buildings.texi: | |
6416 * xemacs/cmdargs.texi: | |
6417 * xemacs/files.texi: | |
6418 * xemacs/adjustments.texi: Adjustments to integrate startup.texi | |
6419 and packages.texi stuff. | |
6420 | |
6421 * xemacs/startup.texi: | |
6422 * xemacs/packages.texi: Created. | |
6423 | |
434 | 6424 1998-06-10 Adrian Aichner <adrian@xemacs.org> |
428 | 6425 |
6426 * texinfo.texi: added ../info/ to @setfilename, broke line after | |
6427 @noindent. Changed @var{arg-not-used-by-@TeX{}} to | |
6428 @var{arg-not-used-by-@@TeX{}} to make `texinfo-format-buffer' | |
6429 happy. Fixed refs broken by a previous patch of mine. | |
6430 | |
6431 1998-06-18 Darryl Okahata <darrylo@sr.hp.com> | |
6432 | |
6433 * lispref/os.texi (os.texi): Document `user-home-directory'. | |
6434 | |
6435 1998-06-13 Greg Klanderman <greg@alphatech.com> | |
6436 | |
6437 * lispref/windows.texi (Resizing Windows): document third optional | |
6438 WINDOW argument to enlarge-window and shrink-window. | |
6439 (Selecting Windows): document select-window optional norecord | |
6440 argument. | |
6441 (Size of Window): document window-text-area-pixel-height and | |
6442 window-text-area-pixel-width. | |
6443 (Size of Window): document window-displayed-text-pixel-height. | |
6444 (Position of Window): document window-text-area-pixel-edges. | |
6445 | |
6446 * lispref/positions.texi (Screen Lines): cleanup docs for | |
6447 vertical-motion and vertical-motion-pixels. | |
6448 | |
6449 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
6450 | |
6451 * lispref/windows.texi (Resizing Windows): Document | |
6452 `enlarge-window-pixels' and `shrink-window-pixels'. | |
6453 | |
6454 * lispref/positions.texi (Screen Lines): Update documentation of | |
6455 `vertical-motion'. | |
6456 (Screen Lines): Document `vertical-motion-pixels'. | |
6457 | |
6458 * lispref/frames.texi (Input Focus): Document `focus-frame', | |
6459 `save-selected-frame' and `with-selected-frame'. | |
6460 | |
6461 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
6462 | |
6463 * lispref/searching.texi (Regexp Search): Document `split-path'. | |
6464 | |
6465 * lispref/files.texi (Unique File Names): Update docs for | |
6466 `make-temp-name'; document `temp-directory'. | |
6467 | |
6468 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
6469 | |
6470 * lispref/os.texi (Recording Input): Update docs for `recent-keys'. | |
6471 | |
6472 * lispref/specifiers.texi (Specifier Instancing): Correct | |
6473 instantiation order. | |
6474 (Specifier Instancing Functions): Ditto. | |
6475 | |
6476 1998-06-11 Oliver Graf <ograf@fga.de> | |
6477 | |
6478 * lispref/lispref.texi: references to Drag'n'Drop fixed | |
6479 * lispref/modes.texi: references to Drag'n'Drop fixed | |
6480 * lispref/scrollbars.texi: references to Drag'n'Drop fixed | |
6481 * lispref/dragndrop.texi: naming changed to Drag and Drop | |
6482 added some docu about the drop procedure | |
6483 | |
434 | 6484 1998-06-09 Adrian Aichner <adrian@xemacs.org> |
428 | 6485 |
6486 * info-stnd.texi: added ../info/ to @setfilename. | |
6487 * info.texi: added ../info/ to @setfilename. | |
6488 * lispref/commands.texi: see ALL. | |
6489 * lispref/frames.texi: see ALL. | |
6490 * lispref/os.texi: see ALL. | |
6491 * lispref/text.texi: see ALL. | |
6492 * new-users-guide/custom1.texi: broke line after enumerated @item. | |
6493 * new-users-guide/custom2.texi: see ALL. | |
6494 * new-users-guide/edit.texi: see ALL. | |
6495 * new-users-guide/enter.texi: see ALL. | |
6496 * new-users-guide/files.texi: see ALL. | |
6497 * new-users-guide/help.texi | |
6498 * new-users-guide/modes.texi: see ALL. | |
6499 * new-users-guide/new-users-guide.texi: see ALL. | |
6500 * new-users-guide/region.texi: see ALL. | |
6501 * new-users-guide/search.texi: see ALL. | |
6502 * new-users-guide/xmenu.texi: see ALL. | |
6503 * standards.texi: added ../info/ to @setfilename. | |
6504 * texinfo.texi: added ../info/ to @setfilename, broke line after | |
6505 @noindent. Changed @var{arg-not-used-by-@TeX{}} to | |
6506 @var{arg-not-used-by-@@TeX{}} to make `texinfo-format-buffer' | |
6507 happy. | |
6508 * xemacs-faq.texi: added ../info/ to @setfilename. | |
6509 * ALL: corrected INFO-FILE-NAME to lispref and xemacs in relevant | |
6510 p?xefs (most were empty, some elisp and emacs), used | |
6511 PRINTED-MANUAL-TITLE "XEmacs Lisp Reference Manual" and "XEmacs | |
6512 User's Manual" respectively for all these. | |
6513 | |
6514 1998-06-01 Oliver Graf <ograf@fga.de> | |
6515 | |
6516 * lispref/dragndrop.texi: added experimental | |
6517 | |
6518 1998-05-28 Oliver Graf <ograf@fga.de> | |
6519 | |
6520 * lispref/dragndrop.texi: a warning, and a bit more text this time | |
6521 | |
6522 1998-05-26 Oliver Graf <ograf@fga.de> | |
6523 | |
6524 * lispref/dragndrop.texi: only small changes | |
6525 | |
933 | 6526 1998-05-15 Christian Nybø <chr@mediascience.no> |
428 | 6527 |
6528 * xemacs/killing.texi: Properly document `zap-to-char'. | |
6529 | |
6530 1998-05-13 Greg Klanderman <greg@alphatech.com> | |
6531 | |
6532 * lispref/frames.texi (Input Focus): cleanup select-frame | |
6533 documentation. | |
6534 | |
6535 1998-05-10 Oliver Graf <ograf@fga.de> | |
6536 | |
6537 * lispref/dragndrop.texi: new section for the DnD API | |
6538 * lispref/lispref.texi: added Drag'n'Drop between scrollbars and | |
6539 modes | |
6540 * lispref/modes.texi: changed back-ref to Drag'n'Drop | |
6541 * lispref/scrollbars.texi: changed next-ref to Drag'n'Drop | |
6542 | |
6543 1998-05-05 Oliver Graf <ograf@fga.de> | |
6544 | |
6545 * commands.texi: exchange of dnd-drop with misc-user | |
6546 | |
6547 1998-05-04 Martin Buchholz <martin@xemacs.org> | |
6548 | |
6549 * internals.texi (Techniques for XEmacs Developers): Add some more | |
6550 comments on adding new files, inspired by Olivier Galibert. | |
6551 | |
6552 1998-05-02 Hrvoje Niksic <hniksic@srce.hr> | |
6553 | |
6554 * lispref/windows.texi (Vertical Scrolling): Fixup docstring for | |
6555 scroll-conservatively. | |
6556 | |
6557 * lispref/loading.texi (Named Features): Document advanced args to | |
6558 `feature'. | |
6559 | |
6560 * lispref/files.texi (File Name Expansion): Document that | |
6561 expand-file-name does not treat // and ~/ in the middle of file | |
6562 names specially. | |
6563 | |
6564 * lispref/positions.texi (Excursions): Document | |
6565 `with-current-buffer' and `with-temp-file'. | |
6566 | |
6567 * lispref/strings.texi (Formatting Strings): Document `%*' | |
6568 construct. | |
6569 | |
6570 * lispref/os.texi (Time Conversion): Document that TIME may be | |
6571 omitted from format-time-string. | |
6572 | |
6573 * lispref/strings.texi (String Conversion): Document BASE argument | |
6574 to `string-to-number'. | |
6575 | |
6576 * lispref/searching.texi (Syntax of Regexps): Fix up Perl | |
6577 constructs documentation. | |
6578 (Regexp Search): Document `split-string'. | |
6579 | |
6580 * xemacs/display.texi (Scrolling): Document scroll-conservatively. | |
6581 | |
6582 * xemacs/killing.texi (Active Regions): Document that errors no | |
6583 longer highlight the region. | |
6584 | |
6585 * lispref/display.texi (The Echo Area): Document message log | |
6586 stuff, including `display-message', `lmessage', `clear-message', | |
6587 (Warnings): Document warning stuff. | |
6588 | |
6589 * lispref/commands.texi (Working With Events): Update `make-event' | |
6590 for misc-user events. | |
6591 (Using Interactive): Document `function-interactive'. | |
6592 | |
6593 * lispref/os.texi (System Environment): Document USE-FLOATS | |
6594 argument to `load-average'. | |
6595 (User Identification): Document the new semantics of | |
6596 `user-full-name'. | |
6597 | |
6598 * lispref/strings.texi (Creating Strings): Document `string' | |
6599 function. | |
6600 | |
6601 1998-05-02 Hrvoje Niksic <hniksic@srce.hr> | |
6602 | |
6603 * lispref/numbers.texi (Comparison of Numbers): Document multi-arg | |
6604 comparison functions. | |
6605 | |
6606 1998-04-30 Greg Klanderman <greg@alphatech.com> | |
6607 | |
6608 * lispref/frames.texi (Input Focus): Document behavior of | |
6609 select-frame wrt focus-follows-mouse. | |
6610 | |
6611 1998-04-30 Martin Buchholz <martin@xemacs.org> | |
6612 | |
6613 * Makefile: Support generic makes by avoiding `%' syntax. | |
6614 It breaks my heart to uglify the Makefile like this, but this is | |
6615 going to be a perpetual FAQ otherwise. | |
6616 General cleanup. | |
6617 Comment out w3 and vm info rules. | |
6618 Use paranoid cd ./$@ syntax to avoid losing with luser's CDPATH. | |
6619 | |
2069 | 6620 1998-03-27 Stephen Turnbull <stephen@xemacs.org> |
428 | 6621 |
6622 * xemacs/frame.texi: Document cursor appearance at end of line. | |
6623 | |
6624 1998-03-14 Hrvoje Niksic <hniksic@srce.hr> | |
6625 | |
6626 * internals/internals.texi (GCPROing): Explain when it is | |
6627 necessary to GCPRO function parameters. | |
6628 | |
6629 1998-03-13 Hrvoje Niksic <hniksic@srce.hr> | |
6630 | |
6631 * internals/internals.texi (Writing Lisp Primitives): Updated | |
6632 definition of For(). | |
6633 | |
6634 1998-03-01 Aki Vehtari <Aki.Vehtari@hut.fi> | |
6635 | |
6636 * lispref/menus.texi: Use recommended forms in examples. | |
6637 | |
6638 1998-02-22 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6639 | |
6640 * cl.texi (Creating Symbols): Tell a little bit about the new | |
6641 handling of gensyms. | |
6642 | |
6643 1998-02-21 Greg Klanderman <greg@alphatech.com> | |
6644 | |
6645 * xemacs/custom.texi (X Resources): update to describe automatic | |
6646 setting of x-emacs-application-class. | |
6647 | |
6648 * lispref/x-windows.texi (Resources): update doc for | |
6649 x-emacs-application-class. | |
6650 | |
6651 1998-02-20 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6652 | |
6653 * cl.texi (Equality Predicates): Update to reflect change to | |
6654 `equalp' made in "cl-extra.el" - now compares characters case | |
6655 insensitively. | |
6656 | |
6657 1998-02-23 Aki Vehtari <Aki.Vehtari@hut.fi> | |
6658 | |
6659 * lispref/menus.texi (Menu Format): Doc fix: suffix can be form. | |
6660 | |
6661 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6662 | |
6663 * lispref/display.texi (Beeping): Linux has sound too. | |
6664 | |
6665 1998-02-19 Hrvoje Niksic <hniksic@srce.hr> | |
6666 | |
6667 * cl.texi (Argument Lists): Keywords are handled specially by | |
6668 XEmacs. | |
6669 (Porting Common Lisp): XEmacs backquotes are OK. | |
6670 | |
6671 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6672 | |
6673 * xemacs/custom.texi (Init Syntax): document #b, #o, and #x reader | |
6674 syntax for integers. | |
434 | 6675 From Adrian Aichner <adrian@xemacs.org> |
428 | 6676 * cl.texi (Porting Common Lisp): ' ' |
6677 * lispref/numbers.texi (Numbers): ' ' | |
6678 | |
6679 1998-02-15 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6680 | |
6681 * lispref/searching.texi (Regular Expressions): Document the | |
6682 recent regular expression syntax extensions. | |
6683 | |
6684 1998-02-10 Olivier Galibert <galibert@pobox.com> | |
6685 | |
6686 * internals/internals.texi: Remove all mocklisp references. | |
6687 | |
6688 1997-12-17 SL Baur <steve@altair.xemacs.org> | |
6689 | |
6690 * Makefile (SUBDIR): skk and gnats are packaged. | |
6691 | |
6692 * lispref/intro.texi (Acknowledgements): Update to v3.3. | |
6693 | |
6694 * lispref/lispref.texi: Update to 20.5/v3.3. | |
6695 | |
6696 1997-12-10 SL Baur <steve@altair.xemacs.org> | |
6697 | |
6698 * Makefile: Don't stop on errors. | |
6699 | |
6700 1997-12-06 SL Baur <steve@altair.xemacs.org> | |
6701 | |
6702 * Makefile: add skk manual. | |
6703 | |
6704 1997-11-29 SL Baur <steve@altair.xemacs.org> | |
6705 | |
6706 * internals/internals.texi (XEmacs): Updated history section. | |
6707 | |
6708 1997-11-28 SL Baur <steve@altair.xemacs.org> | |
6709 | |
6710 * lispref/compile.texi (Compilation Functions): Plug in the real | |
6711 return value. | |
6712 (Speed of Byte-Code): Ditto. | |
6713 (Compilation Functions): Ditto. | |
6714 (Compiled-Function Objects): Ditto. | |
6715 (Speed of Byte-Code): Increase loop counter by factor of 50 (the | |
6716 previous value was embarrassing). | |
6717 | |
6718 1997-11-21 SL Baur <steve@altair.xemacs.org> | |
6719 | |
6720 * Makefile (srcs): vhdl-mode has been packaged. | |
6721 | |
6722 1997-11-15 SL Baur <steve@altair.xemacs.org> | |
6723 | |
6724 * lispref/windows.texi (scroll-conservatively): Fix typo. | |
6725 | |
6726 1997-11-12 Hrvoje Niksic <hniksic@srce.hr> | |
6727 | |
6728 * lispref/commands.texi (Working With Events): Document fully. | |
6729 | |
6730 * lispref/windows.texi (Vertical Scrolling): Document | |
6731 scroll-conservatively. | |
6732 | |
6733 1997-11-09 Hrvoje Niksic <hniksic@srce.hr> | |
6734 | |
6735 * lispref/extents.texi (Intro to Extents): Minor correction. | |
6736 (Extent Properties): Document `extent-keymap'. | |
6737 | |
6738 1997-11-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
6739 | |
6740 * xemacs/mule.texi (Mule): Modify description about supported | |
6741 scripts. | |
6742 | |
6743 1997-11-02 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
6744 | |
6745 * xemacs/mule.texi: Add description for | |
6746 `universal-coding-system-argument'. | |
6747 | |
6748 1997-10-31 SL Baur <steve@altair.xemacs.org> | |
6749 | |
6750 * internals/internals.texi: XEmacs 19.16 is released. | |
6751 | |
6752 1997-10-30 SL Baur <steve@altair.xemacs.org> | |
6753 | |
6754 * Makefile (srcs): Mailcrypt, hm--html-menus, vm, psgml and tm have | |
6755 been packaged. | |
6756 | |
6757 1997-10-22 Hrvoje Niksic <hniksic@srce.hr> | |
6758 | |
6759 * xemacs-faq.texi: Added the detailed menu listing. | |
6760 | |
6761 * lispref/extents.texi (Extent Properties): Documented | |
6762 `set-extent-properties'. | |
6763 | |
6764 * xemacs/custom.texi (Face Customization): Updated for XEmacs. | |
6765 | |
6766 1997-10-07 SL Baur <steve@altair.xemacs.org> | |
6767 | |
6768 * xemacs-faq.texi (Q1.3.7): Update Russion URLs. | |
6769 From Rebecca Ore <rebecca.ore@op.net> | |
6770 | |
6771 * lispref/databases.texi (Connecting to a Database): Describe | |
6772 valid types of `type' and `subtype'. | |
6773 From Raymond Toy <toy@rtp.ericsson.se> | |
6774 | |
6775 1997-10-01 Karl M. Hegbloom <karlheg@inetarena.com> | |
6776 | |
6777 * lispref/commands.texi (Keyboard Macros): fixed typo. Changed | |
6778 reference to (emacs) into a reference to (xemacs). | |
6779 | |
6780 1997-10-01 Karl M. Hegbloom <karlheg@inetarena.com> | |
6781 | |
6782 * lispref/keymaps.texi (Keymaps): untabified and reformatted menu | |
6783 to prevent line wrap. | |
6784 | |
6785 1997-09-27 SL Baur <steve@altair.xemacs.org> | |
6786 | |
6787 * gnats/flowchart.eps: New file. | |
6788 | |
6789 1997-09-23 Hrvoje Niksic <hniksic@srce.hr> | |
6790 | |
6791 * xemacs/custom.texi (Easy Customization): Ditto. | |
6792 | |
6793 * xemacs/xemacs.texi (Top): Added pointer to easy customization. | |
6794 | |
6795 1997-09-18 SL Baur <steve@altair.xemacs.org> | |
6796 | |
6797 * internals/Makefile (../../info/$(NAME).info): Warn and clean up | |
6798 if someone hasn't upgraded makeinfo. | |
6799 | |
6800 * Makefile (EMACS): Refer to xemacs binary in source tree. | |
6801 * tm/Makefile (EMACS): Ditto. | |
6802 | |
6803 1997-08-15 Karl M. Hegbloom <karlheg@inetarena.com> | |
6804 | |
6805 * cl.texi (Type Predicates): Update for corrected handling of | |
6806 `string-char' and `character'. | |
6807 | |
6808 Tue Aug 5 21:56:02 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
6809 | |
6810 * cc-mode.texi: | |
6811 In FAQ section, document use of c-mode-base-map instead of c-mode-map. | |
6812 | |
6813 Fri Aug 1 22:44:49 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
6814 | |
6815 * cc-mode.texi: Removed the description of c-enable-//-in-c-mode. | |
6816 | |
6817 Wed Jul 30 00:01:45 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
6818 | |
6819 * cc-mode.texi: | |
6820 Added description of template-args-cont syntactic symbol | |
6821 | |
6822 1997-07-25 Barry A. Warsaw <cc-mode-help@python.org> | |
6823 | |
6824 * cc-mode.texi: Describe support for idl-mode | |
6825 | |
6826 * cc-mode.texi: | |
6827 Document c-initialization-hook. Also rewrite the "Getting Connected" | |
6828 section on byte compiling the source. | |
6829 | |
6830 1997-07-21 Karl M. Hegbloom <karlheg@inetarena.com> | |
6831 | |
6832 * lispref/streams.texi: "Output Streams", change `last-output' | |
6833 result list from integers to characters. | |
6834 | |
6835 * lispref/minibuf.texi: "Object from Minibuffer", correction. | |
6836 | |
6837 * lispref/minibuf.texi: "Minibuffer History", add | |
6838 `Info-minibuffer-history', `Manual-page-minibuffer-history', and | |
6839 short paragraph refering to `M-x apropos'. | |
6840 | |
6841 1997-07-17 Steven L Baur <steve@altair.xemacs.org> | |
6842 | |
6843 * Makefile: makeinfo-1.68 is verified to work. | |
6844 | |
6845 * tm/Makefile (../../info/%-ja.info): Die if not running | |
6846 XEmacs/Mule. | |
6847 (../../info/%-en.info): Inherit setting of MAKEINFO. | |
6848 | |
6849 Tue Jul 15 04:18:38 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
6850 | |
6851 * cc-mode.texi: | |
6852 Describe the variable c-indent-comments-syntactically-p. | |
6853 | |
6854 1997-07-15 Steven L Baur <steve@altair.xemacs.org> | |
6855 | |
6856 * internals/internals.texi (Top): Convert Buffer@'s node name to | |
6857 `Buffer's' because the former confuses makeinfo. | |
6858 | |
6859 Thu Jul 3 22:54:03 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
6860 | |
6861 * cc-mode.texi: Fixed spelling of Texinfo | |
6862 | |
6863 Tue May 6 21:33:06 1997 Steven L Baur <steve@altair.xemacs.org> | |
6864 | |
6865 * lispref/files.texi (Writing to Files): Correct docstring of | |
6866 write-region. | |
6867 | |
6868 Sun May 4 14:28:32 1997 Steven L Baur <steve@altair.xemacs.org> | |
6869 | |
6870 * lispref/annotations.texi (Annotation Primitives): | |
6871 `delete-annotation' does not return the deleted annotation. | |
6872 | |
6873 Wed Apr 30 18:13:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
6874 | |
6875 * lispref/lispref.texi: Correct release dates. | |
6876 | |
6877 Sat Apr 19 20:48:00 1997 Steven L Baur <steve@altair.xemacs.org> | |
6878 | |
6879 * lispref/files.texi (File Name Expansion): Update documentation | |
6880 of file-relative-name. | |
6881 | |
6882 Mon Apr 7 21:02:39 1997 Steven L Baur <steve@altair.xemacs.org> | |
6883 | |
6884 * lispref/lispref.texi: Update version numbers (with patches from | |
6885 Hrvoje Niksic). | |
6886 | |
6887 * lispref/building.texi (Building XEmacs): Update version numbers | |
6888 and build identification. | |
6889 | |
6890 * lispref/intro.texi (Introduction): Update version number. | |
6891 | |
6892 Sun Mar 23 15:47:05 1997 Steven L Baur <steve@altair.xemacs.org> | |
6893 | |
6894 * Makefile (srcs): Add efs.texi. | |
6895 | |
6896 Sat Mar 22 16:39:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
6897 | |
6898 * Makefile (srcs): Add hm--html-mode.texi. | |
6899 | |
6900 Sun Mar 16 18:48:14 1997 Steven L Baur <steve@altair.xemacs.org> | |
6901 | |
6902 * gnats/Makefile (gnats_srcs): New manuals for GNATS. | |
6903 | |
6904 Wed Mar 12 14:39:43 1997 Steven L Baur <steve@altair.xemacs.org> | |
6905 | |
6906 * lispref/strings.texi (Text Comparison): Correct example for | |
6907 `char-equal'. Add new function `char='. | |
6908 | |
6909 Thu Mar 6 13:33:54 1997 Steven L Baur <steve@altair.xemacs.org> | |
6910 | |
6911 * Makefile: Update for new texinfo manual. | |
6912 | |
6913 Tue Mar 4 11:37:42 1997 Steven L Baur <steve@altair.xemacs.org> | |
6914 | |
6915 * Makefile (../info/w3.info): Use special version of makeinfo | |
6916 since this manual is not backwards compatible. | |
6917 Clean up error handling so we only have to type make once to | |
6918 rebuild the info tree. | |
6919 (../info/vm.info): Make sure to continue in the event of error. | |
6920 | |
6921 Tue Feb 25 20:17:53 1997 Steven L Baur <steve@altair.xemacs.org> | |
6922 | |
6923 * auctex/Makefile: Added `mostlyclean' and `distclean' target. | |
6924 | |
6925 Wed Feb 19 17:57:27 1997 Steven L Baur <steve@altair.xemacs.org> | |
6926 | |
6927 * Makefile (auctex): New subdirectory target. | |
6928 | |
6929 Wed Feb 12 12:30:27 1997 Yotam Medini <yotam_medini@tmai.com> | |
6930 | |
6931 * mule/languages.texi: Correct typo. | |
6932 | |
6933 Mon Feb 10 08:17:22 1997 Steven L Baur <steve@altair.xemacs.org> | |
6934 | |
6935 * Makefile (srcs): Add custom and widget to srcs. | |
6936 | |
6937 * lispref/extents.texi (Intro to Extents): Removed erroneous | |
6938 reference to `start-glyph' property. | |
6939 | |
6940 Sun Feb 9 00:27:22 1997 Per Abrahamsen <abraham@dina.kvl.dk> | |
6941 | |
6942 * widget.texi: New file. | |
6943 | |
6944 * custom.texi: New file. | |
6945 | |
6946 Thu Feb 6 22:57:09 1997 Steven L Baur <steve@altair.xemacs.org> | |
6947 | |
6948 * lispref/extents.texi (Duplicable Extents): replicable extents | |
6949 are history. | |
6950 | |
6951 Wed Jan 29 19:59:41 1997 Steven L Baur <steve@altair.xemacs.org> | |
6952 | |
6953 * xemacs-faq.texi (Q1.1.1): Correct typos. | |
6954 | |
6955 Mon Jan 27 22:28:48 1997 Bob Weiner <weiner@infodock.com> | |
6956 | |
6957 * xemacs-faq.texi (Q1.0.14): infodock.com has hardcopies of the | |
6958 XEmacs manual available. | |
6959 (Q4.6.1): Updated Infodock Information. | |
6960 | |
6961 Sat Dec 28 11:08:07 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
6962 | |
6963 * vhdl-mode.texi: Correct typo in email address. | |
6964 | |
6965 Mon Dec 23 09:47:24 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
6966 | |
6967 * Makefile (srcs): Add vhdl-mode. | |
6968 | |
6969 Wed Dec 18 20:21:06 1996 Martin Buchholz <mrb@eng.sun.com> | |
6970 | |
6971 * Makefile (realclean): Don't delete itself `make distclean' | |
6972 | |
6973 * lispref/numbers.texi (Predicates on Numbers): wholenump->natnump. | |
6974 | |
6975 * Makefile: New File. | |
6976 | |
6977 Tue Dec 10 18:35:21 1996 Rod Whitby <rwhitby@asc.sps.mot.com> | |
6978 | |
6979 * vhdl-mode.texi: New file. | |
6980 | |
6981 Thu Jan 24 12:41:33 1991 Richard Stallman (rms at mole.ai.mit.edu) | |
6982 | |
6983 * texinfo.tex: Delete spurious character at beginning. | |
6984 | |
6985 Tue Aug 16 13:09:12 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
6986 | |
6987 * emacs.tex: Corrected two typos. No other changes before | |
6988 Version 19 will be made. | |
6989 | |
6990 * vip.texinfo: Removed menu entry Adding Lisp Code in node | |
6991 Customization since the menu entry did not point to anything. | |
6992 Also added an @finalout command to remove overfull hboxes from the | |
6993 printed output. | |
6994 | |
6995 * cl.texinfo: Added @bye, \input line and @settitle to file. | |
6996 This file is clearly intended to be a chapter of some other work, | |
6997 but the other work does not yet exist. | |
6998 | |
6999 Mon Jul 25 17:47:38 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
7000 | |
7001 * texinfo.texinfo: Three typos corrected. | |
7002 | |
7003 Mon Jul 11 18:02:29 1988 Chris Hanson (cph at kleph) | |
7004 | |
7005 * texindex.c (indexify): when comparing to initial strings to | |
7006 decide whether to change the header, must use `strncmp' to avoid | |
7007 comparing entire strings of which initials are a substring. | |
7008 | |
7009 Sun Jun 26 18:46:16 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu) | |
7010 | |
7011 * texindex.c (sort_in_core, sort_offline, parsefile): | |
7012 Give up on input file if any line doesn't start with backslash. | |
7013 | |
7014 Mon May 23 10:41:35 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
7015 | |
7016 * emacs.tex: Update information for obtaining TeX distribution from the | |
7017 University of Washington. | |
5440
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7018 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7019 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7020 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
|
7021 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
|
7022 change. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7023 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7024 This file is part of XEmacs. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7025 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7026 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
|
7027 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
|
7028 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
|
7029 option) any later version. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7030 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7031 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
|
7032 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
|
7033 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
|
7034 for more details. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7035 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7036 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
|
7037 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |