diff options
| author | Juanma Barranquero | 2007-10-18 13:51:21 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-10-18 13:51:21 +0000 |
| commit | aecedc825df99e5c2f9b81b6514bef0e9a041e1e (patch) | |
| tree | 785bf07f240ef2d205e649d543a38d3ab4f32468 | |
| parent | efffe5a38f345b0d2f1df8ab1b684affe3d80faf (diff) | |
| download | emacs-aecedc825df99e5c2f9b81b6514bef0e9a041e1e.tar.gz emacs-aecedc825df99e5c2f9b81b6514bef0e9a041e1e.zip | |
(unload-feature-special-hooks): Update list of special hooks.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/loadhist.el | 18 |
2 files changed, 14 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d76b474164e..481e889db9f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2007-10-18 Juanma Barranquero <lekktu@gmail.com> | 1 | 2007-10-18 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 2 | ||
| 3 | * loadhist.el (unload-feature-special-hooks): | ||
| 4 | Update list of special hooks. | ||
| 5 | |||
| 3 | * textmodes/fill.el (fill-individual-paragraphs): Doc fix. | 6 | * textmodes/fill.el (fill-individual-paragraphs): Doc fix. |
| 4 | (adaptive-fill-function): Doc fix. Remove * from docstring. | 7 | (adaptive-fill-function): Doc fix. Remove * from docstring. |
| 5 | 8 | ||
diff --git a/lisp/loadhist.el b/lisp/loadhist.el index 4e9ee480d65..0ae1a3260b0 100644 --- a/lisp/loadhist.el +++ b/lisp/loadhist.el | |||
| @@ -126,15 +126,19 @@ from a file." | |||
| 126 | 126 | ||
| 127 | (defvaralias 'loadhist-hook-functions 'unload-feature-special-hooks) | 127 | (defvaralias 'loadhist-hook-functions 'unload-feature-special-hooks) |
| 128 | (defvar unload-feature-special-hooks | 128 | (defvar unload-feature-special-hooks |
| 129 | '(after-change-functions | 129 | '(after-change-functions after-insert-file-functions |
| 130 | after-insert-file-functions auto-fill-function | 130 | after-make-frame-functions auto-fill-function before-change-functions |
| 131 | before-change-functions blink-paren-function | 131 | blink-paren-function buffer-access-fontify-functions command-line-functions |
| 132 | buffer-access-fontify-functions command-line-functions | 132 | comment-indent-function compilation-finish-functions |
| 133 | comment-indent-function kill-buffer-query-functions | 133 | disabled-command-function find-file-not-found-functions |
| 134 | kill-emacs-query-functions lisp-indent-function | 134 | font-lock-beginning-of-syntax-function font-lock-fontify-buffer-function |
| 135 | mouse-position-function | 135 | font-lock-fontify-region-function font-lock-mark-block-function |
| 136 | font-lock-syntactic-face-function font-lock-unfontify-buffer-function | ||
| 137 | font-lock-unfontify-region-function kill-buffer-query-functions | ||
| 138 | kill-emacs-query-functions lisp-indent-function mouse-position-function | ||
| 136 | redisplay-end-trigger-functions temp-buffer-show-function | 139 | redisplay-end-trigger-functions temp-buffer-show-function |
| 137 | window-scroll-functions window-size-change-functions | 140 | window-scroll-functions window-size-change-functions |
| 141 | write-contents-functions write-file-functions | ||
| 138 | write-region-annotate-functions) | 142 | write-region-annotate-functions) |
| 139 | "A list of special hooks from Info node `(elisp)Standard Hooks'. | 143 | "A list of special hooks from Info node `(elisp)Standard Hooks'. |
| 140 | 144 | ||