From: Karl Heuer Date: Wed, 12 Mar 1997 02:08:10 +0000 (+0000) Subject: Fix typo in previous change. X-Git-Tag: emacs-20.1~2793 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=071a2a7132a10ab5727a2e4469bbe2c7929f5475;p=emacs.git Fix typo in previous change. --- diff --git a/lisp/subr.el b/lisp/subr.el index 0c72ed1538e..fb22bc02654 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -907,7 +907,7 @@ that can be added." (defun remove-from-invisibility-spec (arg) "Remove elements from `buffer-invisibility-spec'." (if buffer-invisibility-spec - (setq buffer-invisibility-spec (delete* arg buffer-invisibility-spec)))) + (setq buffer-invisibility-spec (delete arg buffer-invisibility-spec)))) (defun global-set-key (key command) "Give KEY a global binding as COMMAND.