diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-07-11 18:31:09 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-07-11 18:31:09 +0200 |
commit | a1e65d422f299129b4805a35538336db33f9347e (patch) | |
tree | 59c1b21428bd952c06ca2e12a3051222358e05f8 /lisp/loadhist.el | |
parent | 47076272e75b2e77241782a16ab6626541f65c99 (diff) | |
download | emacs-a1e65d422f299129b4805a35538336db33f9347e.tar.gz emacs-a1e65d422f299129b4805a35538336db33f9347e.tar.bz2 emacs-a1e65d422f299129b4805a35538336db33f9347e.zip |
lisp/loadhist.el (unload-feature-special-hooks): Add some hooks (bug#5327).
Diffstat (limited to 'lisp/loadhist.el')
-rw-r--r-- | lisp/loadhist.el | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/lisp/loadhist.el b/lisp/loadhist.el index 943eac42b02..0b569199935 100644 --- a/lisp/loadhist.el +++ b/lisp/loadhist.el @@ -115,20 +115,28 @@ from a file." (defvaralias 'loadhist-hook-functions 'unload-feature-special-hooks) (defvar unload-feature-special-hooks '(after-change-functions after-insert-file-functions - after-make-frame-functions auto-fill-function before-change-functions + after-make-frame-functions auto-coding-functions + auto-fill-function before-change-functions blink-paren-function buffer-access-fontify-functions - choose-completion-string-functions comint-output-filter-functions - command-line-functions comment-indent-function compilation-finish-functions + choose-completion-string-functions + comint-output-filter-functions command-line-functions + comment-indent-function compilation-finish-functions delete-frame-functions disabled-command-function - find-file-not-found-functions font-lock-beginning-of-syntax-function - font-lock-fontify-buffer-function font-lock-fontify-region-function - font-lock-mark-block-function font-lock-syntactic-face-function - font-lock-unfontify-buffer-function font-lock-unfontify-region-function - kill-buffer-query-functions kill-emacs-query-functions lisp-indent-function - mouse-position-function redisplaylay-end-trigger-functions - suspend-tty-functions temp-buffer-show-function window-scroll-functions - window-size-change-functions write-contents-functions write-file-functions - write-region-annotate-functions) + fill-nobreak-predicate find-directory-functions + find-file-not-found-functions + font-lock-beginning-of-syntax-function + font-lock-fontify-buffer-function + font-lock-fontify-region-function + font-lock-mark-block-function + font-lock-syntactic-face-function + font-lock-unfontify-buffer-function + font-lock-unfontify-region-function + kill-buffer-query-functions kill-emacs-query-functions + lisp-indent-function mouse-position-function + redisplaylay-end-trigger-functions suspend-tty-functions + temp-buffer-show-function window-scroll-functions + window-size-change-functions write-contents-functions + write-file-functions write-region-annotate-functions) "A list of special hooks from Info node `(elisp)Standard Hooks'. These are symbols with hooklike values whose names don't end in |