]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix (Bug#6224).
authorKevin Ryde <user42@zip.com.au>
Thu, 20 May 2010 14:53:30 +0000 (10:53 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 20 May 2010 14:53:30 +0000 (10:53 -0400)
* keyboard.c (Vlast_command, Vkeyboard_translate_table)
(Voverriding_terminal_local_map, Vsystem_key_alist)
(Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).

src/ChangeLog
src/keyboard.c

index 0199c24d7b3dc60abc9ff9eac479167d392a0b81..b593f5fe8dde53c6873173aecf2aa6271a1a0999 100644 (file)
@@ -1,3 +1,9 @@
+2010-05-20  Kevin Ryde  <user42@zip.com.au>
+
+       * keyboard.c (Vlast_command, Vkeyboard_translate_table)
+       (Voverriding_terminal_local_map, Vsystem_key_alist)
+       (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
+
 2010-05-20  Glenn Morris  <rgm@gnu.org>
 
        * Makefile.in (DEPDIR): New constant.
index 74efb856852b5da7946c84ea4f99c3df86ccb8bc..63372d600e3cd6093ed11662db57f67598c088e9 100644 (file)
@@ -11985,7 +11985,7 @@ The value `kill-region' is special; it means that the previous command
 was a kill command.
 
 `last-command' has a separate binding for each terminal device.
-See Info node `(elisp)Multiple displays'.  */);
+See Info node `(elisp)Multiple Terminals'.  */);
 
   DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
                 doc: /* Same as `last-command', but never altered by Lisp code.  */);
@@ -12123,8 +12123,8 @@ untranslated.  In a vector, an element which is nil means "no translation".
 This is applied to the characters supplied to input methods, not their
 output.  See also `translation-table-for-input'.
 
-This variable has a separate binding for each terminal.  See Info node
-`(elisp)Multiple displays'.  */);
+This variable has a separate binding for each terminal.
+See Info node `(elisp)Multiple Terminals'.  */);
 
   DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
               doc: /* Non-nil means to always spawn a subshell instead of suspending.
@@ -12215,7 +12215,7 @@ set up a different keymap for reading the next command.
 
 `overriding-terminal-local-map' has a separate binding for each
 terminal device.
-See Info node `(elisp)Multiple displays'.  */);
+See Info node `(elisp)Multiple Terminals'.  */);
 
   DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
               doc: /* Keymap that overrides all other local keymaps.
@@ -12243,7 +12243,7 @@ numeric keysym code (sans the \"system-specific\" bit 1<<28)
 and SYMBOL is its name.
 
 `system-key-alist' has a separate binding for each terminal device.
-See Info node `(elisp)Multiple displays'.  */);
+See Info node `(elisp)Multiple Terminals'.  */);
 
   DEFVAR_KBOARD ("local-function-key-map", Vlocal_function_key_map,
                  doc: /* Keymap that translates key sequences to key sequences during input.
@@ -12269,7 +12269,7 @@ Typing `ESC O P' to `read-key-sequence' would return [f1].  Typing
 typing `ESC O P x' would return [f1 x].
 
 `local-function-key-map' has a separate binding for each terminal
-device.  See Info node `(elisp)Multiple displays'.  If you need to
+device.  See Info node `(elisp)Multiple Terminals'.  If you need to
 define a binding on all terminals, change `function-key-map'
 instead.  Initially, `local-function-key-map' is an empty keymap that
 has `function-key-map' as its parent on all terminal devices.  */);