aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2000-08-16 20:51:48 +0000
committerStefan Monnier2000-08-16 20:51:48 +0000
commit057ab2946f2ae14fe092c93e3babc1bf1874137a (patch)
treedb406c1114949d48df31480b11dcdc7cc59815ef
parenta313af117c78741a71e7ccf28c3da71ef25d371a (diff)
downloademacs-057ab2946f2ae14fe092c93e3babc1bf1874137a.tar.gz
emacs-057ab2946f2ae14fe092c93e3babc1bf1874137a.zip
(unload-feature): Typo.
-rw-r--r--lisp/loadhist.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/loadhist.el b/lisp/loadhist.el
index 95208bc7908..402a3ce35b9 100644
--- a/lisp/loadhist.el
+++ b/lisp/loadhist.el
@@ -150,7 +150,7 @@ is nil, raise an error."
150 (if (or (and (boundp x) ; Random hooks. 150 (if (or (and (boundp x) ; Random hooks.
151 (consp (symbol-value x)) 151 (consp (symbol-value x))
152 (string-match "-hooks?\\'" (symbol-name x))) 152 (string-match "-hooks?\\'" (symbol-name x)))
153 (and (fboundp x) ; Known abnormal hooks etc. 153 (and (boundp x) ; Known abnormal hooks etc.
154 (memq x loadhist-hook-functions))) 154 (memq x loadhist-hook-functions)))
155 (dolist (y (cdr flist)) 155 (dolist (y (cdr flist))
156 (remove-hook x y)))))) 156 (remove-hook x y))))))