aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-21 22:43:09 +0000
committerRichard M. Stallman1993-11-21 22:43:09 +0000
commitc818754bc1f883c54b736619b432cec54c6e11ab (patch)
tree2297be2901b98f1e3de234c390a7482b9da39b0e /src
parentf39f5da303974726966144c1476792284b01b81b (diff)
downloademacs-c818754bc1f883c54b736619b432cec54c6e11ab.tar.gz
emacs-c818754bc1f883c54b736619b432cec54c6e11ab.zip
Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/keymap.c6
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\
508KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\ 508KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\
509meaning a sequence of keystrokes and events.\n\ 509meaning a sequence of keystrokes and events.\n\
510Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\
511can be included if you use a vector.\n\
510DEF is anything that can be a key's definition:\n\ 512DEF 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\
914COMMAND is a symbol naming an interactively-callable function.\n\ 916COMMAND is a symbol naming an interactively-callable function.\n\
915KEY is a key sequence (a string or vector of characters or event types).\n\ 917KEY is a key sequence (a string or vector of characters or event types).\n\
918Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\
919can be included if you use a vector.\n\
916Note that if KEY has a local binding in the current buffer\n\ 920Note that if KEY has a local binding in the current buffer\n\
917that local binding will continue to shadow any global binding.") 921that 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\
932COMMAND is a symbol naming an interactively-callable function.\n\ 936COMMAND is a symbol naming an interactively-callable function.\n\
933KEY is a key sequence (a string or vector of characters or event types).\n\ 937KEY is a key sequence (a string or vector of characters or event types).\n\
938Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\
939can be included if you use a vector.\n\
934The binding goes in the current buffer's local map,\n\ 940The binding goes in the current buffer's local map,\n\
935which is shared with other buffers in the same major mode.") 941which is shared with other buffers in the same major mode.")
936 (keys, function) 942 (keys, function)