# HG changeset patch # User Luc Teirlinck # Date 1091983777 0 # Node ID d9455bfd01eed55d582c17af31417a006d3ffda7 # Parent 05bc08d743920aeb79c98fb7129dc902461391d8 (global-unset-key, local-unset-key): Doc fixes. diff -r 05bc08d74392 -r d9455bfd01ee lisp/subr.el --- 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))