emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master d0b3a95: Bind enable-local-variables to nil globall


From: Katsumi Yamaoka
Subject: [Emacs-diffs] master d0b3a95: Bind enable-local-variables to nil globally (fix dbe3e41)
Date: Mon, 19 Jun 2017 23:46:52 -0400 (EDT)

branch: master
commit d0b3a9548c816661be459d7edfd59d6f14ca713a
Author: Katsumi Yamaoka <address@hidden>
Commit: Katsumi Yamaoka <address@hidden>

    Bind enable-local-variables to nil globally (fix dbe3e41)
    
    * lisp/gnus/mm-view.el (mm-display-inline-fontify):
    Bind enable-local-variables to nil globally instead of making it
    buffer-local; remove let-bind of local-enable-local-variables.
    cf. <address@hidden> in the emacs-devel list.
---
 lisp/gnus/mm-view.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/lisp/gnus/mm-view.el b/lisp/gnus/mm-view.el
index 4276f9e..9ff581d 100644
--- a/lisp/gnus/mm-view.el
+++ b/lisp/gnus/mm-view.el
@@ -475,12 +475,12 @@ If MODE is not set, try to find mode automatically."
       (require 'font-lock)
       ;; I find font-lock a bit too verbose.
       (let ((font-lock-verbose nil)
-           (font-lock-support-mode nil))
+           (font-lock-support-mode nil)
+           (enable-local-variables nil))
        ;; Disable support modes, e.g., jit-lock, lazy-lock, etc.
        ;; Note: XEmacs people use `font-lock-mode-hook' to run those modes.
        (set (make-local-variable 'font-lock-mode-hook) nil)
         (setq buffer-file-name (mm-handle-filename handle))
-        (set (make-local-variable 'enable-local-variables) nil)
        (with-demoted-errors
          (if mode
              (save-window-excursion
@@ -488,8 +488,7 @@ If MODE is not set, try to find mode automatically."
                (funcall mode))
            (let ((auto-mode-alist
                   (delq (rassq 'doc-view-mode-maybe auto-mode-alist)
-                        (copy-sequence auto-mode-alist)))
-                 (local-enable-local-variables nil))
+                        (copy-sequence auto-mode-alist))))
              (set-auto-mode)))
          ;; The mode function might have already turned on font-lock.
          ;; Do not fontify if the guess mode is fundamental.



reply via email to

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