diff options
| author | Stefan Monnier | 2000-08-16 20:51:48 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-08-16 20:51:48 +0000 |
| commit | 057ab2946f2ae14fe092c93e3babc1bf1874137a (patch) | |
| tree | db406c1114949d48df31480b11dcdc7cc59815ef | |
| parent | a313af117c78741a71e7ccf28c3da71ef25d371a (diff) | |
| download | emacs-057ab2946f2ae14fe092c93e3babc1bf1874137a.tar.gz emacs-057ab2946f2ae14fe092c93e3babc1bf1874137a.zip | |
(unload-feature): Typo.
| -rw-r--r-- | lisp/loadhist.el | 2 |
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)))))) |