(local-unset-key): Fix args in previous change.

This commit is contained in:
Karl Heuer 1995-02-25 04:57:17 +00:00
parent baed010936
commit db2474b88d

View file

@ -970,12 +970,12 @@ KEY is a string representing a sequence of keystrokes."
(interactive "kUnset key globally: ")
(global-set-key key nil))
(defun local-unset-key
(defun local-unset-key (key)
"Remove local binding of KEY.
KEY is a string representing a sequence of keystrokes."
(interactive "kUnset key locally: ")
(if (current-local-map)
(local-set-key (current-local-map) key nil))
(local-set-key key nil))
nil)
;; now in fns.c