]> git.eshelyaron.com Git - emacs.git/commitdiff
Wrap some set-auto-mode calls with delay-mode-hooks (bug#39190)
authorJuri Linkov <juri@linkov.net>
Wed, 5 Feb 2020 22:38:53 +0000 (00:38 +0200)
committerJuri Linkov <juri@linkov.net>
Wed, 5 Feb 2020 22:38:53 +0000 (00:38 +0200)
* lisp/gnus/mm-view.el (mm-display-inline-fontify):
* lisp/vc/diff-mode.el (diff-syntax-fontify-props):
* lisp/vc/vc.el (vc-find-revision-no-save):
Add delay-mode-hooks around set-auto-mode calls
to not run hooks that might assume buffer-file-name
really associates buffer with a file.

lisp/gnus/mm-view.el
lisp/vc/diff-mode.el
lisp/vc/vc.el

index a6be04e313ddc7d5b1d40d9495f7a74f14cc8fa3..828ac633dc5158724d17b1d74a3237aa3c103329 100644 (file)
@@ -497,7 +497,9 @@ If MODE is not set, try to find mode automatically."
            (let ((auto-mode-alist
                   (delq (rassq 'doc-view-mode-maybe auto-mode-alist)
                         (copy-sequence auto-mode-alist))))
-             (set-auto-mode)
+             ;; Don't run hooks that might assume buffer-file-name
+             ;; really associates buffer with a file (bug#39190).
+             (delay-mode-hooks (set-auto-mode))
              (setq mode major-mode)))
          ;; Do not fontify if the guess mode is fundamental.
          (unless (eq major-mode 'fundamental-mode)
index 2dbab802086969d5b11adf1e9cae37f62eafd412..d61c363c8210efa909ef521c17acc75b8bdf8211 100644 (file)
@@ -2719,7 +2719,9 @@ hunk text is not found in the source file."
     (cl-assert (null buffer-file-name))
     (let ((enable-local-variables :safe) ;; to find `mode:'
           (buffer-file-name file))
-      (set-auto-mode)
+      ;; Don't run hooks that might assume buffer-file-name
+      ;; really associates buffer with a file (bug#39190).
+      (delay-mode-hooks (set-auto-mode))
       ;; FIXME: Is this really worth the trouble?
       (when (and (fboundp 'generic-mode-find-file-hook)
                  (memq #'generic-mode-find-file-hook
index f64b6c0631071069cfb8fa06ec66d8745b3e423e..ec252b74d47964b07ae867c42a1eaefd5f8c00fc 100644 (file)
@@ -2098,7 +2098,9 @@ Unlike `vc-find-revision-save', doesn't save the buffer to the file."
                     ;; For non-interactive, skip any questions
                     (let ((enable-local-variables :safe) ;; to find `mode:'
                           (buffer-file-name file))
-                      (ignore-errors (set-auto-mode)))
+                      ;; Don't run hooks that might assume buffer-file-name
+                      ;; really associates buffer with a file (bug#39190).
+                      (ignore-errors (delay-mode-hooks (set-auto-mode))))
                   (normal-mode))
                (set-buffer-modified-p nil)
                 (setq buffer-read-only t))