aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-01-24 22:14:00 +0000
committerRichard M. Stallman1995-01-24 22:14:00 +0000
commit9af4c1b597e8d6f2fb68b4b9aab542a6461bc559 (patch)
tree41f5100fdc7b42691a04036badff05211b8685e4 /src
parent1989e7bccb387003e85a6fd789a5c230053018c6 (diff)
downloademacs-9af4c1b597e8d6f2fb68b4b9aab542a6461bc559.tar.gz
emacs-9af4c1b597e8d6f2fb68b4b9aab542a6461bc559.zip
(Flocal_set_key, Fglobal_set_key): Use K, not k.
Diffstat (limited to 'src')
-rw-r--r--src/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 4b9e206bca3..dde720949fb 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -1000,7 +1000,7 @@ bindings; see the description of `lookup-key' for more details about this.")
1000} 1000}
1001 1001
1002DEFUN ("global-set-key", Fglobal_set_key, Sglobal_set_key, 2, 2, 1002DEFUN ("global-set-key", Fglobal_set_key, Sglobal_set_key, 2, 2,
1003 "kSet key globally: \nCSet key %s to command: ", 1003 "KSet key globally: \nCSet key %s to command: ",
1004 "Give KEY a global binding as COMMAND.\n\ 1004 "Give KEY a global binding as COMMAND.\n\
1005COMMAND is a symbol naming an interactively-callable function.\n\ 1005COMMAND is a symbol naming an interactively-callable function.\n\
1006KEY is a key sequence (a string or vector of characters or event types).\n\ 1006KEY is a key sequence (a string or vector of characters or event types).\n\
@@ -1019,7 +1019,7 @@ that local binding will continue to shadow any global binding.")
1019} 1019}
1020 1020
1021DEFUN ("local-set-key", Flocal_set_key, Slocal_set_key, 2, 2, 1021DEFUN ("local-set-key", Flocal_set_key, Slocal_set_key, 2, 2,
1022 "kSet key locally: \nCSet key %s locally to command: ", 1022 "KSet key locally: \nCSet key %s locally to command: ",
1023 "Give KEY a local binding as COMMAND.\n\ 1023 "Give KEY a local binding as COMMAND.\n\
1024COMMAND is a symbol naming an interactively-callable function.\n\ 1024COMMAND is a symbol naming an interactively-callable function.\n\
1025KEY is a key sequence (a string or vector of characters or event types).\n\ 1025KEY is a key sequence (a string or vector of characters or event types).\n\