mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode because it displays images using overlays that aren't easy to copy to the article buffer.
This commit is contained in:
parent
4d3786ace1
commit
44cb0cc967
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2011-09-21 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode
|
||||
because it displays images using overlays that aren't easy to copy to
|
||||
the article buffer.
|
||||
|
||||
2011-09-20 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
|
||||
|
||||
* message.el (message-indent-citation): Fix empty line removal at the
|
||||
|
|
|
@ -607,7 +607,10 @@ If MODE is not set, try to find mode automatically."
|
|||
(set (make-local-variable 'enable-local-variables) nil)
|
||||
(if mode
|
||||
(funcall mode)
|
||||
(set-auto-mode))
|
||||
(let ((auto-mode-alist
|
||||
(delq (rassq 'doc-view-mode-maybe auto-mode-alist)
|
||||
(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.
|
||||
(unless (or (symbol-value 'font-lock-mode)
|
||||
|
|
Loading…
Add table
Reference in a new issue