aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-08-13 17:29:53 +0000
committerRichard M. Stallman2003-08-13 17:29:53 +0000
commit3afe8e3957c8cd88f9c2068c2c79bb26d6791142 (patch)
tree69dcf32ffbfb28479aac2ef41de62a24b0661a47
parentd73eac4dc30db31e548abfbca0b4b439f60d1a7c (diff)
downloademacs-3afe8e3957c8cd88f9c2068c2c79bb26d6791142.tar.gz
emacs-3afe8e3957c8cd88f9c2068c2c79bb26d6791142.zip
(Top): Update subnode lists in menu.
-rw-r--r--lispref/ChangeLog38
-rw-r--r--lispref/elisp.texi5
2 files changed, 43 insertions, 0 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 513eff01838..9e9b16abb69 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,41 @@
12003-08-13 Richard M. Stallman <rms@gnu.org>
2
3 * elisp.texi (Top): Update subnode lists in menu.
4
5 * text.texi (Insertion): Add insert-buffer-substring-no-properties.
6 (Kill Functions): kill-region has new arg yank-handler.
7 (Yanking): New node.
8 (Yank Commands): Add yank-undo-function.
9 (Low-Level Kill Ring):
10 kill-new and kill-append have new arg yank-handler.
11 (Changing Properties): Add remove-list-of-text-properties.
12 (Atomic Changes): New node.
13
14 * symbols.texi (Other Plists): Add lax-plist-get, lax-plist-put.
15
16 * streams.texi (Output Variables): Add eval-expression-print-length
17 and eval-expression-print-level.
18
19 * os.texi (Time Conversion): For encode-time, explain limits on year.
20
21 * objects.texi (Character Type): Define anchor "modifier bits".
22
23 * modes.texi (Emulating Mode Line): New node.
24 (Search-based Fontification): Font Lock uses font-lock-face property.
25 (Other Font Lock Variables): Likewise.
26
27 * keymaps.texi (Format of Keymaps): Keymaps contain char tables,
28 not vectors.
29 (Active Keymaps): Add emulation-mode-map-alists.
30 (Functions for Key Lookup): key-binding has new arg no-remap.
31 (Remapping Commands): New node.
32 (Scanning Keymaps): where-is-internal has new arg no-remap.
33 (Tool Bar): Add tool-bar-local-item-from-menu.
34 Clarify when to use tool-bar-add-item-from-menu.
35
36 * commands.texi (Interactive Call): commandp has new arg.
37 (Command Loop Info): Add this-original-command.
38
12003-08-06 John Paul Wallington <jpw@gnu.org> 392003-08-06 John Paul Wallington <jpw@gnu.org>
2 40
3 * compile.texi (Compiler Errors): Say `@end defmac' after `@defmac'. 41 * compile.texi (Compiler Errors): Say `@end defmac' after `@defmac'.
diff --git a/lispref/elisp.texi b/lispref/elisp.texi
index 1567121e2aa..9c8940e2d2f 100644
--- a/lispref/elisp.texi
+++ b/lispref/elisp.texi
@@ -535,6 +535,7 @@ Keymaps
535* Key Lookup:: How extracting elements from keymaps works. 535* Key Lookup:: How extracting elements from keymaps works.
536* Functions for Key Lookup:: How to request key lookup. 536* Functions for Key Lookup:: How to request key lookup.
537* Changing Key Bindings:: Redefining a key in a keymap. 537* Changing Key Bindings:: Redefining a key in a keymap.
538* Remapping Commands:: Bindings that translate one command to another.
538* Key Binding Commands:: Interactive interfaces for redefining keys. 539* Key Binding Commands:: Interactive interfaces for redefining keys.
539* Scanning Keymaps:: Looking through all keymaps, for printing help. 540* Scanning Keymaps:: Looking through all keymaps, for printing help.
540 541
@@ -739,12 +740,16 @@ Text
739* Transposition:: Swapping two portions of a buffer. 740* Transposition:: Swapping two portions of a buffer.
740* Registers:: How registers are implemented. Accessing 741* Registers:: How registers are implemented. Accessing
741 the text or position stored in a register. 742 the text or position stored in a register.
743* Atomic Changes:: Installing several buffer changs ``atomically''.
744* Base 64:: Conversion to or from base 64 encoding.
745* MD5 Checksum:: Compute the MD5 ``message digest''/``checksum''.
742* Change Hooks:: Supplying functions to be run when text is changed. 746* Change Hooks:: Supplying functions to be run when text is changed.
743 747
744The Kill Ring 748The Kill Ring
745 749
746* Kill Ring Concepts:: What text looks like in the kill ring. 750* Kill Ring Concepts:: What text looks like in the kill ring.
747* Kill Functions:: Functions that kill text. 751* Kill Functions:: Functions that kill text.
752* Yanking:: How yanking is done.
748* Yank Commands:: Commands that access the kill ring. 753* Yank Commands:: Commands that access the kill ring.
749* Low-Level Kill Ring:: Functions and variables for kill ring access. 754* Low-Level Kill Ring:: Functions and variables for kill ring access.
750* Internals of Kill Ring:: Variables that hold kill-ring data. 755* Internals of Kill Ring:: Variables that hold kill-ring data.