From: Richard M. Stallman Date: Tue, 24 Jan 1995 22:14:00 +0000 (+0000) Subject: (Flocal_set_key, Fglobal_set_key): Use K, not k. X-Git-Tag: emacs-19.34~5317 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9af4c1b597e8d6f2fb68b4b9aab542a6461bc559;p=emacs.git (Flocal_set_key, Fglobal_set_key): Use K, not k. --- 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.") } DEFUN ("global-set-key", Fglobal_set_key, Sglobal_set_key, 2, 2, - "kSet key globally: \nCSet key %s to command: ", + "KSet key globally: \nCSet key %s to command: ", "Give KEY a global binding as COMMAND.\n\ COMMAND is a symbol naming an interactively-callable function.\n\ KEY 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.") } DEFUN ("local-set-key", Flocal_set_key, Slocal_set_key, 2, 2, - "kSet key locally: \nCSet key %s locally to command: ", + "KSet key locally: \nCSet key %s locally to command: ", "Give KEY a local binding as COMMAND.\n\ COMMAND is a symbol naming an interactively-callable function.\n\ KEY is a key sequence (a string or vector of characters or event types).\n\