From 071a2a7132a10ab5727a2e4469bbe2c7929f5475 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 12 Mar 1997 02:08:10 +0000 Subject: [PATCH] Fix typo in previous change. --- lisp/subr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.5