diff options
author | Richard M. Stallman <rms@gnu.org> | 2006-02-08 00:27:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2006-02-08 00:27:09 +0000 |
commit | cd6cd82ac0f5ef22703450a143561218831d737c (patch) | |
tree | b7d5195b05755e55b9b4161b8075957ad0d0f32c | |
parent | 91055930f5260b0d5e36e8512f209b9cc211c8b8 (diff) | |
download | emacs-cd6cd82ac0f5ef22703450a143561218831d737c.tar.gz |
(What Is a Function): Fix xref.
-rw-r--r-- | lispref/ChangeLog | 29 | ||||
-rw-r--r-- | lispref/functions.texi | 2 |
2 files changed, 30 insertions, 1 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 4571afaf3c8..127dbc9e0fe 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,23 @@ +2006-02-07 Richard M. Stallman <rms@gnu.org> + + * functions.texi (What Is a Function): Fix xref. + + * keymaps.texi (Key Lookup): Clarify wrt commands vs other functions. + (Changing Key Bindings): Clarify when remapping is better than + substitute-key-definition. + +2006-02-02 Richard M. Stallman <rms@gnu.org> + + * minibuf.texi (Basic Completion): Completion alists are risky. + + * keymaps.texi (Active Keymaps): Clarifications. + (Searching Keymaps): New node. + (Keymaps): Update menu. + + * frames.texi (Layout Parameters): Minor clarification. + (Drag and Drop): New node. + (Frames): Update menu. + 2006-01-29 Chong Yidong <cyd@stupidchicken.com> * display.texi (Other Display Specs, Image Descriptors): Image @@ -21,6 +41,15 @@ * markers.texi (Overview of Markers): Count insertion type as one of a marker's attributes. + * keymaps.texi (Controlling Active Maps): New node, split out of + Active Keymaps. + (Keymaps): Menu updated. + (Active Keymaps): Give pseudocode to explain how the active + maps are searched. current-active-maps and key-binding moved here. + (Functions for Key Lookup): current-active-maps and key-binding moved. + Clarifications. + (Searching the Keymaps): New subnode. + * elisp.texi (Top): Menu clarification. * display.texi (Other Display Specs): Delete duplicate entry for diff --git a/lispref/functions.texi b/lispref/functions.texi index bc05a1d388d..9c7381b80d7 100644 --- a/lispref/functions.texi +++ b/lispref/functions.texi @@ -99,7 +99,7 @@ Keyboard macros (strings and vectors) are commands also, even though they are not functions. A symbol is a command if its function definition is a command; such symbols can be invoked with @kbd{M-x}. The symbol is a function as well if the definition is a function. -@xref{Command Overview}. +@xref{Interactive Call}. @item keystroke command @cindex keystroke command |