Mercurial > hg > xemacs-beta
annotate man/ChangeLog @ 5679:a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
src/ChangeLog addition:
2012-09-02 Aidan Kehoe <kehoea@parhasard.net>
* keymap.c:
Add command remapping, a more robust equivalent to
#'substitute-key-definition.
* keymap.c (CHECK_REMAPPING_POSITION): New.
* keymap.c (keymap_equal): Correct a comment here.
* keymap.c (Fdefine_key): Document the command remapping syntax.
* keymap.c (Fremap_command): New.
* keymap.c (command_remapping): New.
* keymap.c (Fcommand_remapping): New.
* keymap.c (commands_remapped_to_mapper): New.
* keymap.c (commands_remapped_to_traverser): New.
* keymap.c (Fcommands_remapped_to): New.
* keymap.c (get_relevant_keymaps): Take a new POSITION argument.
* keymap.c (Fcurrent_keymaps, event_binding):
Supply the new POSITION argument to get_relevant_keymaps.
* keymap.c (Fkey_binding):
Add new arguments, NO-REMAP and POSITION.
* keymap.c (map_keymap_mapper):
* keymap.c (Fwhere_is_internal):
* keymap.c (where_is_to_char):
* keymap.c (where_is_recursive_mapper):
Don't expose the key remapping in these functions. This conflicts
with GNU, but is more sane for our callers. Access to command
remapping is with the functions #'command-remapping,
#'commands-remapped-to, and #'remap-command, not with the general
keymap functions, apart from the compatibility hack in #'define-key.
* keymap.c (syms_of_keymap):
* keymap.c (vars_of_keymap):
* keymap.c (complex_vars_of_keymap):
* lisp.h: New CHECK_COMMAND macro.
man/ChangeLog addition:
2012-09-02 Aidan Kehoe <kehoea@parhasard.net>
* lispref/keymaps.texi (Keymaps):
* lispref/keymaps.texi (Changing Key Bindings):
* lispref/keymaps.texi (Scanning Keymaps):
* lispref/keymaps.texi (Remapping commands):
* lispref/keymaps.texi (XEmacs): New.
* lispref/keymaps.texi (Other Keymap Functions):
Document the new command remapping functionality in this file.
lisp/ChangeLog addition:
2012-09-02 Aidan Kehoe <kehoea@parhasard.net>
* help.el (describe-function-1):
Document any command remapping that has been done in this function.
tests/ChangeLog addition:
2012-09-02 Aidan Kehoe <kehoea@parhasard.net>
* automated/keymap-tests.el:
Test the new command remapping functionality.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 02 Sep 2012 14:31:40 +0100 |
parents | febc025c4e0c |
children | c6b1500299a7 |
rev | line source |
---|---|
5677
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
1 2012-08-06 Aidan Kehoe <kehoea@parhasard.net> |
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
2 |
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
3 * lispref/symbols.texi (Symbol Components): |
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
4 Document the new syntax of ## for the symbol with name "" interned |
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
5 in obarray. |
febc025c4e0c
Adopt GNU's ## syntax for the interned symbol with name "".
Aidan Kehoe <kehoea@parhasard.net>
parents:
5673
diff
changeset
|
6 |
5673
900a0a8796c3
XEmacs 21.5.32 "habanero" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5658
diff
changeset
|
7 2012-08-02 Stephen J. Turnbull <stephen@xemacs.org> |
900a0a8796c3
XEmacs 21.5.32 "habanero" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5658
diff
changeset
|
8 |
900a0a8796c3
XEmacs 21.5.32 "habanero" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5658
diff
changeset
|
9 * XEmacs 21.5.32 "habanero" is released. |
900a0a8796c3
XEmacs 21.5.32 "habanero" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5658
diff
changeset
|
10 |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
11 2012-09-02 Aidan Kehoe <kehoea@parhasard.net> |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
12 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
13 * lispref/keymaps.texi (Keymaps): |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
14 * lispref/keymaps.texi (Changing Key Bindings): |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
15 * lispref/keymaps.texi (Scanning Keymaps): |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
16 * lispref/keymaps.texi (Remapping commands): |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
17 * lispref/keymaps.texi (XEmacs): New. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
18 * lispref/keymaps.texi (Other Keymap Functions): |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
19 Document the new command remapping functionality in this file. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5677
diff
changeset
|
20 |
5658
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
21 2012-05-06 Aidan Kehoe <kehoea@parhasard.net> |
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
22 |
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
23 * lispref/macros.texi (Expansion): |
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
24 Cross-reference to documentation of #'cl-prettyexpand, #'defmacro* |
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
25 when talking about #'macroexpand. |
289cf21be887
Don't augment ENVIRONMENT when that's not indicated, #'macroexpand.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5653
diff
changeset
|
26 |
5653
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
27 2012-05-04 Aidan Kehoe <kehoea@parhasard.net> |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
28 |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
29 * lispref/searching.texi (Regular Expressions): |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
30 * lispref/searching.texi (Syntax of Regexps): |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
31 * lispref/searching.texi (Char Classes): |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
32 * lispref/searching.texi (Regexp Example): |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
33 Document the predefined character classes in this file. |
3df910176b6a
Support predefined character classes in #'skip-chars-{forward,backward}, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5632
diff
changeset
|
34 |
5632
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
35 2011-12-30 Aidan Kehoe <kehoea@parhasard.net> |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
36 |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
37 * cl.texi (Top): |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
38 * cl.texi (Usage): |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
39 * cl.texi (Organization): |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
40 * cl.texi (Efficiency Concerns): |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
41 * cl.texi (Common Lisp Compatibility): |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
42 Remove documentation of cl-compat, now it's deleted. |
bd80d9103fc8
Integrate CL code better into core, remove obsolete compatibility code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5607
diff
changeset
|
43 |
5607
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5583
diff
changeset
|
44 2011-12-04 Aidan Kehoe <kehoea@parhasard.net> |
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5583
diff
changeset
|
45 |
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5583
diff
changeset
|
46 * internals/internals.texi (Basic Lisp Modules): |
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5583
diff
changeset
|
47 Document sequence.c here too. |
1a507c4c6c42
Refactor out sequence-oriented builtins from fns.c to the new sequence.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5583
diff
changeset
|
48 |
5583
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
49 2011-10-09 Aidan Kehoe <kehoea@parhasard.net> |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
50 |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
51 * lispref/lists.texi (Association Lists): |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
52 Don't document #'remassoc, #'remassq and friends in detail; |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
53 they're XEmacs-specific and (delete* ... :key #'car) is |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
54 preferable. |
10f179710250
Deprecate #'remassoc, #'remassq, #'remrassoc, #'remrassq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5582
diff
changeset
|
55 |
5582
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
56 2011-10-09 Aidan Kehoe <kehoea@parhasard.net> |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
57 |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
58 * internals/internals.texi (Top): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
59 * internals/internals.texi (Authorship of XEmacs): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
60 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
61 * internals/internals.texi (Introduction to Writing C Code): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
62 * internals/internals.texi (Working with Lisp Objects): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
63 * internals/internals.texi (Adding Global Lisp Variables): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
64 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
65 * internals/internals.texi (How Lisp Objects Are Represented in C): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
66 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
67 * internals/internals.texi (Introduction to Allocation): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
68 * internals/internals.texi (GCPROing): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
69 * internals/internals.texi (mark_object): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
70 * internals/internals.texi (sweep_bit_vectors_1): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
71 * internals/internals.texi (Fixnums and Characters): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
72 * internals/internals.texi (Future Work -- Unicode): |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
73 Say fixnum rather than integer when specifically talking about |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
74 fixed-width Lisp integers. |
873d7425c1ad
Change integer to fixnum in a few places where it wasn't possible mechanically.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
75 |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
76 2011-10-09 Aidan Kehoe <kehoea@parhasard.net> |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
77 |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
78 * internals/internals.texi (How Lisp Objects Are Represented in C): |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
79 * internals/internals.texi (Integers and Characters): |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
80 Mechanically change INT to FIXNUM, where the usage describes non-bignum |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
81 Lisp integers. |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5566
diff
changeset
|
82 |
5566
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
83 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
|
84 |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
85 * cl.texi (Function Bindings): |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
86 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
|
87 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
|
88 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
|
89 functions are accessed through their bytecodes. |
4654c01af32b
Improve the implementation, documentation of #'labels, #'flet.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5551
diff
changeset
|
90 |
5551
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
91 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
|
92 |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
93 * xemacs-faq.texi: |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
94 * 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
|
95 from lib/ to share/. |
40a52efbf3a3
Reflect change of location of packages to share/
Mike Sperber <sperber@deinprogramm.de>
parents:
5547
diff
changeset
|
96 |
5547
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
97 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
|
98 |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
99 * cl.texi (Argument Lists): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
100 * cl.texi (Time of Evaluation): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
101 * cl.texi (Type Predicates): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
102 * cl.texi (Assignment): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
103 * cl.texi (Basic Setf): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
104 * cl.texi (Modify Macros): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
105 * cl.texi (Customizing Setf): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
106 * cl.texi (Dynamic Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
107 * cl.texi (Lexical Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
108 * cl.texi (Function Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
109 * cl.texi (Macro Bindings): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
110 * cl.texi (Conditionals): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
111 * cl.texi (Blocks and Exits): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
112 * cl.texi (Iteration): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
113 * cl.texi (Loop Basics): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
114 * cl.texi (Macros): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
115 * cl.texi (Declarations): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
116 * cl.texi (Property Lists): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
117 * cl.texi (Structures): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
118 * cl.texi (Assertions): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
119 * cl.texi (Efficiency Concerns): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
120 * 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
|
121 * 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
|
122 * lispref/eval.texi (Multiple values): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
123 * lispref/frames.texi (Input Focus): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
124 * 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
|
125 * lispref/positions.texi (Excursions): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
126 * lispref/positions.texi (Narrowing): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
127 * 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
|
128 * lispref/specifiers.texi (Adding Specifications): |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
129 * lispref/windows.texi: |
a46c5c8d6564
Avoid calling various macros "special operators" in the manuals.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5546
diff
changeset
|
130 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
|
131 #'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
|
132 |
5546
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
133 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
|
134 |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
135 * internals/internals.texi (Mercurial Techniques): New. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
136 (Mercurial Basics): New. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
137 (Preserving Existing Changes with Mercurial Queues): New. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
138 (Top): Update menus. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
139 (Regression Testing XEmacs): Update node pointers. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
140 (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
|
141 Add @ref to Mercurial Techniques. |
d54278e74d71
Add some working with Mercurial stuff.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5529
diff
changeset
|
142 |
5529
3d1f8f0e690f
Add `function-key-map-parent', for non-console-specific `function-key-map' bindings
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
143 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
|
144 |
3d1f8f0e690f
Add `function-key-map-parent', for non-console-specific `function-key-map' bindings
Aidan Kehoe <kehoea@parhasard.net>
parents:
5512
diff
changeset
|
145 * 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
|
146 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
|
147 |
5512
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
148 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
|
149 |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
150 * 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
|
151 one. |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
152 |
5480
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
153 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
|
154 |
f5a0b32f4687
XEmacs 21.5.31 "ginger" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5476
diff
changeset
|
155 * 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
|
156 |
5464
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5390
diff
changeset
|
157 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
|
158 |
e79916901603
XEmacs 21.5.30 "garlic" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5390
diff
changeset
|
159 * 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
|
160 |
5390
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
161 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
|
162 |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
163 * 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
|
164 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
|
165 (Top): |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
166 (Installation): |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
167 (Q2.5.6): |
593d9f73a7e8
New FAQ Q2.5.7 on troubleshooting duplicate auto-autoloads.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5384
diff
changeset
|
168 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
|
169 |
5384
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
170 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
|
171 |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
172 * 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
|
173 "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
|
174 (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
|
175 (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
|
176 "anomalies". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
177 (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
|
178 * 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
|
179 * 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
|
180 "occurrences". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
181 * 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
|
182 "pronounciation" -> "pronunciation". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
183 (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
|
184 (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
|
185 "earlier". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
186 (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
|
187 -> "relevant". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
188 (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
|
189 "inadvertantly" -> "inadvertently". |
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5378
diff
changeset
|
190 |
5378
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
191 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
|
192 |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
193 * 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
|
194 (Customization): Add entry to menu. |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
195 (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
|
196 (Customization Types): Fixup Previous link. |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
197 |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
198 * lispref/faces.texi (Faces): |
4f0a1f4cc111
Improve support for min-colors req in `defface'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5375
diff
changeset
|
199 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
|
200 |
5374
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
201 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
|
202 |
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
203 * 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
|
204 * 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
|
205 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
|
206 in years. |
d967d96ca043
Conditionalise the old-* functions and byte codes at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5361
diff
changeset
|
207 |
5373
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
208 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
|
209 |
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
210 * 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
|
211 face specifier. |
b6e59ea11533
Add min-colors specifier to defface, and document it.
Jeff Sparkes <jsparkes@gmail.com>
parents:
5361
diff
changeset
|
212 |
5361
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
213 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
|
214 |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
215 * 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
|
216 * 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
|
217 * 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
|
218 * lispref/control.texi (Sequencing): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
219 * lispref/control.texi (Conditionals): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
220 * 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
|
221 * lispref/control.texi (Iteration): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
222 * 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
|
223 * 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
|
224 * lispref/control.texi (Cleanups): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
225 * 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
|
226 * lispref/eval.texi (Quoting): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
227 * 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
|
228 * 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
|
229 * 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
|
230 * 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
|
231 * 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
|
232 * 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
|
233 * 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
|
234 * 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
|
235 * 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
|
236 * 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
|
237 * 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
|
238 * lispref/macros.texi (Backquote): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
239 * lispref/positions.texi (Excursions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
240 * lispref/positions.texi (Narrowing): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
241 * 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
|
242 * 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
|
243 * 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
|
244 * 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
|
245 * 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
|
246 * 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
|
247 * 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
|
248 * 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
|
249 * 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
|
250 * 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
|
251 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
|
252 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
|
253 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
|
254 |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
255 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
|
256 |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
257 * cl.texi (Argument Lists): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
258 * 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
|
259 * cl.texi (Type Predicates): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
260 * cl.texi (Assignment): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
261 * cl.texi (Basic Setf): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
262 * cl.texi (Modify Macros): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
263 * cl.texi (Customizing Setf): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
264 * cl.texi (Dynamic Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
265 * cl.texi (Lexical Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
266 * cl.texi (Function Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
267 * cl.texi (Macro Bindings): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
268 * cl.texi (Conditionals): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
269 * 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
|
270 * cl.texi (Iteration): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
271 * cl.texi (Loop Basics): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
272 * cl.texi (Macros): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
273 * cl.texi (Declarations): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
274 * cl.texi (Property Lists): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
275 * cl.texi (Structures): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
276 * cl.texi (Assertions): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
277 * cl.texi (Efficiency Concerns): |
62b9ef1ed4ac
Change "special form" to "special operator" in the manuals, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5359
diff
changeset
|
278 |
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
|
279 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
|
280 |
f5a5501814f5
Document the CL set functions and #'eql in the Lispref, not just cl.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
5300
diff
changeset
|
281 * 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
|
282 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
|
283 #'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
|
284 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
|
285 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
|
286 #'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
|
287 * 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
|
288 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
|
289 #'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
|
290 * 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
|
291 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
|
292 |
5300
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
293 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
|
294 |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
295 * lispref/lists.texi (Rearrangement, Building Lists): |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
296 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
|
297 just lists, in this file. |
9f738305f80f
Accept sequences generally, not just lists, #'reverse, #'nreverse.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5254
diff
changeset
|
298 |
5254
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
299 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
|
300 |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
301 * lispref/os.texi (Time Conversion): |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
302 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
|
303 numbers. |
1537701f08a1
Support Roman month numbers, #'format-time-string
Aidan Kehoe <kehoea@parhasard.net>
parents:
5252
diff
changeset
|
304 |
5252
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
305 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
|
306 |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
307 * 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
|
308 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
|
309 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
|
310 are discarded. |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
311 |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
312 * 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
|
313 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
|
314 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
|
315 (Rounding Operations): Ditto. |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
316 |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
317 * cl.texi (Multiple Values): |
378a34562cbe
Fix style, documentation for rounding functions and multiple values.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5247
diff
changeset
|
318 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
|
319 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
|
320 (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
|
321 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
|
322 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
|
323 |
5247
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
324 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
|
325 |
02d875ebd1ea
Make Lisp reader errors more informative with over-long hex, octal characters
Aidan Kehoe <kehoea@parhasard.net>
parents:
5236
diff
changeset
|
326 * 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
|
327 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
|
328 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
|
329 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
|
330 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
|
331 |
5236
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5215
diff
changeset
|
332 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
|
333 |
0f7d483cff5a
Add ChangeLogs for recent address updates in permission notices.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5215
diff
changeset
|
334 * 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
|
335 |
5215
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
336 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
|
337 |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
338 * lispref/windows.texi (Buffers and Windows): |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
339 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
|
340 `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
|
341 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
|
342 `buffer-display-count' was not. |
956d54c39176
Reword the lispref documentation of buffer-display-count.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5214
diff
changeset
|
343 |
5214
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
344 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
|
345 |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
346 * 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
|
347 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
|
348 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
|
349 |
0b4d355771bd
Import buffer-display-count, buffer-display-time; thank you, Jeff Sparkes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
350 * 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
|
351 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
|
352 |
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
|
353 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
|
354 |
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
|
355 * 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
|
356 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
|
357 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
|
358 (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
|
359 |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
360 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
|
361 |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
362 * lispref/lists.texi (Rearrangement): |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5178
diff
changeset
|
363 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
|
364 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
|
365 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
|
366 |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
367 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
|
368 |
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
369 * 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
|
370 * 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
|
371 objects*.[ch] -> fontcolor*.[ch]. |
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
372 |
5148
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
373 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
|
374 |
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
375 * 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
|
376 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
|
377 directories. |
9c4bf82eaac2
Reflect change from `lib' to `share' in docs.
Mike Sperber <sperber@deinprogramm.de>
parents:
5142
diff
changeset
|
378 |
5142
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
379 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
|
380 |
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
381 * 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
|
382 * 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
|
383 * internals/internals.texi (lrecords): |
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
384 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
|
385 *LRECORD* to *LISP_OBJECT*. |
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
386 |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
387 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
|
388 |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
389 * internals/internals.texi (Introduction to Allocation): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
390 * internals/internals.texi (Integers and Characters): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
391 * 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
|
392 * internals/internals.texi (lrecords): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
393 * internals/internals.texi (Low-level allocation): |
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5048
diff
changeset
|
394 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
|
395 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
|
396 |
5096 | 397 2010-03-04 Ben Wing <ben@xemacs.org> |
398 | |
399 * internals/internals.texi (Top): | |
400 * internals/internals.texi (list-to-texinfo): Removed. | |
401 * internals/internals.texi (convert-list-to-texinfo): New. | |
402 * internals/internals.texi (table-to-texinfo): Removed. | |
403 * internals/internals.texi (convert-table-to-texinfo): New. | |
404 Update Lisp functions at top to newest versions. | |
405 | |
406 * internals/internals.texi (A History of Emacs): | |
407 * internals/internals.texi (Through Version 18): | |
408 * internals/internals.texi (Lucid Emacs): | |
409 * internals/internals.texi (XEmacs): | |
410 * internals/internals.texi (The XEmacs Split): | |
411 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
412 * internals/internals.texi (Introduction to Writing C Code): | |
413 * internals/internals.texi (Writing Good Comments): | |
414 * internals/internals.texi (Writing Macros): | |
415 * internals/internals.texi (Major Textual Changes): | |
416 * internals/internals.texi (Great Integral Type Renaming): | |
417 * internals/internals.texi (How to Regression-Test): | |
418 * internals/internals.texi (Creating a Branch): | |
419 * internals/internals.texi (Dynamic Arrays): | |
420 * internals/internals.texi (Allocation by Blocks): | |
421 * internals/internals.texi (mark_object): | |
422 * internals/internals.texi (gc_sweep): | |
423 * internals/internals.texi (Byte-Char Position Conversion): | |
424 * internals/internals.texi (Searching and Matching): | |
425 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
426 * internals/internals.texi (Byte Types): | |
427 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
428 * internals/internals.texi (Buffer Positions): | |
429 * internals/internals.texi (Basic internal-format APIs): | |
430 * internals/internals.texi (The DFC API): | |
431 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
432 * internals/internals.texi (Mule-izing Code): | |
433 * internals/internals.texi (Locales): | |
434 * internals/internals.texi (More about code pages): | |
435 * internals/internals.texi (More about locales): | |
436 * internals/internals.texi (Unicode support under Windows): | |
437 * internals/internals.texi (The Frame): | |
438 * internals/internals.texi (The Non-Client Area): | |
439 * internals/internals.texi (The Client Area): | |
440 * internals/internals.texi (The Paned Area): | |
441 * internals/internals.texi (Text Areas): | |
442 * internals/internals.texi (The Displayable Area): | |
443 * internals/internals.texi (Event Queues): | |
444 * internals/internals.texi (Event Stream Callback Routines): | |
445 * internals/internals.texi (Focus Handling): | |
446 * internals/internals.texi (Future Work -- Autodetection): | |
447 Replace " with ``, '' (not complete, maybe about halfway through). | |
448 | |
5090 | 449 2010-03-03 Ben Wing <ben@xemacs.org> |
450 | |
451 * internals/internals.texi (Intro to Window and Frame Geometry): | |
452 * internals/internals.texi (The Paned Area): | |
453 * internals/internals.texi (The Displayable Area): | |
454 Update to make note of e.g. the fact that the bottom gutter is | |
455 actually above the minibuffer. | |
456 | |
5087 | 457 2010-03-02 Jerry James <james@xemacs.org> |
458 | |
459 * custom.texi: Delete, redundant with xemacs/custom.texi and | |
460 lispref/customize.texi. | |
461 * Makefile: Remove all rules relating to custom.texi. | |
462 | |
5089
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5087
diff
changeset
|
463 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
|
464 |
99f8ebc082d9
Make #'substring an alias of #'subseq; give the latter the byte code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5087
diff
changeset
|
465 * 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
|
466 * 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
|
467 * 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
|
468 * 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
|
469 * 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
|
470 * 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
|
471 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
|
472 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
|
473 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
|
474 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
|
475 |
5080
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
476 2010-02-25 Didier Verna <didier@xemacs.org> |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
477 |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
478 The background-placement face property. |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
479 * xemacs/custom.texi (Faces): Document it. |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5048
diff
changeset
|
480 |
5046 | 481 2010-02-20 Ben Wing <ben@xemacs.org> |
482 | |
483 * internals/internals.texi (Intro to Window and Frame Geometry): | |
484 Shrink diagram to fit when offset by five spaces as a result of | |
485 quoting. | |
486 | |
5045 | 487 2010-02-16 Ben Wing <ben@xemacs.org> |
488 | |
489 * internals/internals.texi (Top): | |
490 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
491 * internals/internals.texi (Creating a Window-System Type): | |
492 * internals/internals.texi (Window and Frame Geometry): | |
493 * internals/internals.texi (Intro to Window and Frame Geometry): | |
494 * internals/internals.texi (The Frame): | |
495 * internals/internals.texi (The Non-Client Area): | |
496 * internals/internals.texi (The Client Area): | |
497 * internals/internals.texi (The Paned Area): | |
498 * internals/internals.texi (Text Areas): | |
499 * internals/internals.texi (The Displayable Area): | |
500 * internals/internals.texi (Which Functions Use Which?): | |
501 * internals/internals.texi (The Redisplay Mechanism): | |
502 Integrate the long comment in frame.c into the internals manual. | |
503 | |
5031
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
504 2010-02-17 Jerry James <james@xemacs.org> |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
505 |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
506 * term.texi: Move to the eterm package. |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
507 * Makefile: Remove all rules relating to term.texi. |
bd3e7db3bdf6
Remove man/term.texi from core.
Jerry James <james@xemacs.org>
parents:
5028
diff
changeset
|
508 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
509 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
|
510 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
511 * widget.texi: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
512 * widget.texi (Top): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
513 * widget.texi (Introduction): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
514 * widget.texi (User Interface): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
515 * widget.texi (Programming Example): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
516 * 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
|
517 * widget.texi (Basic Types): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
518 * widget.texi (link): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
519 * widget.texi (url-link): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
520 * widget.texi (info-link): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
521 * widget.texi (push-button): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
522 * widget.texi (editable-field): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
523 * widget.texi (text): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
524 * widget.texi (menu-choice): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
525 * 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
|
526 * widget.texi (item): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
527 * widget.texi (choice-item): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
528 * widget.texi (toggle): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
529 * widget.texi (checkbox): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
530 * widget.texi (checklist): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
531 * widget.texi (editable-list): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
532 * widget.texi (group): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
533 * widget.texi (Sexp Types): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
534 * widget.texi (constants): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
535 * widget.texi (generic): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
536 * widget.texi (atoms): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
537 * widget.texi (composite): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
538 * widget.texi (Widget Properties): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
539 * 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
|
540 * widget.texi (Widget Browser): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
541 * 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
|
542 * widget.texi (Utilities): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
543 * widget.texi (Widget Wishlist): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
544 * widget.texi (Widget Internals): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
545 * 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
|
546 * widget.texi (Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
547 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
|
548 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
549 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
|
550 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
551 * 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
|
552 * texinfo/texinfo.texi: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
553 * texinfo/texinfo.texi (Top): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
554 * 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
|
555 * texinfo/texinfo.texi (Overview): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
556 * 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
|
557 * 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
|
558 * 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
|
559 * 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
|
560 * 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
|
561 * 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
|
562 * texinfo/texinfo.texi (Conventions): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
563 * texinfo/texinfo.texi (Comments): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
564 * texinfo/texinfo.texi (Minimum): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
565 * 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
|
566 * 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
|
567 * texinfo/texinfo.texi (History): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
568 * 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
|
569 * 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
|
570 * 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
|
571 * texinfo/texinfo.texi (Inserting): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
572 * 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
|
573 * 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
|
574 * 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
|
575 * 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
|
576 * 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
|
577 * 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
|
578 * texinfo/texinfo.texi (Printing): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
579 * 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
|
580 * 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
|
581 * 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
|
582 * 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
|
583 * 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
|
584 * 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
|
585 * texinfo/texinfo.texi (setfilename): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
586 * texinfo/texinfo.texi (settitle): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
587 * 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
|
588 * 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
|
589 * texinfo/texinfo.texi (copying): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
590 * texinfo/texinfo.texi (insertcopying): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
591 * 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
|
592 * texinfo/texinfo.texi (titlepage): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
593 * 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
|
594 * 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
|
595 * texinfo/texinfo.texi (Copyright): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
596 * 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
|
597 * 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
|
598 * texinfo/texinfo.texi (Contents): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
599 * 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
|
600 * 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
|
601 * 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
|
602 * 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
|
603 * texinfo/texinfo.texi (documentdescription): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
604 * texinfo/texinfo.texi (setchapternewpage): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
605 * texinfo/texinfo.texi (paragraphindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
606 * texinfo/texinfo.texi (firstparagraphindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
607 * texinfo/texinfo.texi (exampleindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
608 * 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
|
609 * 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
|
610 * 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
|
611 * 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
|
612 * texinfo/texinfo.texi (Structuring): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
613 * 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
|
614 * 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
|
615 * 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
|
616 * texinfo/texinfo.texi (chapter): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
617 * 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
|
618 * 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
|
619 * texinfo/texinfo.texi (section): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
620 * 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
|
621 * texinfo/texinfo.texi (subsection): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
622 * 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
|
623 * texinfo/texinfo.texi (subsubsection): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
624 * 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
|
625 * texinfo/texinfo.texi (Nodes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
626 * 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
|
627 * 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
|
628 * texinfo/texinfo.texi (node): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
629 * 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
|
630 * 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
|
631 * 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
|
632 * 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
|
633 * 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
|
634 * 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
|
635 * 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
|
636 * texinfo/texinfo.texi (anchor): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
637 * texinfo/texinfo.texi (Menus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
638 * 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
|
639 * 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
|
640 * 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
|
641 * 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
|
642 * 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
|
643 * 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
|
644 * 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
|
645 * texinfo/texinfo.texi (References): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
646 * 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
|
647 * 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
|
648 * texinfo/texinfo.texi (xref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
649 * 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
|
650 * 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
|
651 * 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
|
652 * 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
|
653 * 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
|
654 * 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
|
655 * texinfo/texinfo.texi (ref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
656 * texinfo/texinfo.texi (pxref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
657 * texinfo/texinfo.texi (inforef): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
658 * texinfo/texinfo.texi (uref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
659 * texinfo/texinfo.texi (cite): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
660 * 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
|
661 * texinfo/texinfo.texi (Indicating): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
662 * 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
|
663 * texinfo/texinfo.texi (code): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
664 * texinfo/texinfo.texi (kbd): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
665 * texinfo/texinfo.texi (key): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
666 * texinfo/texinfo.texi (samp): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
667 * texinfo/texinfo.texi (verb): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
668 * texinfo/texinfo.texi (var): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
669 * texinfo/texinfo.texi (env): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
670 * texinfo/texinfo.texi (file): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
671 * texinfo/texinfo.texi (command): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
672 * texinfo/texinfo.texi (option): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
673 * texinfo/texinfo.texi (dfn): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
674 * texinfo/texinfo.texi (abbr): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
675 * texinfo/texinfo.texi (acronym): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
676 * texinfo/texinfo.texi (indicateurl): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
677 * texinfo/texinfo.texi (email): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
678 * texinfo/texinfo.texi (Emphasis): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
679 * 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
|
680 * texinfo/texinfo.texi (Smallcaps): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
681 * texinfo/texinfo.texi (Fonts): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
682 * 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
|
683 * 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
|
684 * texinfo/texinfo.texi (quotation): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
685 * texinfo/texinfo.texi (example): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
686 * texinfo/texinfo.texi (verbatim): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
687 * texinfo/texinfo.texi (verbatiminclude): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
688 * texinfo/texinfo.texi (lisp): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
689 * texinfo/texinfo.texi (small): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
690 * texinfo/texinfo.texi (display): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
691 * texinfo/texinfo.texi (format): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
692 * texinfo/texinfo.texi (exdent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
693 * 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
|
694 * texinfo/texinfo.texi (noindent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
695 * texinfo/texinfo.texi (indent): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
696 * texinfo/texinfo.texi (cartouche): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
697 * 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
|
698 * 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
|
699 * texinfo/texinfo.texi (itemize): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
700 * texinfo/texinfo.texi (enumerate): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
701 * 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
|
702 * texinfo/texinfo.texi (table): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
703 * 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
|
704 * texinfo/texinfo.texi (itemx): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
705 * 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
|
706 * 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
|
707 * 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
|
708 * 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
|
709 * texinfo/texinfo.texi (Floats): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
710 * texinfo/texinfo.texi (float): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
711 * 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
|
712 * texinfo/texinfo.texi (listoffloats): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
713 * texinfo/texinfo.texi (Images): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
714 * 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
|
715 * 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
|
716 * texinfo/texinfo.texi (Footnotes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
717 * 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
|
718 * 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
|
719 * texinfo/texinfo.texi (Indices): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
720 * 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
|
721 * 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
|
722 * 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
|
723 * 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
|
724 * texinfo/texinfo.texi (syncodeindex): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
725 * texinfo/texinfo.texi (synindex): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
726 * 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
|
727 * texinfo/texinfo.texi (Insertions): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
728 * 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
|
729 * 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
|
730 * 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
|
731 * 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
|
732 * 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
|
733 * 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
|
734 * 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
|
735 * 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
|
736 * 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
|
737 * texinfo/texinfo.texi (frenchspacing): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
738 * texinfo/texinfo.texi (dmn): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
739 * 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
|
740 * 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
|
741 * 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
|
742 * texinfo/texinfo.texi (dots): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
743 * texinfo/texinfo.texi (bullet): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
744 * 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
|
745 * texinfo/texinfo.texi (tex): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
746 * 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
|
747 * 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
|
748 * texinfo/texinfo.texi (euro): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
749 * texinfo/texinfo.texi (pounds): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
750 * texinfo/texinfo.texi (textdegree): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
751 * texinfo/texinfo.texi (minus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
752 * 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
|
753 * texinfo/texinfo.texi (math): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
754 * 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
|
755 * texinfo/texinfo.texi (Glyphs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
756 * 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
|
757 * texinfo/texinfo.texi (result): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
758 * texinfo/texinfo.texi (expansion): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
759 * 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
|
760 * 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
|
761 * texinfo/texinfo.texi (Equivalence): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
762 * 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
|
763 * texinfo/texinfo.texi (Breaks): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
764 * 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
|
765 * 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
|
766 * 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
|
767 * texinfo/texinfo.texi (allowcodebreaks): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
768 * texinfo/texinfo.texi (w): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
769 * texinfo/texinfo.texi (tie): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
770 * texinfo/texinfo.texi (sp): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
771 * texinfo/texinfo.texi (page): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
772 * texinfo/texinfo.texi (group): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
773 * texinfo/texinfo.texi (need): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
774 * 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
|
775 * 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
|
776 * 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
|
777 * 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
|
778 * texinfo/texinfo.texi (deffnx): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
779 * 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
|
780 * 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
|
781 * 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
|
782 * 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
|
783 * 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
|
784 * 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
|
785 * 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
|
786 * 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
|
787 * 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
|
788 * 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
|
789 * 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
|
790 * 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
|
791 * texinfo/texinfo.texi (alias): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
792 * texinfo/texinfo.texi (definfoenclose): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
793 * texinfo/texinfo.texi (Hardcopy): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
794 * 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
|
795 * 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
|
796 * 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
|
797 * 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
|
798 * 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
|
799 * 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
|
800 * 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
|
801 * 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
|
802 * 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
|
803 * 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
|
804 * texinfo/texinfo.texi (smallbook): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
805 * 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
|
806 * texinfo/texinfo.texi (pagesizes): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
807 * 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
|
808 * 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
|
809 * 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
|
810 * 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
|
811 * 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
|
812 * 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
|
813 * 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
|
814 * 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
|
815 * 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
|
816 * 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
|
817 * 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
|
818 * 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
|
819 * 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
|
820 * 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
|
821 * 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
|
822 * 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
|
823 * 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
|
824 * 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
|
825 * 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
|
826 * 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
|
827 * 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
|
828 * 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
|
829 * 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
|
830 * 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
|
831 * 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
|
832 * 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
|
833 * 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
|
834 * 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
|
835 * 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
|
836 * 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
|
837 * 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
|
838 * texinfo/texinfo.texi (Tips): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
839 * 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
|
840 * 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
|
841 * 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
|
842 * 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
|
843 * 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
|
844 * texinfo/texinfo.texi (Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
845 * 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
|
846 * 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
|
847 * 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
|
848 * 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
|
849 * 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
|
850 * 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
|
851 * 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
|
852 * 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
|
853 * texinfo/texinfo.texi (Headings): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
854 * 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
|
855 * 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
|
856 * 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
|
857 * 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
|
858 * 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
|
859 * 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
|
860 * 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
|
861 * 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
|
862 * 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
|
863 * 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
|
864 * 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
|
865 * 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
|
866 * texinfo/texinfo.texi (Unsplit): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
867 * texinfo/texinfo.texi (Tagifying): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
868 * texinfo/texinfo.texi (Splitting): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
869 * 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
|
870 * 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
|
871 * 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
|
872 * 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
|
873 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
|
874 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
|
875 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
876 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
|
877 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
878 * Makefile: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
879 * Makefile (src_files1): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
880 * Makefile (DIR): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
881 * Makefile (texinfo-srcs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
882 * Makefile ($(INFODIR)/widget.info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
883 * Makefile ($(INFODIR)/texinfo.info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
884 * Makefile (.PHONY): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
885 * Makefile (texinfo.dvi): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
886 * Makefile (texinfo.pdf): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
887 * Makefile ($(HTMLDIR)/widget.html): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
888 * Makefile ($(HTMLDIR)/texinfo.html): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
889 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
|
890 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
|
891 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
|
892 Solaris make). |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
893 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
894 * doclicense.texi: New file. |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
895 * info.texi: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
896 * info.texi (Top): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
897 * info.texi (Getting Started): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
898 * 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
|
899 * info.texi (Help): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
900 * info.texi (Help-P): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
901 * info.texi (Help-^L): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
902 * info.texi (Help-Inv): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
903 * info.texi (Help-]): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
904 * info.texi (Help-M): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
905 * info.texi (Help-FOO): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
906 * info.texi (Help-Xref): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
907 * info.texi (Help-Int): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
908 * info.texi (Help-Q): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
909 * info.texi (Advanced): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
910 * info.texi (Search Text): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
911 * info.texi (Search Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
912 * 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
|
913 * 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
|
914 * 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
|
915 * 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
|
916 * info.texi (Expert Info): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
917 * info.texi (Add): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
918 * info.texi (Menus): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
919 * info.texi (Cross-refs): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
920 * info.texi (Help-Cross): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
921 * info.texi (Tags): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
922 * info.texi (Checking): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
923 * info.texi (Index): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
924 * texinfo.tex: |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
925 * texinfo.tex (paragraphindent{%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
926 * 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
|
927 * texinfo.tex (chapterzzz{#3}%): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
928 * texinfo.tex (subsubsection = \numberedsubsubsec): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
929 * texinfo.tex (subsubsection = \appendixsubsubsec): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
930 * texinfo.tex (subsubsection = \unnumberedsubsubsec): |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
931 * 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
|
932 * 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
|
933 * 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
|
934 * 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
|
935 * 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
|
936 * 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
|
937 * 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
|
938 * 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
|
939 * 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
|
940 * 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
|
941 * 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
|
942 * 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
|
943 * 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
|
944 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
|
945 |
5028
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
946 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
|
947 |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
948 * 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
|
949 (Legacy Versions): Update next pointer. |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
950 (Bleeding Edge): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
951 (Q11.0.1): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
952 (Q11.0.2): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
953 (Q11.0.3): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
954 (Q11.0.4): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
955 (Q11.0.5): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
956 (Q11.1.1): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
957 (Q11.2.1): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
958 (Q11.2.2): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
959 (Q11.2.3): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
960 (Q11.2.4): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
961 (Q11.2.5): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
962 (Q11.2.6): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
963 (Q11.2.7): |
b7232de2a937
Add information about repos and VCSes to FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5024
diff
changeset
|
964 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
|
965 |
5011 | 966 2010-02-08 Ben Wing <ben@xemacs.org> |
967 | |
968 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
969 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
970 DEC Alpha is hardly the only 64-bit processor any more. | |
971 Also, ERROR_CHECK_TYPECHECK is now ERROR_CHECK_TYPES. | |
972 | |
5007
bb6a375da086
Relicense J. Kean Johnston's emodules.texi as GPL v2 or later. See
Jerry James <james@xemacs.org>
parents:
4984
diff
changeset
|
973 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
|
974 |
bb6a375da086
Relicense J. Kean Johnston's emodules.texi as GPL v2 or later. See
Jerry James <james@xemacs.org>
parents:
4984
diff
changeset
|
975 * 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
|
976 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
|
977 |
4984 | 978 2010-02-05 Ben Wing <ben@xemacs.org> |
979 | |
980 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
981 * internals/internals.texi (Conversion to and from External Data): | |
982 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
983 Correct names of files renamed common -> xlike. | |
984 Fix up outdated explanation of old-style DFC conversion macros. | |
985 Add a section on the different types of character and their uses, | |
986 taken from a long comment in lisp.h. | |
987 | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
988 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
|
989 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
990 * internals/internals.texi (lrecords): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
991 * internals/internals.texi (The DFC API): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
992 * 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
|
993 * internals/internals.texi (Mule-izing Code): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
994 * 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
|
995 * internals/internals.texi (Ben's README): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
996 * 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
|
997 * emodules.texi (Defining Variables): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
998 Rename: |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
999 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1000 write_c_string -> write_cistring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1001 build_intstring -> build_istring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1002 build_string -> build_cistring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1003 build_ext_string -> build_extstring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1004 make_ext_string -> make_extstring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1005 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
|
1006 intern_int -> intern_istring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1007 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4820
diff
changeset
|
1008 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
|
1009 |
4917 | 1010 2010-02-03 Ben Wing <ben@xemacs.org> |
1011 | |
1012 * internals/internals.texi (Top): | |
1013 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
1014 * internals/internals.texi (Ben's README): | |
1015 * internals/internals.texi (Consoles; Devices; Frames; Windows): | |
1016 * internals/internals.texi (Window Hierarchy): | |
1017 * internals/internals.texi (The Window Object): | |
1018 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
1019 * internals/internals.texi (Window-System Support): | |
1020 * internals/internals.texi (Creating a Window-System Type): | |
1021 * internals/internals.texi (Discussion -- Garbage Collection): | |
1022 Update the part at the top about how to maintain the file with | |
1023 more tips. | |
1024 | |
1025 Add a chapter on "window-system support" describing in a general | |
1026 way how the support for different window systems/device types | |
1027 works, including the separation between device-independent and | |
1028 device-dependent parts, device methods, the specific device types | |
1029 and the "xlike" pseudo-type. | |
1030 | |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1031 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
|
1032 |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1033 * xemacs/programs.texi (Defuns): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1034 * 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
|
1035 (Setting Variables, Default Value): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1036 * lispref/symbols.texi (Definitions): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1037 * 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
|
1038 * lispref/positions.texi (Excursions, Narrowing): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1039 * 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
|
1040 * 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
|
1041 * lispref/lispref.texi (Top): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1042 * 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
|
1043 * lispref/help.texi (Help Functions): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1044 * 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
|
1045 (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
|
1046 * lispref/frames.texi (Input Focus): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1047 * 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
|
1048 (Special Operators, Quoting): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1049 * lispref/edebug-inc.texi (Instrumenting) |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1050 (Specification Examples): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1051 * 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
|
1052 * 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
|
1053 (Conditionals, Combining Conditions, Iteration): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1054 (Catch and Throw, Handling Errors): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1055 * 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
|
1056 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
|
1057 |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1058 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
|
1059 macros I don't understand. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1060 |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1061 * 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
|
1062 example here. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1063 * lispref/positions.texi (Excursions): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1064 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
|
1065 forms. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1066 * 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
|
1067 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
|
1068 18. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1069 * lispref/specifiers.texi (Adding Specifications): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1070 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
|
1071 * lispref/windows.texi (Window Configurations) |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1072 (Selecting Windows): |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1073 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
|
1074 are macros, not special operators. |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4894
diff
changeset
|
1075 |
4894
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4885
diff
changeset
|
1076 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
|
1077 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4885
diff
changeset
|
1078 * 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
|
1079 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
|
1080 * 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
|
1081 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
|
1082 |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1083 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
|
1084 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1085 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
|
1086 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
|
1087 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
|
1088 start. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1089 |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1090 * lispref/text.texi (Columns): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1091 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
|
1092 (Registers): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1093 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
|
1094 * 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
|
1095 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
|
1096 general are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1097 (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
|
1098 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
|
1099 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
|
1100 (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
|
1101 values in syntax tables. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1102 * 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
|
1103 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
|
1104 are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1105 * 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
|
1106 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
|
1107 * 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
|
1108 (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
|
1109 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
|
1110 integers are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1111 * 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
|
1112 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
|
1113 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
|
1114 (Equality Predicates): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1115 (Range Table Type): |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1116 (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
|
1117 fixed-precision integer. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1118 (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
|
1119 * 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
|
1120 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
|
1121 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
|
1122 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
|
1123 (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
|
1124 Lisp compatibility issues. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1125 (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
|
1126 * 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
|
1127 * 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
|
1128 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
|
1129 general are accepted. |
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
1130 |
4803
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
1131 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
|
1132 |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
1133 * 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
|
1134 valgrind configuration and use. |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4792
diff
changeset
|
1135 |
4790
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
1136 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
|
1137 |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4771
diff
changeset
|
1138 * 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
|
1139 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
|
1140 * 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
|
1141 (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
|
1142 (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
|
1143 |
4771
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1144 2009-12-10 Jerry James <james@xemacs.org> |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1145 |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1146 * lispref/processes.texi (Functions that Create Subprocesses): Refer |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1147 to etags instead of the obsolete wakeup program. |
e0b8ef850996
Remove more obsolete files.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
1148 |
4769
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
1149 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
|
1150 |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
1151 * 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
|
1152 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
|
1153 (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
|
1154 |
4820
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
1155 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
|
1156 |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
1157 * 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
|
1158 * 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
|
1159 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
|
1160 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
|
1161 backward-compatiblity. |
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4803
diff
changeset
|
1162 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1163 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
|
1164 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1165 * 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
|
1166 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
|
1167 (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
|
1168 deleted files. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1169 (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
|
1170 (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
|
1171 NeXTstep. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1172 * 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
|
1173 old unsupported systems. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1174 * 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
|
1175 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
|
1176 * 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
|
1177 Ditto. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
1178 |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
1179 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
|
1180 |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4790
diff
changeset
|
1181 * 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
|
1182 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
|
1183 |
4708
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
1184 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
|
1185 |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4678
diff
changeset
|
1186 * 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
|
1187 "(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
|
1188 (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
|
1189 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
|
1190 * 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
|
1191 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
|
1192 * 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
|
1193 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
|
1194 |
4678
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1195 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
|
1196 |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1197 * lispref/numbers.texi (Bigfloat Basics): |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1198 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
|
1199 off in mid-sentence). |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
1200 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
1201 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
|
1202 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
1203 * cl.texi (Organization): |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4668
diff
changeset
|
1204 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
|
1205 |
4668
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
1206 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
|
1207 |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
1208 * 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
|
1209 Small improvements. |
8b2a8ecf91cd
Improve redisplay docs in Internals a bit.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4666
diff
changeset
|
1210 |
4666
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
1211 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
|
1212 |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
1213 * 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
|
1214 from XftFont (now deprecated) to FcFontName. |
4c1a8323aa9a
Fix incorrect Xft resources in Info docs.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4658
diff
changeset
|
1215 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
|
1216 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
1217 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
|
1218 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4632
diff
changeset
|
1219 * 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
|
1220 |
4632
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1221 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
|
1222 |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1223 * internals/internals.texi: s/@urlref/@uref/g. |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1224 (Lstreams): Add urefs to David Beasley tutorials. |
b93587f33338
Add urefs to Lstreams node.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4626
diff
changeset
|
1225 |
4658
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
1226 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
|
1227 |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
1228 * 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
|
1229 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
|
1230 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
|
1231 |
fd2495d78aac
Add FAQ on network slows (lookup order of DNS and /etc/hosts).
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
1232 * 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
|
1233 * 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
|
1234 |
4625
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1235 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
|
1236 |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1237 * 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
|
1238 (Top): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1239 (Editing): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1240 (Q3.0.11): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1241 (Q3.1.1): |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1242 Fix up Next/Prev/Menu references. |
4527fc976aa3
Meta on Mac. <87prh51rni.fsf@xemacs.org>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4509
diff
changeset
|
1243 |
4601
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1244 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
|
1245 |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1246 * xemacs/xemacs.texi (Top): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1247 * xemacs/misc.texi (Emulation): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1248 * xemacs/building.texi (Lisp Libraries): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1249 (Compiling Libraries): |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1250 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
|
1251 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
|
1252 which is no longer available. |
7c7262c47538
Remove any reference to mocklisp as an active technology.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4509
diff
changeset
|
1253 |
4509
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1254 2008-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1255 |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1256 * 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
|
1257 antialiased fonts. |
dd12adb12b8f
Fix broken Xft FAQ.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4505
diff
changeset
|
1258 |
4505
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
1259 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
|
1260 |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
1261 * 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
|
1262 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
|
1263 (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
|
1264 alphabet. |
a5f1da0eb001
Document XFT support in the FAQ, better describe XEmacs pronunciation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4488
diff
changeset
|
1265 |
4488 | 1266 2008-07-26 Ville Skyttä <scop@xemacs.org> |
1267 | |
1268 * xemacs/custom.texi, xemacs/frame.texi, xemacs/mule.texi, | |
1269 xemacs/packages.texi, xemacs/programs.texi, xemacs/trouble.texi: | |
1270 Spelling fixes. | |
1271 | |
4486
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1272 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
|
1273 |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1274 * lispref/objects.texi (Character Type): |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1275 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
|
1276 hexadecimal constant. |
f9104f0e9b91
Document the error on over-long hex character constants.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4485
diff
changeset
|
1277 |
4485
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
1278 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
|
1279 |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
1280 * lispref/variables.texi (Extent): |
57db42ba54fb
Correct a misspelling and add a space, lispref/variables.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4472
diff
changeset
|
1281 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
|
1282 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
|
1283 |
4472
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
1284 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
|
1285 |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
1286 * 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
|
1287 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
|
1288 commit. |
a99eb40f0b5b
Correct an omitted word, expand on bignum equality in the lispref.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4471
diff
changeset
|
1289 |
4471
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
1290 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
|
1291 |
2d39535e1f9d
Say explicitly that eq is useful for chars; xref number comparison, lispref
Aidan Kehoe <kehoea@parhasard.net>
parents:
4466
diff
changeset
|
1292 * 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
|
1293 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
|
1294 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
|
1295 #'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
|
1296 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
|
1297 |
4466
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
1298 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
|
1299 |
969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
Aidan Kehoe <kehoea@parhasard.net>
parents:
4450
diff
changeset
|
1300 * 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
|
1301 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
|
1302 #'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
|
1303 |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
1304 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
|
1305 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
1306 * 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
|
1307 Describe --script, -script. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4329
diff
changeset
|
1308 |
4427
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1309 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
|
1310 |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1311 * 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
|
1312 (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
|
1313 New nodes. |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1314 (Top): |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1315 (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
|
1316 (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
|
1317 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
|
1318 |
cff4ad0ab682
Document "lifting to Lisp". <87tzjvx8lu.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4329
diff
changeset
|
1319 (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
|
1320 |
4329
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
1321 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
|
1322 |
d9eb5ea14f65
Provide %b in #'format; use it for converting between ints and bit vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4320
diff
changeset
|
1323 * 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
|
1324 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
|
1325 |
4320 | 1326 2007-12-10 Ville Skyttä <scop@xemacs.org> |
1327 | |
1328 * internals/internals.texi: Spelling fixes. | |
1329 | |
4313
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
1330 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
|
1331 |
0d2e738dfcd0
Forgotten ChangeLog entry for changesets 4311 and 4312.
"Ville Skyttä <scop@xemacs.org>"
parents:
4291
diff
changeset
|
1332 * 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
|
1333 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
|
1334 |
4291 | 1335 2007-11-28 Aidan Kehoe <kehoea@parhasard.net> |
1336 | |
1337 * internals/internals.texi (Ibytes and Ichars): | |
1338 Cross reference to the Mule docs describing these typedefs, | |
1339 instead of saying Not yet documented. | |
1340 | |
4265 | 1341 2007-11-14 Aidan Kehoe <kehoea@parhasard.net> |
1342 | |
1343 * lispref/objects.texi (String Type): | |
1344 Describe how one can include a trailing backslash in a raw string, | |
1345 by means of the Unicode escape syntax. | |
1346 | |
4264 | 1347 2007-11-14 Aidan Kehoe <kehoea@parhasard.net> |
1348 | |
1349 * xemacs/keystrokes.texi (Character Representation): | |
1350 Clarify the description of which characters are displayed as | |
1351 themselves and which as octal escapes bzw. "control" characters | |
1352 with an initial caret. | |
1353 | |
4225 | 1354 2007-10-15 Adrian Aichner <adrian@xemacs.org> |
1355 | |
1356 * Makefile (info_files): Sync nt/xemacs.mak and man/Makefile. | |
1357 Sort enries to easy future syncs. | |
1358 | |
4199 | 1359 2007-09-22 Stephen J. Turnbull <stephen@xemacs.org> |
1360 | |
1361 * lispref/searching.texi (Replacing Match): Document the escapes | |
1362 for changing case in `replace-match'. Document the change to | |
1363 STRBUFFER to permit subexpressions in string replacement. | |
1364 | |
4196 | 1365 2007-09-30 Adrian Aichner <adrian@xemacs.org> |
1366 | |
1367 * Makefile (TEXI2HTML_NOSPLIT): New. | |
1368 * Makefile ($(HTMLDIR)/beta.html): Use TEXI2HTML_NOSPLIT. | |
1369 * Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto. | |
1370 | |
4195 | 1371 2007-09-30 Adrian Aichner <adrian@xemacs.org> |
1372 | |
1373 * Makefile (TEXI2HTML): Refactor TEXI2HTML for use by | |
1374 xemacsweb/Documentation/Makefile. | |
1375 | |
4143 | 1376 2007-08-25 Adrian Aichner <adrian@xemacs.org> |
1377 | |
1378 * internals/internals.texi (Through Version 18): Fix error in | |
1379 Emacs Timeline URL. | |
1380 * internals/internals.texi (Better Rendering Support -- Configuration with the Interim Patches): | |
1381 | |
4039 | 1382 2007-06-27 Aidan Kehoe <kehoea@parhasard.net> |
1383 | |
1384 * lispref/variables.texi (Extent): | |
1385 Mention that lexical scope is available using lexical-let and | |
1386 lexical-let* in cl-macs, instead of ignoring them entirely. | |
1387 | |
3979 | 1388 2007-05-21 Ville Skyttä <scop@xemacs.org> |
1389 | |
1390 * internals/internals.texi: Fix corrupted/oddly encoded chars. | |
1391 * lispref/ldap.texi: Ditto. | |
1392 | |
3975 | 1393 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
1394 | |
1395 * XEmacs 21.5.28 "fuki" is released. | |
1396 | |
3955 | 1397 2007-05-15 Aidan Kehoe <kehoea@parhasard.net> |
1398 | |
1399 * internals/internals.texi: | |
1400 Replace an inaccurate description of the read syntax of a Kanji | |
1401 character with one using the recently-added Unicode escapes. Also | |
1402 update the size of an Ichar; they're now 21-bit integers, not | |
1403 19-bit integers. | |
1404 | |
3930 | 1405 2007-04-30 Stephen J. Turnbull <stephen@xemacs.org> |
1406 | |
1407 * internals/internals.texi (Creating a New Console/Device/Frame Type): | |
1408 Typo fix. | |
1409 | |
3773 | 1410 2007-01-01 Malcolm Purvis <malcolmp@xemacs.org> |
1411 | |
1412 * internals/internals.texi (Ben's README): Use 'grep -F' instead | |
1413 of fgrep. | |
1414 | |
3772 | 1415 2006-11-07 Robert Pluim <rpluim@gmail.com> |
1416 | |
1417 * lispref/os.texi (User Identification): The code uses HOMEPATH, | |
1418 not HOMEDIR. | |
1419 | |
3711 | 1420 2006-11-29 Aidan Kehoe <kehoea@parhasard.net> |
1421 | |
1422 * xemacs/custom.texi (Face Resources): | |
1423 Mention that the user should use full XLFD forms for specifying | |
1424 fonts, and that Mule builds reject the short forms by | |
1425 default. Also mention the work-around to the latter design choice | |
1426 that was implemented for Ilya. | |
1427 | |
3685 | 1428 2006-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
1429 | |
1430 * internals/internals.texi | |
1431 (Better Rendering Support -- Configuration with the Interim Patches): | |
1432 Fix examples of configuration via X resources. | |
1433 (Better Rendering Support -- Implementation): Fix description of | |
1434 xftFont resources, introduce fcFontName resource. | |
1435 | |
3674 | 1436 2006-11-11 Aidan Kehoe <kehoea@parhasard.net> |
1437 | |
1438 * lispref/faces.texi (Face Convenience Functions): | |
1439 Add information on how to specify a face's font for a given Mule | |
1440 charset. | |
1441 | |
1442 * lispref/specifiers.texi (Specifiers): | |
1443 * lispref/specifiers.texi (Simple Specifier Usage): | |
1444 * lispref/specifiers.texi (Specifiers In-Depth): | |
1445 * lispref/specifiers.texi (Specifier Tag Functions): | |
1446 * lispref/specifiers.texi (Specifier Instantiation Functions): | |
1447 Update the documentation of specifiers to reflect the new support | |
1448 for Mule character sets and associating tags with them. | |
1449 | |
3543 | 1450 2006-08-05 Aidan Kehoe <kehoea@parhasard.net> |
1451 | |
1452 * lispref/objects.texi (String Type): | |
1453 Give details of the raw string syntax, taken from SXEmacs and | |
1454 Python. | |
1455 | |
3516 | 1456 2006-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
1457 | |
1458 * new-users-guide/edit.texi (Insert): Document bogosity in | |
1459 vendor labeling of DEL key. | |
1460 (Numeric Argument): Remove spurious RETs from keystroke examples. | |
1461 Thanks to Michael C. Wescott <wescott@sc.rr.com>. | |
1462 | |
3510 | 1463 2006-07-16 Aidan Kehoe <kehoea@parhasard.net> |
1464 | |
1465 * xemacs/custom.texi (File Variables): | |
1466 Make it clearer that file variables are buffer-local. | |
1467 * xemacs/custom.texi (Faces): | |
1468 "must be encoding" -> "must be encoded". | |
1469 | |
1470 2006-07-16 Aidan Kehoe <kehoea@parhasard.net> | |
1471 | |
1472 * lispref/variables.texi (Creating Buffer-Local): | |
1473 Mention that buffer-local variables are created when file local | |
1474 variables are set. | |
1475 | |
3496 | 1476 2006-07-08 Aidan Kehoe <kehoea@parhasard.net> |
1477 | |
1478 * internals/internals.texi (Internal String Encoding): | |
1479 Mention that UTF-8 would be a reasonable alternative encoding. | |
1480 * internals/internals.texi (Internal Character Encoding): | |
1481 Re-arrange the description of characters to deal with 21-bit | |
1482 characters. | |
1483 | |
3439 | 1484 2006-06-03 Aidan Kehoe <kehoea@parhasard.net> |
1485 | |
1486 * lispref/mule.texi (CCL Syntax): | |
1487 * lispref/mule.texi (CCL Statements): | |
1488 Describe the mule-to-unicode and unicode-to-mule statements; | |
1489 rename the section they are described in. | |
1490 | |
3404 | 1491 2006-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
1492 | |
1493 * xemacs-faq.texi (Q2.2.3): New node. | |
1494 (Q2.2.2, Q2.3.1): Fix navigation references. | |
1495 (Top, Installation): Add to menus. | |
1496 | |
3402 | 1497 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
1498 | |
1499 * XEmacs 21.5.27 "fiddleheads" is released. | |
1500 | |
3388 | 1501 2006-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
1502 | |
1503 * beta.texi (Building Beta XEmacs): Rename 'Compiling' -> 'Building'. | |
1504 (Reporting Problems): Improve it, make it a top-level node, add | |
1505 some vertical spacing to make node breaks more visible. | |
1506 (Getting the Source): Flesh it out a bit and move it to the | |
1507 Building Beta XEmacs node. | |
1508 | |
3387 | 1509 2006-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
1510 | |
1511 * xemacs/custom.texi (Xft Font Customization): New node. | |
1512 (Faces): Create menu, add new node. | |
1513 * xemacs/xemacs.texi (Top): add new node to detail menu. | |
1514 | |
3367 | 1515 2006-04-29 Aidan Kehoe <kehoea@parhasard.net> |
1516 | |
1517 * lispref/objects.texi (Character Type): | |
1518 Document the Unicode syntax for characters in characters and | |
1519 strings. | |
1520 | |
3354 | 1521 2006-04-23 Stephen J. Turnbull <stephen@xemacs.org> |
1522 | |
1523 * internals/internals.texi: Run texinfo-master-menu. | |
1524 (Creating a New Console/Device/Frame Type): New node. | |
1525 | |
3323 | 1526 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
1527 | |
1528 * XEmacs 21.5.26 "endive" is released. | |
1529 | |
3322 | 1530 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
1531 | |
1532 Miscellaneous doc cleanup, parts 2-4: move CHANGES-msw, | |
1533 TODO.ben-mule-21-5, README.ben-mule-21-5, and | |
1534 README.ben-separate-stderr to Internals Manual. | |
1535 | |
1536 * internals/internals.texi (Ben's TODO list): | |
1537 (CHANGES from 21.4-windows branch): | |
1538 (Ben's README): | |
1539 (Ben's separate stderr notes): | |
1540 New nodes. | |
1541 | |
1542 (Subprocesses): Add "Ben's separate stderr notes" to menu. | |
1543 (The Great Mule Merge of March 2002): Add "Ben's TODO list" and | |
1544 "Ben's README" to menu. | |
1545 (Interface to MS Windows): Add "CHANGES from 21.4-windows branch" | |
1546 to menu. | |
1547 | |
1548 (Top): Update detailmenu. | |
1549 | |
1550 2006-03-30 Stephen J. Turnbull <stephen@xemacs.org> | |
1551 | |
1552 Miscellaneous doc cleanup, part 1: move CHANGES-ben-mule to | |
1553 Internals Manual. | |
1554 | |
1555 * internals/internals.texi (The Great Mule Merge of March 2002): | |
1556 Insert CHANGES-ben-mule here, and reformat for Texinfo. | |
1557 | |
3260 | 1558 2006-02-26 Mike Sperber <mike@xemacs.org> |
1559 | |
1560 * xemacs/building.texi (External Lisp): Document that `run-lisp' | |
1561 needs the os-utils package. | |
1562 | |
3259 | 1563 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
1564 | |
1565 * XEmacs 21.5.25 "eggplant" is released. | |
1566 | |
3179 | 1567 2005-11-25 Mike Sperber <mike@xemacs.org> |
1568 | |
1569 * lispref/packaging.texi (The User View): | |
1570 * xemacs/startup.texi (Startup Paths): | |
1571 * xemacs-faq.texi (Q2.1.6): Document new configure options and | |
1572 environment variables for | |
1573 package locations. | |
1574 | |
3171 | 1575 2005-12-24 Aidan Kehoe <kehoea@parhasard.net> |
1576 | |
1577 * xemacs/keystrokes.texi (Keystrokes): | |
1578 Add new node on keyboards with which one can't type Latin. | |
1579 * xemacs/keystrokes.texi (Non-Latin keyboards): | |
1580 Describe the support for falling back to a US key layout on | |
1581 keyboards where typing the Roman alphabet is difficult. | |
1582 | |
3150 | 1583 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
1584 | |
1585 * XEmacs 21.5.24 "dandelion" is released. | |
1586 | |
3147 | 1587 2005-12-09 Malcolm Purvis <malcolmp@xemacs.org> |
1588 | |
1589 * internals/internals.texi (The configure Script): Documented | |
1590 more fully the behaviour of complex options. Provided examples. | |
1591 | |
3128 | 1592 2005-12-03 Adrian Aichner <adrian@xemacs.org> |
1593 | |
1594 * custom.texi (Declaring Variables): Typo fixes. | |
1595 | |
3111 | 1596 2005-11-29 Stephen J. Turnbull <stephen@xemacs.org> |
1597 | |
1598 * xemacs/custom.texi (Faces): Describe some of the more important | |
1599 font naming syntaxes under `set-face-font'. Fix a typo. | |
1600 | |
3094 | 1601 2005-11-22 Stephen J. Turnbull <stephen@xemacs.org> |
1602 | |
1603 * internals/internals.texi (Working with Lisp Objects): Explain | |
1604 better why DEFSYMBOL is usually preferable to intern. | |
1605 | |
3073 | 1606 2005-11-08 Malcolm Purvis <malcolmp@xemacs.org> |
1607 | |
1608 * internals/internals.texi (The configure Script): Added the | |
1609 definition of the new macro XE_HELP_SUBSECTION. | |
1610 | |
3062 | 1611 2005-11-13 Ben Wing <ben@xemacs.org> |
1612 | |
1613 * Makefile: | |
1614 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
1615 Do some refactoring for cleanliness. | |
1616 | |
3059 | 1617 2005-11-13 Ben Wing <ben@xemacs.org> |
1618 | |
1619 * internals/internals.texi (Top): | |
1620 * internals/internals.texi (CVS Techniques): | |
1621 * internals/internals.texi (Creating a Branch): | |
1622 * internals/internals.texi (Merging a Branch into the Trunk): | |
1623 Add node on Creating a Branch. Update info concerning problems | |
1624 with rtag on symlinks. (#### Is this still valid?) | |
1625 | |
3031 | 1626 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
1627 | |
1628 * XEmacs 21.5.23 "daikon" is released. | |
1629 | |
3018 | 1630 2005-10-20 Malcolm Purvis <malcolmp@xemacs.org> |
1631 | |
1632 * xemacs-faq.texi (Q1.2.2): | |
1633 * xemacs-faq.texi (Q2.1.1): | |
1634 * xemacs-faq.texi (Q2.1.6): | |
1635 * xemacs-faq.texi (Q2.2.1): | |
1636 * xemacs-faq.texi (Q2.3.6): | |
1637 * xemacs-faq.texi (Q2.4.3): | |
1638 * xemacs-faq.texi (Q2.4.4): | |
1639 * xemacs-faq.texi (Q2.4.7): | |
1640 * xemacs-faq.texi (Q5.3.3): | |
1641 * xemacs-faq.texi (Q6.0.8): | |
1642 * xemacs-faq.texi (Q7.2.1): | |
1643 Add 21.5 specific examples of configure options in addition to the | |
1644 existing 21.4 ones. | |
1645 | |
3003 | 1646 2005-10-15 Malcolm Purvis <malcolmp@xemacs.org> |
1647 | |
1648 * internals/internals.texi: "API's" -> "APIs". This fixes | |
1649 problems generating dvi and pdf versions. | |
1650 * internals/internals.texi (The configure Script): | |
1651 Describe the use of XE_MERGED_ARG. | |
1652 | |
2995 | 1653 2005-10-13 Ben Wing <ben@xemacs.org> |
1654 | |
1655 * xemacs-faq.texi (Top): | |
1656 * xemacs-faq.texi (External Subsystems): | |
1657 * xemacs-faq.texi (Q5.4.4): | |
1658 * xemacs-faq.texi (Q5.4.5): | |
1659 * xemacs-faq.texi (Q5.4.6): | |
1660 Add question about need to run `rebaseall' under Cygwin. | |
1661 | |
2972 | 1662 2005-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
1663 | |
1664 * emodules.texi (Distribution with XEmacs): New node describing | |
1665 organization of module-related code in top-level configure.ac and | |
1666 src/Makefile.in.in. | |
1667 | |
2960 | 1668 2005-09-27 Adrian Aichner <adrian@xemacs.org> |
1669 | |
1670 * lispref/compile.texi (Compilation Options): Lowercase SYMBOL | |
1671 argument in `byte-compile-print-gensym' documentation, as | |
1672 suggested by Stephen. | |
1673 | |
2955 | 1674 2005-09-27 Adrian Aichner <adrian@xemacs.org> |
1675 | |
1676 * lispref/packaging.texi: Get file to compile with teinfmt.el. | |
1677 * lispref/packaging.texi (Packaging): Ditto. | |
1678 * lispref/packaging.texi (Package Overview): Ditto. | |
1679 * lispref/packaging.texi (The User View): Ditto. | |
1680 * lispref/packaging.texi (The Library Maintainer View): Ditto. | |
1681 * lispref/packaging.texi (Infrastructure): Ditto. | |
1682 * lispref/packaging.texi (Obtaining): Ditto. | |
1683 * lispref/packaging.texi (Local.rules File): Ditto. | |
1684 * lispref/packaging.texi (package-info.in): Ditto. | |
1685 * lispref/packaging.texi (Makefile): Ditto. | |
1686 * lispref/packaging.texi (Documenting Packages): Ditto. | |
1687 | |
1688 2005-09-27 Adrian Aichner <adrian@xemacs.org> | |
1689 | |
1690 * internals/internals.texi (A Summary of the Various XEmacs | |
1691 Modules): Get file to compile with texinfmt.el. | |
1692 * internals/internals.texi (Windows Build Flags): Ditto. | |
1693 | |
2953 | 1694 2005-09-26 Ben Wing <ben@xemacs.org> |
1695 | |
1696 * lispref/glyphs.texi (Images): | |
1697 * lispref/glyphs.texi (Image Instantiators): | |
1698 * lispref/glyphs.texi (Image Instantiator Formats): | |
1699 * lispref/glyphs.texi (Image Instances): | |
1700 * lispref/glyphs.texi (Image Instance Functions): | |
1701 * lispref/glyphs.texi (Creating Glyphs): | |
1702 * lispref/glyphs.texi (Lisp API to Native Widgets): | |
1703 * lispref/glyphs.texi (Glyph Properties): | |
1704 * lispref/glyphs.texi (Glyph Examples): | |
1705 * lispref/lispref.texi (Top): | |
1706 * lispref/specifiers.texi (Specifiers): | |
1707 * lispref/specifiers.texi (Introduction to Specifiers): | |
1708 * lispref/specifiers.texi (Simple Specifier Usage): | |
1709 * lispref/specifiers.texi (Specifiers In-Depth): | |
1710 * lispref/specifiers.texi (Specifier Instantiation): | |
1711 * lispref/specifiers.texi (Retrieving Specifications): | |
1712 * lispref/specifiers.texi (Specifier Tag Functions): | |
1713 * lispref/specifiers.texi (Specifier Validation Functions): | |
1714 Use "instantiation" not "instancing". Fix some places where | |
1715 "specifier" is used to mean "instantiator". | |
1716 | |
2949 | 1717 2005-09-25 Adrian Aichner <adrian@xemacs.org> |
1718 | |
1719 * lispref/compile.texi (Compilation Options): Supply missing | |
1720 argument to @var{}, using same SYMBOL as in variable docstring of | |
1721 `byte-compile-print-gensym'. | |
1722 | |
2931 | 1723 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
1724 | |
1725 * XEmacs 21.5.22 "cucumber" is released. | |
1726 | |
2867 | 1727 2005-07-20 Didier Verna <didier@xemacs.org> |
1728 | |
1729 * lispref/faces.texi (Basic Face Functions): Rephrase the face | |
1730 aliasing paragraph following a suggestion from Stephen J. | |
1731 Turnbull. | |
1732 | |
2865 | 1733 2005-07-19 Didier Verna <didier@xemacs.org> |
1734 | |
1735 * lispref/faces.texi (Basic Face Functions): Document the face | |
1736 aliasing feature. | |
1737 | |
2862 | 1738 2005-07-17 Aidan Kehoe <kehoea@parhasard.net> |
1739 | |
1740 * lispref/commands.texi (Converting Events): | |
1741 Give details on the deprecated ALLOW-NON-ASCII argument to | |
2865 | 1742 event-to-character, and why you shouldn't use it. |
2862 | 1743 |
2828 | 1744 2005-06-26 Aidan Kehoe <kehoea@parhasard.net> |
1745 | |
2865 | 1746 * lispref/commands.texi (Converting Events): |
2828 | 1747 * lispref/keymaps.texi (Key Sequences): |
1748 Stop pretending ASCII is an eight-bit character set, and remove | |
1749 documentation of event-to-character's vanished fourth argument. | |
1750 | |
1751 * internals/internals.texi (Old Future Work -- Improvements in | |
1752 support for non-ASCII (European) keysyms under X): | |
2865 | 1753 Rename the ascii-character property. |
1754 | |
2818 | 1755 2005-06-19 Aidan Kehoe <kehoea@parhasard.net> |
1756 | |
1757 * lispref/building.texi (Building XEmacs and Object Allocation): | |
2865 | 1758 Pure storage has been gone for half a decade or more. |
1759 * lispref/mule.texi (Internationalization Terminology): | |
1760 Phrase stuff a little more clearly, compare Mule with Unicode. | |
2818 | 1761 * lispref/lispref.texi (Top): |
2865 | 1762 Take out info on pure storage. |
2818 | 1763 |
2791 | 1764 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
1765 | |
1766 * XEmacs 21.5.21 "corn" is released. | |
1767 | |
2769 | 1768 2005-05-10 Aidan Kehoe <kehoea@parhasard.net> |
1769 | |
1770 * xemacs-faq.texi (Q3.2.5): (setq text-mode-hook | |
2865 | 1771 'turn-on-auto-fill) is not a good idea. |
2769 | 1772 |
2768 | 1773 2005-05-10 Aidan Kehoe <kehoea@parhasard.net> |
1774 | |
2865 | 1775 * xemacs/sending.texi (Sending Mail):Document that sendmail.el is |
1776 underfeatured and not getting better anytime soon; suggest using | |
1777 another mailer. | |
2768 | 1778 |
2757 | 1779 2005-05-05 Aidan Kehoe <kehoea@parhasard.net> |
1780 | |
1781 * xemacs/building.texi (Lisp Modes): | |
1782 * xemacs/building.texi (Lisp Interaction): | |
1783 * xemacs/entering.texi (Entering Emacs): | |
1784 * xemacs/menus.texi (File Menu): | |
1785 * xemacs/text.texi (Auto Fill): | |
1786 None of the keymaps I have access to have linefeed keys; they all | |
1787 use Return. As such, for new users, C-j is really the only option | |
1788 for evaluation in Lisp interaction mode, and should be documented | |
2865 | 1789 as such. |
1790 | |
3050 | 1791 2005-04-18 Stephen J. Turnbull <stephen@xemacs.org> |
2736 | 1792 |
1793 * internals/internals.texi | |
1794 (Better Rendering Support -- Modern Font Support): | |
1795 (Modern Font Support -- Font Concepts): | |
1796 (Modern Font Support -- fontconfig): | |
1797 (Modern Font Support -- Xft): | |
1798 New nodes describing the Lisp API. | |
1799 (Future Work -- Better Rendering Support): | |
1800 Add Better Rendering Support -- Modern Font Support to menu. | |
1801 | |
1802 2005-04-05 Stephen J. Turnbull <stephen@xemacs.org> | |
1803 | |
1804 * xemacs/custom.texi (X Resources): Improve wording. | |
1805 | |
1806 2005-03-13 Stephen J. Turnbull <stephen@xemacs.org> | |
1807 | |
1808 * xemacs/custom.texi (Minor Modes): Improve general description. | |
1809 Add description of Pending Delete and Filladapt modes. | |
1810 (File Variables): Improve caution against invoking minor modes. | |
1811 (Syntax Entry): Strengthen caution against "\s ". | |
1812 | |
1813 * xemacs/major.texi (Major Modes): Improve accuracy of wording. | |
1814 (Mode Hooks): Describe use of hooks to invoke minor modes. | |
1815 | |
2715 | 1816 2005-04-06 Ben Wing <ben@xemacs.org> |
1817 | |
1818 * internals/internals.texi (Authorship of XEmacs): Copy authorship | |
1819 section from FAQ and comment out old info, which is quite out of | |
1820 date and full of typos. | |
1821 | |
2690 | 1822 2005-03-26 Aidan Kehoe <kehoea@parhasard.net> |
1823 | |
1824 * lispref/mule.texi (CCL Example): | |
2691 | 1825 char-int -> char-to-int, and hex 41 is decimal 65, both problems |
2865 | 1826 with my previous patch pointed out by Stephen. |
2690 | 1827 * lispref/mule.texi (The actual coding system): |
1828 Give information on the make-coding-system call, and where the | |
2865 | 1829 actual package can be found. |
1830 | |
2681 | 1831 2005-03-24 Aidan Kehoe <kehoea@parhasard.net> |
1832 | |
1833 * xemacs/custom.texi (X Resources): | |
1834 "Emacs" as the application class -> "XEmacs" as the application | |
1835 class, mention the old resource class determination behaviour, and | |
2865 | 1836 how one can temporarily re-instate it. |
1837 | |
2665 | 1838 2005-03-15 Stephen J. Turnbull <stephen@xemacs.org> |
1839 | |
1840 * internals/internals.texi (The XEmacs Split): | |
1841 * standards.texi (Option Table): | |
1842 Shut up makeinfo and hack-local-variables. | |
1843 | |
2662 | 1844 2005-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
1845 | |
1846 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
1847 Document compiler warnings when assert expands to empty statement. | |
1848 | |
2653 | 1849 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
1850 | |
1851 * XEmacs 21.5.20 "cilantro" is released. | |
1852 | |
2647 | 1853 2005-03-05 Malcolm Purvis <malcolmp@xemacs.org> |
1854 | |
1855 * beta.texi : Change configure arguments to the new autoconf 2.5 | |
1856 style configure. | |
1857 * internals/internals.texi (The Build Configuration System): Fill | |
1858 out the details. | |
1859 | |
2640 | 1860 2005-01-19 Aidan Kehoe <kehoea@parhasard.net> |
1861 | |
1862 * lispref/mule.texi (CCL Example): Detail an implementation of the | |
2865 | 1863 web's URL encoding as a CCL coding system example. |
2640 | 1864 |
1865 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
1866 | |
1867 * internals/internals.texi (The version.sh Script): New node. | |
1868 (XEmacs from the Perspective of Building): | |
1869 (Low-Level Modules): | |
1870 (The Build Configuration System): | |
1871 (Adding Configurable Features): | |
1872 Add or update references to the version.sh node and/or file. | |
1873 | |
1874 (XEmacs from the Perspective of Building): Improve text. | |
1875 | |
1876 | |
1877 2005-01-22 Stephen J. Turnbull <stephen@xemacs.org> | |
1878 | |
1879 * internals/internals.texi (XEmacs): Add XEmacs 21.4.16 to list. | |
1880 (The XEmacs Split): Add comments on untrue legal factoids. | |
1881 (The XEmacs Split): Add some @urefs for Jamie's commentary. | |
1882 | |
2608 | 1883 2005-02-23 Aidan Kehoe <kehoea@parhasard.net> |
1884 | |
1885 * lispref/searching.texi (Syntax of Regexps): | |
1886 Mention the \c and \C regular expression constructs; cross | |
2865 | 1887 reference to the Category Table documentation. |
2608 | 1888 |
2602 | 1889 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> |
1890 | |
1891 * internals/internals.texi (The version.sh Script): New node. | |
1892 (XEmacs from the Perspective of Building): | |
1893 (Low-Level Modules): | |
1894 (The Build Configuration System): | |
1895 (Adding Configurable Features): | |
1896 Add or update references to the version.sh node and/or file. | |
1897 | |
1898 (XEmacs from the Perspective of Building): Improve text. | |
1899 | |
2597 | 1900 2005-02-19 Stephen J. Turnbull <stephen@xemacs.org> |
1901 | |
1902 * internals/internals.texi (Introduction to Writing C Code): | |
1903 Change "mostly warning-free" to "warning-free" to encourage | |
1904 reporting warnings as bugs. | |
1905 (The configure Script): | |
1906 Incorporate Malcolm Purvis's notes from configure.ac. Document | |
1907 his implementations of keyword and complex options, and remove | |
1908 descriptions of my obsolete code. | |
1909 | |
1910 2005-01-16 Stephen J. Turnbull <stephen@xemacs.org> | |
1911 | |
1912 * internals/internals.texi (Better Rendering Support -- | |
1913 Configuration with the Interim Patches): | |
1914 Improve notes on configuration. | |
1915 | |
1916 2004-12-15 Stephen J. Turnbull <stephen@xemacs.org> | |
1917 | |
1918 * internals/internals.texi (Better Rendering Support -- | |
1919 Configuration with the Interim Patches): Menubar uses xftFont | |
1920 resource, too. | |
1921 | |
1922 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> | |
1923 | |
1924 * internals/internals.texi (XEmacs from the Perspective of | |
1925 Building): Mention autoconf. | |
1926 (The Modules of XEmacs): Point Next the The Build Configuration | |
1927 System and add Modules for Building XEmacs to the menu. | |
1928 (A Summary of the Various XEmacs Modules): Add Modules for | |
1929 Building XEmacs to menu, and Modules for Build Configuration, | |
1930 Modules for Compiling XEmacs, and Modules for Preloading Lisp to | |
1931 the table of sections. | |
1932 (Low-Level Modules): Point Previous to Modules for Building XEmacs. | |
1933 (Modules for Building XEmacs): | |
1934 (Modules for Build Configuration): | |
1935 (Modules for Compiling XEmacs): | |
1936 (Modules for Preloading Lisp): | |
1937 (The Build Configuration System): | |
1938 (Adding Configurable Features): | |
1939 (The configure Script): | |
1940 (The Makefile Precursors): | |
1941 New nodes. | |
1942 (Rules When Writing New C Code): | |
1943 Point Previous to The Build Configuration System. | |
1944 | |
2594 | 1945 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
1946 | |
1947 * XEmacs 21.5.19 "chives" is released. | |
1948 | |
2559 | 1949 2005-02-03 Ben Wing <ben@xemacs.org> |
1950 | |
1951 * xemacs-faq.texi: | |
1952 * xemacs-faq.texi (Top): | |
1953 * xemacs-faq.texi (Introduction): | |
1954 * xemacs-faq.texi (Q1.2.2): | |
1955 * xemacs-faq.texi (Q1.2.5): | |
1956 * xemacs-faq.texi (Q1.2.9): | |
1957 * xemacs-faq.texi (Q1.2.10): | |
1958 * xemacs-faq.texi (Q1.2.11): | |
1959 * xemacs-faq.texi (Q1.2.12): | |
1960 * xemacs-faq.texi (Q1.4.2): | |
1961 * xemacs-faq.texi (Q1.5.2): | |
1962 * xemacs-faq.texi (Q1.5.3): | |
1963 * xemacs-faq.texi (Q1.5.4): | |
1964 * xemacs-faq.texi (Q1.5.5): | |
1965 * xemacs-faq.texi (Q1.6.6): | |
1966 * xemacs-faq.texi (Q1.7.1): | |
1967 * xemacs-faq.texi (Q1.7.2): | |
1968 * xemacs-faq.texi (Q1.7.3): | |
1969 * xemacs-faq.texi (Q1.7.4): | |
1970 * xemacs-faq.texi (Installation): | |
1971 * xemacs-faq.texi (Q2.0.1): | |
1972 * xemacs-faq.texi (Q2.0.2): | |
1973 * xemacs-faq.texi (Q2.0.3): | |
1974 * xemacs-faq.texi (Q2.0.4): | |
1975 * xemacs-faq.texi (Q2.0.5): | |
1976 * xemacs-faq.texi (Q2.1.1): | |
1977 * xemacs-faq.texi (Q2.1.2): | |
1978 * xemacs-faq.texi (Q2.1.3): | |
1979 * xemacs-faq.texi (Q2.1.4): | |
1980 * xemacs-faq.texi (Q2.1.5): | |
1981 * xemacs-faq.texi (Q2.1.6): | |
1982 * xemacs-faq.texi (Q2.1.7): | |
1983 * xemacs-faq.texi (Q2.2.1): | |
1984 * xemacs-faq.texi (Q2.2.2): | |
1985 * xemacs-faq.texi (Q2.3.1): | |
1986 * xemacs-faq.texi (Q2.3.2): | |
1987 * xemacs-faq.texi (Q2.3.3): | |
1988 * xemacs-faq.texi (Q2.3.4): | |
1989 * xemacs-faq.texi (Q2.3.5): | |
1990 * xemacs-faq.texi (Q2.3.6): | |
1991 * xemacs-faq.texi (Q2.3.7): | |
1992 * xemacs-faq.texi (Q2.3.8): | |
1993 * xemacs-faq.texi (Q2.4.1): | |
1994 * xemacs-faq.texi (Q2.4.2): | |
1995 * xemacs-faq.texi (Q2.4.3): | |
1996 * xemacs-faq.texi (Q2.4.4): | |
1997 * xemacs-faq.texi (Q2.4.5): | |
1998 * xemacs-faq.texi (Q2.4.6): | |
1999 * xemacs-faq.texi (Q2.4.7): | |
2000 * xemacs-faq.texi (Q2.4.8): | |
2001 * xemacs-faq.texi (Q2.4.9): | |
2002 * xemacs-faq.texi (Q2.4.10): | |
2003 * xemacs-faq.texi (Q2.4.11): | |
2004 * xemacs-faq.texi (Q2.4.12): | |
2005 * xemacs-faq.texi (Q2.5.1): | |
2006 * xemacs-faq.texi (Q2.5.2): | |
2007 * xemacs-faq.texi (Q2.5.3): | |
2008 * xemacs-faq.texi (Q2.5.4): | |
2009 * xemacs-faq.texi (Q2.5.5): | |
2010 * xemacs-faq.texi (Legacy Versions): | |
2011 * xemacs-faq.texi (Q10.0.1): | |
2012 * xemacs-faq.texi (Q10.0.2): | |
2013 Flesh out intro section on packages and section on installing | |
2014 packages. Incorporate README, README.packages, BUGS, etc/PACKAGES. | |
2015 Various other changes. | |
2016 | |
2547 | 2017 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> |
2018 | |
2019 * beta.texi: Update Copyright. Add pointer comment. | |
2020 | |
2021 (New packages): Remove personal names, point at jobs.html | |
2022 instead. | |
2023 | |
2024 (Syncing with GNU Emacs): Change "don't assume Mule" to | |
2025 "conditionalize Mule dependencies correctly". RMS stroking: use | |
2026 "GNU", not "FSF", in sync notices. | |
2027 | |
2028 2005-02-02 Robert Delius Royar <xemacs@frinabulax.org> | |
2029 | |
2030 * beta.texi (Top): | |
2865 | 2031 Add reference to Index in catalog to prevent |
2547 | 2032 errors compiling with GNU makeinfo 4.5. |
2033 | |
2034 * beta.texi (Syncing with GNU Emacs): | |
2865 | 2035 Add forward reference to Index in next node to prevent |
2547 | 2036 errors compiling with GNU makeinfo 4.5. |
2037 | |
2038 * beta.texi (Index): | |
2039 Add backward reference to Syncing with GNU Emacs to | |
2865 | 2040 replace obsolete reference to Defining Variables to |
2547 | 2041 prevent errors compiling with GNU makeinfo 4.5. |
2042 | |
2537 | 2043 2005-01-31 Ben Wing <ben@xemacs.org> |
2044 | |
2045 * xemacs/help.texi (Misc Help): | |
2046 Delete references to DISTRIB. Point to FAQ. | |
2865 | 2047 |
2537 | 2048 * xemacs/new.texi: |
2049 Update sample code for version checking. | |
2865 | 2050 |
2537 | 2051 * xemacs/xemacs.texi (Distrib): |
2052 * xemacs/xemacs.texi (Intro): | |
2053 Delete references to DISTRIB. Point directly to web site. | |
2054 Update stuff referring to GNU Emacs. Delete references to Win-Emacs. | |
2055 | |
2056 2005-01-31 Ben Wing <ben@xemacs.org> | |
2057 | |
2058 * Makefile: | |
2059 * Makefile (info_files): | |
2060 * Makefile (html_files): | |
2061 * Makefile (dvi_files): | |
2062 * Makefile (pdf_files): | |
2063 * Makefile ($(INFODIR)/beta.info): | |
2064 Add beta.texi and built files. | |
2865 | 2065 |
2537 | 2066 * xemacs-faq.texi (Top): |
2067 * xemacs-faq.texi (Introduction): | |
2068 * xemacs-faq.texi (Q1.0.3): | |
2069 * xemacs-faq.texi (Q1.0.4): | |
2070 * xemacs-faq.texi (Q1.0.5): | |
2071 * xemacs-faq.texi (Q1.0.6): | |
2072 * xemacs-faq.texi (Q1.1.1): | |
2073 * xemacs-faq.texi (Q1.1.2): | |
2074 * xemacs-faq.texi (Q1.1.3): | |
2075 * xemacs-faq.texi (Q1.1.4): | |
2076 * xemacs-faq.texi (Q1.2.1): | |
2077 * xemacs-faq.texi (Q1.2.2): | |
2078 * xemacs-faq.texi (Q1.2.3): | |
2079 * xemacs-faq.texi (Q1.2.4): | |
2080 * xemacs-faq.texi (Q1.2.5): | |
2081 * xemacs-faq.texi (Q1.2.6): | |
2082 * xemacs-faq.texi (Q1.2.7): | |
2083 * xemacs-faq.texi (Q1.2.8): | |
2084 * xemacs-faq.texi (Q1.2.9): | |
2085 * xemacs-faq.texi (Q1.2.10): | |
2086 * xemacs-faq.texi (Q1.2.11): | |
2087 * xemacs-faq.texi (Q1.2.12): | |
2088 * xemacs-faq.texi (Q1.2.13): | |
2089 * xemacs-faq.texi (Q1.3.1): | |
2090 * xemacs-faq.texi (Q1.3.2): | |
2091 * xemacs-faq.texi (Q1.3.3): | |
2092 * xemacs-faq.texi (Q1.3.4): | |
2093 * xemacs-faq.texi (Q1.3.5): | |
2094 * xemacs-faq.texi (Q1.3.6): | |
2095 * xemacs-faq.texi (Q1.3.7): | |
2096 * xemacs-faq.texi (Q1.3.8): | |
2097 * xemacs-faq.texi (Q1.4.1): | |
2098 * xemacs-faq.texi (Q1.4.2): | |
2099 * xemacs-faq.texi (double-word): New. | |
2100 * xemacs-faq.texi (Q1.4.3): | |
2101 * xemacs-faq.texi (Q1.4.4): | |
2102 * xemacs-faq.texi (Q1.4.5): | |
2103 * xemacs-faq.texi (Q1.5.1): | |
2104 * xemacs-faq.texi (Q1.5.2): | |
2105 * xemacs-faq.texi (Q1.5.3): | |
2106 * xemacs-faq.texi (Q1.6.1): | |
2107 * xemacs-faq.texi (Q1.6.2): | |
2108 * xemacs-faq.texi (Q1.6.3): | |
2109 * xemacs-faq.texi (Q1.6.4): | |
2110 * xemacs-faq.texi (Q1.6.5): | |
2111 * xemacs-faq.texi (Q1.6.6): | |
2112 * xemacs-faq.texi (Q1.7.1): | |
2113 * xemacs-faq.texi (Q1.8.1): | |
2114 * xemacs-faq.texi (Q1.8.2): | |
2115 * xemacs-faq.texi (Q1.8.3): | |
2116 * xemacs-faq.texi (Q1.8.4): | |
2117 * xemacs-faq.texi (Q1.8.5): | |
2118 * xemacs-faq.texi (Q1.8.6): | |
2119 * xemacs-faq.texi (Q1.8.7): | |
2120 * xemacs-faq.texi (Q1.8.8): | |
2121 * xemacs-faq.texi (Q1.8.9): | |
2122 * xemacs-faq.texi (Q2.2.1): | |
2123 * xemacs-faq.texi (Q2.2.2): | |
2124 * xemacs-faq.texi (Q2.4.2): | |
2125 * xemacs-faq.texi (Advanced): | |
2126 * xemacs-faq.texi (Q7.0.1): | |
2127 * xemacs-faq.texi (Q7.0.2): | |
2128 * xemacs-faq.texi (Q7.0.3): | |
2129 * xemacs-faq.texi (Q7.0.4): | |
2130 * xemacs-faq.texi (Q7.0.5): | |
2131 * xemacs-faq.texi (Q7.0.6): | |
2132 * xemacs-faq.texi (Q7.1.1): | |
2133 * xemacs-faq.texi (Q7.1.2): | |
2134 * xemacs-faq.texi (Q7.1.3): | |
2135 * xemacs-faq.texi (Q7.1.4): | |
2136 * xemacs-faq.texi (Q7.1.5): | |
2137 * xemacs-faq.texi (Q7.1.6): | |
2138 * xemacs-faq.texi (Q7.1.7): | |
2139 * xemacs-faq.texi (Q7.1.8): | |
2140 * xemacs-faq.texi (Q7.1.9): | |
2141 * xemacs-faq.texi (Q7.1.10): | |
2142 * xemacs-faq.texi (Q7.1.11): | |
2143 * xemacs-faq.texi (Q7.2.1): | |
2144 * xemacs-faq.texi (Q7.2.2): | |
2145 * xemacs-faq.texi (Q7.2.3): | |
2146 * xemacs-faq.texi (Other Packages): | |
2147 * xemacs-faq.texi (Current Events): | |
2148 * xemacs-faq.texi (Legacy Versions): | |
2149 Major overhaul of section 1. Add mailing list info, update | |
2150 downloading info, add info on CVS, etc. | |
2151 | |
2522 | 2152 2004-10-17 Shyamal Prasad <shyamal@member.fsf.org> |
2153 | |
2154 * xemacs/programs.texi (Program Modes): Updated it to reflect | |
2155 current status of programming modes. | |
2156 * xemacs/programs.texi (CC Mode): New section introduces CC | |
2157 Mode. Introduces customization with reference to CC Mode | |
2158 manual. Also introduce C/AWK modes in prog-modes package | |
2159 * xemacs/programs.texi (C Ident): Removed - it was | |
2160 obsolete. prog-modes package documentation now contains | |
2865 | 2161 indentation description for old C mode |
2522 | 2162 * xemacs/major.texi (Mode Hooks): Add description of major mode |
2163 hooks. Cleaned up and updated programming mode descriptions. | |
2164 * xemacs/xemacs.texi (Top): Updated Detailed Node listing for new | |
2165 CC Mode section in programs.texi | |
2166 | |
2167 | |
2507 | 2168 2005-01-26 Ben Wing <ben@xemacs.org> |
2169 | |
2170 * internals/internals.texi: | |
2171 * internals/internals.texi (Through Version 18): | |
2172 * internals/internals.texi (GNU Emacs 19): | |
2173 * internals/internals.texi (GNU Emacs 20): | |
2174 Update History. | |
2175 | |
2176 * internals/internals.texi (Unicode support under Windows): | |
2177 Redo section on Windows 95 support for Unicode. | |
2178 | |
2492 | 2179 2005-01-19 Aidan Kehoe <kehoea@parhasard.net> |
2180 | |
2181 * man/lispref/functions.texi (Functions): Rename to "Functions and | |
2182 Commands" | |
2183 * man/lispref/functions.texi (What Is a Function): Move the definition | |
2184 of a command further up the list, give information on a trivial | |
2185 (interactive) declaration, and cross-reference to the key binding | |
2186 detail. Cf. 87vf9wgd08.fsf@tleepslib.sk.tsukuba.ac.jp | |
2865 | 2187 (comp.emacs.xemacs, 2005-01-18). |
2492 | 2188 * man/lispref/eval.texi man/lispref/lispref.texi |
2865 | 2189 man/lispref/macros.texi man/lispref/symbols.texi |
2492 | 2190 man/lispref/variables.texi: Fix cross references. |
2191 | |
2459 | 2192 2004-12-28 Ben Wing <ben@xemacs.org> |
2193 | |
2194 * xemacs-faq.texi (Top): | |
2195 * xemacs-faq.texi (Introduction): | |
2196 * xemacs-faq.texi (Q1.0.3): | |
2197 * xemacs-faq.texi (Q1.0.5): | |
2198 * xemacs-faq.texi (Q1.0.10): | |
2199 * xemacs-faq.texi (Q1.1.4): | |
2200 * xemacs-faq.texi (Q1.1.5): | |
2201 * xemacs-faq.texi (Q1.4.1): | |
2202 * xemacs-faq.texi (Q1.4.3): | |
2203 * xemacs-faq.texi (Q1.5.8): | |
2204 * xemacs-faq.texi (Installation): | |
2205 * xemacs-faq.texi (Q2.0.3): | |
2206 * xemacs-faq.texi (Q2.0.5): | |
2207 * xemacs-faq.texi (Q2.1.1): | |
2208 * xemacs-faq.texi (Q2.1.2): | |
2209 * xemacs-faq.texi (Q2.2.7): | |
2210 * xemacs-faq.texi (Q2.4.6): | |
2211 * xemacs-faq.texi (Editing): | |
2212 * xemacs-faq.texi (Q3.0.1): | |
2213 * xemacs-faq.texi (Q3.0.2): | |
2214 * xemacs-faq.texi (Q3.0.3): | |
2215 * xemacs-faq.texi (Q3.0.4): | |
2216 * xemacs-faq.texi (Q3.0.5): | |
2217 * xemacs-faq.texi (Q3.0.6): | |
2218 * xemacs-faq.texi (Q3.0.7): | |
2219 * xemacs-faq.texi (Q3.0.8): | |
2220 * xemacs-faq.texi (Q3.0.9): | |
2221 * xemacs-faq.texi (Q3.0.10): | |
2222 * xemacs-faq.texi (Q3.0.11): | |
2223 * xemacs-faq.texi (Q3.1.1): | |
2224 * xemacs-faq.texi (Q3.1.2): | |
2225 * xemacs-faq.texi (Q3.1.3): | |
2226 * xemacs-faq.texi (Q3.1.4): | |
2227 * xemacs-faq.texi (Q3.1.5): | |
2228 * xemacs-faq.texi (Q3.2.1): | |
2229 * xemacs-faq.texi (Q3.2.2): | |
2230 * xemacs-faq.texi (Q3.2.3): | |
2231 * xemacs-faq.texi (Q3.2.4): | |
2232 * xemacs-faq.texi (Q3.2.5): | |
2233 * xemacs-faq.texi (Q3.3.1): | |
2234 * xemacs-faq.texi (Q3.3.2): | |
2235 * xemacs-faq.texi (Q3.3.3): | |
2236 * xemacs-faq.texi (Q3.3.4): | |
2237 * xemacs-faq.texi (Q3.3.5): | |
2238 * xemacs-faq.texi (Q3.3.6): | |
2239 * xemacs-faq.texi (Q3.4.1): | |
2240 * xemacs-faq.texi (Q3.4.2): | |
2241 * xemacs-faq.texi (Display): | |
2242 * xemacs-faq.texi (Q4.0.1): | |
2243 * xemacs-faq.texi (Q4.0.2): | |
2244 * xemacs-faq.texi (Q4.0.3): | |
2245 * xemacs-faq.texi (Q4.0.4): | |
2246 * xemacs-faq.texi (my-toggle-toolbar): Removed. | |
2247 * xemacs-faq.texi (Q4.0.5): | |
2248 * xemacs-faq.texi (Q4.0.6): | |
2249 * xemacs-faq.texi (Q4.0.7): | |
2250 * xemacs-faq.texi (Q4.0.8): | |
2251 * xemacs-faq.texi (Q4.0.9): | |
2252 * xemacs-faq.texi (Q4.1.1): | |
2253 * xemacs-faq.texi (Q4.1.2): | |
2254 * xemacs-faq.texi (Q4.2.1): | |
2255 * xemacs-faq.texi (Q4.2.2): | |
2256 * xemacs-faq.texi (Q4.2.3): | |
2257 * xemacs-faq.texi (Q4.2.4): | |
2258 * xemacs-faq.texi (Q4.3.1): | |
2259 * xemacs-faq.texi (Q4.3.2): | |
2260 * xemacs-faq.texi (Q4.3.3): | |
2261 * xemacs-faq.texi (Q4.4.1): | |
2262 * xemacs-faq.texi (Q4.4.2): | |
2263 * xemacs-faq.texi (Q4.4.3): | |
2264 * xemacs-faq.texi (Q4.4.4): | |
2265 * xemacs-faq.texi (Q4.4.5): | |
2266 * xemacs-faq.texi (Q4.5.1): | |
2267 * xemacs-faq.texi (Q4.5.2): | |
2268 * xemacs-faq.texi (Q4.5.3): | |
2269 * xemacs-faq.texi (Q4.5.4): | |
2270 * xemacs-faq.texi (Q4.6.1): | |
2271 * xemacs-faq.texi (Q4.6.2): | |
2272 * xemacs-faq.texi (Q4.6.3): | |
2273 * xemacs-faq.texi (Q4.6.4): | |
2274 * xemacs-faq.texi (scroll-up): Removed. | |
2275 * xemacs-faq.texi (Q4.6.5): | |
2276 * xemacs-faq.texi (scroll-down): Removed. | |
2277 * xemacs-faq.texi (Q4.6.6): | |
2278 * xemacs-faq.texi (Q4.6.7): | |
2279 * xemacs-faq.texi (Q4.7.1): | |
2280 * xemacs-faq.texi (Q4.7.2): | |
2281 * xemacs-faq.texi (Q4.7.3): | |
2282 * xemacs-faq.texi (Q4.7.4): | |
2283 * xemacs-faq.texi (External Subsystems): | |
2284 * xemacs-faq.texi (Q5.0.1): | |
2285 * xemacs-faq.texi (Q5.0.2): | |
2286 * xemacs-faq.texi (Q5.0.3): | |
2287 * xemacs-faq.texi (Q5.0.4): | |
2288 * xemacs-faq.texi (Q5.0.5): | |
2289 * xemacs-faq.texi (Q5.0.6): | |
2290 * xemacs-faq.texi (Q5.1.1): | |
2291 * xemacs-faq.texi (Q5.1.2): | |
2292 * xemacs-faq.texi (Q5.2.1): | |
2293 * xemacs-faq.texi (Q5.2.2): | |
2294 * xemacs-faq.texi (Q5.2.3): | |
2295 * xemacs-faq.texi (Q5.2.4): | |
2296 * xemacs-faq.texi (Q5.3.1): | |
2297 * xemacs-faq.texi (Q5.3.2): | |
2298 * xemacs-faq.texi (Q5.3.3): | |
2299 * xemacs-faq.texi (Q5.3.4): | |
2300 * xemacs-faq.texi (Q5.4.1): | |
2301 * xemacs-faq.texi (Q5.4.2): | |
2302 * xemacs-faq.texi (Q5.4.3): | |
2303 * xemacs-faq.texi (Q5.4.4): | |
2304 * xemacs-faq.texi (Q5.4.5): | |
2305 * xemacs-faq.texi (Q5.5.1): | |
2306 * xemacs-faq.texi (Q5.5.2): | |
2307 * xemacs-faq.texi (Q5.5.3): | |
2308 * xemacs-faq.texi (Q5.5.4): | |
2309 * xemacs-faq.texi (Q5.5.5): | |
2310 * xemacs-faq.texi (Internet): | |
2311 * xemacs-faq.texi (Q6.0.1): | |
2312 * xemacs-faq.texi (Q6.0.2): | |
2313 * xemacs-faq.texi (Q6.0.3): | |
2314 * xemacs-faq.texi (Q6.0.4): | |
2315 * xemacs-faq.texi (Q6.0.5): | |
2316 * xemacs-faq.texi (Q6.0.6): | |
2317 * xemacs-faq.texi (Q6.0.7): | |
2318 * xemacs-faq.texi (Q6.0.8): | |
2319 * xemacs-faq.texi (Q6.0.9): | |
2320 * xemacs-faq.texi (Q6.0.10): | |
2321 * xemacs-faq.texi (Q6.0.11): | |
2322 * xemacs-faq.texi (Q6.1.1): | |
2323 * xemacs-faq.texi (Q6.1.2): | |
2324 * xemacs-faq.texi (Q6.1.3): | |
2325 * xemacs-faq.texi (Q6.1.4): | |
2326 * xemacs-faq.texi (Q6.1.5): | |
2327 * xemacs-faq.texi (Q6.1.6): | |
2328 * xemacs-faq.texi (Q6.2.1): | |
2329 * xemacs-faq.texi (Q6.2.2): | |
2330 * xemacs-faq.texi (Q6.3.1): | |
2331 * xemacs-faq.texi (Q6.3.2): | |
2332 * xemacs-faq.texi (Q6.4.1): | |
2333 * xemacs-faq.texi (Q6.4.2): | |
2334 * xemacs-faq.texi (Q6.4.3): | |
2335 * xemacs-faq.texi (Advanced): | |
2336 * xemacs-faq.texi (Q7.0.1): | |
2337 * xemacs-faq.texi (Q7.0.2): | |
2338 * xemacs-faq.texi (Q7.1.1): | |
2339 * xemacs-faq.texi (Q7.1.2): | |
2340 * xemacs-faq.texi (Q7.1.3): | |
2341 * xemacs-faq.texi (Q7.1.4): | |
2342 * xemacs-faq.texi (Q7.1.5): | |
2343 * xemacs-faq.texi (Q7.1.6): | |
2344 * xemacs-faq.texi (Q7.2.1): | |
2345 * xemacs-faq.texi (Q7.2.2): | |
2346 * xemacs-faq.texi (Q7.2.3): | |
2347 * xemacs-faq.texi (Q7.2.4): | |
2348 * xemacs-faq.texi (Q7.2.5): | |
2349 * xemacs-faq.texi (Q7.2.6): | |
2350 * xemacs-faq.texi (Q7.2.7): | |
2351 * xemacs-faq.texi (Q7.2.8): | |
2352 * xemacs-faq.texi (Q7.2.9): | |
2353 * xemacs-faq.texi (Q7.2.10): | |
2354 * xemacs-faq.texi (Q7.2.11): | |
2355 * xemacs-faq.texi (Q7.3.1): | |
2356 * xemacs-faq.texi (Q7.3.2): | |
2357 * xemacs-faq.texi (Q7.3.3): | |
2358 * xemacs-faq.texi (Q7.3.4): | |
2359 * xemacs-faq.texi (Other Packages): | |
2360 * xemacs-faq.texi (Q8.0.1): | |
2361 * xemacs-faq.texi (Q8.0.2): | |
2362 * xemacs-faq.texi (Q8.0.3): | |
2363 * xemacs-faq.texi (Q8.0.4): | |
2364 * xemacs-faq.texi (Q8.1.1): | |
2365 * xemacs-faq.texi (Q8.1.2): | |
2366 * xemacs-faq.texi (Q8.1.3): | |
2367 * xemacs-faq.texi (Q8.2.1): | |
2368 * xemacs-faq.texi (Q8.2.2): | |
2369 * xemacs-faq.texi (Q8.2.3): | |
2370 * xemacs-faq.texi (Q8.2.4): | |
2371 * xemacs-faq.texi (Current Events): | |
2372 * xemacs-faq.texi (Q9.0.1): | |
2373 * xemacs-faq.texi (my-function): Removed. | |
2374 * xemacs-faq.texi (Q9.0.2): | |
2375 * xemacs-faq.texi (Q9.0.3): | |
2376 * xemacs-faq.texi (Q9.0.4): | |
2377 * xemacs-faq.texi (Q9.0.5): | |
2378 * xemacs-faq.texi (Legacy Versions): | |
2379 Major rearrangement. Expand to 10 sections. Add various questions, | |
2380 mostly stubs currently. Remove some obsolete stuff. Update a bunch | |
2381 of the links. | |
2382 | |
2444 | 2383 2004-12-15 Ville Skyttä <scop@xemacs.org> |
2384 | |
2385 * lispref/help.texi: Document 3rd arg to `make-obsolete'. | |
2386 | |
2441 | 2387 2004-12-15 Robert Delius Royar <xemacs@frinabulax.org> |
2388 | |
2389 * internals/internals.texi (Modules for the Basic Displayable Lisp | |
2390 Objects): Remove Mote in Make's eye, fix build. | |
2391 | |
2438 | 2392 2004-12-12 Stephen J. Turnbull <stephen@xemacs.org> |
2393 | |
2394 * internals/internals.texi (Modules for the Basic Displayable Lisp | |
2395 Objects): Comment on problems, and extensions needed to handle | |
2396 native widgets properly. | |
2397 | |
2431 | 2398 2004-12-10 Stephen J. Turnbull <stephen@xemacs.org> |
2399 | |
2400 * internals/internals.texi (Better Rendering Support -- | |
2401 Implementation): Document reasons for Label Widget crash. | |
2402 | |
2427 | 2403 2004-12-07 Malcolm Purvis <malcolmp@xemacs.org> |
2404 | |
2405 * Makefile (RECURSIVE_MAKE): Removed. | |
2406 * Makefile (RECURSIVE_MAKE_ARGS): New. The new method for | |
2407 handling parallel builds. | |
2408 | |
2421 | 2409 2004-12-05 Ben Wing <ben@xemacs.org> |
2410 | |
2411 * xemacs/packages.texi (Packages): | |
2412 * xemacs/packages.texi (Manually): | |
2413 * xemacs/packages.texi (Building Packages): | |
2414 * xemacs/packages.texi (Local.rules File): | |
2415 * xemacs/packages.texi (Available Packages): | |
2416 Add long form of Lisp Reference Manual to links. | |
2417 Add links pointing to Lisp Reference Manual for more detailed | |
2418 package discussion. | |
2422 | 2419 |
2420 * xemacs/xemacs-faq.texi: | |
2421 As per Adrian's suggestion, mention that Pitts Jarvis is deceased. | |
2422 | |
2421 | 2423 2004-12-05 Ben Wing <ben@xemacs.org> |
2424 | |
2425 * lispref/range-tables.texi (Range Tables): | |
2426 * lispref/range-tables.texi (Introduction to Range Tables): | |
2427 * lispref/range-tables.texi (Working With Range Tables): | |
2428 Document range-table changes. | |
2429 | |
2430 2004-12-05 Ben Wing <ben@xemacs.org> | |
2431 | |
2432 * internals/internals.texi (A History of Emacs): | |
2433 Update history section. | |
2434 | |
2435 2004-12-05 Ben Wing <ben@xemacs.org> | |
2436 | |
2437 * xemacs-faq.texi: | |
2438 * xemacs-faq.texi (fix-main-menu): New. | |
2439 * xemacs-faq.texi (fix-omitted-menu-lines): New. | |
2440 * xemacs-faq.texi (Top): | |
2441 * xemacs-faq.texi (Introduction): | |
2442 * xemacs-faq.texi (Q1.0.1): | |
2443 * xemacs-faq.texi (Q1.0.2): | |
2444 * xemacs-faq.texi (Q1.0.4): | |
2445 * xemacs-faq.texi (Q1.0.5): | |
2446 * xemacs-faq.texi (Q1.0.6): | |
2447 * xemacs-faq.texi (Q1.0.7): | |
2448 * xemacs-faq.texi (Q1.0.8): | |
2449 * xemacs-faq.texi (Q1.0.9): | |
2450 * xemacs-faq.texi (Q1.0.10): | |
2451 * xemacs-faq.texi (Q1.0.11): | |
2452 * xemacs-faq.texi (Q1.0.12): | |
2453 * xemacs-faq.texi (Q1.0.13): | |
2454 * xemacs-faq.texi (Q1.0.14): | |
2455 * xemacs-faq.texi (Q1.1.1): | |
2456 * xemacs-faq.texi (Q1.1.2): | |
2457 * xemacs-faq.texi (Q1.1.3): | |
2458 * xemacs-faq.texi (Q1.1.4): | |
2459 * xemacs-faq.texi (Q1.1.5): | |
2460 * xemacs-faq.texi (Q1.1.6): | |
2461 * xemacs-faq.texi (Q1.1.7): | |
2462 * xemacs-faq.texi (Q1.1.8): | |
2463 * xemacs-faq.texi (Q1.1.9): | |
2464 * xemacs-faq.texi (Q1.2.1): | |
2465 * xemacs-faq.texi (Q1.2.2): | |
2466 * xemacs-faq.texi (Q1.2.3): | |
2467 * xemacs-faq.texi (Q1.3.1): | |
2468 * xemacs-faq.texi (Q1.3.2): | |
2469 * xemacs-faq.texi (Q1.3.3): | |
2470 * xemacs-faq.texi (Q1.4.1): | |
2471 * xemacs-faq.texi (Q1.4.2): | |
2472 * xemacs-faq.texi (Q1.4.3): | |
2473 * xemacs-faq.texi (Q1.4.4): | |
2474 * xemacs-faq.texi (Q1.4.5): | |
2475 * xemacs-faq.texi (Q1.4.6): | |
2476 * xemacs-faq.texi (Q1.4.7): | |
2477 * xemacs-faq.texi (Q1.4.8): | |
2478 * xemacs-faq.texi (Q1.4.9): | |
2479 * xemacs-faq.texi (Q1.5.1): | |
2480 * xemacs-faq.texi (Q1.5.2): | |
2481 * xemacs-faq.texi (Q1.5.3): | |
2482 * xemacs-faq.texi (Q1.5.4): | |
2483 * xemacs-faq.texi (Q1.5.5): | |
2484 * xemacs-faq.texi (Q1.5.6): | |
2485 * xemacs-faq.texi (Q1.5.7): | |
2486 * xemacs-faq.texi (Q1.5.8): | |
2487 * xemacs-faq.texi (Installation): | |
2488 * xemacs-faq.texi (Q2.0.1): | |
2489 * xemacs-faq.texi (Q2.0.2): | |
2490 * xemacs-faq.texi (Q2.0.3): | |
2491 * xemacs-faq.texi (Q2.0.4): | |
2492 * xemacs-faq.texi (Q2.0.5): | |
2493 * xemacs-faq.texi (Q2.0.6): | |
2494 * xemacs-faq.texi (Q2.0.7): | |
2495 * xemacs-faq.texi (Q2.1.1): | |
2496 * xemacs-faq.texi (Q2.1.2): | |
2497 * xemacs-faq.texi (Q2.1.3): | |
2498 * xemacs-faq.texi (Q2.1.4): | |
2499 * xemacs-faq.texi (Q2.2.1): | |
2500 * xemacs-faq.texi (Q2.2.2): | |
2501 * xemacs-faq.texi (Q2.2.3): | |
2502 * xemacs-faq.texi (Q2.2.4): | |
2503 * xemacs-faq.texi (Q2.2.5): | |
2504 * xemacs-faq.texi (Q2.2.6): | |
2505 * xemacs-faq.texi (Q2.2.7): | |
2506 * xemacs-faq.texi (Q2.2.8): | |
2507 * xemacs-faq.texi (Q2.3.1): | |
2508 * xemacs-faq.texi (Q2.3.2): | |
2509 * xemacs-faq.texi (Q2.3.3): | |
2510 * xemacs-faq.texi (Q2.3.4): | |
2511 * xemacs-faq.texi (Q2.3.5): | |
2512 * xemacs-faq.texi (Q2.3.6): | |
2513 * xemacs-faq.texi (Q2.3.7): | |
2514 * xemacs-faq.texi (Q2.3.8): | |
2515 * xemacs-faq.texi (Q2.3.9): | |
2516 * xemacs-faq.texi (Q2.3.10): | |
2517 * xemacs-faq.texi (Q2.3.11): | |
2518 * xemacs-faq.texi (Q2.4.1): | |
2519 * xemacs-faq.texi (Q2.4.2): | |
2520 * xemacs-faq.texi (Q2.4.3): | |
2521 * xemacs-faq.texi (Q2.4.4): | |
2522 * xemacs-faq.texi (Q2.4.5): | |
2523 * xemacs-faq.texi (Q2.4.6): | |
2524 * xemacs-faq.texi (Display Subsystems): | |
2525 * xemacs-faq.texi (running-xemacs): Removed. | |
2526 * xemacs-faq.texi (Q3.0.1): | |
2527 * xemacs-faq.texi (Q3.0.2): | |
2528 * xemacs-faq.texi (Q3.0.3): | |
2529 * xemacs-faq.texi (Q3.0.4): | |
2530 * xemacs-faq.texi (Q3.0.5): | |
2531 * xemacs-faq.texi (Q3.0.6): | |
2532 * xemacs-faq.texi (foo-old-losing-code-p): Removed. | |
2533 * xemacs-faq.texi (Q3.0.7): | |
2534 * xemacs-faq.texi (Q3.0.8): | |
2535 * xemacs-faq.texi (Q3.0.9): | |
2536 * xemacs-faq.texi (Q3.0.10): | |
2537 * xemacs-faq.texi (Q3.1.1): | |
2538 * xemacs-faq.texi (Q3.1.2): | |
2539 * xemacs-faq.texi (Q3.1.3): | |
2540 * xemacs-faq.texi (Q3.1.4): | |
2541 * xemacs-faq.texi (Q3.1.5): | |
2542 * xemacs-faq.texi (Q3.2.1): | |
2543 * xemacs-faq.texi (Q3.2.2): | |
2544 * xemacs-faq.texi (Q3.2.3): | |
2545 * xemacs-faq.texi (Q3.2.4): | |
2546 * xemacs-faq.texi (Q3.2.5): | |
2547 * xemacs-faq.texi (Q3.2.6): | |
2548 * xemacs-faq.texi (Q3.2.7): | |
2549 * xemacs-faq.texi (Q3.2.8): | |
2550 * xemacs-faq.texi (Q3.2.9): | |
2551 * xemacs-faq.texi (Q3.3.1): | |
2552 * xemacs-faq.texi (Q3.3.2): | |
2553 * xemacs-faq.texi (Q3.3.3): | |
2554 * xemacs-faq.texi (Q3.3.4): | |
2555 * xemacs-faq.texi (Q3.3.5): | |
2556 * xemacs-faq.texi (Q3.3.6): | |
2557 * xemacs-faq.texi (Q3.4.1): | |
2558 * xemacs-faq.texi (Q3.4.2): | |
2559 * xemacs-faq.texi (Q3.4.3): | |
2560 * xemacs-faq.texi (Q3.4.4): | |
2561 * xemacs-faq.texi (Q3.4.5): | |
2562 * xemacs-faq.texi (Q3.4.6): | |
2563 * xemacs-faq.texi (Q3.5.1): | |
2564 * xemacs-faq.texi (Q3.5.2): | |
2565 * xemacs-faq.texi (Q3.5.3): | |
2566 * xemacs-faq.texi (Q3.5.4): | |
2567 * xemacs-faq.texi (Q3.6.1): | |
2568 * xemacs-faq.texi (Q3.6.2): | |
2569 * xemacs-faq.texi (Q3.6.3): | |
2570 * xemacs-faq.texi (Q3.7.1): | |
2571 * xemacs-faq.texi (Q3.7.2): | |
2572 * xemacs-faq.texi (Q3.7.3): | |
2573 * xemacs-faq.texi (Q3.7.4): | |
2574 * xemacs-faq.texi (Q3.7.5): | |
2575 * xemacs-faq.texi (Q3.7.6): | |
2576 * xemacs-faq.texi (Q3.7.7): | |
2577 * xemacs-faq.texi (Q3.7.8): | |
2578 * xemacs-faq.texi (Q3.8.1): | |
2579 * xemacs-faq.texi (Q3.8.2): | |
2580 * xemacs-faq.texi (Q3.8.3): | |
2581 * xemacs-faq.texi (my-toggle-toolbar): New. | |
2582 * xemacs-faq.texi (Q3.8.4): | |
2583 * xemacs-faq.texi (scroll-one-line-up): Removed. | |
2584 * xemacs-faq.texi (scroll-one-line-down): Removed. | |
2585 * xemacs-faq.texi (Q3.8.5): | |
2586 * xemacs-faq.texi (Q3.9.1): | |
2587 * xemacs-faq.texi (Q3.9.2): | |
2588 * xemacs-faq.texi (Q3.9.3): | |
2589 * xemacs-faq.texi (Q3.9.4): | |
2590 * xemacs-faq.texi (Q3.9.5): | |
2591 * xemacs-faq.texi (External Subsystems): | |
2592 * xemacs-faq.texi (Q4.0.1): | |
2593 * xemacs-faq.texi (Q4.0.2): | |
2594 * xemacs-faq.texi (Q4.0.3): | |
2595 * xemacs-faq.texi (Q4.0.4): | |
2596 * xemacs-faq.texi (Q4.0.5): | |
2597 * xemacs-faq.texi (Q4.0.6): | |
2598 * xemacs-faq.texi (global-map): Removed. | |
2599 * xemacs-faq.texi (Q4.1.1): | |
2600 * xemacs-faq.texi (Q4.1.2): | |
2601 * xemacs-faq.texi (Q4.2.1): | |
2602 * xemacs-faq.texi (Q4.2.2): | |
2603 * xemacs-faq.texi (Q4.2.3): | |
2604 * xemacs-faq.texi (Q4.2.4): | |
2605 * xemacs-faq.texi (Q4.3.1): | |
2606 * xemacs-faq.texi (Q4.3.2): | |
2607 * xemacs-faq.texi (Q4.3.3): | |
2608 * xemacs-faq.texi (Q4.3.4): | |
2609 * xemacs-faq.texi (Q4.4.1): | |
2610 * xemacs-faq.texi (Q4.4.2): | |
2611 * xemacs-faq.texi (Q4.4.3): | |
2612 * xemacs-faq.texi (Q4.4.4): | |
2613 * xemacs-faq.texi (Q4.4.5): | |
2614 * xemacs-faq.texi (Q4.5.1): | |
2615 * xemacs-faq.texi (Q4.5.2): | |
2616 * xemacs-faq.texi (Q4.5.3): | |
2617 * xemacs-faq.texi (Q4.5.4): | |
2618 * xemacs-faq.texi (Q4.5.5): | |
2619 * xemacs-faq.texi (Q4.6.1): | |
2620 * xemacs-faq.texi (Q4.6.2): | |
2621 * xemacs-faq.texi (Q4.6.3): | |
2622 * xemacs-faq.texi (Q4.6.4): | |
2623 * xemacs-faq.texi (Q4.7.1): | |
2624 * xemacs-faq.texi (Q4.7.2): | |
2625 * xemacs-faq.texi (Q4.7.3): | |
2626 * xemacs-faq.texi (Q4.8.1): | |
2627 * xemacs-faq.texi (Q4.8.2): | |
2628 * xemacs-faq.texi (Q4.8.3): | |
2629 * xemacs-faq.texi (Q4.8.4): | |
2630 * xemacs-faq.texi (Internet): | |
2631 * xemacs-faq.texi (Q5.0.1): | |
2632 * xemacs-faq.texi (Q5.0.2): | |
2633 * xemacs-faq.texi (Q5.0.3): | |
2634 * xemacs-faq.texi (Q5.0.4): | |
2635 * xemacs-faq.texi (Q5.0.5): | |
2636 * xemacs-faq.texi (Q5.0.6): | |
2637 * xemacs-faq.texi (Q5.0.7): | |
2638 * xemacs-faq.texi (Q5.0.8): | |
2639 * xemacs-faq.texi (Q5.0.9): | |
2640 * xemacs-faq.texi (Q5.0.10): | |
2641 * xemacs-faq.texi (Q5.0.11): | |
2642 * xemacs-faq.texi (Q5.1.1): | |
2643 * xemacs-faq.texi (Q5.1.2): | |
2644 * xemacs-faq.texi (Q5.1.3): | |
2645 * xemacs-faq.texi (Q5.1.4): | |
2646 * xemacs-faq.texi (Q5.1.5): | |
2647 * xemacs-faq.texi (Q5.1.6): | |
2648 * xemacs-faq.texi (Q5.2.1): | |
2649 * xemacs-faq.texi (Q5.2.2): | |
2650 * xemacs-faq.texi (Q5.3.1): | |
2651 * xemacs-faq.texi (Q5.3.2): | |
2652 * xemacs-faq.texi (Q5.4.1): | |
2653 * xemacs-faq.texi (Q5.4.2): | |
2654 * xemacs-faq.texi (Q5.4.3): | |
2655 * xemacs-faq.texi (Advanced): | |
2656 * xemacs-faq.texi (Q6.0.1): | |
2657 * xemacs-faq.texi (Q6.0.2): | |
2658 * xemacs-faq.texi (Q6.1.1): | |
2659 * xemacs-faq.texi (Q6.1.2): | |
2660 * xemacs-faq.texi (Q6.1.3): | |
2661 * xemacs-faq.texi (Q6.1.4): | |
2662 * xemacs-faq.texi (Q6.1.5): | |
2663 * xemacs-faq.texi (Q6.1.6): | |
2664 * xemacs-faq.texi (Q6.2.1): | |
2665 * xemacs-faq.texi (Q6.2.2): | |
2666 * xemacs-faq.texi (Q6.2.3): | |
2667 * xemacs-faq.texi (Q6.2.4): | |
2668 * xemacs-faq.texi (Q6.2.5): | |
2669 * xemacs-faq.texi (Q6.2.6): | |
2670 * xemacs-faq.texi (Q6.2.7): | |
2671 * xemacs-faq.texi (Q6.2.8): | |
2672 * xemacs-faq.texi (Q6.2.9): | |
2673 * xemacs-faq.texi (Q6.2.10): | |
2674 * xemacs-faq.texi (Q6.2.11): | |
2675 * xemacs-faq.texi (Q6.3.1): | |
2676 * xemacs-faq.texi (Q6.3.2): | |
2677 * xemacs-faq.texi (Q6.3.3): | |
2678 * xemacs-faq.texi (Q6.3.4): | |
2679 * xemacs-faq.texi (Current Events): | |
2680 * xemacs-faq.texi (Q7.0.1): | |
2681 * xemacs-faq.texi (Q7.0.2): | |
2682 * xemacs-faq.texi (Q7.0.3): | |
2683 * xemacs-faq.texi (Q7.0.5): | |
2684 * xemacs-faq.texi (Q7.0.6): | |
2685 * xemacs-faq.texi (Legacy Versions): | |
2686 * xemacs-faq.texi (my-function): Removed. | |
2687 * xemacs-faq.texi (Q8.0.1): | |
2688 | |
2689 The section on Troubleshooting (now 2.3) has been completely | |
2690 written and includes a lot of stuff that is not properly | |
2691 documented anywhere else. A fair amount of obsolete info has been | |
2692 deleted and I've incorporated the comments that people (mostly | |
2693 Stephen T) made. Former chapter 3 has been split up in two, one | |
2694 pertaining to basic I/O and the other to external I/O. What were | |
2695 formerly chapters 5 and 6 no longer exist as such; the info in | |
2696 them has been distributed across various other chapters. Old | |
2697 chapter 4 got split up, part going to the new chapter 4 on | |
2698 external I/O and part going to the new chapter 5 on the Internet. | |
2699 In this new chapter, stuff not pertaining to a specific package | |
2700 (e.g. VM or GNUS) was taken out of package-specific sections and a | |
2701 general mail section was constituted. Part of old chapter 5 | |
2702 remains in a new chapter 6 devoted to Emacs Lisp and other | |
2703 advanced stuff, and a section from old chapter 3 on basic | |
2704 init-file Lisp and some stuff from old chapter 5 on Info. The | |
2705 rest of chapter 5 was just "misc" and has gotten scattered to the | |
2706 winds (mostly in chapters 3 and 4). Old chapter 6 has also gotten | |
2707 quite scattered; there is no longer any section specifically | |
2708 devoted to Windows except one of the Installation sections (along | |
2709 with a section specfically devoted to Unix), and the rest has | |
2710 moved to join the appropriate non-Windows-specific section | |
2711 elsewhere. A lot of chapters had their sections rearranged and | |
2712 likewise for sections having entries rearranged, with the | |
2713 intention that the new arrangement should be more natural. In | |
2714 general I hope that stuff should be much easier to locate. I also | |
2715 rewrote the entries on the relation between XEmacs and GNU Emacs | |
2716 on the authors of XEmacs, including lots of info on who wrote | |
2717 specific subsections. | |
2718 | |
2418 | 2719 2004-12-05 Adrian Aichner <adrian@xemacs.org> |
2720 | |
2721 * Makefile (TEXI2HTML): Changed to produce unsplit output. | |
2722 * Makefile (TEXI2HTML_SPLIT): New. | |
2723 * Makefile (CP): New. | |
2724 * Makefile (PHOTODIR): New. | |
2725 * Makefile ($(HTMLDIR)/cl.html): Use TEXI2HTML_SPLIT. | |
2726 * Makefile ($(HTMLDIR)/custom.html): Ditto. | |
2727 * Makefile ($(HTMLDIR)/emodules.html): Ditto. | |
2728 * Makefile ($(HTMLDIR)/external-widget.html): Ditto. | |
2729 * Makefile ($(HTMLDIR)/info.html): Ditto. | |
2730 * Makefile ($(HTMLDIR)/standards.html): Ditto. | |
2731 * Makefile ($(HTMLDIR)/term.html): Ditto. | |
2732 * Makefile ($(HTMLDIR)/termcap.html): Ditto. | |
2733 * Makefile ($(HTMLDIR)/texinfo.html): Ditto. | |
2734 * Makefile ($(HTMLDIR)/widget.html): Ditto. | |
2735 * Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto. | |
2736 Produce unsplit output for website also, copy photos to HTMLDIR. | |
2737 * Makefile ($(HTMLDIR)/xemacs.html): Ditto. | |
2738 * Makefile ($(HTMLDIR)/lispref.html): Ditto. | |
2739 * Makefile ($(HTMLDIR)/internals.html): Ditto. | |
2740 * Makefile ($(HTMLDIR)/new-users-guide.html): Ditto. | |
2741 * xemacs-faq.texi (Q1.3.1): Fix broken image links in HTML output. | |
2742 | |
2406 | 2743 2004-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
2744 | |
2745 * internals/internals.texi (Better Rendering Support -- | |
2746 Configuration with the Interim Patches): | |
2747 Add documentation of X resources, especially for GUI elements. | |
2748 (Better Rendering Support -- Implementation): | |
2749 More comments about specification and design issues. | |
2750 (Better Rendering Support -- Current Status): | |
2751 New subsubsection "Bugs Reported in sjt-xft". | |
2752 | |
2405 | 2753 2004-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
2754 | |
2755 * internals/internals.texi (Future Work -- Better Rendering Support): | |
2756 New node. | |
2865 | 2757 (Top): |
2405 | 2758 (Future Work): |
2759 (Future Work -- Lisp Engine Replacement): | |
2760 Add pointers to new node. | |
2761 | |
2393 | 2762 2004-11-16 Ben Wing <ben@xemacs.org> |
2763 | |
2764 * internals/internals.texi (Top): | |
2765 * internals/internals.texi (Introduction): | |
2766 * internals/internals.texi (Authorship of XEmacs): | |
2767 * internals/internals.texi (A History of Emacs): | |
2768 * internals/internals.texi (Through Version 18): | |
2769 * internals/internals.texi (Epoch): | |
2770 * internals/internals.texi (Lucid Emacs): | |
2771 * internals/internals.texi (GNU Emacs 19): | |
2772 * internals/internals.texi (GNU Emacs 20): | |
2773 * internals/internals.texi (XEmacs): | |
2774 * internals/internals.texi (The XEmacs Split): | |
2775 * internals/internals.texi (Build-Time Dependencies): | |
2776 * internals/internals.texi (Low-Level Modules): | |
2777 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
2778 * internals/internals.texi (Rules When Writing New C Code): | |
2779 * internals/internals.texi (Introduction to Writing C Code): | |
2780 * internals/internals.texi (Writing New Modules): | |
2781 * internals/internals.texi (Working with Lisp Objects): | |
2782 * internals/internals.texi (Writing Lisp Primitives): | |
2783 * internals/internals.texi (Adding Global Lisp Variables): | |
2784 * internals/internals.texi (Writing Macros): | |
2785 * internals/internals.texi (Proper Use of Unsigned Types): | |
2786 * internals/internals.texi (Major Textual Changes): | |
2787 * internals/internals.texi (Great Integral Type Renaming): | |
2788 * internals/internals.texi (Text/Char Type Renaming): | |
2789 * internals/internals.texi (Debugging and Testing): | |
2790 * internals/internals.texi (Modules for Regression Testing): | |
2791 * internals/internals.texi (Merging a Branch into the Trunk): | |
2792 * internals/internals.texi (XEmacs from the Inside): | |
2793 * internals/internals.texi (Basic Types): | |
2794 * internals/internals.texi (Low-Level Allocation): | |
2795 * internals/internals.texi (Basic Heap Allocation): | |
2796 * internals/internals.texi (Stack Allocation): | |
2797 * internals/internals.texi (Dynamic Arrays): | |
2798 * internals/internals.texi (Allocation by Blocks): | |
2799 * internals/internals.texi (Modules for Allocation): | |
2800 * internals/internals.texi (Critical Redisplay Sections): | |
2801 * internals/internals.texi (Control-G (Quit) Checking): | |
2802 * internals/internals.texi (Future Work Discussion): | |
2803 * internals/internals.texi (Discussion -- Garbage Collection): | |
2804 * internals/internals.texi (Discussion -- Pure Space): | |
2805 * internals/internals.texi (Discussion -- Hashtable-Based Marking and Cleanup): | |
2806 * internals/internals.texi (Discussion -- The Anti-Cons): | |
2807 * internals/internals.texi (Discussion -- Glyphs): | |
2808 * internals/internals.texi (Discussion -- Dialog Boxes): | |
2809 * internals/internals.texi (Discussion -- Multilingual Issues): | |
2810 * internals/internals.texi (Discussion -- Instantiators and Generic Property Accessors): | |
2811 * internals/internals.texi (image-instance-property): New. | |
2812 * internals/internals.texi (set-image-instance-property): New. | |
2813 * internals/internals.texi (Discussion -- Switching to C++): | |
2814 * internals/internals.texi (Discussion -- Windows External Widget): | |
2815 | |
2816 Add sections on Basic Types and Low-Level Allocation. Move module | |
2817 docs here. Incorporate dynamic array and blocktype docs from | |
2818 source. | |
2819 | |
2820 Add info on beta releases up to present. | |
2821 | |
2822 Redo chapter on "Rules When Writing New C Code", grouping stuff | |
2823 together properly. Put "Major Textual Changes" under this | |
2824 chapter. Incorporate etc/CODING-STANDARDS. | |
2825 | |
2826 Add discussion sections on "Instantiators and Generic Property | |
2827 Accessors" and "Switching to C++". Fill out discussion on garbage | |
2828 collection. | |
2829 | |
2830 Incorporate backtraces showing crashes due to problems with | |
2831 redisplay-critical-section protection. | |
2832 | |
2367 | 2833 2004-11-04 Ben Wing <ben@xemacs.org> |
2834 | |
2835 * lispref/mule.texi (CCL Syntax): | |
2836 * lispref/mule.texi (INT-OR-CHAR): New. | |
2837 * lispref/mule.texi (CCL Statements): | |
2838 Update CCL docs. | |
2839 | |
2840 2004-11-04 Ben Wing <ben@xemacs.org> | |
2841 | |
2842 * internals/internals.texi (Top): | |
2843 * internals/internals.texi (NOTE): New. | |
2844 * internals/internals.texi (list-to-texinfo): New. | |
2845 * internals/internals.texi (remove-spacing): New. | |
2846 * internals/internals.texi (table-to-texinfo): New. | |
2847 * internals/internals.texi (convert-text-to-texinfo): New. | |
2848 * internals/internals.texi ('make-future): New. | |
2849 * internals/internals.texi ('make-discussion): New. | |
2850 * internals/internals.texi ('make-old-future): New. | |
2851 * internals/internals.texi ('make-section): New. | |
2852 * internals/internals.texi ('make-subsection): New. | |
2853 * internals/internals.texi (Introduction): | |
2854 * internals/internals.texi (divisions): New. | |
2855 * internals/internals.texi (Authorship of XEmacs): | |
2856 * internals/internals.texi (XEmacs): | |
2857 * internals/internals.texi (The XEmacs Split): | |
2858 * internals/internals.texi (Author): New. | |
2859 * internals/internals.texi (XEmacs from the Outside): | |
2860 * internals/internals.texi (The Lisp Language): | |
2861 * internals/internals.texi (XEmacs from the Perspective of Building): | |
2862 * internals/internals.texi (Build-Time Dependencies): | |
2863 * internals/internals.texi (The Modules of XEmacs): | |
2864 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
2865 * internals/internals.texi (ways): Removed. | |
2866 * internals/internals.texi (Low-Level Modules): | |
2867 * internals/internals.texi (Basic Lisp Modules): | |
2868 * internals/internals.texi (Modules for Standard Editing Operations): | |
2869 * internals/internals.texi (files): Removed. | |
2870 * internals/internals.texi (Modules for Interfacing with the File System): | |
2871 * internals/internals.texi (some_variable): Removed. | |
2872 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
2873 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
2874 * internals/internals.texi (character): Removed. | |
2875 * internals/internals.texi (Major Textual Changes): | |
2876 * internals/internals.texi (Great Integral Type Renaming): | |
2877 * internals/internals.texi (commands): Removed. | |
2878 * internals/internals.texi (Text/Char Type Renaming): | |
2879 * internals/internals.texi (pattern): Removed. | |
2880 * internals/internals.texi (Rules When Writing New C Code): | |
2881 * internals/internals.texi (A Reader's Guide to XEmacs Coding Conventions): | |
2882 * internals/internals.texi (General Coding Rules): | |
2883 * internals/internals.texi (examples): Removed. | |
2884 * internals/internals.texi (Object-Oriented Techniques for C): | |
2885 * internals/internals.texi (Writing Lisp Primitives): | |
2886 * internals/internals.texi (Writing Good Comments): | |
2887 * internals/internals.texi (Adding Global Lisp Variables): | |
2888 * internals/internals.texi (Writing Macros): | |
2889 * internals/internals.texi (Proper Use of Unsigned Types): | |
2890 * internals/internals.texi (Techniques for XEmacs Developers): | |
2891 * internals/internals.texi (Regression Testing XEmacs): | |
2892 * internals/internals.texi (How to Regression-Test): | |
2893 * internals/internals.texi (Modules for Regression Testing): | |
2894 * internals/internals.texi (CVS Techniques): | |
2895 * internals/internals.texi (Merging a Branch into the Trunk): | |
2896 * internals/internals.texi (XEmacs from the Inside): | |
2897 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
2898 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
2899 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
2900 * internals/internals.texi (Introduction to Allocation): | |
2901 * internals/internals.texi (Garbage Collection): | |
2902 * internals/internals.texi (GCPROing): | |
2903 * internals/internals.texi (Garbage Collection - Step by Step): | |
2904 * internals/internals.texi (Invocation): | |
2905 * internals/internals.texi (garbage_collect_1): | |
2906 * internals/internals.texi (mark_object): | |
2907 * internals/internals.texi (gc_sweep): | |
2908 * internals/internals.texi (sweep_lcrecords_1): | |
2909 * internals/internals.texi (compact_string_chars): | |
2910 * internals/internals.texi (sweep_strings): | |
2911 * internals/internals.texi (sweep_bit_vectors_1): | |
2912 * internals/internals.texi (Integers and Characters): | |
2913 * internals/internals.texi (Allocation from Frob Blocks): | |
2914 * internals/internals.texi (lrecords): | |
2915 * internals/internals.texi (Low-level allocation): | |
2916 * internals/internals.texi (Cons): | |
2917 * internals/internals.texi (Vector): | |
2918 * internals/internals.texi (Bit Vector): | |
2919 * internals/internals.texi (Symbol): | |
2920 * internals/internals.texi (Marker): | |
2921 * internals/internals.texi (String): | |
2922 * internals/internals.texi (Compiled Function): | |
2923 * internals/internals.texi (The Lisp Reader and Compiler): | |
2924 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
2925 * internals/internals.texi (Evaluation): | |
2926 * internals/internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
2927 * internals/internals.texi (Simple Special Forms): | |
2928 * internals/internals.texi (Catch and Throw): | |
2929 * internals/internals.texi (Error Trapping): | |
2930 * internals/internals.texi (Symbols and Variables): | |
2931 * internals/internals.texi (Introduction to Symbols): | |
2932 * internals/internals.texi (Obarrays): | |
2933 * internals/internals.texi (Symbol Values): | |
2934 * internals/internals.texi (Buffers): | |
2935 * internals/internals.texi (Introduction to Buffers): | |
2936 * internals/internals.texi (Buffer Lists): | |
2937 * internals/internals.texi (Markers and Extents): | |
2938 * internals/internals.texi (The Buffer Object): | |
2939 * internals/internals.texi (Text): | |
2940 * internals/internals.texi (The Text in a Buffer): | |
2941 * internals/internals.texi (Ibytes and Ichars): | |
2942 * internals/internals.texi (Byte-Char Position Conversion): | |
2943 * internals/internals.texi (Searching and Matching): | |
2944 * internals/internals.texi (Multilingual Support): | |
2945 * internals/internals.texi (Introduction to Multilingual Issues #1): | |
2946 * internals/internals.texi (Introduction to Multilingual Issues #2): | |
2947 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
2948 * internals/internals.texi (Introduction to Multilingual Issues #4): | |
2949 * internals/internals.texi (Character Sets): | |
2950 * internals/internals.texi (Encodings): | |
2951 * internals/internals.texi (Japanese EUC (Extended Unix Code)): | |
2952 * internals/internals.texi (JIS7): | |
2953 * internals/internals.texi (Internal Mule Encodings): | |
2954 * internals/internals.texi (Internal String Encoding): | |
2955 * internals/internals.texi (Internal Character Encoding): | |
2956 * internals/internals.texi (Byte/Character Types; Buffer Positions; Other Typedefs): | |
2957 * internals/internals.texi (Byte Types): | |
2958 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
2959 * internals/internals.texi (Buffer Positions): | |
2960 * internals/internals.texi (Other Typedefs): | |
2961 * internals/internals.texi (Usage of the Various Representations): | |
2962 * internals/internals.texi (Working With the Various Representations): | |
2963 * internals/internals.texi (Internal Text API's): | |
2964 * internals/internals.texi (Basic internal-format API's): | |
2965 * internals/internals.texi (The DFC API): | |
2966 * internals/internals.texi (The Eistring API): | |
2967 * internals/internals.texi (Coding for Mule): | |
2968 * internals/internals.texi (Character-Related Data Types): | |
2969 * internals/internals.texi (Working With Character and Byte Positions): | |
2970 * internals/internals.texi (Conversion to and from External Data): | |
2971 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
2972 * internals/internals.texi (An Example of Mule-Aware Code): | |
2973 * internals/internals.texi (Mule-izing Code): | |
2974 * internals/internals.texi (CCL): | |
2975 * internals/internals.texi (Microsoft Windows-Related Multilingual Issues): | |
2976 * internals/internals.texi (Microsoft Documentation): | |
2977 * internals/internals.texi (Locales): | |
2978 * internals/internals.texi (More about code pages): | |
2979 * internals/internals.texi (More about locales): | |
2980 * internals/internals.texi (Unicode support under Windows): | |
2981 * internals/internals.texi (The golden rules of writing Unicode-safe code): | |
2982 * internals/internals.texi (The format of the locale in setlocale()): | |
2983 * internals/internals.texi (Random other Windows I18N docs): | |
2984 * internals/internals.texi (Modules for Internationalization): | |
2985 * internals/internals.texi (Consoles; Devices; Frames; Windows): | |
2986 * internals/internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
2987 * internals/internals.texi (Point): | |
2988 * internals/internals.texi (Window Hierarchy): | |
2989 * internals/internals.texi (The Window Object): | |
2990 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
2991 * internals/internals.texi (The Redisplay Mechanism): | |
2992 * internals/internals.texi (Critical Redisplay Sections): | |
2993 * internals/internals.texi (Line Start Cache): | |
2994 * internals/internals.texi (Redisplay Piece by Piece): | |
2995 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
2996 * internals/internals.texi (Modules for other Display-Related Lisp Objects): | |
2997 * internals/internals.texi (Extents): | |
2998 * internals/internals.texi (Introduction to Extents): | |
2999 * internals/internals.texi (Extent Ordering): | |
3000 * internals/internals.texi (Format of the Extent Info): | |
3001 * internals/internals.texi (Zero-Length Extents): | |
3002 * internals/internals.texi (Mathematics of Extent Ordering): | |
3003 * internals/internals.texi (Extent Fragments): | |
3004 * internals/internals.texi (Faces): | |
3005 * internals/internals.texi (Glyphs): | |
3006 * internals/internals.texi (Specifiers): | |
3007 * internals/internals.texi (Menus): | |
3008 * internals/internals.texi (Events and the Event Loop): | |
3009 * internals/internals.texi (Introduction to Events): | |
3010 * internals/internals.texi (Main Loop): | |
3011 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
3012 * internals/internals.texi (Specifics About the Emacs Event): | |
3013 * internals/internals.texi (Event Queues): | |
3014 * internals/internals.texi (Event Stream Callback Routines): | |
3015 * internals/internals.texi (Other Event Loop Functions): | |
3016 * internals/internals.texi (Stream Pairs): | |
3017 * internals/internals.texi (Converting Events): | |
3018 * internals/internals.texi (Dispatching Events; The Command Builder): | |
3019 * internals/internals.texi (Focus Handling): | |
3020 * internals/internals.texi (Editor-Level Control Flow Modules): | |
3021 * internals/internals.texi (Asynchronous Events; Quit Checking): | |
3022 * internals/internals.texi (Signal Handling): | |
3023 * internals/internals.texi (Control-G (Quit) Checking): | |
3024 * internals/internals.texi (Profiling): | |
3025 * internals/internals.texi (Asynchronous Timeouts): | |
3026 * internals/internals.texi (Exiting): | |
3027 * internals/internals.texi (Lstreams): | |
3028 * internals/internals.texi (Creating an Lstream): | |
3029 * internals/internals.texi (Lstream Types): | |
3030 * internals/internals.texi (Lstream Functions): | |
3031 * internals/internals.texi (Lstream Methods): | |
3032 * internals/internals.texi (Subprocesses): | |
3033 * internals/internals.texi (Interface to MS Windows): | |
3034 * internals/internals.texi (Different kinds of Windows environments): | |
3035 * internals/internals.texi (Windows Build Flags): | |
3036 * internals/internals.texi (Windows I18N Introduction): | |
3037 * internals/internals.texi (Modules for Interfacing with MS Windows): | |
3038 * internals/internals.texi (Interface to the X Window System): | |
3039 * internals/internals.texi (Lucid Widget Library): | |
3040 * internals/internals.texi (Generic Widget Interface): | |
3041 * internals/internals.texi (dependencies): New. | |
3042 * internals/internals.texi (routines): New. | |
3043 * internals/internals.texi (Summary): New. | |
3044 * internals/internals.texi (Scrollbars): | |
3045 * internals/internals.texi (Menubars): | |
3046 * internals/internals.texi (Checkboxes and Radio Buttons): | |
3047 * internals/internals.texi (Progress Bars): | |
3048 * internals/internals.texi (Tab Controls): | |
3049 * internals/internals.texi (Modules for Interfacing with X Windows): | |
3050 * internals/internals.texi (Dumping): | |
3051 * internals/internals.texi (Dumping Justification): | |
3052 * internals/internals.texi (Overview): | |
3053 * internals/internals.texi (Data descriptions): | |
3054 * internals/internals.texi (Dumping phase): | |
3055 * internals/internals.texi (Object inventory): | |
3056 * internals/internals.texi (Address allocation): | |
3057 * internals/internals.texi (The header): | |
3058 * internals/internals.texi (Data dumping): | |
3059 * internals/internals.texi (Pointers dumping): | |
3060 * internals/internals.texi (Reloading phase): | |
3061 * internals/internals.texi (Abstract): New. | |
3062 * internals/internals.texi (Remaining issues): | |
3063 * internals/internals.texi (Future Work): | |
3064 * internals/internals.texi (Future Work -- General Suggestions): | |
3065 * internals/internals.texi (Future Work -- Elisp Compatibility Package): | |
3066 * internals/internals.texi (Future Work -- Drag-n-Drop): | |
3067 * internals/internals.texi (Future Work -- Standard Interface for Enabling Extensions): | |
3068 * internals/internals.texi (Future Work -- Better Initialization File Scheme): | |
3069 * internals/internals.texi (Future Work -- Keyword Parameters): | |
3070 * internals/internals.texi (Future Work -- Property Interface Changes): | |
3071 * internals/internals.texi (Future Work -- Toolbars): | |
3072 * internals/internals.texi (Future Work -- Easier Toolbar Customization): | |
3073 * internals/internals.texi (Future Work -- Toolbar Interface Changes): | |
3074 * internals/internals.texi (Future Work -- Menu API Changes): | |
3075 * internals/internals.texi (Future Work -- Removal of Misc-User Event Type): | |
3076 * internals/internals.texi (Future Work -- Mouse Pointer): | |
3077 * internals/internals.texi (Future Work -- Abstracted Mouse Pointer Interface): | |
3078 * internals/internals.texi (Future Work -- Busy Pointer): | |
3079 * internals/internals.texi (Future Work -- Extents): | |
3080 * internals/internals.texi (Future Work -- Everything should obey duplicable extents): | |
3081 * internals/internals.texi (Future Work -- Version Number and Development Tree Organization): | |
3082 * internals/internals.texi (Future Work -- Improvements to the @code{xemacs.org} Website): | |
3083 * internals/internals.texi (Future Work -- Keybindings): | |
3084 * internals/internals.texi (Future Work -- Keybinding Schemes): | |
3085 * internals/internals.texi (Future Work -- Better Support for Windows Style Key Bindings): | |
3086 * internals/internals.texi (Future Work -- Misc Key Binding Ideas): | |
3087 * internals/internals.texi (Future Work -- Byte Code Snippets): | |
3088 * internals/internals.texi (Future Work -- Autodetection): | |
3089 * internals/internals.texi (Future Work -- Conversion Error Detection): | |
3090 * internals/internals.texi (Future Work -- Unicode): | |
3091 * internals/internals.texi (Future Work -- BIDI Support): | |
3092 * internals/internals.texi (Future Work -- Localized Text/Messages): | |
3093 * internals/internals.texi (Future Work -- Lisp Stream API): | |
3094 * internals/internals.texi (Future Work -- Multiple Values): | |
3095 * internals/internals.texi (Future Work -- Macros): | |
3096 * internals/internals.texi (Future Work -- Specifiers): | |
3097 * internals/internals.texi (Future Work -- Display Tables): | |
3098 * internals/internals.texi (Future Work -- Making Elisp Function Calls Faster): | |
3099 * internals/internals.texi (Future Work -- Lisp Engine Replacement): | |
3100 * internals/internals.texi (Future Work -- Lisp Engine Discussion): | |
3101 * internals/internals.texi (Future Work -- Lisp Engine Replacement -- Implementation): | |
3102 * internals/internals.texi (Future Work -- Startup File Modification by Packages): | |
3103 * internals/internals.texi (Future Work Discussion): | |
3104 * internals/internals.texi (Discussion -- garbage collection): | |
3105 * internals/internals.texi (Discussion -- glyphs): | |
3106 * internals/internals.texi (Discussion -- Dialog Boxes): | |
3107 * internals/internals.texi (Discussion -- Multilingual Issues): | |
3108 * internals/internals.texi (Discussion -- Windows External Widget): | |
3109 * internals/internals.texi (Discussion -- Packages): | |
3110 * internals/internals.texi (Discussion -- Distribution Layout): | |
3111 * internals/internals.texi (Old Future Work): | |
3112 * internals/internals.texi (Old Future Work -- A Portable Unexec Replacement): | |
3113 * internals/internals.texi (backtrace): New. | |
3114 * internals/internals.texi (Old Future Work -- Indirect Buffers): | |
3115 * internals/internals.texi (emacs-lisp): New. | |
3116 * internals/internals.texi (Old Future Work -- Improvements in support for non-ASCII (European) keysyms under X): | |
3117 * internals/internals.texi (Newsgroups): New. | |
3118 * internals/internals.texi (Old Future Work -- RTF Clipboard Support): | |
3119 * internals/internals.texi (own-selection): New. | |
3120 * internals/internals.texi (Old Future Work -- xemacs.org Mailing Address Changes): | |
3121 * internals/internals.texi (COMMENT): New. | |
3122 * internals/internals.texi (Old Future Work -- Lisp callbacks from critical areas of the C code): | |
3123 * internals/internals.texi (Now): Removed. | |
3124 * internals/internals.texi (Proof): Removed. | |
3125 * internals/internals.texi (Note): Removed. | |
3126 * internals/internals.texi (Date): New. | |
3127 * internals/internals.texi (ben): Removed. | |
3128 * internals/internals.texi (importance): New. | |
3129 * internals/internals.texi (From): New. | |
3130 Major work on internals manual. Rearranged many chapters so as to | |
3131 lie in coherent divisions. | |
3132 Add tons of stuff to Future Work, Old Future Work, Discussions. | |
3133 Add lots of stuff to Mule section (Multilingual ...). | |
3134 Remove index.texi, incorporate into internals.texi. | |
3135 Section on early history and an introduction. | |
3136 Section on XEmacs split. Lots of new MS Windows docs | |
3137 Mostly recently: Windows-I18N docs. Lots if new I18N docs. | |
3138 Loads of other stuff. | |
3139 | |
2362 | 3140 2004-11-02 Ben Wing <ben@xemacs.org> |
3141 | |
3142 * internals/index.texi: | |
3143 Deleted. Incorporated into internals.texi. Having a separate | |
3144 index file messes up texinfo-master-menu. | |
2865 | 3145 |
2362 | 3146 * internals/internals.texi: |
3147 * internals/internals.texi (Top): | |
3148 * internals/internals.texi (Introduction): | |
3149 * internals/internals.texi (Authorship of XEmacs): | |
3150 * internals/internals.texi (A History of Emacs): | |
3151 * internals/internals.texi (Through Version 18): | |
3152 * internals/internals.texi (Lucid Emacs): | |
3153 * internals/internals.texi (GNU Emacs 19): | |
3154 * internals/internals.texi (GNU Emacs 20): | |
3155 * internals/internals.texi (XEmacs): | |
3156 * internals/internals.texi (XEmacs From the Outside): | |
3157 * internals/internals.texi (The Lisp Language): | |
3158 * internals/internals.texi (XEmacs From the Perspective of Building): | |
3159 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
3160 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
3161 * internals/internals.texi (Major Textual Changes): | |
3162 * internals/internals.texi (Great Integral Type Renaming): | |
3163 * internals/internals.texi (Text/Char Type Renaming): | |
3164 * internals/internals.texi (Rules When Writing New C Code): | |
3165 * internals/internals.texi (A Reader's Guide to XEmacs Coding Conventions): | |
3166 * internals/internals.texi (General Coding Rules): | |
3167 * internals/internals.texi (Object-Oriented Techniques for C): | |
3168 * internals/internals.texi (Writing Lisp Primitives): | |
3169 * internals/internals.texi (Writing Good Comments): | |
3170 * internals/internals.texi (Adding Global Lisp Variables): | |
3171 * internals/internals.texi (Writing Macros): | |
3172 * internals/internals.texi (Proper Use of Unsigned Types): | |
3173 * internals/internals.texi (Techniques for XEmacs Developers): | |
3174 * internals/internals.texi (Regression Testing XEmacs): | |
3175 * internals/internals.texi (How to Regression-Test): | |
3176 * internals/internals.texi (Modules for Regression Testing): | |
3177 * internals/internals.texi (CVS Techniques): | |
3178 * internals/internals.texi (Merging a Branch into the Trunk): | |
3179 * internals/internals.texi (The Modules of XEmacs): | |
3180 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
3181 * internals/internals.texi (Low-Level Modules): | |
3182 * internals/internals.texi (Basic Lisp Modules): | |
3183 * internals/internals.texi (Modules for Standard Editing Operations): | |
3184 * internals/internals.texi (Modules for Interfacing with the File System): | |
3185 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
3186 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
3187 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
3188 * internals/internals.texi (Introduction to Allocation): | |
3189 * internals/internals.texi (Garbage Collection): | |
3190 * internals/internals.texi (GCPROing): | |
3191 * internals/internals.texi (Garbage Collection - Step by Step): | |
3192 * internals/internals.texi (Invocation): | |
3193 * internals/internals.texi (garbage_collect_1): | |
3194 * internals/internals.texi (mark_object): | |
3195 * internals/internals.texi (gc_sweep): | |
3196 * internals/internals.texi (sweep_lcrecords_1): | |
3197 * internals/internals.texi (compact_string_chars): | |
3198 * internals/internals.texi (Integers and Characters): | |
3199 * internals/internals.texi (Allocation from Frob Blocks): | |
3200 * internals/internals.texi (lrecords): | |
3201 * internals/internals.texi (Low-level allocation): | |
3202 * internals/internals.texi (Cons): | |
3203 * internals/internals.texi (Vector): | |
3204 * internals/internals.texi (Symbol): | |
3205 * internals/internals.texi (Marker): | |
3206 * internals/internals.texi (String): | |
3207 * internals/internals.texi (Dumping): | |
3208 * internals/internals.texi (Dumping Justification): | |
3209 * internals/internals.texi (Overview): | |
3210 * internals/internals.texi (Data descriptions): | |
3211 * internals/internals.texi (Dumping phase): | |
3212 * internals/internals.texi (Object inventory): | |
3213 * internals/internals.texi (Address allocation): | |
3214 * internals/internals.texi (The header): | |
3215 * internals/internals.texi (Data dumping): | |
3216 * internals/internals.texi (Pointers dumping): | |
3217 * internals/internals.texi (Reloading phase): | |
3218 * internals/internals.texi (Remaining issues): | |
3219 * internals/internals.texi (Events and the Event Loop): | |
3220 * internals/internals.texi (Introduction to Events): | |
3221 * internals/internals.texi (Main Loop): | |
3222 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
3223 * internals/internals.texi (Specifics About the Emacs Event): | |
3224 * internals/internals.texi (Event Queues): | |
3225 * internals/internals.texi (Event Stream Callback Routines): | |
3226 * internals/internals.texi (IMPORTANT): New. | |
3227 * internals/internals.texi (Other Event Loop Functions): | |
3228 * internals/internals.texi (Stream Pairs): | |
3229 * internals/internals.texi (Converting Events): | |
3230 * internals/internals.texi (Dispatching Events; The Command Builder): | |
3231 * internals/internals.texi (Focus Handling): | |
3232 * internals/internals.texi (Editor-Level Control Flow Modules): | |
3233 * internals/internals.texi (Asynchronous Events; Quit Checking): | |
3234 * internals/internals.texi (Control-G (Quit) Checking): | |
3235 * internals/internals.texi (completely): New. | |
3236 * internals/internals.texi (Profiling): | |
3237 * internals/internals.texi (Exiting): | |
3238 * internals/internals.texi (BEWARE): New. | |
3239 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
3240 * internals/internals.texi (Evaluation): | |
3241 * internals/internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
3242 * internals/internals.texi (Simple Special Forms): | |
3243 * internals/internals.texi (Catch and Throw): | |
3244 * internals/internals.texi (Introduction to Symbols): | |
3245 * internals/internals.texi (Obarrays): | |
3246 * internals/internals.texi (Symbol Values): | |
3247 * internals/internals.texi (Buffers): | |
3248 * internals/internals.texi (Introduction to Buffers): | |
3249 * internals/internals.texi (Buffer Lists): | |
3250 * internals/internals.texi (Markers and Extents): | |
3251 * internals/internals.texi (The Buffer Object): | |
3252 * internals/internals.texi (Text): | |
3253 * internals/internals.texi (The Text in a Buffer): | |
3254 * internals/internals.texi (Ibytes and Ichars): | |
3255 * internals/internals.texi (Byte-Char Position Conversion): | |
3256 * internals/internals.texi (Searching and Matching): | |
3257 * internals/internals.texi (Multilingual Support): | |
3258 * internals/internals.texi (Introduction to Multilingual Issues #1): | |
3259 * internals/internals.texi (Introduction to Multilingual Issues #2): | |
3260 * internals/internals.texi (Introduction to Multilingual Issues #3): | |
3261 * internals/internals.texi (Introduction to Multilingual Issues #4): | |
3262 * internals/internals.texi (Character Sets): | |
3263 * internals/internals.texi (Encodings): | |
3264 * internals/internals.texi (Japanese EUC (Extended Unix Code)): | |
3265 * internals/internals.texi (JIS7): | |
3266 * internals/internals.texi (Internal Mule Encodings): | |
3267 * internals/internals.texi (Internal String Encoding): | |
3268 * internals/internals.texi (Internal Character Encoding): | |
3269 * internals/internals.texi (Byte/Character Types; Buffer Positions; Other Typedefs): | |
3270 * internals/internals.texi (Byte Types): | |
3271 * internals/internals.texi (Different Ways of Seeing Internal Text): | |
3272 * internals/internals.texi (prefixes): New. | |
3273 * internals/internals.texi (C): New. | |
3274 * internals/internals.texi (U): New. | |
3275 * internals/internals.texi (S): New. | |
3276 * internals/internals.texi (Specifically): New. | |
3277 * internals/internals.texi (Buffer Positions): | |
3278 * internals/internals.texi (Other Typedefs): | |
3279 * internals/internals.texi (Usage of the Various Representations): | |
3280 * internals/internals.texi (Working With the Various Representations): | |
3281 * internals/internals.texi (Internal Text API's): | |
3282 * internals/internals.texi (Basic internal-format API's): | |
3283 * internals/internals.texi (The DFC API): | |
3284 * internals/internals.texi (The Eistring API): | |
3285 * internals/internals.texi (Coding for Mule): | |
3286 * internals/internals.texi (Character-Related Data Types): | |
3287 * internals/internals.texi (Working With Character and Byte Positions): | |
3288 * internals/internals.texi (Conversion to and from External Data): | |
3289 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
3290 * internals/internals.texi (An Example of Mule-Aware Code): | |
3291 * internals/internals.texi (Mule-izing Code): | |
3292 * internals/internals.texi (CCL): | |
3293 * internals/internals.texi (Modules for Internationalization): | |
3294 * internals/internals.texi (The Lisp Reader and Compiler): | |
3295 * internals/internals.texi (Lstreams): | |
3296 * internals/internals.texi (Creating an Lstream): | |
3297 * internals/internals.texi (Lstream Types): | |
3298 * internals/internals.texi (Lstream Functions): | |
3299 * internals/internals.texi (Lstream Methods): | |
3300 * internals/internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
3301 * internals/internals.texi (Point): | |
3302 * internals/internals.texi (Window Hierarchy): | |
3303 * internals/internals.texi (The Window Object): | |
3304 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
3305 * internals/internals.texi (The Redisplay Mechanism): | |
3306 * internals/internals.texi (Critical Redisplay Sections): | |
3307 * internals/internals.texi (Line Start Cache): | |
3308 * internals/internals.texi (Redisplay Piece by Piece): | |
3309 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
3310 * internals/internals.texi (Modules for other Display-Related Lisp Objects): | |
3311 * internals/internals.texi (Introduction to Extents): | |
3312 * internals/internals.texi (Extent Ordering): | |
3313 * internals/internals.texi (Format of the Extent Info): | |
3314 * internals/internals.texi (Zero-Length Extents): | |
3315 * internals/internals.texi (Mathematics of Extent Ordering): | |
3316 * internals/internals.texi (Extent Fragments): | |
3317 * internals/internals.texi (Faces): | |
3318 * internals/internals.texi (Glyphs): | |
3319 * internals/internals.texi (Specifiers): | |
3320 * internals/internals.texi (Menus): | |
3321 * internals/internals.texi (Subprocesses): | |
3322 * internals/internals.texi (Interface to MS Windows): | |
3323 * internals/internals.texi (Different kinds of Windows environments): | |
3324 * internals/internals.texi (Windows Build Flags): | |
3325 * internals/internals.texi (Windows I18N Introduction): | |
3326 * internals/internals.texi (Modules for Interfacing with MS Windows): | |
3327 * internals/internals.texi (Interface to the X Window System): | |
3328 * internals/internals.texi (Generic Widget Interface): | |
3329 * internals/internals.texi (Scrollbars): | |
3330 * internals/internals.texi (Menubars): | |
3331 * internals/internals.texi (Checkboxes and Radio Buttons): | |
3332 * internals/internals.texi (Modules for Interfacing with X Windows): | |
3333 * internals/internals.texi (Future Work): | |
3334 * internals/internals.texi (Future Work -- Elisp Compatibility Package): | |
3335 * internals/internals.texi (Future Work -- Drag-n-Drop): | |
3336 * internals/internals.texi (Future Work -- Standard Interface for Enabling Extensions): | |
3337 * internals/internals.texi (Future Work -- Better Initialization File Scheme): | |
3338 * internals/internals.texi (Future Work -- Keyword Parameters): | |
3339 * internals/internals.texi (Future Work -- Property Interface Changes): | |
3340 * internals/internals.texi (Future Work -- Easier Toolbar Customization): | |
3341 * internals/internals.texi (Future Work -- Toolbar Interface Changes): | |
3342 * internals/internals.texi (Future Work -- Menu API Changes): | |
3343 * internals/internals.texi (Future Work -- Removal of Misc-User Event Type): | |
3344 * internals/internals.texi (Future Work -- Mouse Pointer): | |
3345 * internals/internals.texi (Future Work -- Abstracted Mouse Pointer Interface): | |
3346 * internals/internals.texi (Future Work -- Busy Pointer): | |
3347 * internals/internals.texi (Future Work -- Extents): | |
3348 * internals/internals.texi (Future Work -- Everything should obey duplicable extents): | |
3349 * internals/internals.texi (Future Work -- Version Number and Development Tree Organization): | |
3350 * internals/internals.texi (Future Work -- Improvements to the @code{xemacs.org} Website): | |
3351 * internals/internals.texi (Future Work -- Keybinding Schemes): | |
3352 * internals/internals.texi (Future Work -- Better Support for Windows Style Key Bindings): | |
3353 * internals/internals.texi (Future Work -- Misc Key Binding Ideas): | |
3354 * internals/internals.texi (Future Work -- Byte Code Snippets): | |
3355 * internals/internals.texi (Future Work -- Autodetection): | |
3356 * internals/internals.texi (Future Work -- Conversion Error Detection): | |
3357 * internals/internals.texi (Future Work -- BIDI Support): | |
3358 * internals/internals.texi (Future Work -- Localized Text/Messages): | |
3359 * internals/internals.texi (freeze): New. | |
3360 * internals/internals.texi (fail-safe): New. | |
3361 * internals/internals.texi (like): New. | |
3362 * internals/internals.texi (user): New. | |
3363 * internals/internals.texi (ben): New. | |
3364 * internals/internals.texi ('type): New. | |
3365 * internals/internals.texi (NOTE): New. | |
3366 * internals/internals.texi (ILLEGIBLE): New. | |
3367 * internals/internals.texi (language): New. | |
3368 * internals/internals.texi (preprocessing): New. | |
3369 * internals/internals.texi (Subject): New. | |
3370 * internals/internals.texi (http): New. | |
3371 * internals/internals.texi (Now): Removed. | |
3372 * internals/internals.texi (wrong): New. | |
3373 * internals/internals.texi (Proof): Removed. | |
3374 | |
3375 Add bunches and bunches and bunches and bunches of stuff, taken | |
3376 from documentation floating around in various places -- text.c, | |
3377 file-coding.c, other .c and .h files, stuff that I wrote up for an | |
3378 old XEmacs contract, proposals written up in the process of an | |
3379 e-mail discussion, etc. Fix up some mistakes, esp. in CCL. Extra | |
3380 crap from CCL, duplicated with Lispref, removed. Sections on Old | |
3381 Future Work and Future Work Discussion added. | |
3382 | |
3383 Bunches of other work. Add bunches of documentation taken from the | |
3384 source code. Fixup various places to use @strong{}, @code{}, | |
3385 @file{}. Create new Text chapter, split off from Buffers and | |
3386 Textual Representation. Create new chapter for MS Windows, mostly | |
3387 written from scratch. Consolidate all Mule info under | |
3388 "Multilingual Support". Break up chapter on modules and move some | |
3389 parts to the sections discussing the modules, for consolidation | |
3390 purposes. Add a big cross-reference table for all the modules to | |
3391 where they're discussed (or not). New chapter Asynchronous | |
3392 Events; Quit Checking. (Taken from various parts of the code.) New | |
3393 Introduction. New section on Focus Handling (from the code). | |
3394 | |
3395 NOTE that in the process, I discovered that we essentially have | |
3396 FOUR redundant introductions to Mule issues! Someone really needs | |
3397 to go through and clean them up and integrate them (sjt?). | |
3398 | |
2355 | 3399 2003-07-18 Alexey Mahotkin <alexm@hsys.msk.ru> |
3400 | |
3401 * lispref/windows.texi (Basic Windows): Fix typo. | |
3402 | |
2346 | 3403 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
3404 | |
3405 * XEmacs 21.5.18 "chestnut" is released. | |
3406 | |
2297 | 3407 2003-11-02 Stephen J. Turnbull <stephen@xemacs.org> |
3408 | |
3409 * lispref/control.texi (Examples of Catch): Mention use of a cons | |
3410 as a catch tag. | |
3411 | |
3412 2004-07-20 Stephen J. Turnbull <stephen@xemacs.org> | |
3413 | |
3414 * lispref/glyphs.texi (Image Instantiator Formats): Add a few | |
3415 words about the tab control widget. | |
3416 | |
2289 | 3417 2004-05-14 Darryl Okahata <darrylo@xemacs.org> |
3418 | |
3419 * lispref/windows.texi. Added documentation for the functions, | |
3420 ``current-pixel-row'' and ``current-pixel-column''. | |
3421 | |
2269 | 3422 2004-09-13 Jerry James <james@xemacs.org> |
3423 | |
3424 * internals/internals.texi (Modules for Interfacing with the | |
3425 Operating System): The code formerly in callproc.c is now | |
3426 implemented in Lisp in process.el. | |
3427 | |
2256 | 3428 2004-08-30 Jerry James <james@xemacs.org> |
3429 | |
3430 * lispref/text.texi: Document text fields. | |
3431 | |
2255 | 3432 2004-09-08 Stephen J. Turnbull <stephen@xemacs.org> |
3433 | |
3434 * lispref/searching.texi (Syntax of Regexps): Add example of use | |
3435 of shy groups in variable subexpression, correct rumor that there | |
2297 | 3436 may be substantial performance gain. Document double-digit back- |
3437 references. | |
2255 | 3438 |
2214 | 3439 2004-08-13 Stephen J. Turnbull <stephen@xemacs.org> |
3440 | |
2215 | 3441 * xemacs/help.texi (Misc Help): Info-goto-emacs-key-command-node |
3442 to function index. Document Info-goto-emacs-command-node. | |
3443 | |
2214 | 3444 * lispref/positions.texi (Text Lines): makeinfo doesn't like Note:. |
3445 | |
2182 | 3446 2004-07-19 Stephen J. Turnbull <stephen@xemacs.org> |
3447 | |
3448 * lispref/glyphs.texi: Complete reorganization, some content updated. | |
3449 * lispref/lispref.texi (Top): Update menu to match. | |
3450 * lispref/extents.texi (Extent Properties): Update xref. | |
3451 | |
3452 2004-06-29 Stephen J. Turnbull <stephen@xemacs.org> | |
3453 | |
3454 * internals/internals.texi (Modules for Other Aspects of the Lisp | |
3455 Interpreter and Object System): Add description of Sextword syntax | |
3456 class (now obsolete). | |
3457 | |
3458 2004-06-20 Stephen J. Turnbull <stephen@xemacs.org> | |
3459 | |
3460 * internals/internals.texi (Techniques for XEmacs Developers): Be | |
3461 specific when discussing optimization. | |
2255 | 3462 (Techniques for XEmacs Developers): Fragments that are meaningless |
2182 | 3463 by themselves or contain placeholders should be @samp, not @code. |
3464 (Modules for Internationalization): Add description of mule-coding.c | |
3465 and further deprecate mule.c. | |
3466 (Modules for Regression Testing): Add {tag,weak}-tests.el to list. | |
3467 | |
2164 | 3468 2004-07-05 Stephen J. Turnbull <stephen@xemacs.org> |
3469 | |
3470 * xemacs-faq.texi (Q3.10.2): Mention that `pending-delete' is in | |
3471 the "pc" package. | |
3472 | |
2141 | 3473 2004-06-15 Stephen J. Turnbull <stephen@xemacs.org> |
3474 | |
3475 * lispref/specifiers.texi (Specifier Instancing): Add "neon | |
3476 modeline" hack as an example. Thanks to Giacomo Boffi. | |
3477 | |
2135 | 3478 2004-06-07 Jerry James <james@xemacs.org> |
3479 | |
3480 * lispref/modes.texi (Major Modes): Document -mode functions, and | |
3481 the use of a nil argument to defined-derived mode. | |
3482 * lispref/modes.texi (Major Mode Conventions): Describe the use of | |
3483 delay-mode-hooks and define-derived-mode. | |
3484 * lispref/modes.texi (Derived Modes): Warn against the use of | |
3485 interactive specs in derived mode definitions. | |
3486 * lispref/modes.texi (Hooks): Document run-mode-hooks, | |
3487 delay-mode-hooks, run-hook-with-args, | |
3488 run-hook-with-args-until-failure, and0 | |
3489 run-hook-with-args-until-success. | |
3490 | |
2127 | 3491 2004-06-14 Stephen J. Turnbull <stephen@xemacs.org> |
3492 | |
3493 * lispref/glyphs.texi (Creating Glyphs): Improve discussion, fix a | |
3494 couple of typos. | |
3495 | |
3496 * lispref/faces.texi (Face Properties): Background pixmaps | |
3497 can be used on GTK and MS Windows. | |
3498 (Face Convenience Functions): Cross-reference glyph interface. | |
3499 Background pixmap is an image specifier, not a glyph. | |
3500 | |
2091 | 3501 2004-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
3502 | |
3503 * lispref/numbers.texi (Comparison of Numbers): Clarify bigfloat eql. | |
3504 (Predicates on Numbers): Fix thinko in description of `bigfloatp'. | |
3505 | |
2090 | 3506 2004-05-10 Stephen J. Turnbull <stephen@xemacs.org> |
3507 | |
3508 * lispref/numbers.texi (Numbers): Remove reference to "fixed- | |
3509 precision rationals," and fix description of floating-point | |
3510 contagion. | |
3511 (Integer Basics, Float Basics): Fix typos. | |
3512 (Canonicalization and Contagion): Complete rewrite. | |
3513 (Predicates on Numbers): Add fixnump, bignump, ratiop, rationalp, | |
3514 bigfloatp, floatingp, realp, oddp and evenp. | |
3515 (Rational Basics): Add numerator and denominator. | |
3516 (Random Numbers): Fix description of range, and add paranoid | |
3517 comment about how unpredictable `(random t)' is. | |
3518 (Canonicalization and Contagion): Renamed from Contagion and | |
3519 Canonicalization. | |
3520 (The Bignum Extension): Fix it in menu. | |
3521 | |
2069 | 3522 2004-05-10 Stephen J. Turnbull <stephen@xemacs.org> |
3523 | |
3524 * internals/internals.texi (Object-Oriented Techniques for C): | |
3525 Remove reference to "encouraging port to C++". | |
3526 | |
3527 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> | |
2033 | 3528 |
3529 * lispref/numbers.texi (The Bignum Extension): Mention the feature | |
3530 symbols provided. | |
3531 | |
2069 | 3532 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> |
2032 | 3533 |
3534 * lispref/numbers.texi (Rational Basics): There's a reason why | |
3535 this node is named "Rational" and not "Ratio" in the menu.... | |
3536 | |
2028 | 3537 2004-04-18 Stephen J. Turnbull <stephen@xemacs.org> |
3538 | |
3539 * internals/internals.texi (Object-Oriented Techniques in XEmacs): | |
3540 New node. | |
3541 (The XEmacs Object System (Abstractly Speaking)): | |
3542 Reorder the list of objects somewhat. | |
3543 Add brief descriptions of the arbitrary-precision number types. | |
3544 (Writing Good Comments): Slight revision, recommend @xemacs alias. | |
3545 (Character-Related Data Types): Add a few comments re Unicode. | |
3546 (Working With Character and Byte Positions): Ditto. | |
3547 (General Guidelines for Writing Mule-Aware Code): Query. | |
3548 (Conversion to and from External Data): Ditto. | |
3549 (Techniques for XEmacs Developers): Typo. | |
3550 (Modules for Regression Testing): Add an xref. | |
3551 (Overview): Note that dump file is now inside the executable. | |
3552 (Remaining issues): Mention ExecShield vs. pdumper. | |
3553 (Searching and Matching): Mention UTF-8 wrt Mule. | |
3554 | |
3555 2004-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
3556 | |
3557 * widget.texi (Introduction): Update historical references a bit. | |
3558 Fix many typos and grammatical problems. | |
3559 (User Interface): Fix typo. | |
3560 | |
2069 | 3561 2004-04-09 Stephen J. Turnbull <stephen@xemacs.org> |
2028 | 3562 |
3563 * lispref/numbers.texi (Numbers): Describe bignums, ratios, and | |
3564 bigfloats briefly. | |
3565 (Integer Basics): We've had 31-bit integers for a while. Fix the | |
3566 statement of minimum available precision and the examples. | |
3567 Document most-positive-fixnum and most-negative-fixnum. Add a | |
3568 pointer to the node "The Bignum Extension". | |
3569 (Float Basics): Document most-positive-float, most-negative-float, | |
3570 least-positive-float, least-positive-normalized-float, | |
3571 least-negative-float, and least-negative-normalized-float. Add a | |
3572 pointer to the node "The Bignum Extension". | |
3573 (Comparison of Numbers): Update for bignums. | |
3574 | |
3575 (The Bignum Extension): | |
3576 (Bignum Basics): | |
3577 (Ratio Basics): | |
3578 (Bigfloat Basics): | |
3579 (Contagion and Canonicalization): | |
3580 (Compatibility Issues): | |
3581 New nodes. | |
3582 | |
3583 * lispref/lispref.texi (Top): | |
2865 | 3584 * lispref/numbers.texi (Numbers): |
2028 | 3585 Add nodes "Ratio Basics" and "The Bignum Extension" to menus. |
3586 | |
3587 2004-01-26 Stephen J. Turnbull <stephen@xemacs.org> | |
3588 | |
3589 * lispref/specifiers.texi: Update FSF copyright. | |
3590 (Specifier Compatibility Notes): New node. | |
3591 | |
3592 * lispref/glyphs.texi (Glyph Properties): Fix typo. | |
3593 (Glyphs): | |
3594 (Native GUI Widgets): New node. | |
3595 | |
3596 * lispref/gutter.texi (Gutter Descriptor Format): Node deleted. | |
3597 (Gutter): | |
2865 | 3598 (Gutter Intro): |
3599 (Creating Gutter): | |
3600 (Specifying a Gutter): | |
2028 | 3601 Pluralize node name to Creating Gutters. |
3602 (Creating Gutters): Improve explanation of gutter descriptors. | |
3603 (Other Gutter Variables): Remove extraneous text. | |
3604 (Common Gutter Widgets): In lieu of real documentation, at least | |
3605 point to gutter-items.el. | |
3606 | |
2069 | 3607 2004-04-06 Stephen J. Turnbull <stephen@xemacs.org> |
1987 | 3608 |
3609 Lightly revised from <psr7v1j039.fsf@diannao.ittc.ku.edu>. | |
3610 Thanks to Jerry James <james@xemacs.org>. | |
3611 | |
3612 * xemacs-faq.texi (Top, Miscellaneous): In menus, renumber Section | |
3613 5.3 and Q5.3.1-12 as 5.4.x, and add Mathematics and Q5.3.1-4 as | |
3614 replacement section 5.3. | |
3615 (Q5.3.1, Q5.3.2, Q5.3.3, Q5.3.4) New FAQs for bignums. | |
3616 (Q5.2.1, Q8.0.1) Add @unnumberedsec headings. | |
3617 (Q6.4.1) Correct @unnumberedsec heading. | |
3618 | |
1964 | 3619 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
3620 | |
3621 * XEmacs 21.5.17 "chayote" is released. | |
3622 | |
1920 | 3623 2004-02-20 Stephen J. Turnbull <stephen@xemacs.org> |
3624 | |
3625 * internals/internals.texi (GCPROing): Mention `Fsignal'. Clarify | |
3626 that references, not the objects themselves, are what is marked. | |
3627 | |
1882 | 3628 2004-01-26 Stephen J. Turnbull <stephen@xemacs.org> |
3629 | |
3630 * lispref/specifiers.texi (Copyright): Update. | |
3631 | |
3632 (Creating Specifiers): Correct more instances of subject-verb | |
3633 disagreement. | |
3634 | |
1877 | 3635 2004-01-24 Stephen J. Turnbull <stephen@xemacs.org> |
3636 | |
3637 * lispref/specifiers.texi (Specifier Instancing Functions): Fix | |
3638 typos, thanks to Ilpo Nyyssönen. | |
3639 | |
1875 | 3640 2004-01-23 Stephen J. Turnbull <stephen@xemacs.org> |
3641 | |
3642 * lispref/specifiers.texi (Specifier Instancing Functions): Add | |
3643 documentation of `specifier-matching-instance'. | |
3644 (Introduction to Specifiers): Fix typos. | |
3645 (Simple Specifier Usage): Cross-reference Toolbar Intro. | |
3646 (Creating Specifiers): | |
3647 (Specifier Instancing Functions): | |
3648 (Adding Specifications): | |
3649 Various improvements. Deprecate set-specifier a bit more. | |
3650 | |
1869 | 3651 2004-01-20 Stephen J. Turnbull <stephen@xemacs.org> |
3652 | |
3653 * lispref/specifiers.texi (Specifier Examples): Add new example, | |
3654 pluralize node name and section title. | |
3655 (Specifiers): Pluralize "Specifier Examples" in menu. | |
3656 | |
3657 * lispref/lispref.texi (Top): Pluralize "Specifier Examples" in menu. | |
3658 | |
3659 2003-11-04 Stephen J. Turnbull <stephen@xemacs.org> | |
3660 | |
3661 * xemacs-faq.texi: Fix Tony Rossini's address. | |
3662 | |
1833 | 3663 2003-12-15 Steve Youngs <sryoungs@bigpond.net.au> |
3664 | |
3665 * lispref/customize.texi (Defining New Types): New node. | |
3666 From Per Abrahamsen <abraham@dina.kvl.dk> | |
3667 | |
1755 | 3668 2003-10-16 Ilya N. Golubev <gin@mo.msk.ru> |
3669 | |
3670 * lispref/tips.texi (Comment Tips): Typo fix. | |
3671 | |
1738 | 3672 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> |
3673 | |
3674 * new-users-guide/custom2.texi (Init File): | |
3675 | |
3676 Fix up erroneous uses of @var instead of @code for the names of | |
3677 particular variables in programming languages. | |
3678 | |
3679 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> | |
3680 | |
3681 * custom.texi (The Init File): | |
3682 * xemacs-faq.texi (Q2.1.3): | |
3683 (Q2.1.5): | |
3684 | |
3685 * internals/internals.texi (Modules for Internationalization): | |
3686 | |
3687 * lispref/display.texi (Beeping): | |
3688 * lispref/ldap.texi (Encoder/Decoder Functions): | |
3689 * lispref/markers.texi (The Mark): | |
3690 (The Region): | |
3691 * lispref/menus.texi (Menu Accelerator Functions): | |
3692 * lispref/numbers.texi (Math Functions): | |
3693 * lispref/packaging.texi (package-info.in): | |
3694 (Makefile): | |
3695 (Local.rules File): | |
3696 * lispref/postgresql.texi (libpq Lisp Symbols and DataTypes): | |
3697 (libpq Lisp Variables): | |
3698 (Synchronous Interface Functions): | |
3699 (Other libpq Functions): | |
3700 | |
3701 * new-users-guide/custom2.texi (Init File): | |
3702 (Setting Variables): | |
3703 * new-users-guide/files.texi (File Names): | |
3704 (Saving Files): | |
3705 * new-users-guide/search.texi (Search and Replace): | |
3706 | |
3707 * xemacs/custom.texi (X Resources): | |
3708 | |
3709 Fix up erroneous uses of @var instead of @code for the names of | |
3710 particular variables in programming languages. | |
3711 | |
3712 2003-10-10 Stephen J. Turnbull <stephen@xemacs.org> | |
3713 | |
3714 * Makefile: Remove old package and redundant cruft. | |
3715 | |
1734 | 3716 2003-10-10 Ilya N. Golubev <gin@mo.msk.ru> |
3717 | |
3718 * lispref/mule.texi (Charset Property Functions): Charset registry | |
3719 can be set. | |
3720 (Predefined Charsets): Add registry to Vietnamese charset names. | |
2865 | 3721 |
1716 | 3722 2003-09-26 Steve Youngs <youngs@xemacs.org> |
3723 | |
3724 * XEmacs 21.5.16 "celeriac" is released. | |
3725 | |
1710 | 3726 2003-09-22 Adrian Aichner <adrian@xemacs.org> |
3727 | |
3728 * lispref/backups.texi (Reverting): Fix the PRINTED-MANUAL-TITLE | |
3729 argument for a cross reference to "The XEmacs User's Manual". | |
3730 | |
1709 | 3731 2003-08-15 Stephen J. Turnbull <stephen@xemacs.org> |
3732 | |
3733 * internals/internals.texi: Update copyright notice. | |
3734 (GCPROing): Add missing period. | |
3735 (Adding Global Lisp Variables): general.c -> general-slots.h. | |
3736 (A Reader's Guide to XEmacs Coding Conventions): New node. | |
3737 | |
1703 | 3738 2003-09-20 Ilya N. Golubev <gin@mo.msk.ru> |
3739 | |
3740 * xemacs/mini.texi (Minibuffer): Add customizing message display | |
3741 reference. | |
3742 * lispref/display.texi (Customizing Message Display): New, | |
3743 describe `redisplay-echo-area-function', | |
3744 `undisplay-echo-area-function', `minibuffer-echo-wait-function'. | |
3745 (The Echo Area): Add menu. | |
3746 | |
1702 | 3747 2003-09-19 Sandra Wambold <wambold@xemacs.org> |
3748 | |
3749 * Makefile: add targets to produce PDF files | |
3750 | |
1665 | 3751 2003-09-03 Steve Youngs <youngs@xemacs.org> |
3752 | |
3753 * XEmacs 21.5.15 "celery" is released. | |
3754 | |
1648 | 3755 2003-08-28 Steve Youngs <youngs@xemacs.org> |
3756 | |
3757 * xemacs-faq.texi (Q2.0.2): Rewrite, mentioning the correct way to | |
3758 remove a package. | |
3759 (Q3.8.2): big-menubar is in the edit-utils package. | |
3760 (Q4.3.2): Add a comment about not needing TM for things like Gnus, | |
3761 MH-E and VM. | |
3762 (Q5.3.3): State correct location of ps-print.el. | |
3763 | |
3764 * xemacs/packages.texi (Packages): Remove "Creating Packages" menu | |
3765 entry. | |
3766 (Package Terminology): Whitespace clean up. | |
3767 (Installing Packages): Whitespace clean up and add some @code | |
2865 | 3768 formatters. |
1648 | 3769 Re-organise the menu so that installation via PUI is first and |
3770 Sumo is last. | |
3771 (Automatically): mule-base is no longer a requirement for using | |
3772 PUI. | |
3773 Mention optionally requiring mailcrypt. | |
3774 (Note): Removed. | |
3775 (Manually): Move to below the PUI installation method. | |
3776 (Sumo): Move to below the manual installation method. | |
3777 (Which Packages): Add mailcrypt. | |
3778 (Building Packages): Remove duplicated stuff that is in | |
3779 lispref/packaging.texi, xref to it instead. | |
3780 (Local.rules File): xref to the appropriate node in | |
2865 | 3781 lispref/packaging.texi. |
1648 | 3782 (Available Packages): Update to current reality. |
3783 (all): Removed. | |
3784 (srckit): Removed. | |
3785 (binkit): Removed. | |
2865 | 3786 |
1648 | 3787 * xemacs/reading.texi (Reading Mail): Mention Gnus and MEW. |
3788 | |
3789 * new-users-guide/custom2.texi (Init File): big-menubar.el is in | |
3790 the edit-utils package. | |
3791 | |
3792 * lispref/packaging.texi (Packaging): | |
3793 (The User View): | |
3794 (The Library Maintainer View): | |
3795 (Infrastructure): | |
3796 (Control Files): | |
3797 (Obtaining): | |
3798 (The Package Release Engineer View): | |
3799 (Package Terminology): | |
3800 (Building Packages): | |
3801 (Makefile Targets): | |
3802 (packages): New. | |
3803 (Local.rules File): | |
3804 (XEMACS_PACKAGES): Removed. | |
3805 (XEMACS_INSTALLED_PACKAGES_ROOT): New. | |
3806 (NONMULE_PACKAGES): New. | |
3807 (EXCLUDES): New. | |
3808 (Creating Packages): | |
3809 (BATCH): New. | |
3810 (VERSION): Removed. | |
3811 (AUTHOR_VERSION): Removed. | |
3812 (MAINTAINER): Removed. | |
3813 (PACKAGE): Removed. | |
3814 (PKG_TYPE): Removed. | |
3815 (REQUIRES): Removed. | |
3816 (CATEGORY): Removed. | |
3817 (ELS): Removed. | |
3818 (ELCS): Removed. | |
3819 (all): Removed. | |
3820 (srckit): Removed. | |
3821 (binkit): Removed. | |
3822 (are): New. | |
3823 (STANDARD_DOCS): New. | |
3824 (ELCS_1_DEST): New. | |
3825 (example): New. | |
3826 (PACKAGE_SUPPRESS): New. | |
3827 (EXPLICIT_DOCS): New. | |
3828 (DATA_DEST): New. | |
3829 (Documenting Packages): | |
3830 | |
3831 Not quite a total rewrite, but a fairly thorough audit | |
3832 nonetheless. | |
3833 | |
1620 | 3834 2003-07-31 René Kyllingstad <listmailxemacs@kyllingstad.com> |
3835 | |
3836 * lispref/display.texi (Invisible Text): | |
3837 mention line-move-ignore-invisible. | |
3838 * lispref/extents.texi (Extent Properties): | |
3839 end-glyph will still be displayed when invisible is set. | |
3840 * lispref/extents.texi (Extents and Events): | |
3841 only begin-glyph is highlighted. | |
3842 | |
1616 | 3843 2003-08-12 Stephen J. Turnbull <stephen@xemacs.org> |
3844 | |
3845 * xemacs-faq.texi (Q1.3.8): Fix typo, note errorneous recognition. | |
3846 | |
1613 | 3847 2003-08-05 Stephen J. Turnbull <stephen@xemacs.org> |
3848 | |
3849 * lispref/packaging.texi (Creating Packages): | |
3850 * xemacs/packages.texi (Creating Packages): | |
3851 Style guideline for package-info.in description. | |
3852 | |
1554 | 3853 2003-06-30 Vin Shelton <acs@xemacs.org> |
3854 | |
3855 * lispref/lists.texi (List-related Predicates): Add @end defun. | |
3856 | |
1549 | 3857 2003-06-30 Stephen J. Turnbull <stephen@xemacs.org> |
3858 | |
3859 * xemacs-faq.texi (Q3.2.2): Fix typo. | |
3860 | |
3861 2003-06-20 Stephen J. Turnbull <stephen@xemacs.org> | |
3862 | |
3863 * lispref/objects.texi (Character Type): Document ?\x00 read | |
3864 syntax and range limitations on ?\000 and ?\x00 read syntaxes. | |
3865 | |
3866 2003-06-16 Stephen J. Turnbull <stephen@xemacs.org> | |
3867 | |
3868 * lispref/lists.texi (List-related Predicates): Document | |
3869 `true-list-p', and reference it from `listp'. | |
3870 | |
1510 | 3871 2003-06-01 Steve Youngs <youngs@xemacs.org> |
3872 | |
3873 * XEmacs 21.5.14 "cassava" is released. | |
3874 | |
1496 | 3875 2003-05-22 Stephen J. Turnbull <stephen@xemacs.org> |
3876 | |
3877 * internals/internals.texi (Searching and Matching): New node. | |
3878 | |
1495 | 3879 2003-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
3880 | |
3881 * xemacs-faq.texi (detail menu): Reformat "Current Events" caption. | |
3882 (Legacy Versions): New section. | |
3883 (Q8.0.1): New question. | |
3884 | |
3885 2003-05-16 Stephen J. Turnbull <stephen@xemacs.org> | |
3886 | |
3887 * lispref/searching.texi (Regexp Search): Update split-string for | |
3888 new specification. | |
3889 | |
3890 * lispref/strings.texi (Creating Strings): Xref split-string | |
3891 (this is where GNU Emacs documents it). | |
3892 | |
1473 | 3893 2003-05-10 Steve Youngs <youngs@xemacs.org> |
3894 | |
3895 * XEmacs 21.5.13 "cauliflower" is released. | |
3896 | |
1468 | 3897 2003-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
3898 | |
3899 * lispref/searching.texi (Match Data): Failed match preserves data. | |
3900 | |
1441 | 3901 2003-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
3902 | |
3903 * xemacs-faq.texi (Q6.4.3): New: auxiliary programs for Windows. | |
3904 | |
1431 | 3905 2003-04-24 Steve Youngs <youngs@xemacs.org> |
3906 | |
3907 * XEmacs 21.5.12 "carrot" is released. | |
3908 | |
1389 | 3909 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org> |
3910 | |
3911 * xemacs/frame.texi (XEmacs under X): | |
3912 * xemacs-faq.texi: | |
3913 Global substitute .Xresources for .Xdefaults. | |
1386 | 3914 |
3915 * xemacs-faq.texi (Q3.2.2): `default' is also a face. | |
3916 (Q3.2.2, Q3.8.4): Describe appropriate use of `fontSet' in Mule. | |
3917 Suggested by Janis Dzerins <jonis@dir.lv>. | |
3918 | |
1366 | 3919 2003-03-20 Steve Youngs <youngs@xemacs.org> |
3920 | |
3921 * xemacs/packages.texi (Automatically): Refer to | |
3922 'pui-set-local-package-get-directory' instead of | |
2865 | 3923 'pui-add-install-directory'. |
1366 | 3924 Remove comment about PGP not being intergrated into PUI. |
3925 Document balloon-help in PUI. | |
3926 Add heading "Keeping Packages Up To Date". | |
3927 (Building Packages): makeinfo 4.2 is required. | |
3928 | |
1362 | 3929 2003-03-18 Stephen J. Turnbull <stephen@xemacs.org> |
3930 | |
3931 * xemacs/frame.texi (Gutter Basics): Describe common options for | |
3932 buffers tab control. | |
3933 | |
1353 | 3934 2003-03-11 Adrian Aichner <adrian@xemacs.org> |
3935 | |
3936 * cl.texi: Change incorrect references to GNU where XEmacs is | |
3937 appropriate. | |
3938 | |
1347 | 3939 2003-03-09 Ben Wing <ben@xemacs.org> |
3940 | |
3941 * widget.texi (Defining New Widgets): | |
3942 Fix Turnbull typos. | |
3943 | |
1339 | 3944 2003-03-02 Stephen Turnbull <stephen@xemacs.org> |
3945 | |
3946 * widget.texi (Defining New Widgets): | |
3947 Document `widget-create-child', `widget-create-child-and-convert', | |
3948 and `widget-create-child-value'. Document the `:copy' method. | |
3949 Improve discussion of the `:convert-widget' method. | |
3950 | |
1333 | 3951 2003-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
3952 | |
3953 * internals/internals.texi (XEmacs From the Perspective of Building): | |
3954 Fix typo. | |
3955 (Build-Time Dependencies): New node. | |
3956 | |
1307 | 3957 2003-02-16 Steve Youngs <youngs@xemacs.org> |
3958 | |
3959 * XEmacs 21.5.11 "cabbage" is released. | |
3960 | |
1288 | 3961 2003-02-11 Adrian Aichner <adrian@xemacs.org> |
3962 | |
3963 * lispref/backups.texi (Auto-Saving): Fix auto-save xref to user | |
3964 manual. | |
3965 | |
1263 | 3966 2003-02-06 Stephen J. Turnbull <stephen@xemacs.org> |
3967 | |
3968 * internals/internals.texi (Top): | |
3969 (Buffers and Textual Representation): | |
3970 Fix up white space in menu. | |
3971 (Character-Related Data Types): | |
3972 (Conversion to and from External Data): | |
3973 (Format of the Extent Info): | |
3974 Pedantic grammatical nits. | |
3975 | |
1261 | 3976 2003-02-05 Ben Wing <ben@xemacs.org> |
3977 | |
3978 * lispref/mule.texi (Internationalization Terminology): | |
3979 Lots of Mule rewriting. | |
3980 | |
3981 2003-02-05 Ben Wing <ben@xemacs.org> | |
3982 | |
3983 * internals/internals.texi (Top): | |
3984 * internals/internals.texi (Coding for Mule): | |
3985 * internals/internals.texi (Character-Related Data Types): | |
3986 * internals/internals.texi (Working With Character and Byte Positions): | |
3987 * internals/internals.texi (Conversion to and from External Data): | |
3988 * internals/internals.texi (General Guidelines for Writing Mule-Aware Code): | |
3989 * internals/internals.texi (An Example of Mule-Aware Code): | |
3990 * internals/internals.texi (Mule-izing Code): | |
3991 * internals/internals.texi (help): New. | |
3992 * internals/internals.texi (Buffers and Textual Representation): | |
3993 * internals/internals.texi (The Text in a Buffer): | |
3994 * internals/internals.texi (Markers and Extents): | |
3995 * internals/internals.texi (MULE Character Sets and Encodings): | |
3996 * internals/internals.texi (Lstream Functions): | |
3997 * internals/internals.texi (Lstream Methods): | |
3998 * internals/internals.texi (Format of the Extent Info): | |
3999 * internals/internals.texi (Mathematics of Extent Ordering): | |
4000 Major fixup. Correct for new names of Bytebpos, Ichar, etc. and | |
4001 lots of Mule rewriting. | |
4002 | |
1258 | 4003 2003-02-05 Stephen J. Turnbull <stephen@xemacs.org> |
4004 | |
4005 * xemacs/startup.texi (Startup Paths): Clarification of package | |
4006 hierarchy structure. | |
4007 | |
4008 * xemacs-faq.texi (Q2.0.13, Q2.0.14, Q2.1.24, Q2.1.25): Not NEW. | |
4009 (Q2.1.15): Stylistic changes for clarity. | |
4010 | |
1251 | 4011 2003-02-03 Steve Youngs <youngs@xemacs.org> |
4012 | |
4013 * xemacs/packages.texi (Local.rules File): Update to reflect Ben's | |
4014 recent dabble into the packages. | |
4015 | |
1187 | 4016 2003-01-04 Steve Youngs <youngs@xemacs.org> |
4017 | |
4018 * XEmacs 21.5.10 "burdock" is released. | |
4019 | |
1188 | 4020 2003-01-04 Steve Youngs <youngs@xemacs.org> |
4021 | |
4022 * lispref/mule.texi (Charset Unification): Menu item "Internals" | |
4023 should be "Unification Internals". | |
4024 | |
1183 | 4025 2003-01-03 Stephen J. Turnbull <stephen@xemacs.org> |
4026 | |
4027 * xemacs/startup.texi (Startup Paths): Hierarchy, not package, layout. | |
4028 | |
4029 2003-01-03 Stephen J. Turnbull <stephen@xemacs.org> | |
4030 | |
4031 * xemacs-faq.texi: Debugging FAQ improvements from Ben Wing. | |
4032 (Q2.0.6): Mention union type bugs. | |
4033 (Q2.1.1): Debugging HOWTO improvements. | |
4034 (Q2.1.15): Decoding Lisp objects in the debugger. | |
4035 | |
4036 * widget.texi (Widget Internals): New node. | |
4037 (Top): Add menu item for it. | |
4038 | |
4039 * xemacs/xemacs.texi (Top): Better short description of Mule in | |
4040 menu. Mule submenu. | |
4041 | |
4042 Charset unification docs. What a concept---commit docs first! | |
4043 | |
4044 * lispref/mule.texi (MULE): Add Unification and Tables menu entries. | |
4045 (Unicode Support): Fixup next node. | |
4046 (Charset Unification): | |
4047 (Overview): | |
4048 (Usage): | |
4049 (Basic Functionality): | |
4050 (Interactive Usage): | |
4051 (Configuration): | |
4052 (Theory of Operation): | |
4053 (What Unification Cannot Do for You): | |
4054 (Unification Internals): | |
4055 (Charsets and Coding Systems): | |
4056 New nodes. | |
4057 | |
4058 * xemacs/mule.texi (Mule): Menu items for Unification and Tables. | |
4059 (Recognize Coding): | |
4060 (Specify Coding): | |
4061 Fixup next and previous pointers. | |
4062 (Unification): | |
4063 (Unification Overview): | |
4064 (Unification Usage): | |
4065 (Unification Configuration): | |
4066 (Unification FAQs): | |
4067 (Unification Theory): | |
4068 (What Unification Cannot Do for You): | |
4069 (Charsets and Coding Systems): | |
4070 New nodes. | |
4071 | |
4072 2002-12-17 Stephen Turnbull <stephen@xemacs.org> | |
4073 | |
4074 * widget.texi (Widget Wishlist): Typo. | |
4075 (Defining New Widgets): s/widget-define/define-widget/g. | |
4076 | |
4077 2002-12-27 Stephen J. Turnbull <stephen@xemacs.org> | |
4078 | |
4079 * internals/internals.texi (Regression Testing XEmacs): Hints for | |
4080 test design. | |
4081 | |
1143 | 4082 2002-10-29 Ville Skyttä <scop@xemacs.org> |
4083 | |
4084 * xemacs-faq.texi (Top): | |
4085 The canonical location for FAQ on the website is /FAQ/. | |
4086 | |
1142 | 4087 2002-11-12 Ilya N. Golubev <gin@mo.msk.ru> |
4088 | |
4089 * xemacs/custom.texi (Face Customization): | |
4090 (Faces): | |
4091 Document face-frob-from-locale-first variable. | |
4092 | |
1138 | 4093 2002-12-03 Didier Verna <didier@xemacs.org> |
4094 | |
4095 * xemacs-faq.texi (Customization): add missing menu entry for Q3.2.7. | |
4096 | |
4097 2002-12-03 Didier Verna <didier@xemacs.org> | |
4098 | |
4099 * lispref/specifiers.texi (Introduction to Specifiers): fix case | |
4100 spelling of `Buffer-Local Variables' crossref. | |
4101 | |
1137 | 4102 2002-12-03 Didier Verna <didier@xemacs.org> |
4103 | |
4104 * xemacs/custom.texi (Faces): document | |
4105 `set-face-background-pixmap-file'. | |
4106 | |
4107 2002-12-03 Didier Verna <didier@xemacs.org> | |
4108 | |
4109 * lispref/faces.texi (Face Convenience Functions): ditto. | |
4110 * lispref/glyphs.texi (Creating Glyphs): reference it. | |
4111 | |
1135 | 4112 2002-11-29 Stephen Turnbull <stephen@xemacs.org> |
4113 | |
4114 * lispref/specifiers.texi (Simple Specifier Usage): New node. | |
4115 (Specifiers): Adjust node pointers. | |
4116 (Simple Specifier Usage): Revise. Adjust node pointers. | |
4117 | |
4118 * lispref/toolbar.texi (Creating Toolbar): Xref specifier example. | |
4119 | |
4120 2002-10-20 Stephen Turnbull <stephen@xemacs.org> | |
4121 | |
4122 * xemacs-faq.texi (Q3.2.7): New FAQ on displaying non-ASCII. | |
4123 (Q3.5.7, Q1.3.3): Cross-reference it. | |
4124 | |
4125 2002-10-20 Stephen Turnbull <stephen@xemacs.org> | |
4126 | |
4127 * xemacs-faq.texi (Q2.1.1): Mention bug report commands. | |
4128 (Q2.0.9): Note how out-of-date the entry is. | |
4129 (Q1.3.1, Q1.3.2, Q1.3.3, Q1.3.4, Q1.3.5, Q1.3.6): Revise/update. | |
4130 (Q1.2.1): Fix typo. | |
4131 | |
4132 * internals/internals.texi (Regression Testing XEmacs): Thorough | |
4133 rewrite, documenting macros explicitly. | |
4134 | |
4135 2002-10-29 Stephen J. Turnbull <stephen@xemacs.org> | |
1103 | 4136 |
4137 * lispref/compile.texi (Compilation Options): New node. | |
4138 (Byte Compilation): Add it to menu. | |
4139 (Compilation Functions): Minor mods. | |
4140 (Docs and Compilation): | |
4141 (Dynamic Loading): | |
4142 Document some variable defaults. | |
4143 | |
1135 | 4144 2002-11-07 Stephen J. Turnbull <stephen@xemacs.org> |
1096 | 4145 |
4146 * internals/internals.texi (Low-Level Modules): Add urefs to Doug | |
4147 Lea's and Wolfram Gloger's home pages. | |
4148 | |
1135 | 4149 2002-10-18 Stephen J. Turnbull <stephen@xemacs.org> |
1058 | 4150 |
4151 * xemacs-faq.texi (Q2.0.16): New FAQ on "no cygXpm-noX" fatal error. | |
4152 (Q6.1.4): Document cygXpm-noX. | |
4153 | |
1030 | 4154 2002-10-04 Ville Skyttä <ville.skytta@xemacs.org> |
4155 | |
4156 * xemacs/packages.texi (Available Packages): Add fortran-modes, | |
4157 perl-modes, psgml-dtds, python-modes and ruby-modes. | |
4158 Some consistency tweaks. | |
4159 | |
1026 | 4160 2002-09-22 Ville Skyttä <ville.skytta@xemacs.org> |
4161 | |
4162 * lispref/variables.texi (add-to-list): Document the new | |
4163 (optional) append argument. | |
4164 | |
1024 | 4165 2002-09-20 Stephen J. Turnbull <stephen@xemacs.org> |
4166 | |
4167 * internals/internals.texi (Techniques for XEmacs Developers): | |
4168 More performance optimization hints. | |
4169 (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
4170 Describe syntax code internals. | |
4171 | |
4172 * lispref/syntax.texi (Syntax Basics): XEmacs "20" -> "20 and later". | |
4173 (Syntax Class Table): Deprecate SPC as whitespace designator. | |
4174 (Syntax Flags): Rewrite for `8-bit' comment syntax flags. | |
4175 | |
981 | 4176 2002-08-30 Steve Youngs <youngs@xemacs.org> |
4177 | |
4178 * XEmacs 21.5.9 "brussels sprouts" is released. | |
4179 | |
973 | 4180 2002-08-22 Stephen J. Turnbull <stephen@xemacs.org> |
4181 | |
4182 * internals/internals.texi (Regression Testing XEmacs): Document | |
4183 how to skip and warn about tests that depend on packages. | |
4184 | |
967 | 4185 2002-08-16 Stephen J. Turnbull <stephen@xemacs.org> |
1137 | 4186 |
967 | 4187 * internals/internals.texi (Regression Testing XEmacs): Fix typo. |
4188 | |
965 | 4189 2002-08-15 Stephen J. Turnbull <stephen@xemacs.org> |
1137 | 4190 |
965 | 4191 * internals/internals.texi (GCPROing): Add comment on GCPRO. |
4192 (Regression Testing XEmacs): New node. | |
4193 (Modules for Regression Testing): New node. | |
4194 | |
959 | 4195 2002-08-12 Simon Josefsson <jas@extundo.com> |
4196 | |
4197 * lispref/building.texi (Pure Storage): purecopy is a no-op. | |
4198 | |
955 | 4199 2002-08-08 Ville Skyttä <ville.skytta@xemacs.org> |
4200 | |
4201 * xemacs/packages.texi (Available Packages): Bring up to date. | |
4202 | |
947 | 4203 2002-08-02 Ville Skyttä <ville.skytta@xemacs.org> |
4204 | |
4205 * xemacs/packages.texi (Available Packages): | |
4206 Bring package list up to date, thanks also to Brian Palmer. | |
4207 | |
936 | 4208 2002-07-30 Ville Skyttä <ville.skytta@xemacs.org> |
4209 | |
4210 * term.texi (Input to the inferior): Fix term line/char mode | |
4211 switch keybindings. Kudos to Jacob P. Burckhardt. | |
4212 | |
4213 * xemacs/misc.texi (Term Mode): Ditto. | |
4214 | |
933 | 4215 2002-07-27 Steve Youngs <youngs@xemacs.org> |
4216 | |
4217 * XEmacs 21.5.8 "broccoli" is released. | |
4218 | |
918 | 4219 2002-07-06 Adrian Aichner <adrian@xemacs.org> |
4220 | |
4221 * new-users-guide/custom1.texi (Customizing key Bindings): Fix | |
4222 improper use of indef. art. "a". | |
4223 | |
4224 2002-07-06 Adrian Aichner <adrian@xemacs.org> | |
4225 | |
4226 * lispref/commands.texi (Peeking and Discarding): Ditto. | |
4227 * lispref/customize.texi (Type Keywords): Ditto. | |
4228 * lispref/dragndrop.texi (Drop Interface): Ditto. | |
4229 | |
4230 2002-07-06 Adrian Aichner <adrian@xemacs.org> | |
4231 | |
4232 * termcap.texi (Clearing): Ditto. | |
4233 * widget.texi (User Interface): Ditto. | |
4234 * widget.texi (Basic Types): Ditto. | |
4235 * widget.texi (group): Ditto. | |
4236 | |
901 | 4237 2002-07-05 Adrian Aichner <adrian@xemacs.org> |
4238 | |
4239 * xemacs/menus.texi (Edit Menu): Typo fixes for incorrect use of | |
4240 indef. art. "an". | |
4241 | |
4242 2002-07-05 Adrian Aichner <adrian@xemacs.org> | |
4243 | |
4244 * lispref/control.texi (Processing of Errors): Ditto. | |
4245 * lispref/mule.texi (ISO 2022): Ditto. | |
4246 * lispref/packaging.texi (Package Terminology): Ditto. | |
4247 * lispref/text.texi (Transformations): Ditto. | |
4248 | |
4249 2002-07-05 Adrian Aichner <adrian@xemacs.org> | |
4250 | |
4251 * termcap.texi (Naming): Ditto. | |
4252 * texinfo.texi (itemize): Ditto. | |
4253 * texinfo.texi (Tips): Ditto. | |
4254 * widget.texi (Introduction): Ditto. | |
4255 * widget.texi (group): Ditto. | |
4256 | |
894 | 4257 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
4258 | |
4259 * XEmacs 21.5.7 "broccoflower" is released. | |
4260 | |
892 | 4261 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
4262 | |
4263 * xemacs-faq.texi (Top, Customization, Q3.10.5, Q3.10.6): | |
4264 New "killing is slow" FAQ and link updates. | |
4265 | |
880 | 4266 2002-06-17 Jerry James <james@xemacs.org> |
4267 | |
4268 * emodules.texi (Loading other Modules): Describe why we do not | |
4269 use RTLD_GLOBAL. | |
4270 | |
873 | 4271 2002-06-20 Adrian Aichner <adrian@xemacs.org> |
4272 | |
4273 * xemacs/mule.texi (Language Environments): Typo fix suggested by | |
4274 Frank Schmitt. | |
4275 | |
871 | 4276 2002-06-11 Adrian Aichner <adrian@xemacs.org> |
4277 | |
4278 * xemacs-faq.texi (Q1.3.7): Update broken link to russian.el | |
4279 (found by linklint) with Google's help. | |
4280 | |
4281 2002-05-25 Adrian Aichner <adrian@xemacs.org> | |
4282 | |
4283 * xemacs/custom.texi (Syntax Entry): Deprecate ` ' in favor of `-'. | |
4284 | |
868 | 4285 2002-06-05 Ben Wing <ben@xemacs.org> |
4286 | |
4287 * internals/internals.texi (Top): | |
4288 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
4289 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
4290 * internals/internals.texi (Major Textual Changes): | |
4291 * internals/internals.texi (Great Integral Type Renaming): | |
4292 * internals/internals.texi (Text/Char Type Renaming): | |
4293 * internals/internals.texi (files): New. | |
4294 | |
863 | 4295 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org> |
4296 | |
4297 * custom.texi (The Init File): Rewrite completely. | |
4298 | |
4299 2002-03-19 Adrian Aichner <adrian@xemacs.org> | |
4300 | |
4301 * widget.texi (constants): Typo fix. | |
4302 | |
4303 2002-02-07 Stephen J. Turnbull <stephen@xemacs.org> | |
4304 | |
4305 * external-widget.texi (External Client Widget Internals): New node. | |
4306 | |
4307 2001-11-15 Darryl Okahata <darrylo@xemacs.org> | |
4308 | |
4309 * lispref/glyphs.texi: | |
4310 lispref/lispref.texi: Add examples of how to insert graphics into a | |
4311 buffer. | |
1137 | 4312 |
863 | 4313 2001-12-17 Stephen J. Turnbull <stephen@xemacs.org> |
4314 | |
4315 * xemacs/packages.texi (Packages): | |
4316 (Package Terminology): | |
4317 Carefully distinguish libraries and packages. | |
4318 (Package Terminology): | |
4319 More careful definitions of ``category'' and ``distribution.'' | |
4320 Use ``generic'' instead of ``normal'' (N.B. package tools use | |
4321 ``standard''.) | |
4322 (Installing Packages): | |
4323 Use @var to mark variable version strings, not @t or <>. | |
4324 (Sumo): | |
4325 Add disk space estimate when unpacked. | |
4326 | |
4327 2002-02-06 Stephen J. Turnbull <stephen@xemacs.org> | |
4328 | |
4329 * xemacs-faq.texi (Q1.3.8, Q1.3.9): Unicode support via Mule-UCS. | |
4330 | |
4331 2002-02-01 Steve Youngs <youngs@xemacs.org> | |
4332 | |
4333 * xemacs/packages.texi (Removing Packages): The interactive | |
4334 function is 'package-get-delete-package'. | |
4335 | |
4336 2001-11-27 Adrian Aichner <adrian@xemacs.org> | |
4337 | |
4338 * xemacs-faq.texi: Hyperlink fixes. | |
1137 | 4339 |
863 | 4340 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> |
4341 | |
4342 * xemacs-faq.texi (Q4.7.7): New FAQ on remote files. | |
4343 | |
4344 2002-01-24 Stephen J. Turnbull <stephen@xemacs.org> | |
4345 | |
4346 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
4347 | |
4348 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
4349 | |
4350 * xemacs/files.texi (Files): | |
4351 (File Names): | |
4352 Document remote file editing, refer to EFS and TRAMP. | |
4353 | |
861 | 4354 2002-05-23 Stephen J. Turnbull <stephen@xemacs.org> |
4355 | |
4356 * lispref/packaging.texi (package-info.in Fields): Typo fix. | |
4357 | |
836 | 4358 2002-05-11 Adrian Aichner <adrian@xemacs.org> |
4359 | |
4360 * xemacs-faq.texi (Top): Add Q2.0.15 under "Installation and | |
4361 Trouble Shooting". | |
4362 * xemacs-faq.texi (Installation): Add Q2.0.15 to Installation | |
4363 menu. | |
4364 * xemacs-faq.texi (Q2.0.14): Fix unnumberedsubsec argument. | |
4365 * xemacs-faq.texi (Q2.0.15): New. | |
4366 | |
824 | 4367 2002-05-01 Steve Youngs <youngs@xemacs.org> |
4368 | |
4369 * xemacs/packages.texi (Automatically): Don't mention "Options" | |
4370 menu. | |
4371 (Installing Packages): Don't mention getting list of packages via | |
1137 | 4372 customize. |
824 | 4373 |
804 | 4374 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
4375 | |
4376 * XEmacs 21.5.6 "bok choi" is released. | |
4377 | |
802 | 4378 2002-04-03 Ben Wing <ben@xemacs.org> |
4379 | |
4380 * internals/internals.texi (Top): | |
4381 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
4382 * internals/internals.texi (Techniques for XEmacs Developers): | |
4383 * internals/internals.texi (CVS Techniques): | |
4384 * internals/internals.texi (Merging a Branch into the Trunk): | |
4385 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
4386 Add section on correctly merging a branch back into the trunk. | |
4387 | |
785 | 4388 2002-03-19 Adrian Aichner <adrian@xemacs.org> |
4389 | |
4390 * widget.texi (constants): Typo fix. | |
4391 | |
778 | 4392 2002-03-14 Jonathan Harris <jhar@tardis.ed.ac.uk> |
4393 | |
4394 * cl.texi (Sequence Basics): Avoid splitting link over two lines, | |
4395 which makes cygwin texinfo 4.0 unhappy. | |
4396 | |
776 | 4397 2002-03-15 Ben Wing <ben@xemacs.org> |
4398 | |
4399 * Makefile (new-users-guide-srcs): | |
4400 * Makefile (extraclean): | |
4401 Use -no-packages to avoid problems with package files shadowing | |
4402 core files (e.g. unicode.el in mule-ucs). | |
4403 | |
775 | 4404 2002-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
4405 | |
4406 * emodules.texi (Using DEFUN): Add @ref{Lisp Primitives}. | |
4407 | |
1137 | 4408 * lispref/mule.texi (Unicode Support): |
775 | 4409 * xemacs/custom.texi (Behaviors): |
4410 * lispref/customize.texi (Enabling Behavior): | |
4411 New nodes. | |
4412 | |
774 | 4413 2002-03-12 Ben Wing <ben@xemacs.org> |
4414 | |
3322 | 4415 * The Great Mule Merge of March 2002: |
4416 see node by that name in the Internals Manual. | |
774 | 4417 |
768 | 4418 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
4419 | |
4420 * XEmacs 21.5.5 "beets" is released. | |
4421 | |
761 | 4422 2002-03-01 Jeff Miller <jmiller@cablespeed.com> |
4423 | |
4424 * lispref/packaging.texi (The User View, The Library Maintainer | |
4425 View, The Package Release Engineer View): Remove apostrophes. | |
4426 * lispref/lispref.texi (The User View, The Library Maintainer | |
4427 View, The Package Release Engineer View): Remove apostrophes. | |
4428 | |
759 | 4429 2002-02-28 Stephen J. Turnbull <stephen@xemacs.org> |
4430 | |
4431 * lispref/packaging.texi (The User View, The Library Maintainer | |
4432 View, The Package Release Engineer View): Remove apostrophes. | |
4433 | |
755 | 4434 2002-02-16 Stephen J. Turnbull <stephen@xemacs.org> |
4435 | |
4436 * external-widget.texi | |
4437 (Example Program Using the External Client Widget): Fix braces. | |
4438 From Mats Lidell <matsl@contactor.se>. | |
4439 | |
753 | 4440 2002-02-14 Stephen J. Turnbull <stephen@xemacs.org> |
4441 | |
4442 * external-widget.texi | |
4443 (Example Program Using the External Client Widget): Fix | |
4444 documentation to explain needed resource settings. | |
4445 | |
752 | 4446 2002-02-13 Stephen J. Turnbull <stephen@xemacs.org> |
4447 | |
4448 * lispref/packaging.texi (Documenting Packages): New node. | |
4449 (Makefile Variables): Fix typo per Steve Youngs. | |
4450 | |
750 | 4451 2002-02-09 Stephen J. Turnbull <stephen@xemacs.org> |
4452 | |
4453 * external-widget.texi | |
4454 (Example Program Using the External Client Widget): New node. | |
4455 | |
4456 * lispref/packaging.texi (Documenting Packages): New node. | |
4457 | |
749 | 4458 2002-01-27 Stephen J. Turnbull <stephen@xemacs.org> |
4459 | |
4460 * lispref/packaging.texi (Makefile Variables): Document GENERATED | |
4461 and PRELOADS. Document DATA_FILES_n and DATA_DEST_n forms. | |
4462 | |
745 | 4463 2002-02-06 Stephen J. Turnbull <stephen@xemacs.org> |
4464 | |
4465 * xemacs-faq.texi (Q1.3.8, Q1.3.9): Unicode support via Mule-UCS. | |
4466 | |
742 | 4467 2001-01-24 Adrian Aichner <adrian@xemacs.org> |
4468 | |
4469 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
4470 | |
741 | 4471 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> |
4472 | |
4473 * xemacs/files.texi (Files): | |
4474 (File Names): | |
4475 Document remote file editing, refer to EFS and TRAMP. | |
4476 | |
4477 2002-02-04 Stephen J. Turnbull <stephen@xemacs.org> | |
4478 | |
4479 * xemacs-faq.texi (Q4.7.7): New FAQ on remote files. | |
4480 | |
4481 2002-01-24 Stephen J. Turnbull <stephen@xemacs.org> | |
4482 | |
4483 * xemacs-faq.texi (Q1.0.6): Update mail-to-news gateway information. | |
4484 | |
737 | 4485 2002-02-01 Steve Youngs <youngs@xemacs.org> |
4486 | |
4487 * xemacs/packages.texi (Removing Packages): The interactive | |
4488 function is 'package-get-delete-package'. | |
4489 | |
725 | 4490 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
4491 | |
4492 * XEmacs 21.5.4 "bamboo" is released. | |
4493 | |
724 | 4494 2001-11-15 Darryl Okahata <darrylo@xemacs.org> |
4495 | |
4496 * glyphs.texi: | |
4497 lispref.texi: Add examples of how to insert graphics into a | |
4498 buffer. | |
1137 | 4499 |
721 | 4500 2002-01-02 Adrian Aichner <adrian@xemacs.org> |
4501 | |
4502 * emodules.texi: Add missing direntry, reword "dynamic loadable" | |
4503 to "dynamically loadable". | |
4504 * external-widget.texi: Add missing direntry. | |
4505 | |
709 | 4506 2001-12-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
4507 | |
4508 * xemacs/programs.texi: Etags update from Francesco. | |
4509 | |
704 | 4510 2001-12-18 Valdis.Kletnieks <Valdis.Kletnieks@vt.edu> |
4511 | |
4512 * xemacs/programs.texi (Tags): Add node name to Ebrowse | |
4513 cross reference. | |
4514 | |
696 | 4515 2001-12-15 Adrian Aichner <adrian@xemacs.org> |
4516 | |
4517 * xemacs\xemacs.texi (Top): Change from @ifinfo to @ifnottex for | |
4518 the benefit of HTML online docs. | |
4519 | |
4520 2001-12-15 Adrian Aichner <adrian@xemacs.org> | |
4521 | |
4522 * term.texi: Fix broken settitle. Make @titlepage, @direntry, and | |
4523 @chapter agree with new title. | |
4524 | |
694 | 4525 2001-12-15 Stephen J. Turnbull <stephen@xemacs.org> |
4526 | |
4527 * lispref/packaging.texi (The User's View): | |
4528 Correct description of man subdirectory. | |
4529 | |
4530 (The Package Release Engineer's View): | |
4531 (package-compile.el): | |
4532 Change hazmat to useful documentation. | |
4533 | |
4534 (Issues): | |
4535 Hazmat removal. | |
4536 | |
693 | 4537 2001-11-27 Stephen J. Turnbull <stephen@xemacs.org> |
4538 | |
4539 * lispref/packaging.texi: New file. | |
4540 * lispref/lispref.texi (Top): Add Packaging & subnodes to menus. | |
4541 Include packaging.texi. | |
4542 * lispref/intro.texi (Introduction): Next -> Packaging. | |
4543 * lispref/objects.texi (Lisp Data Types): Previous -> Packaging. | |
4544 * Makefile (lispref-srcs): Depend on lispref/packaging.texi. | |
1137 | 4545 |
675 | 4546 2001-11-26 Adrian Aichner <adrian@xemacs.org> |
4547 | |
4548 * xemacs-faq.texi (Top): Remove duplicate node "Introduction". | |
4549 * xemacs-faq.texi (Q7.0.2): Rename changes sections uniquely. | |
4550 * xemacs-faq.texi (Q7.0.3): Ditto. | |
4551 | |
4552 2001-11-26 Adrian Aichner <adrian@xemacs.org> | |
4553 | |
4554 * external-widget.texi: Add @settitle to this stand-alone | |
4555 document. | |
4556 | |
4557 2001-11-25 Adrian Aichner <adrian@xemacs.org> | |
4558 | |
4559 * Makefile: Add rule to produce html from texi sources (currently | |
4560 using texi2html). | |
4561 * Makefile (HTMLDIR): New. | |
4562 * Makefile (html_files): New. | |
4563 * Makefile (html): New target. | |
4564 | |
662 | 4565 2001-09-16 Adrian Aichner <adrian@xemacs.org> |
4566 | |
4567 * xemacs-faq.texi (Q4.0.7): Fix link to VM FAQ thanks to word I | |
4568 got from Gregory Neil Shapiro. | |
4569 | |
661 | 4570 2001-09-16 Adrian Aichner <adrian@xemacs.org> |
4571 | |
4572 * xemacs-faq.texi (Q1.3.7): Update moved link. | |
4573 * xemacs-faq.texi (Q7.0.2): Comment out empty list of bullets to | |
4574 avoid HTML error in texi2html translation. | |
4575 | |
660 | 4576 2001-09-15 Adrian Aichner <adrian@xemacs.org> |
4577 | |
4578 * xemacs-faq.texi (Q4.6.1): Infodock is now hosted on SourceForge, | |
4579 infodock.com is no more. | |
4580 * xemacs-faq.texi (Q4.7.1): Take auc out of http://sunsite.auc.dk. | |
4581 | |
4582 2001-09-15 Adrian Aichner <adrian@xemacs.org> | |
4583 | |
4584 * xemacs-faq.texi (Q4.6.1): | |
4585 | |
658 | 4586 2001-09-09 Adrian Aichner <adrian@xemacs.org> |
4587 | |
4588 * xemacs-faq.texi (Q1.0.9): Correct link to snapshots as suggested | |
4589 by Robin S. Socha. | |
4590 | |
654 | 4591 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
4592 | |
4593 * XEmacs 21.5.3 "asparagus" is released. | |
4594 | |
652 | 4595 2001-08-26 Stephen J. Turnbull <stephen@xemacs.org> |
4596 | |
4597 * widget.texi (Basic Types, Defining New Widgets): | |
4598 Distinguish between :action and :notify. | |
4599 | |
641 | 4600 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
4601 | |
4602 * XEmacs 21.5.2 "artichoke" is released. | |
4603 | |
635 | 4604 2001-07-25 Jim Horning <jim.horning@lmco.com> |
4605 | |
4606 * xemacs/packages.texi (Package Terminology): | |
4607 * xemacs/packages.texi (Automatically): | |
4608 In itemize and enumerate lists @item should be on it's own line. | |
4609 | |
626 | 4610 2001-07-02 Adrian Aichner <adrian@xemacs.org> |
4611 | |
4612 * xemacs-faq.texi (Q1.0.14): Update information following a | |
4613 request by Tom Mostyn. | |
4614 | |
625 | 4615 2001-07-02 Adrian Aichner <adrian@xemacs.org> |
4616 | |
4617 * lispref\windows.texi (Window Configurations): Fix typos. | |
4618 * lispref\x-windows.texi (Resources): Ditto. | |
4619 | |
4620 2001-07-02 Adrian Aichner <adrian@xemacs.org> | |
4621 | |
4622 * internals\internals.texi (XEmacs From the Inside): Ditto. | |
4623 | |
4624 2001-07-02 Adrian Aichner <adrian@xemacs.org> | |
4625 | |
4626 * emodules.texi (Initialization Mode): Ditto. | |
4627 * xemacs-faq.texi (Q6.3.2): Ditto. | |
4628 | |
613 | 4629 2001-06-10 Ben Wing <ben@xemacs.org> |
4630 | |
4631 * xemacs-faq.texi (Q1.0.10): | |
4632 * xemacs-faq.texi (Q1.0.11): | |
4633 * xemacs-faq.texi (Q1.0.12): | |
4634 Update sections on Windows and MacOS availability. | |
4635 | |
611 | 4636 2001-06-08 Ben Wing <ben@xemacs.org> |
4637 | |
4638 * xemacs-faq.texi (Top): | |
4639 * xemacs-faq.texi (MS Windows): | |
4640 * xemacs-faq.texi (Q6.2.1): | |
4641 * xemacs-faq.texi (Q6.2.2): | |
4642 * xemacs-faq.texi (Q6.2.3): | |
4643 * xemacs-faq.texi (Q6.2.4): | |
4644 * xemacs-faq.texi (Q6.2.5): | |
4645 * xemacs-faq.texi (Q6.3.1): | |
4646 * xemacs-faq.texi (Q6.3.2): | |
4647 * xemacs-faq.texi (Q6.3.3): | |
4648 * xemacs-faq.texi (Q6.3.4): | |
4649 * xemacs-faq.texi (Q6.4.1): | |
4650 * xemacs-faq.texi (Q6.4.2): | |
4651 * xemacs-faq.texi (Current Events): | |
4652 * xemacs-faq.texi (Q7.0.1): | |
4653 * xemacs-faq.texi (Q7.0.2): | |
4654 * xemacs-faq.texi (Q7.0.3): | |
4655 * xemacs-faq.texi (Q7.0.4): | |
4656 * xemacs-faq.texi (Q7.0.5): | |
4657 * xemacs-faq.texi (Q7.0.6): | |
4658 Merge in the rest of Hrvoje's Windows FAQ. Redo section 7 | |
4659 to update current reality and add condensed versions of | |
4660 new changes for 21.1 and 21.4. (Not quite done for 21.4.) | |
4661 Lots more Windows updates. | |
4662 | |
600 | 4663 2001-05-29 Alexey Mahotkin <alexm@hsys.msk.ru> |
4664 | |
4665 * xemacs/custom.texi: Documented keyboard shortcut. | |
4666 | |
4667 * xemacs/mule.texi: Updated to match reality; tiny fixes. | |
4668 | |
593 | 4669 2001-05-30 Ben Wing <ben@xemacs.org> |
4670 | |
4671 * xemacs-faq.texi (Top): | |
4672 * xemacs-faq.texi (MS Windows): | |
4673 * xemacs-faq.texi (Q6.0.1): | |
4674 * xemacs-faq.texi (Q6.0.2): | |
4675 * xemacs-faq.texi (Q6.0.3): | |
4676 * xemacs-faq.texi (Q6.0.4): | |
4677 * xemacs-faq.texi (Q6.1.1): | |
4678 * xemacs-faq.texi (Q6.1.4): | |
4679 * xemacs-faq.texi (Q6.1.5): | |
4680 * xemacs-faq.texi (Q6.1.6): | |
4681 * xemacs-faq.texi (Q6.2.1): | |
4682 * xemacs-faq.texi (Q6.2.2): | |
4683 * xemacs-faq.texi (Q6.3.1): | |
4684 * xemacs-faq.texi (Q6.3.2): | |
4685 * xemacs-faq.texi (Q6.3.3): | |
4686 * xemacs-faq.texi (Q6.4.1): | |
4687 * xemacs-faq.texi (Current Events): | |
4688 Major rewrite. | |
4689 Update all MS Windows info to current. | |
4690 Redo section 6.1 almost completely. | |
4691 Incorporate sections 1 and 2 of Hrvoje's FAQ. | |
4692 | |
563 | 4693 2001-05-24 Ben Wing <ben@xemacs.org> |
4694 | |
4695 * xemacs-faq.texi (Top): | |
4696 * xemacs-faq.texi (Installation): | |
4697 * xemacs-faq.texi (Q2.1.15): | |
4698 * xemacs-faq.texi (Q2.1.18): | |
4699 * xemacs-faq.texi (Q2.1.19): | |
4700 document how to debug X errors | |
1137 | 4701 |
540 | 4702 2001-05-15 Steve Youngs <youngs@xemacs.org> |
4703 | |
4704 * xemacs/packages.texi (Local.rules): Update to reflect new dir tree. | |
4705 (Creating Packages): Ditto. | |
4706 (Available Packages): Ditto. | |
4707 | |
522 | 4708 2001-05-09 Martin Buchholz <martin@xemacs.org> |
4709 | |
4710 * XEmacs 21.5.1 "anise" is released. | |
4711 | |
511 | 4712 2001-05-07 Martin Buchholz <martin@xemacs.org> |
4713 | |
4714 * make-stds.texi: Support makeinfo 3.12 | |
4715 | |
485 | 4716 2001-04-26 John H. Palmieri <palmieri@math.washington.edu> |
4717 | |
4718 * xemacs/frame.texi (XEmacs under X): Document default-frame-plist | |
4719 rather than default-frame-alist. | |
4720 | |
479 | 4721 2001-04-15 Ben Wing <ben@xemacs.org> |
4722 | |
4723 * xemacs-faq.texi (Q1.0.1): | |
4724 * xemacs-faq.texi (Q1.0.2): | |
4725 Rewrite description of XEmacs to match what's on web page, | |
4726 in about.el. | |
4727 | |
472 | 4728 2001-04-18 Martin Buchholz <martin@xemacs.org> |
4729 | |
4730 * XEmacs 21.5.0 "alfalfa" is released. | |
4731 | |
464 | 4732 2001-03-30 Ben Wing <ben@xemacs.org> |
4733 | |
4734 * internals\internals.texi: | |
4735 * internals\internals.texi (Top): | |
4736 * internals\internals.texi (Lucid Emacs): | |
4737 * internals\internals.texi (XEmacs): | |
4738 * internals\internals.texi (XEmacs From the Outside): | |
4739 Bump version to 1.4 and fix this everywhere. Document all | |
4740 XEmacs releases up through 21.2.46. | |
4741 | |
4742 2001-03-16 Stephen J. Turnbull <stephen@xemacs.org> | |
4743 | |
4744 * lispref/postgresql.texi (libpq Lisp Symbols and DataTypes): Save | |
4745 result of INSERT in R in pq-cmd-status example. | |
4746 | |
462 | 4747 2001-03-21 Martin Buchholz <martin@xemacs.org> |
4748 | |
4749 * XEmacs 21.2.46 "Urania" is released. | |
4750 | |
4751 2001-03-08 Ben Wing <ben@xemacs.org> | |
4752 | |
4753 * internals\internals.texi (Top): | |
4754 * internals\internals.texi (A History of Emacs): | |
4755 * internals\internals.texi (Through Version 18): | |
4756 * internals\internals.texi (Lucid Emacs): | |
4757 * internals\internals.texi (GNU Emacs 19): | |
4758 * internals\internals.texi (GNU Emacs 20): | |
4759 * internals\internals.texi (XEmacs From the Outside): | |
4760 * internals\internals.texi (The Lisp Language): | |
4761 * internals\internals.texi (XEmacs From the Perspective of Building): | |
4762 * internals\internals.texi (XEmacs From the Inside): | |
4763 * internals\internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
4764 * internals\internals.texi (How Lisp Objects Are Represented in C): | |
4765 * internals\internals.texi (Rules When Writing New C Code): | |
4766 * internals\internals.texi (General Coding Rules): | |
4767 * internals\internals.texi (Writing Lisp Primitives): | |
4768 * internals\internals.texi (Writing Good Comments): | |
4769 * internals\internals.texi (Adding Global Lisp Variables): | |
4770 * internals\internals.texi (Proper Use of Unsigned Types): | |
4771 * internals\internals.texi (Coding for Mule): | |
4772 * internals\internals.texi (Character-Related Data Types): | |
4773 * internals\internals.texi (Working With Character and Byte Positions): | |
4774 * internals\internals.texi (Conversion to and from External Data): | |
4775 * internals\internals.texi (General Guidelines for Writing Mule-Aware Code): | |
4776 * internals\internals.texi (An Example of Mule-Aware Code): | |
4777 * internals\internals.texi (Techniques for XEmacs Developers): | |
4778 * internals\internals.texi (A Summary of the Various XEmacs Modules): | |
4779 * internals\internals.texi (Low-Level Modules): | |
4780 * internals\internals.texi (Basic Lisp Modules): | |
4781 * internals\internals.texi (Modules for Standard Editing Operations): | |
4782 * internals\internals.texi (Editor-Level Control Flow Modules): | |
4783 * internals\internals.texi (Modules for the Basic Displayable Lisp Objects): | |
4784 * internals\internals.texi (Modules for other Display-Related Lisp Objects): | |
4785 * internals\internals.texi (Modules for the Redisplay Mechanism): | |
4786 * internals\internals.texi (Modules for Interfacing with the File System): | |
4787 * internals\internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
4788 * internals\internals.texi (Modules for Interfacing with the Operating System): | |
4789 * internals\internals.texi (Modules for Interfacing with X Windows): | |
4790 * internals\internals.texi (Allocation of Objects in XEmacs Lisp): | |
4791 * internals\internals.texi (Introduction to Allocation): | |
4792 * internals\internals.texi (Garbage Collection): | |
4793 * internals\internals.texi (GCPROing): | |
4794 * internals\internals.texi (Garbage Collection - Step by Step): | |
4795 * internals\internals.texi (Invocation): | |
4796 * internals\internals.texi (garbage_collect_1): | |
4797 * internals\internals.texi (mark_object): | |
4798 * internals\internals.texi (gc_sweep): | |
4799 * internals\internals.texi (sweep_lcrecords_1): | |
4800 * internals\internals.texi (compact_string_chars): | |
4801 * internals\internals.texi (sweep_strings): | |
4802 * internals\internals.texi (sweep_bit_vectors_1): | |
4803 * internals\internals.texi (Integers and Characters): | |
4804 * internals\internals.texi (Allocation from Frob Blocks): | |
4805 * internals\internals.texi (lrecords): | |
4806 * internals\internals.texi (Low-level allocation): | |
4807 * internals\internals.texi (Cons): | |
4808 * internals\internals.texi (Vector): | |
4809 * internals\internals.texi (Bit Vector): | |
4810 * internals\internals.texi (Symbol): | |
4811 * internals\internals.texi (Marker): | |
4812 * internals\internals.texi (String): | |
4813 * internals\internals.texi (Dumping): | |
4814 * internals\internals.texi (Overview): | |
4815 * internals\internals.texi (Data descriptions): | |
4816 * internals\internals.texi (Dumping phase): | |
4817 * internals\internals.texi (Object inventory): | |
4818 * internals\internals.texi (Address allocation): | |
4819 * internals\internals.texi (The header): | |
4820 * internals\internals.texi (Data dumping): | |
4821 * internals\internals.texi (Pointers dumping): | |
4822 * internals\internals.texi (Reloading phase): | |
4823 * internals\internals.texi (Events and the Event Loop): | |
4824 * internals\internals.texi (Introduction to Events): | |
4825 * internals\internals.texi (Main Loop): | |
4826 * internals\internals.texi (Specifics of the Event Gathering Mechanism): | |
4827 * internals\internals.texi (Specifics About the Emacs Event): | |
4828 * internals\internals.texi (The Event Stream Callback Routines): | |
4829 * internals\internals.texi (Other Event Loop Functions): | |
4830 * internals\internals.texi (Converting Events): | |
4831 * internals\internals.texi (Evaluation; Stack Frames; Bindings): | |
4832 * internals\internals.texi (Evaluation): | |
4833 * internals\internals.texi (Dynamic Binding; The specbinding Stack; Unwind-Protects): | |
4834 * internals\internals.texi (Simple Special Forms): | |
4835 * internals\internals.texi (Symbols and Variables): | |
4836 * internals\internals.texi (Introduction to Symbols): | |
4837 * internals\internals.texi (Obarrays): | |
4838 * internals\internals.texi (Buffers and Textual Representation): | |
4839 * internals\internals.texi (Introduction to Buffers): | |
4840 * internals\internals.texi (The Text in a Buffer): | |
4841 * internals\internals.texi (Buffer Lists): | |
4842 * internals\internals.texi (Markers and Extents): | |
4843 * internals\internals.texi (Bufbytes and Emchars): | |
4844 * internals\internals.texi (MULE Character Sets and Encodings): | |
4845 * internals\internals.texi (Character Sets): | |
4846 * internals\internals.texi (Encodings): | |
4847 * internals\internals.texi (Japanese EUC (Extended Unix Code)): | |
4848 * internals\internals.texi (JIS7): | |
4849 * internals\internals.texi (Internal Mule Encodings): | |
4850 * internals\internals.texi (Internal String Encoding): | |
4851 * internals\internals.texi (Internal Character Encoding): | |
4852 * internals\internals.texi (The Lisp Reader and Compiler): | |
4853 * internals\internals.texi (Lstreams): | |
4854 * internals\internals.texi (Creating an Lstream): | |
4855 * internals\internals.texi (Lstream Types): | |
4856 * internals\internals.texi (Lstream Functions): | |
4857 * internals\internals.texi (Consoles; Devices; Frames; Windows): | |
4858 * internals\internals.texi (Introduction to Consoles; Devices; Frames; Windows): | |
4859 * internals\internals.texi (Point): | |
4860 * internals\internals.texi (Window Hierarchy): | |
4861 * internals\internals.texi (The Redisplay Mechanism): | |
4862 * internals\internals.texi (Critical Redisplay Sections): | |
4863 * internals\internals.texi (Line Start Cache): | |
4864 * internals\internals.texi (Extents): | |
4865 * internals\internals.texi (Introduction to Extents): | |
4866 * internals\internals.texi (Extent Ordering): | |
4867 * internals\internals.texi (Format of the Extent Info): | |
4868 * internals\internals.texi (Zero-Length Extents): | |
4869 * internals\internals.texi (Mathematics of Extent Ordering): | |
4870 * internals\internals.texi (Faces): | |
4871 * internals\internals.texi (Glyphs): | |
4872 * internals\internals.texi (Specifiers): | |
4873 * internals\internals.texi (Menus): | |
4874 * internals\internals.texi (Subprocesses): | |
4875 * internals\internals.texi (Interface to the X Window System): | |
4876 * internals\internals.texi (Lucid Widget Library): | |
4877 * internals\internals.texi (Generic Widget Interface): | |
4878 * internals\internals.texi (Scrollbars): | |
4879 * internals\internals.texi (Menubars): | |
4880 * internals\internals.texi (Checkboxes and Radio Buttons): | |
4881 * internals\internals.texi (Progress Bars): | |
4882 * internals\internals.texi (Tab Controls): | |
4883 Add more index entries. Add sections on comments and unsigned types. | |
4884 | |
4885 2001-03-08 Ben Wing <ben@xemacs.org> | |
4886 | |
4887 * make-stds.texi (Makefile Basics): | |
4888 * make-stds.texi (Command Variables): | |
4889 * make-stds.texi (Directory Variables): | |
4890 * make-stds.texi (Standard Targets): | |
4891 * standards.texi: | |
4892 * standards.texi (Top): | |
4893 * standards.texi (Preface): | |
4894 * standards.texi (Legal Issues): | |
4895 * standards.texi (Reading Non-Free Code): | |
4896 * standards.texi (Contributions): | |
4897 * standards.texi (Trademarks): | |
4898 * standards.texi (Design Advice): | |
4899 * standards.texi (Source Language): | |
4900 * standards.texi (Compatibility): | |
4901 * standards.texi (Using Extensions): | |
4902 * standards.texi (Standard C): | |
4903 * standards.texi (Program Behavior): | |
4904 * standards.texi (Semantics): | |
4905 * standards.texi (Libraries): | |
4906 * standards.texi (Errors): | |
4907 * standards.texi (User Interfaces): | |
4908 * standards.texi (Graphical Interfaces): | |
4909 * standards.texi (Command-Line Interfaces): | |
4910 * standards.texi (Option Table): | |
4911 * standards.texi (Memory Usage): | |
4912 * standards.texi (File Usage): | |
4913 * standards.texi (Formatting): | |
4914 * standards.texi (Comments): | |
4915 * standards.texi (Syntactic Conventions): | |
4916 * standards.texi (Names): | |
4917 * standards.texi (System Portability): | |
4918 * standards.texi (CPU Portability): | |
4919 * standards.texi (System Functions): | |
4920 * standards.texi (Internationalization): | |
4921 * standards.texi (Mmap): | |
4922 * standards.texi (Documentation): | |
4923 * standards.texi (GNU Manuals): | |
4924 * standards.texi (Doc Strings and Manuals): | |
4925 * standards.texi (Manual Structure Details): | |
4926 * standards.texi (License for Manuals): | |
4927 * standards.texi (Manual Credits): | |
4928 * standards.texi (Printed Manuals): | |
4929 * standards.texi (NEWS File): | |
4930 * standards.texi (Change Logs): | |
4931 * standards.texi (Style of Change Logs): | |
4932 * standards.texi (Simple Changes): | |
4933 * standards.texi (Conditional Changes): | |
4934 * standards.texi (Indicating the Part Changed): | |
4935 * standards.texi (Managing Releases): | |
4936 * standards.texi (Configuration): | |
4937 * standards.texi (Releases): | |
4938 * standards.texi (References): | |
4939 * standards.texi (Index): | |
4940 Update to latest GNU version. | |
1137 | 4941 |
462 | 4942 * xemacs-faq.texi (Q6.3.3): |
4943 * xemacs-faq.texi (Q6.4.1): | |
4944 Improve questions on current Windows activity. | |
4945 | |
4946 2001-03-07 Sandra Wambold <wambold@xemacs.org> | |
4947 | |
4948 * xemacs-faq.texi: (Q.1.0.7): changed list archive address | |
4949 | |
4950 2001-02-25 Ben Wing <ben@xemacs.org> | |
4951 | |
4952 * xemacs-faq.texi (Top): | |
4953 * xemacs-faq.texi (Introduction): | |
4954 * xemacs-faq.texi (Q1.0.1): | |
4955 * xemacs-faq.texi (Q1.0.4): | |
4956 * xemacs-faq.texi (Q1.0.6): | |
4957 * xemacs-faq.texi (Q1.0.10): | |
4958 * xemacs-faq.texi (Q1.2.1): | |
4959 * xemacs-faq.texi (Q1.4.1): | |
4960 * xemacs-faq.texi (Q1.4.2): | |
4961 * xemacs-faq.texi (Q2.0.12): | |
4962 * xemacs-faq.texi (Q2.1.1): | |
4963 * xemacs-faq.texi (Q2.1.2): | |
4964 * xemacs-faq.texi (Q2.1.9): | |
4965 * xemacs-faq.texi (Q2.1.15): | |
4966 * xemacs-faq.texi (Q2.1.19): | |
4967 * xemacs-faq.texi (Customization): | |
4968 * xemacs-faq.texi (Q3.0.1): | |
4969 * xemacs-faq.texi (Q3.0.2): | |
4970 * xemacs-faq.texi (Q3.0.3): | |
4971 * xemacs-faq.texi (Q3.0.7): | |
4972 * xemacs-faq.texi (Q3.1.5): | |
4973 * xemacs-faq.texi (Q3.1.6): | |
4974 * xemacs-faq.texi (Q3.2.1): | |
4975 * xemacs-faq.texi (Q3.2.3): | |
4976 * xemacs-faq.texi (Q3.2.4): | |
4977 * xemacs-faq.texi (Q3.3.1): | |
4978 * xemacs-faq.texi (Q3.3.2): | |
4979 * xemacs-faq.texi (Q3.3.3): | |
4980 * xemacs-faq.texi (Q3.3.4): | |
4981 * xemacs-faq.texi (Q3.3.5): | |
4982 * xemacs-faq.texi (Q3.4.1): | |
4983 * xemacs-faq.texi (Q3.4.2): | |
4984 * xemacs-faq.texi (Q3.5.2): | |
4985 * xemacs-faq.texi (Q3.5.4): | |
4986 * xemacs-faq.texi (key-translation-map): New. | |
4987 * xemacs-faq.texi (Q3.5.5): | |
4988 * xemacs-faq.texi (Q3.5.6): | |
4989 * xemacs-faq.texi (Q3.5.7): | |
4990 * xemacs-faq.texi (Q3.5.8): | |
4991 * xemacs-faq.texi (global-map): Removed. | |
4992 * xemacs-faq.texi (Q3.5.9): | |
4993 * xemacs-faq.texi (Q3.6.1): | |
4994 * xemacs-faq.texi (Q3.6.2): | |
4995 * xemacs-faq.texi (Q3.6.3): | |
4996 * xemacs-faq.texi (Q3.7.6): | |
4997 * xemacs-faq.texi (Q3.7.7): | |
4998 * xemacs-faq.texi (Q3.8.1): | |
4999 * xemacs-faq.texi (Q3.8.2): | |
5000 * xemacs-faq.texi (Q3.8.3): | |
5001 * xemacs-faq.texi (Q3.9.1): | |
5002 * xemacs-faq.texi (Q3.9.4): | |
5003 * xemacs-faq.texi (Q3.10.1): | |
5004 * xemacs-faq.texi (Q3.10.2): | |
5005 * xemacs-faq.texi (Q3.10.3): | |
5006 * xemacs-faq.texi (Q4.0.12): | |
5007 * xemacs-faq.texi (Miscellaneous): | |
5008 * xemacs-faq.texi (Q5.0.1): | |
5009 * xemacs-faq.texi (Q5.0.2): | |
5010 * xemacs-faq.texi (Q5.0.3): | |
5011 * xemacs-faq.texi (Q5.0.4): | |
5012 * xemacs-faq.texi (Q5.0.5): | |
5013 * xemacs-faq.texi (Q5.0.8): | |
5014 * xemacs-faq.texi (Q5.0.9): | |
5015 * xemacs-faq.texi (Q5.0.11): | |
5016 * xemacs-faq.texi (Q5.0.12): | |
5017 * xemacs-faq.texi (Q5.0.13): | |
5018 * xemacs-faq.texi (Q5.0.16): | |
5019 * xemacs-faq.texi (Q5.0.17): | |
5020 * xemacs-faq.texi (Q5.1.9): | |
5021 * xemacs-faq.texi (Q5.1.11): | |
5022 * xemacs-faq.texi (Q5.2.1): | |
5023 * xemacs-faq.texi (Q5.2.2): | |
5024 * xemacs-faq.texi (Q5.3.1): | |
5025 * xemacs-faq.texi (Q5.3.2): | |
5026 * xemacs-faq.texi (Q5.3.4): | |
5027 * xemacs-faq.texi (MS Windows): | |
5028 * xemacs-faq.texi (Q6.0.1): | |
5029 * xemacs-faq.texi (Q6.0.2): | |
5030 * xemacs-faq.texi (Q6.0.3): | |
5031 * xemacs-faq.texi (Q6.0.4): | |
5032 * xemacs-faq.texi (Q6.1.5): | |
5033 * xemacs-faq.texi (Q6.2.3): | |
5034 * xemacs-faq.texi (Q6.3.1): | |
5035 | |
5036 Remove most references to XEmacs pre-19.15, since they are way out | |
5037 of date and are cluttering up and confusing many answers. Update | |
5038 references to .emacs to take into account the new init file | |
5039 location. Update information about the MS Windows port. Change | |
5040 description of XEmacs at beginning to match the web site. Update | |
5041 info about current developers. | |
1137 | 5042 |
462 | 5043 |
5044 2001-02-25 Ben Wing <ben@xemacs.org> | |
5045 | |
5046 * lispref\help.texi (Describing Characters): | |
5047 kp- not kp_. | |
1137 | 5048 |
462 | 5049 2001-02-25 Ben Wing <ben@xemacs.org> |
5050 | |
5051 * new-users-guide\custom1.texi (Customization Basics): | |
5052 * new-users-guide\custom1.texi (Customizing key Bindings): | |
5053 * new-users-guide\custom1.texi (Customizing Menus): | |
5054 * new-users-guide\custom2.texi (Other Customizations): | |
5055 * new-users-guide\custom2.texi (Setting Variables): | |
5056 * new-users-guide\custom2.texi (Init File): | |
5057 * new-users-guide\xmenu.texi (Options Menu): | |
5058 * new-users-guide\modes.texi (Major Modes): | |
5059 * new-users-guide\modes.texi (Minor Modes): | |
5060 * new-users-guide\new-users-guide.texi (Top): | |
5061 Fix up references to .emacs to take into account init.el. | |
1137 | 5062 |
460 | 5063 2001-02-23 Martin Buchholz <martin@xemacs.org> |
5064 | |
5065 * XEmacs 21.2.45 "Thelxepeia" is released. | |
5066 | |
5067 2001-02-10 Martin Buchholz <martin@xemacs.org> | |
5068 | |
5069 * xemacs/programs.texi (Tag Syntax): Port to makeinfo 3. | |
5070 | |
458 | 5071 2001-02-08 Martin Buchholz <martin@xemacs.org> |
5072 | |
5073 * XEmacs 21.2.44 "Thalia" is released. | |
5074 | |
5075 2001-02-04 Steve Youngs <youngs@xemacs.org> | |
5076 | |
5077 * xemacs/xemacs.texi: Update to accomodate new and improved | |
5078 packages.texi. | |
5079 | |
5080 * xemacs/packages.texi: Basically, apart from a few things, | |
5081 rewritten from scratch. | |
5082 | |
456 | 5083 2001-01-27 Martin Buchholz <martin@xemacs.org> |
5084 | |
5085 * lispref/variables.texi (max-specpdl-size): Correct default value. | |
5086 * lispref/eval.texi (max-lisp-eval-depth): Correct default value. | |
5087 | |
5088 2001-01-26 Martin Buchholz <martin@xemacs.org> | |
5089 | |
5090 * XEmacs 21.2.43 "Terspichore" is released. | |
5091 | |
454 | 5092 2001-01-20 Martin Buchholz <martin@xemacs.org> |
5093 | |
5094 * XEmacs 21.2.42 "Poseidon" is released. | |
5095 | |
5096 2001-01-18 Martin Buchholz <martin@xemacs.org> | |
5097 | |
5098 * xemacs-faq.texi (Q1.0.11): Change XEmacs for MacOS URL. | |
5099 | |
5100 2001-01-17 Andy Piper <andy@xemacs.org> | |
5101 | |
5102 * internals.texi: some glyph documentation. | |
5103 | |
5104 2001-01-16 Didier Verna <didier@xemacs.org> | |
5105 | |
5106 * frame.texi (Mode Line Basics): new node ... | |
5107 * frame.texi (GUI Components): ... under this one ... | |
5108 * frame.texi (Scrollbar Basics): ... after this one ... | |
5109 * frame.texi (Toolbar Basics): ... before this one. | |
5110 | |
452 | 5111 2001-01-17 Martin Buchholz <martin@xemacs.org> |
5112 | |
5113 * XEmacs 21.2.41 "Polyhymnia" is released. | |
5114 | |
5115 2001-01-12 Martin Buchholz <martin@xemacs.org> | |
5116 | |
5117 * internals/internals.texi: A little post-pdump-rename fixup. | |
5118 | |
5119 2001-01-13 Martin Buchholz <martin@xemacs.org> | |
5120 | |
5121 * internals/internals.texi: See `pdump-rename' in src/ChangeLog. | |
5122 | |
5123 2001-01-10 Martin Buchholz <martin@xemacs.org> | |
5124 | |
5125 * internals/internals.texi: Update for pdump changes. | |
5126 | |
5127 2001-01-04 Adrian Aichner <adrian@xemacs.org> | |
5128 | |
5129 * texinfo.texi (Using Texinfo): Change reference from GNU Emacs to | |
5130 XEmacs. | |
5131 * texinfo.texi (First Node): Fixing grammar. | |
5132 * texinfo.texi (Multitable Rows): Change reference from GNU Emacs | |
5133 to XEmacs. | |
5134 | |
450 | 5135 2001-01-08 Martin Buchholz <martin@xemacs.org> |
5136 | |
5137 * XEmacs 21.2.40 is released. | |
5138 | |
5139 2001-01-06 Stephen J. Turnbull <stephen@xemacs.org> | |
5140 | |
5141 * emodules.texi (Required Functions): Xref coding rules for dual-use | |
5142 modules (module and statically linked). Typo fix. | |
5143 | |
5144 * texinfo.texi (ref): Typo fix. | |
5145 | |
448 | 5146 2000-12-31 Martin Buchholz <martin@xemacs.org> |
5147 | |
5148 * XEmacs 21.2.39 is released. | |
5149 | |
5150 2000-12-05 Stephen J. Turnbull <stephen@xemacs.org> | |
5151 | |
5152 * internals/internals.texi (General Coding Rules): further document | |
5153 usage of symsinit.h. Reorder slightly. | |
5154 | |
446 | 5155 2000-11-29 Stephen J. Turnbull <stephen@xemacs.org> |
5156 | |
5157 * xemacs/packages.texi (Creating Packages): new node. | |
5158 | |
5159 2000-12-05 Martin Buchholz <martin@xemacs.org> | |
5160 | |
5161 * XEmacs 21.2.38 is released. | |
5162 | |
5163 2000-12-01 Martin Buchholz <martin@xemacs.org> | |
5164 | |
5165 * lispref/compile.texi: | |
5166 Document differences between compiler and interpreter. | |
5167 | |
5168 2000-11-29 Stephen J. Turnbull <stephen@xemacs.org> | |
5169 | |
5170 * internals/index.texi: | |
5171 internals/internals.texi: | |
5172 Change "X Windows" to "the X Window System" randomly. | |
5173 * internals/internals.texi (Glyphs): fiddling, move lwlib to new node. | |
5174 (Lucid Widget Library): new node, added new text, ASCII art, subnode | |
5175 structure. | |
5176 * xemacs/frame.texi (GUI Components): new node. | |
5177 * xemacs/packages.texi: minor updates. | |
5178 | |
5179 2000-11-10 Stephen J. Turnbull <stephen@xemacs.org> | |
5180 | |
5181 * info.texi (Creating an Info File): Fix typos in xrefs. | |
5182 | |
5183 2000-11-08 Stephen J. Turnbull <stephen@xemacs.org> | |
5184 | |
5185 * xemacs/cmdargs.texi (Command Switches): Add documentation of | |
5186 portable dumper switches. Other minor edits. | |
5187 | |
5188 2000-11-21 Martin Buchholz <martin@xemacs.org> | |
5189 | |
5190 * lispref/positions.texi (Word Motion): | |
5191 forward-word arg is now optional. | |
5192 backward-word arg is now optional. | |
5193 Remove vile comment advising lisp programmer to use (forward-word -1) | |
5194 instead of (backward-word 1). | |
5195 * lispref/syntax.texi (Parsing Expressions): | |
5196 Similarly for forward-comment. | |
5197 * lispref/text.texi (Deletion): | |
5198 Similarly for delete-char. | |
5199 Similarly for delete-backward-char. | |
5200 | |
5201 2000-11-09 Martin Buchholz <martin@xemacs.org> | |
5202 | |
5203 * cl.texi (Assertions): | |
5204 Remove claim that elisp doesn't have continuable errors. | |
5205 Document check-type as being continuable. | |
5206 | |
5207 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5208 | |
5209 * xemacs/calendar.texi (Calendar/Diary): Correct INFO-FILE-NAME | |
5210 from elisp to lispref and from emacs to xemacs in relevant ?xefs. | |
5211 This should also serve as a reminder for future merges with GNU | |
5212 Emacs. | |
5213 Unify PRINTED-MANUAL-TITLE to "XEmacs Lisp Reference Manual" and | |
5214 "XEmacs User's Manual" for lispref and xemacs respectively. | |
5215 | |
5216 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5217 | |
5218 * lispref/abbrevs.texi (Abbrevs): Ditto. | |
5219 * lispref/backups.texi (Auto-Saving): Ditto. | |
5220 * lispref/backups.texi (Reverting): Ditto. | |
5221 * lispref/display.texi (The Echo Area): Ditto. | |
5222 * lispref/help.texi (Documentation Basics): Ditto. | |
5223 * lispref/help.texi (Help Functions): Ditto. | |
5224 * lispref/keymaps.texi (Scanning Keymaps): Ditto. | |
5225 * lispref/locals.texi (Standard Buffer-Local Variables): Ditto. | |
5226 * lispref/modes.texi (Auto Major Mode): Ditto. | |
5227 * lispref/positions.texi (List Motion): Ditto. | |
5228 * lispref/searching.texi (Regexp Search): Ditto. | |
5229 * lispref/symbols.texi (Symbol Components): Ditto. | |
5230 * lispref/tips.texi (Comment Tips): Ditto. | |
5231 * lispref/tips.texi (Library Headers): Ditto. | |
5232 | |
5233 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5234 | |
5235 * internals/internals.texi (The Buffer Object): Ditto. | |
5236 | |
5237 2000-11-14 Adrian Aichner <adrian@xemacs.org> | |
5238 | |
5239 * cl.texi (Hash Tables): Ditto. | |
5240 * texinfo.texi (Other Info Files): Ditto. | |
5241 * xemacs-faq.texi (Q1.0.14): Ditto. | |
5242 | |
444 | 5243 2000-11-14 Martin Buchholz <martin@xemacs.org> |
5244 | |
5245 * XEmacs 21.2.37 is released. | |
5246 | |
5247 2000-10-27 Martin Buchholz <martin@xemacs.org> | |
5248 | |
5249 * xemacs/windows.texi (Other Window): | |
5250 | |
5251 * new-users-guide/files.texi (Saving Files): | |
5252 * new-users-guide/search.texi (Search and Replace): | |
5253 | |
5254 * lispref/abbrevs.texi (Abbrev Tables): | |
5255 * lispref/abbrevs.texi (Defining Abbrevs): | |
5256 * lispref/abbrevs.texi (Abbrev Files): | |
5257 * lispref/annotations.texi (Annotation Primitives): | |
5258 * lispref/backups.texi (Auto-Saving): | |
5259 * lispref/backups.texi (Reverting): | |
5260 * lispref/buffers.texi (Current Buffer): | |
5261 * lispref/buffers.texi (Buffer Names): | |
5262 * lispref/buffers.texi (Buffer Modification): | |
5263 * lispref/buffers.texi (Read Only Buffers): | |
5264 * lispref/buffers.texi (The Buffer List): | |
5265 * lispref/buffers.texi (Killing Buffers): | |
5266 * lispref/buffers.texi (Indirect Buffers): | |
5267 * lispref/building.texi (Building XEmacs): | |
5268 * lispref/building.texi (Garbage Collection): | |
5269 * lispref/commands.texi (Interactive Call): | |
5270 * lispref/commands.texi (Events): | |
5271 * lispref/commands.texi (Event Predicates): | |
5272 * lispref/commands.texi (Working With Events): | |
5273 * lispref/commands.texi (Converting Events): | |
5274 * lispref/commands.texi (Key Sequence Input): | |
5275 * lispref/commands.texi (Reading One Event): | |
5276 * lispref/commands.texi (Waiting): | |
5277 * lispref/commands.texi (Prefix Command Arguments): | |
5278 * lispref/commands.texi (Recursive Editing): | |
5279 * lispref/compile.texi (Compilation Functions): | |
5280 * lispref/compile.texi (Compiled-Function Objects): | |
5281 * lispref/consoles-devices.texi (Basic Device Functions): | |
5282 * lispref/consoles-devices.texi (Console Types and Device Classes): | |
5283 * lispref/consoles-devices.texi (Connecting to a Console or Device): | |
5284 * lispref/control.texi (Signaling Errors): | |
5285 * lispref/customize.texi (Type Keywords): | |
5286 * lispref/databases.texi (Connecting to a Database): | |
5287 * lispref/databases.texi (Working With a Database): | |
5288 * lispref/databases.texi (Other Database Functions): | |
5289 * lispref/debugging.texi (Function Debugging): | |
5290 * lispref/display.texi (Refresh Screen): | |
5291 * lispref/display.texi (The Echo Area): | |
5292 * lispref/display.texi (Blinking): | |
5293 * lispref/edebug-inc.texi (Tracing): | |
5294 * lispref/edebug-inc.texi (Instrumenting Macro Calls): | |
5295 * lispref/edebug-inc.texi (Edebug Options): | |
5296 * lispref/eval.texi (Function Indirection): | |
5297 * lispref/extents.texi (Creating and Modifying Extents): | |
5298 * lispref/extents.texi (Finding Extents): | |
5299 * lispref/extents.texi (Mapping Over Extents): | |
5300 * lispref/extents.texi (Extent Properties): | |
5301 * lispref/faces.texi (Basic Face Functions): | |
5302 * lispref/faces.texi (Face Properties): | |
5303 * lispref/faces.texi (Face Convenience Functions): | |
5304 * lispref/faces.texi (Other Face Display Functions): | |
5305 * lispref/faces.texi (Font Instance Characteristics): | |
5306 * lispref/faces.texi (Color Specifiers): | |
5307 * lispref/files.texi (Visiting Functions): | |
5308 * lispref/files.texi (Reading from Files): | |
5309 * lispref/files.texi (Changing File Attributes): | |
5310 * lispref/files.texi (File Names): | |
5311 * lispref/files.texi (File Name Components): | |
5312 * lispref/files.texi (Directory Names): | |
5313 * lispref/files.texi (Relative File Names): | |
5314 * lispref/files.texi (File Name Expansion): | |
5315 * lispref/files.texi (File Name Completion): | |
5316 * lispref/files.texi (User Name Completion): | |
5317 * lispref/files.texi (Magic File Names): | |
5318 * lispref/files.texi (Creating a Partial File): | |
5319 * lispref/files.texi (Format Conversion): | |
5320 * lispref/frames.texi (Creating Frames): | |
5321 * lispref/frames.texi (Property Access): | |
5322 * lispref/frames.texi (Size and Position): | |
5323 * lispref/frames.texi (Deleting Frames): | |
5324 * lispref/frames.texi (Finding All Frames): | |
5325 * lispref/frames.texi (Frames and Windows): | |
5326 * lispref/frames.texi (Visibility of Frames): | |
5327 * lispref/frames.texi (Frame Configurations): | |
5328 * lispref/functions.texi (Calling Functions): | |
5329 * lispref/functions.texi (Function Cells): | |
5330 * lispref/glyphs.texi (Creating Glyphs): | |
5331 * lispref/glyphs.texi (Image Specifiers): | |
5332 * lispref/glyphs.texi (Image Instance Types): | |
5333 * lispref/glyphs.texi (Image Instance Functions): | |
5334 * lispref/gutter.texi (Creating Gutter): | |
5335 * lispref/gutter.texi (Specifying a Gutter): | |
5336 * lispref/gutter.texi (Other Gutter Variables): | |
5337 * lispref/help.texi (Accessing Documentation): | |
5338 * lispref/help.texi (Help Functions): | |
5339 * lispref/help.texi (Obsoleteness): | |
5340 * lispref/internationalization.texi (Domain Specification): | |
5341 * lispref/intro.texi (Caveats): | |
5342 * lispref/keymaps.texi (Active Keymaps): | |
5343 * lispref/keymaps.texi (Functions for Key Lookup): | |
5344 * lispref/keymaps.texi (Changing Key Bindings): | |
5345 * lispref/keymaps.texi (Scanning Keymaps): | |
5346 * lispref/ldap.texi (The High-Level LDAP API): | |
5347 * lispref/ldap.texi (Low-level Operations on a LDAP Server): | |
5348 * lispref/ldap.texi (Encoder/Decoder Functions): | |
5349 * lispref/lists.texi (Setcar): | |
5350 * lispref/lists.texi (Setcdr): | |
5351 * lispref/lists.texi (Working With Normal Plists): | |
5352 * lispref/lists.texi (Working With Lax Plists): | |
5353 * lispref/loading.texi (Autoload): | |
5354 * lispref/loading.texi (Named Features): | |
5355 * lispref/markers.texi (Creating Markers): | |
5356 * lispref/markers.texi (Changing Markers): | |
5357 * lispref/markers.texi (The Mark): | |
5358 * lispref/menus.texi (Modifying Menus): | |
5359 * lispref/menus.texi (Pop-Up Menus): | |
5360 * lispref/menus.texi (Menu Accelerator Functions): | |
5361 * lispref/minibuf.texi (Text from Minibuffer): | |
5362 * lispref/minibuf.texi (Object from Minibuffer): | |
5363 * lispref/minibuf.texi (Basic Completion): | |
5364 * lispref/minibuf.texi (High-Level Completion): | |
5365 * lispref/minibuf.texi (Reading a Password): | |
5366 * lispref/minibuf.texi (Minibuffer Misc): | |
5367 * lispref/mouse.texi (Mouse Tracking): | |
5368 * lispref/syntax.texi (Syntax Table Functions): | |
5369 * lispref/numbers.texi (Arithmetic Operations): | |
5370 * lispref/numbers.texi (Rounding Operations): | |
5371 * lispref/numbers.texi (Math Functions): | |
5372 * lispref/objects.texi (String Type): | |
5373 * lispref/objects.texi (Equality Predicates): | |
5374 * lispref/os.texi (Killing XEmacs): | |
5375 * lispref/os.texi (Suspending XEmacs): | |
5376 * lispref/os.texi (System Environment): | |
5377 * lispref/os.texi (Time Conversion): | |
5378 * lispref/os.texi (Timers): | |
5379 * lispref/os.texi (Input Modes): | |
5380 * lispref/os.texi (Translating Input): | |
5381 * lispref/os.texi (Terminal Output): | |
5382 * lispref/os.texi (Flow Control): | |
5383 * lispref/positions.texi (Character Motion): | |
5384 * lispref/positions.texi (Word Motion): | |
5385 * lispref/positions.texi (Text Lines): | |
5386 * lispref/positions.texi (Screen Lines): | |
5387 * lispref/positions.texi (List Motion): | |
5388 * lispref/positions.texi (Narrowing): | |
5389 * lispref/postgresql.texi (Asynchronous Interface Functions): | |
5390 * lispref/processes.texi (Subprocess Creation): | |
5391 * lispref/processes.texi (Synchronous Processes): | |
5392 * lispref/processes.texi (Asynchronous Processes): | |
5393 * lispref/processes.texi (Process Information): | |
5394 * lispref/processes.texi (Input to Processes): | |
5395 * lispref/processes.texi (Signals to Processes): | |
5396 * lispref/processes.texi (Process Buffers): | |
5397 * lispref/processes.texi (Filter Functions): | |
5398 * lispref/processes.texi (Network): | |
5399 * lispref/range-tables.texi (Working With Range Tables): | |
5400 * lispref/searching.texi (String Search): | |
5401 * lispref/searching.texi (Regexp Search): | |
5402 * lispref/searching.texi (POSIX Regexps): | |
5403 * lispref/searching.texi (Replacing Match): | |
5404 * lispref/searching.texi (Entire Match Data): | |
5405 * lispref/sequences.texi (Bit Vector Functions): | |
5406 * lispref/specifiers.texi (Adding Specifications): | |
5407 * lispref/specifiers.texi (Creating Specifiers): | |
5408 * lispref/specifiers.texi (Specifier Validation Functions): | |
5409 * lispref/specifiers.texi (Other Specification Functions): | |
5410 * lispref/streams.texi (Output Variables): | |
5411 * lispref/symbols.texi (Other Plists): | |
5412 * lispref/text.texi (Insertion): | |
5413 * lispref/text.texi (Commands for Insertion): | |
5414 * lispref/text.texi (Deletion): | |
5415 * lispref/text.texi (User-Level Deletion): | |
5416 * lispref/text.texi (Kill Functions): | |
5417 * lispref/text.texi (Low-Level Kill Ring): | |
5418 * lispref/text.texi (Undo): | |
5419 * lispref/text.texi (Maintaining Undo): | |
5420 * lispref/text.texi (Margins): | |
5421 * lispref/text.texi (Sorting): | |
5422 * lispref/text.texi (Columns): | |
5423 * lispref/text.texi (Primitive Indent): | |
5424 * lispref/text.texi (Mode-Specific Indent): | |
5425 * lispref/text.texi (Region Indent): | |
5426 * lispref/text.texi (Case Changes): | |
5427 * lispref/text.texi (Examining Properties): | |
5428 * lispref/text.texi (Property Search): | |
5429 * lispref/text.texi (Registers): | |
5430 * lispref/text.texi (Transformations): | |
5431 * lispref/mule.texi (Charset Property Functions): | |
5432 * lispref/mule.texi (MULE Characters): | |
5433 * lispref/mule.texi (Composite Characters): | |
5434 * lispref/mule.texi (Coding System Properties): | |
5435 * lispref/mule.texi (Big5 and Shift-JIS Functions): | |
5436 * lispref/mule.texi (CCL Statements): | |
5437 * lispref/mule.texi (Calling CCL): | |
5438 * lispref/mule.texi (Category Tables): | |
5439 * lispref/toolbar.texi (Specifying the Toolbar): | |
5440 * lispref/toolbar.texi (Other Toolbar Variables): | |
5441 * lispref/tooltalk.texi (Elisp Interface for Sending Messages): | |
5442 * lispref/tooltalk.texi (Elisp Interface for Receiving Messages): | |
5443 * lispref/variables.texi (Creating Buffer-Local): | |
5444 * lispref/variables.texi (Variable Aliases): | |
5445 * lispref/windows.texi (Splitting Windows): | |
5446 * lispref/windows.texi (Deleting Windows): | |
5447 * lispref/windows.texi (Selecting Windows): | |
5448 * lispref/windows.texi (Cyclic Window Ordering): | |
5449 * lispref/windows.texi (Buffers and Windows): | |
5450 * lispref/windows.texi (Displaying Buffers): | |
5451 * lispref/windows.texi (Choosing Window): | |
5452 * lispref/windows.texi (Window Point): | |
5453 * lispref/windows.texi (Window Start): | |
5454 * lispref/windows.texi (Vertical Scrolling): | |
5455 * lispref/windows.texi (Horizontal Scrolling): | |
5456 * lispref/windows.texi (Resizing Windows): | |
5457 * lispref/windows.texi (Window Configurations): | |
5458 * lispref/x-windows.texi (X Selections): | |
5459 * lispref/x-windows.texi (Resources): | |
5460 * lispref/strings.texi (Creating Strings): | |
5461 * lispref/strings.texi (Character Codes): | |
5462 * lispref/strings.texi (Text Comparison): | |
5463 * lispref/strings.texi (String Conversion): | |
5464 * lispref/strings.texi (Formatting Strings): | |
5465 * lispref/strings.texi (Character Case): | |
5466 * lispref/strings.texi (Case Tables): | |
5467 * lispref/strings.texi (Char Table Types): | |
5468 * lispref/strings.texi (Working With Char Tables): | |
5469 Giant docstring parameter/Texinfo fixes. | |
5470 | |
5471 Don't use abbreviations for English words, especially when those | |
5472 words have other meanings. For example, use START, not BEG. | |
5473 Use OBJECT, not OBJ. | |
5474 Use VALUE, not VAL. | |
5475 Use BUFFER, not BUF. | |
5476 Use PROCESS, not PROC. (Sometimes PROC was used to mean FUNCTION!) | |
5477 Use CHARACTER, not CH or CHR. | |
5478 Use NUMBER, not NUM. | |
5479 Use COLUMN, not COL. | |
5480 Use POSITION, not POS. | |
5481 Use SYMBOL, not SYM. | |
5482 Use STRING, not STR. | |
5483 Use LIMIT, not LIM. | |
5484 Use OTHER-WINDOW-P, not OTHER-P. | |
5485 Use PRIORITY, not PRI. | |
5486 | |
5487 Use `non-nil', not `true'. | |
5488 | |
5489 Don't call a parameter an ALIST if it can also be a FUNCTION or OBARRAY. | |
5490 | |
5491 Use CASE-TABLE, CATEGORY-TABLE, CHAR-TABLE, etc. instead of TABLE. | |
5492 | |
5493 Try to find better parameter names than ARG. | |
5494 | |
5495 Use consistent parameter names. For example, s/NO-ERROR/NOERROR/g; | |
5496 | |
5497 Use type information in parameter names. For example, use | |
5498 (make-bit-vector length bit), not (make-bit-vector length init). | |
5499 | |
5500 Completion functions should have parameters with names like | |
5501 PARTIAL-FILENAME instead of the misleading FILENAME. | |
5502 | |
5503 Type predicates should consistently take an OBJECT parameter, | |
5504 since any object is valid as input. | |
5505 | |
5506 Use WHICH-FRAMES and WHICH-DEVICES parameters consistently for | |
5507 functions like next-window and next-frame that walk over window or | |
5508 frame lists. | |
5509 | |
5510 Deleted duplicated documentation for: | |
5511 one-window-p, format-insert-file | |
5512 | |
5513 Deleted 21 lines of VMS-specific texinfo documentation. | |
5514 | |
5515 Fixed up a few places where `_' was used in docstring parameter | |
5516 names instead of `-'. | |
5517 | |
5518 Fixed up places that used nil or t without @code. | |
5519 | |
5520 Fixed up places that erroneously used @code instead of @var. | |
5521 | |
5522 Fixed many typos. | |
5523 | |
5524 Fixed many places where the parameters mentioned in the docstring | |
5525 didn't match the actual parameters. | |
5526 | |
5527 Fixed 7 places that used `@var{nil}' instead of `@code{nil}'. | |
5528 | |
5529 Fixed 40 places where docstrings were missing trailing `.' | |
5530 | |
5531 Fixed the texi documentation of 41 functions where the | |
5532 interactiveness of the function in the documentation did not match | |
5533 the implementation. | |
5534 | |
5535 Fixed 117 functions where the names of parameters in the texi was | |
5536 different from the names in the implementation. | |
5537 | |
5538 Fixed the texi documentation of 137 functions where the parameter | |
5539 list of the function in the texi was semantically different from | |
5540 the implementation. | |
5541 | |
5542 2000-10-28 Adrian Aichner <adrian@xemacs.org> | |
5543 | |
5544 * xemacs-faq.texi (Q1.2.1): Use @html instead of @ifhtml to | |
5545 incorporate raw HTML output in the HTML version. | |
5546 | |
5547 2000-11-02 Stephen J. Turnbull <stephen@xemacs.org> | |
5548 | |
5549 * xemacs/menus.texi: | |
5550 * widget.texi: | |
5551 Typo fixes and tiny clarifications. | |
5552 | |
5553 2000-10-19 Stephen J. Turnbull <stephen@xemacs.org> | |
5554 | |
5555 * xemacs-faq.texi: Added Q2.0.13, Q2.0.14 - packages why and how. | |
5556 Added Q2.1.25 - function not found due to package not installed. | |
5557 | |
5558 * xemacs/xemacs.texi: | |
5559 * xemacs/abbrevs.texi: | |
5560 * xemacs/basic.texi: | |
5561 * xemacs/building.texi: | |
5562 * xemacs/packages.texi: | |
5563 * xemacs/startup.texi: | |
5564 Moved "Packages" node to "Important General Concepts" section. | |
5565 | |
5566 * xemacs/packages.texi: Added package list from etc/PACKAGES. | |
5567 | |
442 | 5568 2000-10-04 Martin Buchholz <martin@xemacs.org> |
5569 | |
5570 * XEmacs 21.2.36 is released. | |
5571 | |
5572 2000-09-27 Martin Buchholz <martin@xemacs.org> | |
5573 | |
5574 * lispref/processes.texi (Signals to Processes): Many corrections. | |
5575 | |
5576 2000-09-20 Martin Buchholz <martin@xemacs.org> | |
5577 | |
5578 * xemacs/startup.texi (Startup Paths): Minor fixes. | |
5579 | |
5580 2000-09-19 Martin Buchholz <martin@xemacs.org> | |
5581 | |
5582 * *: Spelling mega-patch | |
5583 | |
5584 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
5585 | |
5586 * internals/internals.texi (Low-Level Modules): | |
5587 Correct the list of source files. | |
5588 | |
5589 2000-08-24 Adrian Aichner <aichner@ecf.teradyne.com> | |
5590 | |
5591 * emodules.texi (Introduction): Trivial typo fix. | |
5592 | |
5593 2000-08-24 Martin Buchholz <martin@xemacs.org> | |
5594 | |
5595 * emodules.texi (Initialization Mode): Spell-Check. | |
5596 | |
5597 2000-08-24 Martin Buchholz <martin@xemacs.org> | |
5598 | |
5599 * lispref/databases.texi (Connecting to a Database): | |
5600 s/berkeley_db/berkeley-db/. Too much C programming. | |
5601 | |
5602 2000-08-02 Stephen J. Turnbull <stephen@xemacs.org> | |
5603 | |
5604 * xemacs/custom.texi (Menubar Resources): Document FontSet resource. | |
5605 | |
5606 2000-07-30 Ben Wing <ben@xemacs.org> | |
5607 | |
5608 * xemacs\search.texi (Regexp Search): | |
5609 * xemacs\search.texi (Regexps): | |
5610 Synch up with updated docs below (describing non-greedy | |
5611 operators and such). | |
5612 | |
5613 2000-07-30 Ben Wing <ben@xemacs.org> | |
5614 | |
5615 * lispref\searching.texi (Syntax of Regexps): | |
5616 Document ??, which we've supported since 20.4. | |
5617 | |
5618 2000-07-31 Sandra Wambold <wambold@cygnus.com> | |
5619 | |
5620 * xemacs-faq.texi: Minor updates in first two sections | |
5621 | |
5622 2000-07-27 Andy Piper <andy@xemacs.org> | |
5623 | |
5624 * lispref/hash-tables.texi: add new hash table type. | |
5625 | |
5626 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
5627 | |
5628 * XEmacs 21.2.35 is released. | |
5629 | |
5630 2000-07-10 Martin Buchholz <martin@xemacs.org> | |
5631 | |
5632 * Makefile: rm -f ==> $(RM) | |
5633 | |
5634 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
5635 | |
454 | 5636 * lispref/postgresql.texi: |
442 | 5637 - Don't mention ".so" extension. |
5638 - Make installation instructions more generic. | |
5639 - Mention M-x describe-installation. | |
5640 | |
5641 2000-07-08 Ben Wing <ben@xemacs.org> | |
5642 | |
5643 * xemacs-faq.texi (Q6.4.1): Update the perennial nonstart under | |
5644 Windows problem with binary locs and latest info. | |
5645 | |
5646 2000-06-17 Adrian Aichner <aichner@ecf.teradyne.com> | |
5647 | |
5648 * lispref/glyphs.texi: Fix trivial typos. | |
5649 * lispref/gutter.texi: Ditto. | |
5650 * lispref/loading.texi: Ditto. | |
5651 * lispref/postgresql.texi: Ditto. | |
5652 | |
5653 2000-06-14 Adrian Aichner <aichner@ecf.teradyne.com> | |
5654 | |
5655 * internals/internals.texi (Markers and Extents): Fix trivial typo. | |
5656 | |
5657 2000-06-11 Adrian Aichner <aichner@ecf.teradyne.com> | |
5658 | |
5659 * make-stds.texi: Fix trivial typos. | |
5660 * xemacs-faq.texi: Ditto. | |
5661 * internals/internals.texi: Ditto. | |
5662 * new-users-guide/edit.texi: Ditto. | |
5663 * new-users-guide/modes.texi: Ditto. | |
5664 * new-users-guide/region.texi: Ditto. | |
5665 | |
5666 2000-06-10 Ben Wing <ben@xemacs.org> | |
5667 | |
5668 * xemacs-faq.texi (Q6.1.2): | |
5669 * xemacs-faq.texi (Q6.1.5): | |
5670 * xemacs-faq.texi (Q6.1.6): | |
5671 Corrections for Cygwin, MinGW. | |
5672 | |
5673 2000-06-07 Adrian Aichner <aichner@ecf.teradyne.com> | |
5674 | |
5675 * xemacs/basic.texi: Fix trivial typos. | |
5676 * xemacs/buffers.texi: Fix trivial typos. | |
5677 * xemacs/building.texi: Ditto. | |
5678 * xemacs/glossary.texi: Ditto. | |
5679 * xemacs/gnu.texi: Ditto. | |
5680 * xemacs/help.texi: Ditto. | |
5681 * xemacs/keystrokes.texi: Ditto. | |
5682 * xemacs/programs.texi: Ditto. | |
5683 * xemacs/search.texi: Ditto. | |
5684 * xemacs/sending.texi: Ditto. | |
5685 | |
5686 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
5687 | |
5688 * XEmacs 21.2.34 is released. | |
5689 | |
5690 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5691 | |
5692 * xemacs/basic.texi: Document translation of tutorial. | |
5693 * xemacs/startup.texi: Remove lock-directory. | |
5694 * xemacs/enterings.texi: Update. | |
5695 | |
5696 2000-05-17 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5697 | |
5698 * lispref/display.texi: | |
5699 * lispref/faces.texi: | |
5700 * lispref/glyphs.texi: | |
5701 * lispref/gutter.texi: | |
5702 * lispref/modes.texi: | |
5703 * lispref/specifiers.texi: | |
5704 * lispref/toolbar.texi: | |
5705 Update. Merge Ben's doc-string update. | |
5706 | |
5707 2000-05-08 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5708 | |
5709 * xemacs/basic.texi: | |
5710 * xemacs/enterings.texi: | |
5711 * xemacs/mini.texi: | |
5712 Partial sync with FSF Emacs 20.6 and some update. | |
5713 | |
5714 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
5715 | |
5716 * XEmacs 21.2.33 is released. | |
5717 | |
5718 2000-04-11 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5719 | |
5720 * xemacs-faq.texi (Q2.1.24): Removed wrong header. | |
5721 | |
5722 2000-04-01 Oscar Figueiredo <oscar@xemacs.org> | |
5723 | |
5724 * lispref/ldap.texi: Documentation of the add/modify/delete and | |
5725 internationalization APIs | |
5726 | |
5727 * lispref/lispref.texi: Updated LDAP-related menus | |
5728 | |
5729 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
5730 | |
5731 * XEmacs 21.2.32 is released. | |
5732 | |
5733 2000-03-15 SL Baur <steve@musashimaru.m17n.org> | |
5734 | |
5735 * lispref/postgresql.texi (Unimplemented libpq Functions): Update | |
5736 documentation to reflect the latest code. | |
5737 | |
5738 2000-03-07 SL Baur <steve@musashimaru.m17n.org> | |
5739 | |
5740 * lispref/postgresql.texi (PostgreSQL Support): New File. | |
5741 | |
5742 * lispref/ldap.texi: Insert PostgreSQL/libpq chapter. | |
5743 * lispref/lispref.texi (Top): Ditto. | |
5744 * lispref/internationalization.texi: Ditto. | |
5745 | |
5746 2000-03-07 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5747 | |
5748 * lispref/glyphs.texi (Image Specifiers): Remove parenthesis. | |
5749 | |
5750 2000-03-06 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5751 | |
5752 * xemacs-faq.texi: Put node before section. | |
5753 | |
5754 2000-03-05 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
5755 | |
5756 * xemacs-faq.texi (Macintosh port): Made texinfmt-friendly. | |
5757 | |
5758 2000-03-01 Sandra Wambold <wambold@xemacs.org> | |
5759 | |
5760 * xemacs-faq.texi: Added 6.4.1. XEmacs won't start on Windows | |
5761 | |
5762 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5763 | |
5764 * xemacs/xemacs.texi: Detailed menu update. | |
5765 | |
5766 2000-01-28 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5767 | |
5768 * xemacs/help.texi: Synch with FSF 20.5. Update. | |
5769 | |
5770 2000-02-21 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5771 | |
5772 * lispref/minibuf.texi: Add default argument documentation. | |
5773 | |
5774 2000-02-27 Martin Buchholz <martin@xemacs.org> | |
5775 | |
5776 * internals/internals.texi (lrecords): Update docs for new lisp | |
5777 object representation. | |
5778 | |
5779 2000-02-25 Martin Buchholz <martin@xemacs.org> | |
5780 | |
5781 * internals/internals.texi (Techniques for XEmacs Developers): | |
5782 Document INLINE_HEADER and how to create macros and inline functions. | |
5783 Cleanup entire section. | |
5784 | |
2069 | 5785 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 5786 |
5787 * man/lispref/gutter.texi: New file describing gutter API. | |
5788 | |
5789 * man/lispref/lispref.texi, man/lispref/scrollbars.texi, | |
5790 | |
5791 * man/lispref/toolbar.texi: Fixup links to new node Gutter. | |
5792 | |
2069 | 5793 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 5794 |
5795 * man/lispref/frames.texi, man/xemacs/custom.texi, | |
5796 man/xemacs/frame.texi, man/xemacs/glossary.texi: Mention menubars, | |
5797 toolbars, and gutters as optional components of frames, with | |
5798 pointers to descriptions. | |
5799 | |
2069 | 5800 2000-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
442 | 5801 |
5802 * man/lispref/mule.texi: Substantial reorganization and | |
5803 revision for style of descriptions of character sets, | |
5804 encodings, and coding systems. Addition of a complete table | |
5805 of coding systems as of XEmacs 21.2.19. | |
5806 | |
5807 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
5808 | |
5809 * XEmacs 21.2.31 is released. | |
5810 | |
5811 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
5812 | |
5813 * XEmacs 21.2.30 is released. | |
5814 | |
5815 2000-02-21 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
5816 | |
5817 * internals/internals.texi: Made texinfmt-friendly. | |
5818 | |
5819 2000-01-20 Mark Thomas <mthomas@jprc.com> | |
5820 | |
5821 * lispref/backups.texi (Numbered Backups): | |
5822 * xemacs/files.texi (Backup Deletion): | |
5823 Change trim-versions-without-asking to delete-old-versions. | |
5824 | |
5825 2000-02-19 Martin Buchholz <martin@xemacs.org> | |
5826 | |
5827 * internals/internals.texi (Conversion to and from External Data): | |
5828 Document TO_EXTERNAL_FORMAT and friends. | |
5829 Doc bug fixes. | |
5830 | |
5831 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
5832 | |
5833 * XEmacs 21.2.29 is released. | |
5834 | |
5835 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
5836 | |
5837 * internals/internals.texi: Integrate Olivier's portable dumping docs. | |
5838 | |
5839 2000-02-09 Martin Buchholz <martin@xemacs.org> | |
5840 | |
5841 * lispref/symbols.texi (Object Plists): | |
5842 Document `object-plist'. | |
5843 Document `remprop'. | |
5844 Rework all plist frobbing docs for accuracy. | |
5845 | |
440 | 5846 2000-02-07 Martin Buchholz <martin@xemacs.org> |
5847 | |
5848 * XEmacs 21.2.28 is released. | |
5849 | |
5850 2000-02-07 Martin Buchholz <martin@xemacs.org> | |
5851 | |
5852 * cl.texi: Remove (or replace by `get') references to `get*'. | |
5853 | |
5854 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5855 | |
5856 * widget.texi: | |
5857 * internals/internals.texi: | |
5858 * lispref/commands.texi: | |
5859 * lispref/consoles-devices.texi: | |
5860 * lispref/customize.texi: | |
5861 * lispref/dialog.texi: | |
5862 * lispref/extents.texi: | |
5863 * lispref/faces.texi: | |
5864 * lispref/glyphs.texi: | |
5865 * lispref/keymaps.texi: | |
5866 * lispref/lists.texi: | |
5867 * lispref/markers.texi: | |
5868 * lispref/menus.texi: | |
5869 * lispref/mule.texi: | |
5870 * lispref/objects.texi: | |
5871 * lispref/specifiers.texi: | |
5872 * lispref/toolbar.texi: | |
5873 * lispref/tooltalk.texi: | |
5874 * lispref/x-windows.texi: | |
5875 * new-users-guide/custom2.texi: | |
5876 * new-users-guide/help.texi: | |
5877 * new-users-guide/modes.texi: | |
5878 * xemacs/abbrevs.texi: | |
5879 * xemacs/buffers.texi: | |
5880 * xemacs/custom.texi: | |
5881 * xemacs/help.texi: | |
5882 * xemacs/keystrokes.texi: | |
5883 * xemacs/mini.texi: | |
5884 * xemacs/new.texi: | |
5885 * xemacs/packages.texi: | |
5886 * xemacs/programs.texi: | |
5887 * xemacs/sending.texi: | |
5888 Change ' -- ' to '---' since Texinfo formats --- to --. | |
5889 Untabify. TeX doesn't like TAB. | |
5890 | |
5891 2000-01-27 Sandra Wambold <wambold@xemacs.org> | |
5892 | |
5893 * xemacs-faq.texi (Q6.2.2): updated font instructions to include | |
5894 21.2.* | |
5895 | |
5896 2000-01-25 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5897 | |
5898 * xemacs-faq.texi: Untabify. | |
442 | 5899 |
440 | 5900 2000-01-22 Martin Buchholz <martin@xemacs.org> |
5901 | |
5902 * internals/internals.texi (General Coding Rules): Document why we | |
5903 #include <config.h> | |
5904 | |
5905 2000-01-21 Yoshiki Hayashi <yoshiki@xemacs.org> | |
5906 | |
5907 * xemacs-faq.texi: Change ' -- ' to '---'. | |
442 | 5908 |
440 | 5909 2000-01-19 Yoshiki Hayashi <yoshiki@xemacs.org> |
5910 | |
5911 * lispref/faces.texi (Face Properties): Document | |
5912 remove-face-property. | |
5913 | |
438 | 5914 2000-01-18 Martin Buchholz <martin@xemacs.org> |
5915 | |
5916 * XEmacs 21.2.27 is released. | |
5917 | |
5918 2000-01-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5919 | |
5920 * xemacs/regs.texi: Synch with FSF 20.5. | |
5921 | |
5922 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5923 | |
5924 * info.texi: Change cross reference from emacs to xemacs. | |
5925 | |
5926 2000-01-14 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5927 | |
5928 * xemacs/mini.texi: Synch with FSF 20.5. Update. | |
5929 | |
5930 2000-01-16 Martin Buchholz <martin@xemacs.org> | |
5931 | |
5932 * xemacs-faq.texi (Q2.1.15): Fix up @table formatting. | |
5933 | |
5934 2000-01-14 Martin Buchholz <martin@xemacs.org> | |
5935 | |
5936 * xemacs-faq.texi (Q2.1.15): Update dbx/gdb debugging info. | |
5937 | |
5938 2000-01-14 Sandra Wambold <wambold@xemacs.org> | |
5939 | |
5940 * xemacs-faq.texi: removed out-of-date XEmacs 19 questions. | |
5941 | |
5942 2000-01-14 Sandra Wambold <wambold@xemacs.org> | |
5943 | |
5944 * xemacs-faq.texi: Updated Macintosh information, | |
5945 updated OS/2 info, changed turn-on-pending-delete answer. | |
5946 | |
5947 2000-01-08 Martin Buchholz <martin@xemacs.org> | |
5948 | |
5949 * xemacs-faq.texi (Q2.1.15): Make debugging info current. | |
5950 | |
5951 2000-01-08 Hrvoje Niksic <hniksic@iskon.hr> | |
5952 | |
5953 * lispref/control.texi (Signaling Errors): Document that `signal' | |
5954 is continuable. | |
5955 (Signaling Errors): Document `cerror', `signal-error', and | |
5956 `check-argument-type'. | |
5957 (Handling Errors): Mention `debug-on-signal'. | |
5958 (Error Symbols): Document `define-error'. | |
5959 (Processing of Errors): Document `display-error' and | |
5960 `error-message-string'. | |
5961 | |
5962 2000-01-05 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5963 | |
5964 * internals/internals.texi: Remove latin-1 char. | |
5965 | |
5966 2000-01-05 Didier Verna <didier@xemacs.org> | |
5967 | |
5968 * xemacs/custom.texi (Key bindings using strings): add missing | |
5969 whitespace. | |
5970 | |
5971 * xemacs/xemacs.texi (Top): | |
5972 * new-users-guide/new-users-guide.texi (Top): add missing `@top' | |
5973 node. | |
5974 | |
5975 1999-12-24 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5976 | |
5977 * lispref/minibuf.texi (Reading a Password): New section. | |
5978 | |
5979 1999-12-21 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5980 | |
5981 * lispref/minibuf.texi: Remove documentation about | |
5982 minibuffer-local-ns-map, read-no-blanks-input. | |
5983 | |
5984 1999-12-21 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
5985 | |
5986 * lispref/minibuf.texi: Partial Synch with FSF manual. | |
5987 Add description about DEFAULT argument of reading functions. | |
5988 | |
436 | 5989 1999-12-31 Martin Buchholz <martin@xemacs.org> |
5990 | |
5991 * XEmacs 21.2.26 is released. | |
5992 | |
5993 1999-12-26 Karl M. Hegbloom <karlheg@inetarena.com> | |
5994 | |
5995 * internals/internals.texi (garbage_collect_1): Xemacs -> XEmacs | |
5996 | |
434 | 5997 1999-12-24 Martin Buchholz <martin@xemacs.org> |
5998 | |
5999 * XEmacs 21.2.25 is released. | |
6000 | |
6001 1999-12-21 Martin Buchholz <martin@xemacs.org> | |
6002 | |
6003 * lispref/text.texi (Near Point): Document `char-before'. | |
6004 | |
6005 1999-12-20 Adrian Aichner <adrian@xemacs.org> | |
6006 | |
6007 * widget.texi: Fix typos and possessive singular errors. Break | |
6008 long sentences for readability. Remove some redundant commas. | |
6009 | |
6010 1999-12-18 Martin Buchholz <martin@xemacs.org> | |
6011 | |
442 | 6012 * lispref/functions.texi (Mapping Functions): |
434 | 6013 Warn about mapping functions modifying their sequences. |
6014 | |
6015 1999-12-15 Sandra Wambold <wambold@xemacs.org> | |
6016 | |
6017 * xemacs-faq.texi: link to matlab.el added; misc. address changes | |
6018 | |
432 | 6019 1999-12-14 Martin Buchholz <martin@xemacs.org> |
6020 | |
6021 * XEmacs 21.2.24 is released. | |
6022 | |
6023 1999-12-07 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
6024 | |
6025 * xemacs/startup.texi (Startup Paths): fix typo: EMACSPACKAGEPATH | |
442 | 6026 instead of PACKAGEPATH |
432 | 6027 From Marcus Harnisch <harnisch@mikrom.de> |
6028 | |
430 | 6029 1999-12-07 Martin Buchholz <martin@xemacs.org> |
6030 | |
6031 * XEmacs 21.2.23 is released. | |
6032 | |
6033 1999-12-06 Sandra Wambold <wambold@pobox.com> | |
6034 | |
6035 * xemacs-faq.texi: Added MS-Windows questions; some other changes | |
6036 | |
6037 1999-11-29 Martin Buchholz <martin@xemacs.org> | |
6038 | |
442 | 6039 * info.texi (Top): |
430 | 6040 Remove @ifnottex, which gives old makeinfos indigestion. |
442 | 6041 * texinfo.texi (Top): |
430 | 6042 Revert to pre-texinfo-4.0 version, plus small changes to make |
6043 texinfo-3.12, texinfo-3.12f, texinfo-4.0, and TeX happy. | |
6044 | |
6045 1999-11-30 Sandra Wambold <wambold@cygnus.com> | |
6046 | |
6047 * xemacs-faq.texi: fixed and commented out bad URL links | |
6048 | |
428 | 6049 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
6050 | |
6051 * XEmacs 21.2.22 is released | |
6052 | |
6053 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
6054 | |
6055 * XEmacs 21.2.21 is released. | |
6056 | |
6057 1999-11-26 Martin Buchholz <martin@xemacs.org> | |
6058 | |
6059 * internals.texi (Lstream Functions): | |
6060 * internals.texi (Lstream Methods): | |
6061 Types have changed to size_t and ssize_t. Document them. | |
6062 | |
6063 1999-08-12 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
6064 | |
6065 * xemacs-faq.texi (Q4.4.2): added FAQ about Sun Workshop on | |
6066 XEmacs 21 | |
6067 | |
6068 1999-11-15 Martin Buchholz <martin@xemacs.org> | |
6069 | |
6070 * xemacs/programs.texi: Upgrade to etags Version 13.32 | |
442 | 6071 |
428 | 6072 * Makefile: |
6073 - Make sure the default target is `info' instead of cl.info. | |
6074 - Use $(INFODIR) consistently where appropriate. | |
6075 - Remove makeinfo-1.68 warning. (Usually only maintainer rebuilds info). | |
6076 - Comment out unused macros: EMACS EMACSFLAGS | |
6077 - Replace `-rm -f' with `rm -f', XPG4 guarantees exit code == 0. | |
6078 - Get dependencies up to date. | |
6079 | |
6080 * internals/Makefile: | |
6081 * xemacs/Makefile: | |
6082 * lispref/Makefile: | |
6083 * new-users-guide/Makefile: | |
6084 * lispref/index.perm: | |
6085 * lispref/index.unperm: | |
6086 * lispref/permute-index: | |
6087 * internals/index.perm: | |
6088 * internals/index.unperm: | |
6089 Remove these Makefiles. | |
6090 Include all functionality in man/Makefile. | |
6091 Support only non-permuted indexes for simplicity. | |
6092 | |
6093 * emodules.texi: | |
6094 - TeX doesn't tolerate `_' in variable names; use `-' instead. | |
6095 | |
6096 * lispref/commands.texi: | |
6097 * lispref/display.texi: | |
6098 * lispref/faces.texi: | |
6099 * lispref/functions.texi: | |
6100 * lispref/keymaps.texi: | |
6101 * lispref/lists.texi: | |
6102 * lispref/modes.texi: | |
6103 * lispref/objects.texi: | |
6104 * lispref/os.texi: | |
6105 * lispref/sequences.texi: | |
6106 * lispref/strings.texi: | |
6107 * lispref/text.texi: | |
6108 * new-users-guide/custom1.texi: | |
6109 * xemacs/custom.texi: | |
6110 * xemacs/menus.texi: | |
6111 - Make sources compatible with makeinfo 4.0 *and* 3.12. | |
6112 - Replace @sc{ASCII} with @sc{ascii}, etc... | |
6113 - Replace @var{(foo)} with (@var{foo}), etc... | |
6114 | |
6115 * info-stnd.texi: Remove. Who cares about the standalone info reader? | |
6116 | |
6117 * texinfo.tex: | |
6118 * texinfo.texi: | |
6119 * info.texi: | |
6120 * standards.texi: | |
6121 * make-stds.texi: | |
6122 Import FSF-maintained files from texinfo-4.0. | |
6123 | |
6124 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6125 | |
6126 * XEmacs 21.2.20 is released | |
6127 | |
6128 1999-08-30 Robert Pluim <rpluim@bigfoot.com> | |
6129 | |
6130 * xemacs/packages.texi (Using Packages): Added description of | |
6131 package-get-package-provider. | |
6132 | |
6133 1999-07-27 Charles G Waldman <cgw@fnal.gov> | |
6134 | |
6135 * xemacs-faq.texi (Q5.0.6): Describe `shell-multiple-shells' | |
6136 | |
434 | 6137 1999-08-01 Adrian Aichner <adrian@xemacs.org> |
428 | 6138 |
6139 * xemacs/programs.texi (Balanced Editing): Remove broken | |
6140 line-break. | |
6141 | |
6142 * xemacs-faq.texi (Q1.0.6): Provide correct location in XEmacs | |
6143 menus. | |
6144 (Q1.4.1): ditto. | |
6145 (Q1.4.3): ditto. | |
6146 (Q2.0.5): Hyphenate words. | |
6147 | |
6148 * info.texi (Add): Fix one typo. | |
6149 | |
6150 1999-08-23 Stephane Epardaud <stephane@lunatech.com> | |
6151 | |
6152 * internals/internals.texi (Garbage Collection - Step by Step): | |
6153 just added some dots to shut up compile warnings. | |
6154 | |
6155 1999-08-19 Matthias Neubauer <neubauer@informatik.uni-tuebingen.de> | |
6156 | |
6157 * internals/internals.texi (Garbage Collection - Step by Step): | |
6158 new section in chapter Allocation of Objects in XEmacs Lisp. | |
6159 | |
6160 1999-07-28 Andy Piper <andy@xemacs.org> | |
6161 | |
6162 * internals.texi (Glyphs): add some glyph documentation. | |
6163 | |
6164 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6165 | |
6166 * XEmacs 21.2.19 is released | |
6167 | |
434 | 6168 1999-07-10 Adrian Aichner <adrian@xemacs.org> |
428 | 6169 |
6170 * emodules.texi: Use @set emacs and @value{emacs} instead of | |
6171 @macro (unsupported by texinfo package). Remove stray @code. | |
6172 * custom.texi: Add info extension to @setfilename. | |
6173 * texinfo.texi: Ditto. | |
6174 * widget.texi: Ditto. | |
6175 * packages.texi: Reword a sentence, fixing @item Decide where to | |
6176 install ... | |
6177 | |
442 | 6178 1999-07-19 Didier Verna <didier@xemacs.org> |
428 | 6179 |
6180 * custom.texi (Wishlist): removed the Custom Comments wishlist | |
6181 entry. They are implemented. | |
6182 | |
6183 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6184 | |
6185 * XEmacs 21.2.18 is released | |
6186 | |
6187 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6188 | |
6189 * XEmacs 21.2.17 is released | |
6190 | |
6191 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6192 | |
6193 * XEmacs 21.2.16 is released | |
6194 | |
6195 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6196 | |
6197 * XEmacs 21.2.15 is released | |
6198 | |
6199 1999-05-30 Albert Chin-A-Young <china@thewrittenword.com> | |
6200 | |
6201 * custom.texi, external-widget.texi: Minor | |
6202 fix to get info DIR entry correct. | |
6203 | |
6204 1999-05-22 Vin Shelton <acs@xemacs.org> | |
6205 | |
6206 * xemacs/cmdargs.texi: | |
6207 Document -private. | |
6208 | |
6209 1999-05-16 Mike McEwan <mike@lotusland.demon.co.uk> | |
6210 | |
6211 * Makefile: Added `emodules.info' to info targets. | |
6212 | |
6213 1999-05-20 Karl M. Hegbloom <karlheg@debian.org> | |
6214 | |
6215 * internals/internals.texi (The XEmacs Object System | |
6216 (Abstractly Speaking)): typo. | |
6217 | |
6218 1999-05-16 Hrvoje Niksic <hniksic@srce.hr> | |
6219 | |
6220 * lispref/text.texi (Substitution): Document improvements in | |
6221 `translate-region'. | |
6222 | |
6223 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6224 | |
6225 * XEmacs 21.2.14 is released | |
6226 | |
6227 1999-05-11 Albert Chin-A-Young <china@thewrittenword.com> | |
6228 | |
6229 * man/internals/internals.texi: | |
6230 * man/lispref/lispref.texi: | |
6231 * man/new-users-guide/new-users-guide.texi: | |
6232 * man/xemacs/xemacs.texi: | |
6233 * man/cl.texi: | |
6234 * man/custom.texi: | |
6235 * man/term.texi: | |
6236 * man/termcap.texi: | |
6237 * man/widget.texi: | |
6238 * man/xemacs-faq.texi: | |
6239 * man/external-widget.texi: | |
6240 Added info dir entries so install-info will add them to | |
6241 the common `dir' file. | |
6242 | |
2069 | 6243 1999-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
428 | 6244 |
6245 * man/lispref/mule.texi: Document CCL | |
6246 - add sections: syntax, statements, expressions, and examples. | |
6247 - fix naming and description errors. | |
6248 - update links in neighboring nodes. | |
6249 | |
6250 1999-04-24 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
6251 | |
6252 * lispref/eval.texi (Eval): default for max-lisp-eval-depth is 500. | |
6253 | |
6254 1999-04-23 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
6255 | |
6256 * xemacs-faq.texi (Q3.0.7): refer to correct menu (Option->Frame | |
6257 Appearance) | |
6258 | |
6259 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6260 | |
6261 * XEmacs 21.2.13 is released | |
6262 | |
6263 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6264 | |
6265 * XEmacs 21.2.12 is released | |
6266 | |
6267 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6268 | |
6269 * XEmacs 21.2.11 is released | |
6270 | |
6271 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6272 | |
6273 * XEmacs 21.2.10 is released | |
6274 | |
6275 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6276 | |
6277 * XEmacs 21.2.9 is released | |
6278 | |
434 | 6279 1999-01-14 Adrian Aichner <adrian@xemacs.org> |
428 | 6280 |
6281 * internals\internals.texi (Techniques for XEmacs Developers): | |
6282 Fixing documentation. | |
6283 (Basic Lisp Modules): ditto. | |
6284 | |
6285 1999-01-10 J. Kean Johnston <jkj@sco.com> | |
6286 | |
6287 * emodules.texi: New file to describe XEmacs modules. | |
6288 | |
6289 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
6290 | |
6291 * XEmacs 21.2.8 is released. | |
6292 | |
6293 1998-12-24 Martin Buchholz <martin@xemacs.org> | |
6294 | |
6295 * XEmacs 21.2.7 is released. | |
6296 | |
6297 1998-12-16 Andy Piper <andy@xemacs.org> | |
6298 | |
6299 * XEmacs 21.2.6 is released | |
6300 | |
6301 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
6302 | |
6303 * XEmacs 21.2.5 is released | |
6304 | |
6305 1998-11-30 Martin Buchholz <martin@xemacs.org> | |
6306 | |
6307 * xemacs/startup.texi (Startup Paths): | |
6308 * xemacs/custom.texi (Widgets): | |
6309 * xemacs-faq.texi (Q3.0.5): | |
6310 * xemacs-faq.texi (Top): | |
6311 | |
6312 * widget.texi (info-link): | |
6313 | |
6314 * lispref/objects.texi (Type Predicates): | |
6315 * lispref/objects.texi (Hash Table Type): | |
6316 * lispref/objects.texi (Primitive Types): | |
6317 * lispref/objects.texi (Lisp Data Types): | |
6318 * lispref/macros.texi (Backquote): | |
6319 * lispref/hash-tables.texi (Weak Hash Tables): | |
6320 * lispref/hash-tables.texi: | |
6321 * lispref/errors.texi (Standard Errors): | |
6322 * lispref/compile.texi (Disassembly): | |
6323 * lispref/compile.texi (Compiled-Function Objects): | |
6324 * lispref/compile.texi (Eval During Compile): | |
6325 * lispref/compile.texi (Docs and Compilation): | |
6326 * lispref/compile.texi (Compilation Functions): | |
6327 * lispref/compile.texi (Speed of Byte-Code): | |
6328 * lispref/compile.texi (Byte Compilation): | |
6329 * lispref/building.texi (Garbage Collection): | |
6330 | |
6331 * internals/internals.texi (Simple Special Forms): | |
6332 * internals/internals.texi (Evaluation; Stack Frames; Bindings): | |
6333 * internals/internals.texi (Specifics of the Event Gathering Mechanism): | |
6334 * internals/internals.texi (String): | |
6335 * internals/internals.texi (Introduction to Allocation): | |
6336 * internals/internals.texi (Allocation of Objects in XEmacs Lisp): | |
6337 * internals/internals.texi (Modules for Internationalization): | |
6338 * internals/internals.texi (Modules for Interfacing with X Windows): | |
6339 * internals/internals.texi (Modules for Interfacing with the Operating System): | |
6340 * internals/internals.texi (Modules for Other Aspects of the Lisp Interpreter and Object System): | |
6341 * internals/internals.texi (Modules for Interfacing with the File System): | |
6342 * internals/internals.texi (Modules for the Redisplay Mechanism): | |
6343 * internals/internals.texi (Modules for the Basic Displayable Lisp Objects): | |
6344 * internals/internals.texi (Editor-Level Control Flow Modules): | |
6345 * internals/internals.texi (Modules for Standard Editing Operations): | |
6346 * internals/internals.texi (Basic Lisp Modules): | |
6347 * internals/internals.texi (Low-Level Modules): | |
6348 * internals/internals.texi (A Summary of the Various XEmacs Modules): | |
6349 * internals/internals.texi (An Example of Mule-Aware Code): | |
6350 * internals/internals.texi (Working With Character and Byte Positions): | |
6351 * internals/internals.texi (Writing Lisp Primitives): | |
6352 * internals/internals.texi (General Coding Rules): | |
6353 * internals/internals.texi (How Lisp Objects Are Represented in C): | |
6354 * internals/internals.texi (The XEmacs Object System (Abstractly Speaking)): | |
6355 * internals/internals.texi (XEmacs From the Perspective of Building): | |
6356 * internals/internals.texi (The Lisp Language): | |
6357 * internals/internals.texi (Top): | |
6358 * internals/internals.texi: | |
6359 - rewrite Internals manual | |
6360 | |
6361 * cl.texi (Porting Common Lisp): | |
6362 * cl.texi (Hash Tables): | |
6363 * cl.texi (Association Lists): | |
6364 * cl.texi (Declarations): | |
6365 * cl.texi (For Clauses): | |
6366 * cl.texi (Basic Setf): | |
6367 * cl.texi (Equality Predicates): | |
6368 - mega patch | |
6369 | |
6370 1998-11-28 SL Baur <steve@altair.xemacs.org> | |
6371 | |
6372 * XEmacs 21.2-beta4 is released. | |
6373 | |
6374 1998-10-15 SL Baur <steve@altair.xemacs.org> | |
6375 | |
6376 * XEmacs 21.2-beta3 is released. | |
6377 | |
6378 1998-10-09 SL Baur <steve@altair.xemacs.org> | |
6379 | |
6380 * Makefile (MAKEINFO): Undo no-split change. | |
6381 | |
6382 1998-09-29 SL Baur <steve@altair.xemacs.org> | |
6383 | |
6384 * XEmacs 21.2-beta2 is released. | |
6385 | |
6386 1998-09-20 Hrvoje Niksic <hniksic@srce.hr> | |
6387 | |
6388 * lispref/customize.texi: New file. | |
6389 | |
6390 1998-09-09 Hrvoje Niksic <hniksic@srce.hr> | |
6391 | |
6392 * internals/internals.texi (Coding for Mule): New node and | |
6393 section. | |
6394 | |
6395 1998-09-03 Darryl Okahata <darrylo@sr.hp.com> | |
6396 | |
6397 * xemacs/packages.texi: Document manually installing binary packages. | |
6398 | |
6399 1998-09-02 Jeff Miller <jmiller@smart.net> | |
6400 | |
6401 * Synch calendar.texi with Emacs 20.3 | |
6402 | |
6403 1998-09-03 Darryl Okahata <darrylo@sr.hp.com> | |
6404 | |
6405 * xemacs/packages.texi: Correct and update package documentation. | |
6406 Updated the package installation section to mention the visual | |
6407 package browser/installer. | |
6408 | |
6409 1998-08-31 Hrvoje Niksic <hniksic@srce.hr> | |
6410 | |
6411 * lispref/buffers.texi (Indirect Buffers): Update with XEmacs | |
6412 specifics. | |
6413 | |
6414 1998-08-21 Greg Klanderman <greg@alphatech.com> | |
6415 | |
6416 * lispref/files.texi (User Name Completion): new section. | |
6417 | |
434 | 6418 1998-07-23 Adrian Aichner <adrian@xemacs.org> |
428 | 6419 |
6420 * xemacs/packages.texi (Packages): Changing @itemize @emph to | |
6421 @itemize @bullet (this is what all other files included in | |
6422 xemacs.texi use) to fix error in texi2dvi (GNU Texinfo 3.12) 0.8. | |
6423 | |
6424 1998-07-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
6425 | |
6426 * xemacs/startup.texi: Small fixes, suggested by Hrvoje. | |
6427 | |
6428 * xemacs/xemacs.texi: | |
6429 * xemacs/packages.texi: More packages documentation. | |
6430 | |
6431 1998-07-19 SL Baur <steve@altair.xemacs.org> | |
6432 | |
6433 * XEmacs 21.2-beta1 is released. | |
6434 | |
6435 1998-07-12 SL Baur <steve@altair.xemacs.org> | |
6436 | |
6437 * XEmacs 21.0-pre5 is released. | |
6438 | |
6439 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
6440 | |
6441 * XEmacs 21.0-pre4 is released. | |
6442 | |
6443 1998-07-09 Oliver Graf <ograf@fga.de> | |
6444 | |
6445 * lispref/dragndrop.texi: added warning to OffiX Protocol section | |
6446 | |
6447 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
6448 | |
6449 * lispref/ldap.texi (Syntax of Search Filters): Fix QP encoding | |
6450 damage in transit. | |
6451 | |
6452 1998-07-05 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
6453 | |
6454 * lispref/tooltalk.texi: Fixed NEXT to @node LDAP | |
6455 | |
6456 * lispref/internationalization.texi: Fixed PREV to @node LDAP | |
6457 | |
6458 * lispref/lispref.texi: Added LDAP chapter from ldap.texi | |
6459 | |
6460 * lispref/Makefile: Added ldap.texi to srcs | |
6461 | |
6462 1998-06-29 SL Baur <steve@altair.xemacs.org> | |
6463 | |
6464 * standards.texi (Preface): Revert previous change to @node | |
6465 because it doesn't pass makeinfo. | |
6466 | |
434 | 6467 1998-06-27 Adrian Aichner <adrian@xemacs.org> |
428 | 6468 |
6469 * cl.texi: See ALL. | |
6470 * info-stnd.texi: Fixed @setfilename. | |
6471 * info.texi: Fixed @setfilename and a typo. | |
6472 * standards.texi: Added NEXT to @node Preface. See ALL. | |
6473 * texinfo.texi: Fixed section names, quoted usage of @TeX{}, | |
442 | 6474 changed some occurrences of `:' to `colon'. |
428 | 6475 * xemacs-faq.texi: See ALL. |
6476 * internals/internals.texi: See ALL. | |
6477 * lispref/back.texi: Fixed @setfilename. | |
6478 * lispref/compile.texi: See ALL. | |
6479 * lispref/debugging.texi: See ALL. | |
6480 * lispref/edebug-inc.texi: Added NEXT and UP to @node Edebug. | |
6481 * lispref/eval.texi: See ALL. | |
6482 * lispref/extents.texi: See ALL. | |
6483 * lispref/loading.texi: See ALL. | |
6484 * lispref/searching.texi: Escaped `(' in | |
6485 @cindex @samp{(?:} in regex | |
6486 * lispref/variables.texi: See ALL. | |
6487 | |
6488 1998-06-28 SL Baur <steve@altair.xemacs.org> | |
6489 | |
6490 * xemacs/calendar.texi: Massive update. | |
6491 From Jeff Miller <jmiller@smart.net> | |
6492 | |
6493 1998-06-20 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
6494 | |
6495 * xemacs/abbrevs.texi: | |
6496 * xemacs/basic.texi: | |
6497 * xemacs/buildings.texi: | |
6498 * xemacs/cmdargs.texi: | |
6499 * xemacs/files.texi: | |
6500 * xemacs/adjustments.texi: Adjustments to integrate startup.texi | |
6501 and packages.texi stuff. | |
6502 | |
6503 * xemacs/startup.texi: | |
6504 * xemacs/packages.texi: Created. | |
6505 | |
434 | 6506 1998-06-10 Adrian Aichner <adrian@xemacs.org> |
428 | 6507 |
6508 * texinfo.texi: added ../info/ to @setfilename, broke line after | |
6509 @noindent. Changed @var{arg-not-used-by-@TeX{}} to | |
6510 @var{arg-not-used-by-@@TeX{}} to make `texinfo-format-buffer' | |
6511 happy. Fixed refs broken by a previous patch of mine. | |
6512 | |
6513 1998-06-18 Darryl Okahata <darrylo@sr.hp.com> | |
6514 | |
6515 * lispref/os.texi (os.texi): Document `user-home-directory'. | |
6516 | |
6517 1998-06-13 Greg Klanderman <greg@alphatech.com> | |
6518 | |
6519 * lispref/windows.texi (Resizing Windows): document third optional | |
6520 WINDOW argument to enlarge-window and shrink-window. | |
6521 (Selecting Windows): document select-window optional norecord | |
6522 argument. | |
6523 (Size of Window): document window-text-area-pixel-height and | |
6524 window-text-area-pixel-width. | |
6525 (Size of Window): document window-displayed-text-pixel-height. | |
6526 (Position of Window): document window-text-area-pixel-edges. | |
6527 | |
6528 * lispref/positions.texi (Screen Lines): cleanup docs for | |
6529 vertical-motion and vertical-motion-pixels. | |
6530 | |
6531 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
6532 | |
6533 * lispref/windows.texi (Resizing Windows): Document | |
6534 `enlarge-window-pixels' and `shrink-window-pixels'. | |
6535 | |
6536 * lispref/positions.texi (Screen Lines): Update documentation of | |
6537 `vertical-motion'. | |
6538 (Screen Lines): Document `vertical-motion-pixels'. | |
6539 | |
6540 * lispref/frames.texi (Input Focus): Document `focus-frame', | |
6541 `save-selected-frame' and `with-selected-frame'. | |
6542 | |
6543 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
6544 | |
6545 * lispref/searching.texi (Regexp Search): Document `split-path'. | |
6546 | |
6547 * lispref/files.texi (Unique File Names): Update docs for | |
6548 `make-temp-name'; document `temp-directory'. | |
6549 | |
6550 1998-06-10 Hrvoje Niksic <hniksic@srce.hr> | |
6551 | |
6552 * lispref/os.texi (Recording Input): Update docs for `recent-keys'. | |
6553 | |
6554 * lispref/specifiers.texi (Specifier Instancing): Correct | |
6555 instantiation order. | |
6556 (Specifier Instancing Functions): Ditto. | |
6557 | |
6558 1998-06-11 Oliver Graf <ograf@fga.de> | |
6559 | |
6560 * lispref/lispref.texi: references to Drag'n'Drop fixed | |
6561 * lispref/modes.texi: references to Drag'n'Drop fixed | |
6562 * lispref/scrollbars.texi: references to Drag'n'Drop fixed | |
6563 * lispref/dragndrop.texi: naming changed to Drag and Drop | |
6564 added some docu about the drop procedure | |
6565 | |
434 | 6566 1998-06-09 Adrian Aichner <adrian@xemacs.org> |
428 | 6567 |
6568 * info-stnd.texi: added ../info/ to @setfilename. | |
6569 * info.texi: added ../info/ to @setfilename. | |
6570 * lispref/commands.texi: see ALL. | |
6571 * lispref/frames.texi: see ALL. | |
6572 * lispref/os.texi: see ALL. | |
6573 * lispref/text.texi: see ALL. | |
6574 * new-users-guide/custom1.texi: broke line after enumerated @item. | |
6575 * new-users-guide/custom2.texi: see ALL. | |
6576 * new-users-guide/edit.texi: see ALL. | |
6577 * new-users-guide/enter.texi: see ALL. | |
6578 * new-users-guide/files.texi: see ALL. | |
6579 * new-users-guide/help.texi | |
6580 * new-users-guide/modes.texi: see ALL. | |
6581 * new-users-guide/new-users-guide.texi: see ALL. | |
6582 * new-users-guide/region.texi: see ALL. | |
6583 * new-users-guide/search.texi: see ALL. | |
6584 * new-users-guide/xmenu.texi: see ALL. | |
6585 * standards.texi: added ../info/ to @setfilename. | |
6586 * texinfo.texi: added ../info/ to @setfilename, broke line after | |
6587 @noindent. Changed @var{arg-not-used-by-@TeX{}} to | |
6588 @var{arg-not-used-by-@@TeX{}} to make `texinfo-format-buffer' | |
6589 happy. | |
6590 * xemacs-faq.texi: added ../info/ to @setfilename. | |
6591 * ALL: corrected INFO-FILE-NAME to lispref and xemacs in relevant | |
6592 p?xefs (most were empty, some elisp and emacs), used | |
6593 PRINTED-MANUAL-TITLE "XEmacs Lisp Reference Manual" and "XEmacs | |
6594 User's Manual" respectively for all these. | |
6595 | |
6596 1998-06-01 Oliver Graf <ograf@fga.de> | |
6597 | |
6598 * lispref/dragndrop.texi: added experimental | |
6599 | |
6600 1998-05-28 Oliver Graf <ograf@fga.de> | |
6601 | |
6602 * lispref/dragndrop.texi: a warning, and a bit more text this time | |
6603 | |
6604 1998-05-26 Oliver Graf <ograf@fga.de> | |
6605 | |
6606 * lispref/dragndrop.texi: only small changes | |
6607 | |
933 | 6608 1998-05-15 Christian Nybø <chr@mediascience.no> |
428 | 6609 |
6610 * xemacs/killing.texi: Properly document `zap-to-char'. | |
6611 | |
6612 1998-05-13 Greg Klanderman <greg@alphatech.com> | |
6613 | |
6614 * lispref/frames.texi (Input Focus): cleanup select-frame | |
6615 documentation. | |
6616 | |
6617 1998-05-10 Oliver Graf <ograf@fga.de> | |
6618 | |
6619 * lispref/dragndrop.texi: new section for the DnD API | |
6620 * lispref/lispref.texi: added Drag'n'Drop between scrollbars and | |
6621 modes | |
6622 * lispref/modes.texi: changed back-ref to Drag'n'Drop | |
6623 * lispref/scrollbars.texi: changed next-ref to Drag'n'Drop | |
6624 | |
6625 1998-05-05 Oliver Graf <ograf@fga.de> | |
6626 | |
6627 * commands.texi: exchange of dnd-drop with misc-user | |
6628 | |
6629 1998-05-04 Martin Buchholz <martin@xemacs.org> | |
6630 | |
6631 * internals.texi (Techniques for XEmacs Developers): Add some more | |
6632 comments on adding new files, inspired by Olivier Galibert. | |
6633 | |
6634 1998-05-02 Hrvoje Niksic <hniksic@srce.hr> | |
6635 | |
6636 * lispref/windows.texi (Vertical Scrolling): Fixup docstring for | |
6637 scroll-conservatively. | |
6638 | |
6639 * lispref/loading.texi (Named Features): Document advanced args to | |
6640 `feature'. | |
6641 | |
6642 * lispref/files.texi (File Name Expansion): Document that | |
6643 expand-file-name does not treat // and ~/ in the middle of file | |
6644 names specially. | |
6645 | |
6646 * lispref/positions.texi (Excursions): Document | |
6647 `with-current-buffer' and `with-temp-file'. | |
6648 | |
6649 * lispref/strings.texi (Formatting Strings): Document `%*' | |
6650 construct. | |
6651 | |
6652 * lispref/os.texi (Time Conversion): Document that TIME may be | |
6653 omitted from format-time-string. | |
6654 | |
6655 * lispref/strings.texi (String Conversion): Document BASE argument | |
6656 to `string-to-number'. | |
6657 | |
6658 * lispref/searching.texi (Syntax of Regexps): Fix up Perl | |
6659 constructs documentation. | |
6660 (Regexp Search): Document `split-string'. | |
6661 | |
6662 * xemacs/display.texi (Scrolling): Document scroll-conservatively. | |
6663 | |
6664 * xemacs/killing.texi (Active Regions): Document that errors no | |
6665 longer highlight the region. | |
6666 | |
6667 * lispref/display.texi (The Echo Area): Document message log | |
6668 stuff, including `display-message', `lmessage', `clear-message', | |
6669 (Warnings): Document warning stuff. | |
6670 | |
6671 * lispref/commands.texi (Working With Events): Update `make-event' | |
6672 for misc-user events. | |
6673 (Using Interactive): Document `function-interactive'. | |
6674 | |
6675 * lispref/os.texi (System Environment): Document USE-FLOATS | |
6676 argument to `load-average'. | |
6677 (User Identification): Document the new semantics of | |
6678 `user-full-name'. | |
6679 | |
6680 * lispref/strings.texi (Creating Strings): Document `string' | |
6681 function. | |
6682 | |
6683 1998-05-02 Hrvoje Niksic <hniksic@srce.hr> | |
6684 | |
6685 * lispref/numbers.texi (Comparison of Numbers): Document multi-arg | |
6686 comparison functions. | |
6687 | |
6688 1998-04-30 Greg Klanderman <greg@alphatech.com> | |
6689 | |
6690 * lispref/frames.texi (Input Focus): Document behavior of | |
6691 select-frame wrt focus-follows-mouse. | |
6692 | |
6693 1998-04-30 Martin Buchholz <martin@xemacs.org> | |
6694 | |
6695 * Makefile: Support generic makes by avoiding `%' syntax. | |
6696 It breaks my heart to uglify the Makefile like this, but this is | |
6697 going to be a perpetual FAQ otherwise. | |
6698 General cleanup. | |
6699 Comment out w3 and vm info rules. | |
6700 Use paranoid cd ./$@ syntax to avoid losing with luser's CDPATH. | |
6701 | |
2069 | 6702 1998-03-27 Stephen Turnbull <stephen@xemacs.org> |
428 | 6703 |
6704 * xemacs/frame.texi: Document cursor appearance at end of line. | |
6705 | |
6706 1998-03-14 Hrvoje Niksic <hniksic@srce.hr> | |
6707 | |
6708 * internals/internals.texi (GCPROing): Explain when it is | |
6709 necessary to GCPRO function parameters. | |
6710 | |
6711 1998-03-13 Hrvoje Niksic <hniksic@srce.hr> | |
6712 | |
6713 * internals/internals.texi (Writing Lisp Primitives): Updated | |
6714 definition of For(). | |
6715 | |
6716 1998-03-01 Aki Vehtari <Aki.Vehtari@hut.fi> | |
6717 | |
6718 * lispref/menus.texi: Use recommended forms in examples. | |
6719 | |
6720 1998-02-22 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6721 | |
6722 * cl.texi (Creating Symbols): Tell a little bit about the new | |
6723 handling of gensyms. | |
6724 | |
6725 1998-02-21 Greg Klanderman <greg@alphatech.com> | |
6726 | |
6727 * xemacs/custom.texi (X Resources): update to describe automatic | |
6728 setting of x-emacs-application-class. | |
6729 | |
6730 * lispref/x-windows.texi (Resources): update doc for | |
6731 x-emacs-application-class. | |
6732 | |
6733 1998-02-20 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6734 | |
6735 * cl.texi (Equality Predicates): Update to reflect change to | |
6736 `equalp' made in "cl-extra.el" - now compares characters case | |
6737 insensitively. | |
6738 | |
6739 1998-02-23 Aki Vehtari <Aki.Vehtari@hut.fi> | |
6740 | |
6741 * lispref/menus.texi (Menu Format): Doc fix: suffix can be form. | |
6742 | |
6743 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6744 | |
6745 * lispref/display.texi (Beeping): Linux has sound too. | |
6746 | |
6747 1998-02-19 Hrvoje Niksic <hniksic@srce.hr> | |
6748 | |
6749 * cl.texi (Argument Lists): Keywords are handled specially by | |
6750 XEmacs. | |
6751 (Porting Common Lisp): XEmacs backquotes are OK. | |
6752 | |
6753 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6754 | |
6755 * xemacs/custom.texi (Init Syntax): document #b, #o, and #x reader | |
6756 syntax for integers. | |
434 | 6757 From Adrian Aichner <adrian@xemacs.org> |
428 | 6758 * cl.texi (Porting Common Lisp): ' ' |
6759 * lispref/numbers.texi (Numbers): ' ' | |
6760 | |
6761 1998-02-15 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
6762 | |
6763 * lispref/searching.texi (Regular Expressions): Document the | |
6764 recent regular expression syntax extensions. | |
6765 | |
6766 1998-02-10 Olivier Galibert <galibert@pobox.com> | |
6767 | |
6768 * internals/internals.texi: Remove all mocklisp references. | |
6769 | |
6770 1997-12-17 SL Baur <steve@altair.xemacs.org> | |
6771 | |
6772 * Makefile (SUBDIR): skk and gnats are packaged. | |
6773 | |
6774 * lispref/intro.texi (Acknowledgements): Update to v3.3. | |
6775 | |
6776 * lispref/lispref.texi: Update to 20.5/v3.3. | |
6777 | |
6778 1997-12-10 SL Baur <steve@altair.xemacs.org> | |
6779 | |
6780 * Makefile: Don't stop on errors. | |
6781 | |
6782 1997-12-06 SL Baur <steve@altair.xemacs.org> | |
6783 | |
6784 * Makefile: add skk manual. | |
6785 | |
6786 1997-11-29 SL Baur <steve@altair.xemacs.org> | |
6787 | |
6788 * internals/internals.texi (XEmacs): Updated history section. | |
6789 | |
6790 1997-11-28 SL Baur <steve@altair.xemacs.org> | |
6791 | |
6792 * lispref/compile.texi (Compilation Functions): Plug in the real | |
6793 return value. | |
6794 (Speed of Byte-Code): Ditto. | |
6795 (Compilation Functions): Ditto. | |
6796 (Compiled-Function Objects): Ditto. | |
6797 (Speed of Byte-Code): Increase loop counter by factor of 50 (the | |
6798 previous value was embarrassing). | |
6799 | |
6800 1997-11-21 SL Baur <steve@altair.xemacs.org> | |
6801 | |
6802 * Makefile (srcs): vhdl-mode has been packaged. | |
6803 | |
6804 1997-11-15 SL Baur <steve@altair.xemacs.org> | |
6805 | |
6806 * lispref/windows.texi (scroll-conservatively): Fix typo. | |
6807 | |
6808 1997-11-12 Hrvoje Niksic <hniksic@srce.hr> | |
6809 | |
6810 * lispref/commands.texi (Working With Events): Document fully. | |
6811 | |
6812 * lispref/windows.texi (Vertical Scrolling): Document | |
6813 scroll-conservatively. | |
6814 | |
6815 1997-11-09 Hrvoje Niksic <hniksic@srce.hr> | |
6816 | |
6817 * lispref/extents.texi (Intro to Extents): Minor correction. | |
6818 (Extent Properties): Document `extent-keymap'. | |
6819 | |
6820 1997-11-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
6821 | |
6822 * xemacs/mule.texi (Mule): Modify description about supported | |
6823 scripts. | |
6824 | |
6825 1997-11-02 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
6826 | |
6827 * xemacs/mule.texi: Add description for | |
6828 `universal-coding-system-argument'. | |
6829 | |
6830 1997-10-31 SL Baur <steve@altair.xemacs.org> | |
6831 | |
6832 * internals/internals.texi: XEmacs 19.16 is released. | |
6833 | |
6834 1997-10-30 SL Baur <steve@altair.xemacs.org> | |
6835 | |
6836 * Makefile (srcs): Mailcrypt, hm--html-menus, vm, psgml and tm have | |
6837 been packaged. | |
6838 | |
6839 1997-10-22 Hrvoje Niksic <hniksic@srce.hr> | |
6840 | |
6841 * xemacs-faq.texi: Added the detailed menu listing. | |
6842 | |
6843 * lispref/extents.texi (Extent Properties): Documented | |
6844 `set-extent-properties'. | |
6845 | |
6846 * xemacs/custom.texi (Face Customization): Updated for XEmacs. | |
6847 | |
6848 1997-10-07 SL Baur <steve@altair.xemacs.org> | |
6849 | |
6850 * xemacs-faq.texi (Q1.3.7): Update Russion URLs. | |
6851 From Rebecca Ore <rebecca.ore@op.net> | |
6852 | |
6853 * lispref/databases.texi (Connecting to a Database): Describe | |
6854 valid types of `type' and `subtype'. | |
6855 From Raymond Toy <toy@rtp.ericsson.se> | |
6856 | |
6857 1997-10-01 Karl M. Hegbloom <karlheg@inetarena.com> | |
6858 | |
6859 * lispref/commands.texi (Keyboard Macros): fixed typo. Changed | |
6860 reference to (emacs) into a reference to (xemacs). | |
6861 | |
6862 1997-10-01 Karl M. Hegbloom <karlheg@inetarena.com> | |
6863 | |
6864 * lispref/keymaps.texi (Keymaps): untabified and reformatted menu | |
6865 to prevent line wrap. | |
6866 | |
6867 1997-09-27 SL Baur <steve@altair.xemacs.org> | |
6868 | |
6869 * gnats/flowchart.eps: New file. | |
6870 | |
6871 1997-09-23 Hrvoje Niksic <hniksic@srce.hr> | |
6872 | |
6873 * xemacs/custom.texi (Easy Customization): Ditto. | |
6874 | |
6875 * xemacs/xemacs.texi (Top): Added pointer to easy customization. | |
6876 | |
6877 1997-09-18 SL Baur <steve@altair.xemacs.org> | |
6878 | |
6879 * internals/Makefile (../../info/$(NAME).info): Warn and clean up | |
6880 if someone hasn't upgraded makeinfo. | |
6881 | |
6882 * Makefile (EMACS): Refer to xemacs binary in source tree. | |
6883 * tm/Makefile (EMACS): Ditto. | |
6884 | |
6885 1997-08-15 Karl M. Hegbloom <karlheg@inetarena.com> | |
6886 | |
6887 * cl.texi (Type Predicates): Update for corrected handling of | |
6888 `string-char' and `character'. | |
6889 | |
6890 Tue Aug 5 21:56:02 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
6891 | |
6892 * cc-mode.texi: | |
6893 In FAQ section, document use of c-mode-base-map instead of c-mode-map. | |
6894 | |
6895 Fri Aug 1 22:44:49 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
6896 | |
6897 * cc-mode.texi: Removed the description of c-enable-//-in-c-mode. | |
6898 | |
6899 Wed Jul 30 00:01:45 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
6900 | |
6901 * cc-mode.texi: | |
6902 Added description of template-args-cont syntactic symbol | |
6903 | |
6904 1997-07-25 Barry A. Warsaw <cc-mode-help@python.org> | |
6905 | |
6906 * cc-mode.texi: Describe support for idl-mode | |
6907 | |
6908 * cc-mode.texi: | |
6909 Document c-initialization-hook. Also rewrite the "Getting Connected" | |
6910 section on byte compiling the source. | |
6911 | |
6912 1997-07-21 Karl M. Hegbloom <karlheg@inetarena.com> | |
6913 | |
6914 * lispref/streams.texi: "Output Streams", change `last-output' | |
6915 result list from integers to characters. | |
6916 | |
6917 * lispref/minibuf.texi: "Object from Minibuffer", correction. | |
6918 | |
6919 * lispref/minibuf.texi: "Minibuffer History", add | |
6920 `Info-minibuffer-history', `Manual-page-minibuffer-history', and | |
6921 short paragraph refering to `M-x apropos'. | |
6922 | |
6923 1997-07-17 Steven L Baur <steve@altair.xemacs.org> | |
6924 | |
6925 * Makefile: makeinfo-1.68 is verified to work. | |
6926 | |
6927 * tm/Makefile (../../info/%-ja.info): Die if not running | |
6928 XEmacs/Mule. | |
6929 (../../info/%-en.info): Inherit setting of MAKEINFO. | |
6930 | |
6931 Tue Jul 15 04:18:38 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
6932 | |
6933 * cc-mode.texi: | |
6934 Describe the variable c-indent-comments-syntactically-p. | |
6935 | |
6936 1997-07-15 Steven L Baur <steve@altair.xemacs.org> | |
6937 | |
6938 * internals/internals.texi (Top): Convert Buffer@'s node name to | |
6939 `Buffer's' because the former confuses makeinfo. | |
6940 | |
6941 Thu Jul 3 22:54:03 1997 Barry A. Warsaw <cc-mode-help@python.org> | |
6942 | |
6943 * cc-mode.texi: Fixed spelling of Texinfo | |
6944 | |
6945 Tue May 6 21:33:06 1997 Steven L Baur <steve@altair.xemacs.org> | |
6946 | |
6947 * lispref/files.texi (Writing to Files): Correct docstring of | |
6948 write-region. | |
6949 | |
6950 Sun May 4 14:28:32 1997 Steven L Baur <steve@altair.xemacs.org> | |
6951 | |
6952 * lispref/annotations.texi (Annotation Primitives): | |
6953 `delete-annotation' does not return the deleted annotation. | |
6954 | |
6955 Wed Apr 30 18:13:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
6956 | |
6957 * lispref/lispref.texi: Correct release dates. | |
6958 | |
6959 Sat Apr 19 20:48:00 1997 Steven L Baur <steve@altair.xemacs.org> | |
6960 | |
6961 * lispref/files.texi (File Name Expansion): Update documentation | |
6962 of file-relative-name. | |
6963 | |
6964 Mon Apr 7 21:02:39 1997 Steven L Baur <steve@altair.xemacs.org> | |
6965 | |
6966 * lispref/lispref.texi: Update version numbers (with patches from | |
6967 Hrvoje Niksic). | |
6968 | |
6969 * lispref/building.texi (Building XEmacs): Update version numbers | |
6970 and build identification. | |
6971 | |
6972 * lispref/intro.texi (Introduction): Update version number. | |
6973 | |
6974 Sun Mar 23 15:47:05 1997 Steven L Baur <steve@altair.xemacs.org> | |
6975 | |
6976 * Makefile (srcs): Add efs.texi. | |
6977 | |
6978 Sat Mar 22 16:39:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
6979 | |
6980 * Makefile (srcs): Add hm--html-mode.texi. | |
6981 | |
6982 Sun Mar 16 18:48:14 1997 Steven L Baur <steve@altair.xemacs.org> | |
6983 | |
6984 * gnats/Makefile (gnats_srcs): New manuals for GNATS. | |
6985 | |
6986 Wed Mar 12 14:39:43 1997 Steven L Baur <steve@altair.xemacs.org> | |
6987 | |
6988 * lispref/strings.texi (Text Comparison): Correct example for | |
6989 `char-equal'. Add new function `char='. | |
6990 | |
6991 Thu Mar 6 13:33:54 1997 Steven L Baur <steve@altair.xemacs.org> | |
6992 | |
6993 * Makefile: Update for new texinfo manual. | |
6994 | |
6995 Tue Mar 4 11:37:42 1997 Steven L Baur <steve@altair.xemacs.org> | |
6996 | |
6997 * Makefile (../info/w3.info): Use special version of makeinfo | |
6998 since this manual is not backwards compatible. | |
6999 Clean up error handling so we only have to type make once to | |
7000 rebuild the info tree. | |
7001 (../info/vm.info): Make sure to continue in the event of error. | |
7002 | |
7003 Tue Feb 25 20:17:53 1997 Steven L Baur <steve@altair.xemacs.org> | |
7004 | |
7005 * auctex/Makefile: Added `mostlyclean' and `distclean' target. | |
7006 | |
7007 Wed Feb 19 17:57:27 1997 Steven L Baur <steve@altair.xemacs.org> | |
7008 | |
7009 * Makefile (auctex): New subdirectory target. | |
7010 | |
7011 Wed Feb 12 12:30:27 1997 Yotam Medini <yotam_medini@tmai.com> | |
7012 | |
7013 * mule/languages.texi: Correct typo. | |
7014 | |
7015 Mon Feb 10 08:17:22 1997 Steven L Baur <steve@altair.xemacs.org> | |
7016 | |
7017 * Makefile (srcs): Add custom and widget to srcs. | |
7018 | |
7019 * lispref/extents.texi (Intro to Extents): Removed erroneous | |
7020 reference to `start-glyph' property. | |
7021 | |
7022 Sun Feb 9 00:27:22 1997 Per Abrahamsen <abraham@dina.kvl.dk> | |
7023 | |
7024 * widget.texi: New file. | |
7025 | |
7026 * custom.texi: New file. | |
7027 | |
7028 Thu Feb 6 22:57:09 1997 Steven L Baur <steve@altair.xemacs.org> | |
7029 | |
7030 * lispref/extents.texi (Duplicable Extents): replicable extents | |
7031 are history. | |
7032 | |
7033 Wed Jan 29 19:59:41 1997 Steven L Baur <steve@altair.xemacs.org> | |
7034 | |
7035 * xemacs-faq.texi (Q1.1.1): Correct typos. | |
7036 | |
7037 Mon Jan 27 22:28:48 1997 Bob Weiner <weiner@infodock.com> | |
7038 | |
7039 * xemacs-faq.texi (Q1.0.14): infodock.com has hardcopies of the | |
7040 XEmacs manual available. | |
7041 (Q4.6.1): Updated Infodock Information. | |
7042 | |
7043 Sat Dec 28 11:08:07 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
7044 | |
7045 * vhdl-mode.texi: Correct typo in email address. | |
7046 | |
7047 Mon Dec 23 09:47:24 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
7048 | |
7049 * Makefile (srcs): Add vhdl-mode. | |
7050 | |
7051 Wed Dec 18 20:21:06 1996 Martin Buchholz <mrb@eng.sun.com> | |
7052 | |
7053 * Makefile (realclean): Don't delete itself `make distclean' | |
7054 | |
7055 * lispref/numbers.texi (Predicates on Numbers): wholenump->natnump. | |
7056 | |
7057 * Makefile: New File. | |
7058 | |
7059 Tue Dec 10 18:35:21 1996 Rod Whitby <rwhitby@asc.sps.mot.com> | |
7060 | |
7061 * vhdl-mode.texi: New file. | |
7062 | |
7063 Thu Jan 24 12:41:33 1991 Richard Stallman (rms at mole.ai.mit.edu) | |
7064 | |
7065 * texinfo.tex: Delete spurious character at beginning. | |
7066 | |
7067 Tue Aug 16 13:09:12 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
7068 | |
7069 * emacs.tex: Corrected two typos. No other changes before | |
7070 Version 19 will be made. | |
7071 | |
7072 * vip.texinfo: Removed menu entry Adding Lisp Code in node | |
7073 Customization since the menu entry did not point to anything. | |
7074 Also added an @finalout command to remove overfull hboxes from the | |
7075 printed output. | |
7076 | |
7077 * cl.texinfo: Added @bye, \input line and @settitle to file. | |
7078 This file is clearly intended to be a chapter of some other work, | |
7079 but the other work does not yet exist. | |
7080 | |
7081 Mon Jul 25 17:47:38 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
7082 | |
7083 * texinfo.texinfo: Three typos corrected. | |
7084 | |
7085 Mon Jul 11 18:02:29 1988 Chris Hanson (cph at kleph) | |
7086 | |
7087 * texindex.c (indexify): when comparing to initial strings to | |
7088 decide whether to change the header, must use `strncmp' to avoid | |
7089 comparing entire strings of which initials are a substring. | |
7090 | |
7091 Sun Jun 26 18:46:16 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu) | |
7092 | |
7093 * texindex.c (sort_in_core, sort_offline, parsefile): | |
7094 Give up on input file if any line doesn't start with backslash. | |
7095 | |
7096 Mon May 23 10:41:35 1988 Robert J. Chassell (bob at frosted-flakes.ai.mit.edu) | |
7097 | |
7098 * emacs.tex: Update information for obtaining TeX distribution from the | |
7099 University of Washington. | |
5440
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7100 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7101 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7102 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
|
7103 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
|
7104 change. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7105 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7106 This file is part of XEmacs. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7107 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7108 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
|
7109 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
|
7110 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
|
7111 option) any later version. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7112 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7113 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
|
7114 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
|
7115 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
|
7116 for more details. |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7117 |
24c67faf4be6
Added property notice and license to ChangeLogs.
Mats Lidell <matsl@xemacs.org>
parents:
5300
diff
changeset
|
7118 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
|
7119 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |