aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorLuc Teirlinck2004-08-08 00:33:40 +0000
committerLuc Teirlinck2004-08-08 00:33:40 +0000
commit7a093e872021135087ca04364bf1764832fc807a (patch)
treee17cf353487b366166c8966216f149ef2baf46f4 /src/keymap.c
parente4e66c94cbd659c6034444c69eae1a549e21b7cd (diff)
downloademacs-7a093e872021135087ca04364bf1764832fc807a.tar.gz
emacs-7a093e872021135087ca04364bf1764832fc807a.zip
(Flocal_key_binding, Fglobal_key_binding)
(syms_of_keymap) <key-translation-map>: Doc fixes.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 6cb7b8709d3..3d4a782b5f8 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -1602,7 +1602,7 @@ is non-nil, `key-binding' returns the unmapped command. */)
1602 1602
1603DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0, 1603DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
1604 doc: /* Return the binding for command KEYS in current local keymap only. 1604 doc: /* Return the binding for command KEYS in current local keymap only.
1605KEYS is a string, a sequence of keystrokes. 1605KEYS is a string or vector, a sequence of keystrokes.
1606The binding is probably a symbol with a function definition. 1606The binding is probably a symbol with a function definition.
1607 1607
1608If optional argument ACCEPT-DEFAULT is non-nil, recognize default 1608If optional argument ACCEPT-DEFAULT is non-nil, recognize default
@@ -1621,7 +1621,7 @@ bindings; see the description of `lookup-key' for more details about this. */)
1621 1621
1622DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0, 1622DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0,
1623 doc: /* Return the binding for command KEYS in current global keymap only. 1623 doc: /* Return the binding for command KEYS in current global keymap only.
1624KEYS is a string, a sequence of keystrokes. 1624KEYS is a string or vector, a sequence of keystrokes.
1625The binding is probably a symbol with a function definition. 1625The binding is probably a symbol with a function definition.
1626This function's return values are the same as those of `lookup-key' 1626This function's return values are the same as those of `lookup-key'
1627\(which see). 1627\(which see).
@@ -3751,7 +3751,7 @@ key, typing `ESC O P x' would return [f1 x]. */);
3751 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map, 3751 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
3752 doc: /* Keymap of key translations that can override keymaps. 3752 doc: /* Keymap of key translations that can override keymaps.
3753This keymap works like `function-key-map', but comes after that, 3753This keymap works like `function-key-map', but comes after that,
3754and applies even for keys that have ordinary bindings. */); 3754and its non-prefix bindings override ordinary bindings. */);
3755 Vkey_translation_map = Qnil; 3755 Vkey_translation_map = Qnil;
3756 3756
3757 staticpro (&Vmouse_events); 3757 staticpro (&Vmouse_events);