emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105109: lisp/loadhist.el (unload-fea


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105109: lisp/loadhist.el (unload-feature-special-hooks): Add some hooks (bug#5327).
Date: Mon, 11 Jul 2011 18:31:09 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105109
fixes bug(s): http://debbugs.gnu.org/5327
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Mon 2011-07-11 18:31:09 +0200
message:
  lisp/loadhist.el (unload-feature-special-hooks): Add some hooks (bug#5327).
modified:
  lisp/ChangeLog
  lisp/loadhist.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-07-11 15:03:24 +0000
+++ b/lisp/ChangeLog    2011-07-11 16:31:09 +0000
@@ -1,3 +1,9 @@
+2011-07-11  Juanma Barranquero  <address@hidden>
+
+       * loadhist.el (unload-feature-special-hooks):
+       Add `auto-coding-functions', `fill-nobreak-predicate' and
+       `find-directory-functions' (bug#5327).
+
 2011-07-11  Lars Magne Ingebrigtsen  <address@hidden>
 
        * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).

=== modified file 'lisp/loadhist.el'
--- a/lisp/loadhist.el  2011-06-25 18:21:00 +0000
+++ b/lisp/loadhist.el  2011-07-11 16:31:09 +0000
@@ -115,20 +115,28 @@
 (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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]