diff options
| author | Karoly Lorentey | 2004-08-09 11:05:10 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2004-08-09 11:05:10 +0000 |
| commit | cd83ec7be76b05014a49f8bb155a84ddd7c323ee (patch) | |
| tree | d8847695cedbde0c1bad8737131e219bfac6ce8a /src/keymap.c | |
| parent | 18ad87544445be2584163436bd3c5d6366afa122 (diff) | |
| parent | 30e75a873acbcc4f4d59d0341fb49211d8c6d010 (diff) | |
| download | emacs-cd83ec7be76b05014a49f8bb155a84ddd7c323ee.tar.gz emacs-cd83ec7be76b05014a49f8bb155a84ddd7c323ee.zip | |
Merged in changes from CVS trunk.
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-482
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-483
Build-in-place tweak
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-484
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-228
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 ee4f41de6b8..e93a3f89fe4 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -1603,7 +1603,7 @@ is non-nil, `key-binding' returns the unmapped command. */) | |||
| 1603 | 1603 | ||
| 1604 | DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0, | 1604 | DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0, |
| 1605 | doc: /* Return the binding for command KEYS in current local keymap only. | 1605 | doc: /* Return the binding for command KEYS in current local keymap only. |
| 1606 | KEYS is a string, a sequence of keystrokes. | 1606 | KEYS is a string or vector, a sequence of keystrokes. |
| 1607 | The binding is probably a symbol with a function definition. | 1607 | The binding is probably a symbol with a function definition. |
| 1608 | 1608 | ||
| 1609 | If optional argument ACCEPT-DEFAULT is non-nil, recognize default | 1609 | If optional argument ACCEPT-DEFAULT is non-nil, recognize default |
| @@ -1622,7 +1622,7 @@ bindings; see the description of `lookup-key' for more details about this. */) | |||
| 1622 | 1622 | ||
| 1623 | DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0, | 1623 | DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0, |
| 1624 | doc: /* Return the binding for command KEYS in current global keymap only. | 1624 | doc: /* Return the binding for command KEYS in current global keymap only. |
| 1625 | KEYS is a string, a sequence of keystrokes. | 1625 | KEYS is a string or vector, a sequence of keystrokes. |
| 1626 | The binding is probably a symbol with a function definition. | 1626 | The binding is probably a symbol with a function definition. |
| 1627 | This function's return values are the same as those of `lookup-key' | 1627 | This function's return values are the same as those of `lookup-key' |
| 1628 | \(which see). | 1628 | \(which see). |
| @@ -3752,7 +3752,7 @@ key, typing `ESC O P x' would return [f1 x]. */); | |||
| 3752 | DEFVAR_LISP ("key-translation-map", &Vkey_translation_map, | 3752 | DEFVAR_LISP ("key-translation-map", &Vkey_translation_map, |
| 3753 | doc: /* Keymap of key translations that can override keymaps. | 3753 | doc: /* Keymap of key translations that can override keymaps. |
| 3754 | This keymap works like `function-key-map', but comes after that, | 3754 | This keymap works like `function-key-map', but comes after that, |
| 3755 | and applies even for keys that have ordinary bindings. */); | 3755 | and its non-prefix bindings override ordinary bindings. */); |
| 3756 | Vkey_translation_map = Qnil; | 3756 | Vkey_translation_map = Qnil; |
| 3757 | 3757 | ||
| 3758 | staticpro (&Vmouse_events); | 3758 | staticpro (&Vmouse_events); |