aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/lucid.el10
1 files changed, 9 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lucid.el b/lisp/emacs-lisp/lucid.el
index 144aaf35b22..eaa405afd33 100644
--- a/lisp/emacs-lisp/lucid.el
+++ b/lisp/emacs-lisp/lucid.el
@@ -53,8 +53,16 @@
53 (setcdr tail new-parent)))) 53 (setcdr tail new-parent))))
54 54
55(defun remove-hook (hook-var function) 55(defun remove-hook (hook-var function)
56 "Remove a function from a hook, if it is present.
57First argument HOOK-VAR (a symbol) is the name of a hook, second
58 argument FUNCTION is the function to remove (compared with `eq')."
56 (if (boundp 'hook-var) 59 (if (boundp 'hook-var)
57 (set hook-var (delq function (symbol-value hook-var))))) 60 (let ((old (symbol-value hook-var)))
61 ;; If the hook value is a single function, turn it into a list.
62 (if (or (not (listp old)) (eq (car old) 'lambda))
63 (set hook-var (list old)))
64 ;; Now delete FUNCTION.
65 (set hook-var (delq function (symbol-value hook-var))))))
58 66
59(defun remprop (symbol prop) 67(defun remprop (symbol prop)
60 (let ((plist (symbol-plist symbol))) 68 (let ((plist (symbol-plist symbol)))