]> git.eshelyaron.com Git - emacs.git/commitdiff
(global-unset-key, local-unset-key): Doc fixes.
authorLuc Teirlinck <teirllm@auburn.edu>
Sun, 8 Aug 2004 16:49:37 +0000 (16:49 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Sun, 8 Aug 2004 16:49:37 +0000 (16:49 +0000)
lisp/subr.el

index 0572446aefce42d5bbde9ea94bd00e1e843ef8fa..eb1e5e5df2f6c8a160c321064008a705f2b8a8d0 100644 (file)
@@ -2304,13 +2304,13 @@ which in most cases is shared with all other buffers in the same major mode."
 
 (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))