diff options
| author | Luc Teirlinck | 2004-08-08 00:33:40 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-08-08 00:33:40 +0000 |
| commit | 7a093e872021135087ca04364bf1764832fc807a (patch) | |
| tree | e17cf353487b366166c8966216f149ef2baf46f4 /src/keymap.c | |
| parent | e4e66c94cbd659c6034444c69eae1a549e21b7cd (diff) | |
| download | emacs-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.c | 6 |
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 | ||
| 1603 | DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0, | 1603 | DEFUN ("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. |
| 1605 | KEYS is a string, a sequence of keystrokes. | 1605 | KEYS is a string or vector, a sequence of keystrokes. |
| 1606 | The binding is probably a symbol with a function definition. | 1606 | The binding is probably a symbol with a function definition. |
| 1607 | 1607 | ||
| 1608 | If optional argument ACCEPT-DEFAULT is non-nil, recognize default | 1608 | If 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 | ||
| 1622 | DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0, | 1622 | DEFUN ("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. |
| 1624 | KEYS is a string, a sequence of keystrokes. | 1624 | KEYS is a string or vector, a sequence of keystrokes. |
| 1625 | The binding is probably a symbol with a function definition. | 1625 | The binding is probably a symbol with a function definition. |
| 1626 | This function's return values are the same as those of `lookup-key' | 1626 | This 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. |
| 3753 | This keymap works like `function-key-map', but comes after that, | 3753 | This keymap works like `function-key-map', but comes after that, |
| 3754 | and applies even for keys that have ordinary bindings. */); | 3754 | and 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); |