diff options
| author | Richard M. Stallman | 1993-11-21 22:43:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-21 22:43:09 +0000 |
| commit | c818754bc1f883c54b736619b432cec54c6e11ab (patch) | |
| tree | 2297be2901b98f1e3de234c390a7482b9da39b0e /src | |
| parent | f39f5da303974726966144c1476792284b01b81b (diff) | |
| download | emacs-c818754bc1f883c54b736619b432cec54c6e11ab.tar.gz emacs-c818754bc1f883c54b736619b432cec54c6e11ab.zip | |
Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keymap.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/keymap.c b/src/keymap.c index 3e827e3e347..909645f7e0c 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -507,6 +507,8 @@ DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0, | |||
| 507 | "Args KEYMAP, KEY, DEF. Define key sequence KEY, in KEYMAP, as DEF.\n\ | 507 | "Args KEYMAP, KEY, DEF. Define key sequence KEY, in KEYMAP, as DEF.\n\ |
| 508 | KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\ | 508 | KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\ |
| 509 | meaning a sequence of keystrokes and events.\n\ | 509 | meaning a sequence of keystrokes and events.\n\ |
| 510 | Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\ | ||
| 511 | can be included if you use a vector.\n\ | ||
| 510 | DEF is anything that can be a key's definition:\n\ | 512 | DEF is anything that can be a key's definition:\n\ |
| 511 | nil (means key is undefined in this keymap),\n\ | 513 | nil (means key is undefined in this keymap),\n\ |
| 512 | a command (a Lisp function suitable for interactive calling)\n\ | 514 | a command (a Lisp function suitable for interactive calling)\n\ |
| @@ -913,6 +915,8 @@ DEFUN ("global-set-key", Fglobal_set_key, Sglobal_set_key, 2, 2, | |||
| 913 | "Give KEY a global binding as COMMAND.\n\ | 915 | "Give KEY a global binding as COMMAND.\n\ |
| 914 | COMMAND is a symbol naming an interactively-callable function.\n\ | 916 | COMMAND is a symbol naming an interactively-callable function.\n\ |
| 915 | KEY is a key sequence (a string or vector of characters or event types).\n\ | 917 | KEY is a key sequence (a string or vector of characters or event types).\n\ |
| 918 | Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\ | ||
| 919 | can be included if you use a vector.\n\ | ||
| 916 | Note that if KEY has a local binding in the current buffer\n\ | 920 | Note that if KEY has a local binding in the current buffer\n\ |
| 917 | that local binding will continue to shadow any global binding.") | 921 | that local binding will continue to shadow any global binding.") |
| 918 | (keys, function) | 922 | (keys, function) |
| @@ -931,6 +935,8 @@ DEFUN ("local-set-key", Flocal_set_key, Slocal_set_key, 2, 2, | |||
| 931 | "Give KEY a local binding as COMMAND.\n\ | 935 | "Give KEY a local binding as COMMAND.\n\ |
| 932 | COMMAND is a symbol naming an interactively-callable function.\n\ | 936 | COMMAND is a symbol naming an interactively-callable function.\n\ |
| 933 | KEY is a key sequence (a string or vector of characters or event types).\n\ | 937 | KEY is a key sequence (a string or vector of characters or event types).\n\ |
| 938 | Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\ | ||
| 939 | can be included if you use a vector.\n\ | ||
| 934 | The binding goes in the current buffer's local map,\n\ | 940 | The binding goes in the current buffer's local map,\n\ |
| 935 | which is shared with other buffers in the same major mode.") | 941 | which is shared with other buffers in the same major mode.") |
| 936 | (keys, function) | 942 | (keys, function) |