# HG changeset patch # User Karl Heuer # Date 793688237 0 # Node ID bd0ab0601489029477df7da9401a40ae042e90f1 # Parent 4dba26c66bf501f3472451367ef735f3028467c7 (local-unset-key): Fix args in previous change. diff -r 4dba26c66bf5 -r bd0ab0601489 lisp/subr.el --- a/lisp/subr.el Sat Feb 25 04:44:08 1995 +0000 +++ b/lisp/subr.el Sat Feb 25 04:57:17 1995 +0000 @@ -970,12 +970,12 @@ (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