diff lisp/subr.el @ 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 059dc717baef
children e8b05868f298 1425b1df1da8
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))