changeset 56625:d9455bfd01ee

(global-unset-key, local-unset-key): Doc fixes.
author Luc Teirlinck <teirllm@auburn.edu>
date Sun, 08 Aug 2004 16:49:37 +0000
parents 05bc08d74392
children 6c25cc5e679c
files lisp/subr.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Sun Aug 08 16:17:23 2004 +0000
+++ b/lisp/subr.el	Sun Aug 08 16:49:37 2004 +0000
@@ -2304,13 +2304,13 @@
 
 (defun global-unset-key (key)
   "Remove global binding of KEY.
-KEY is a string representing a sequence of keystrokes."
+KEY is a string or vector representing a sequence of keystrokes."
   (interactive "kUnset key globally: ")
   (global-set-key key nil))
 
 (defun local-unset-key (key)
   "Remove local binding of KEY.
-KEY is a string representing a sequence of keystrokes."
+KEY is a string or vector representing a sequence of keystrokes."
   (interactive "kUnset key locally: ")
   (if (current-local-map)
       (local-set-key key nil))