(rmail-fontify-message, rmail-unfontify-buffer-function):
Reset the buffer modified state if necessary.
This commit is contained in:
parent
5babefcfaf
commit
1afb7be292
1 changed files with 4 additions and 2 deletions
|
@ -2548,7 +2548,8 @@ This has an effect only if a summary buffer exists.")
|
|||
(widen)
|
||||
(remove-hook 'rmail-show-message-hook 'rmail-fontify-message t)
|
||||
(remove-text-properties (point-min) (point-max) '(rmail-fontified nil))
|
||||
(font-lock-default-unfontify-buffer))))
|
||||
(font-lock-default-unfontify-buffer)
|
||||
(and (not modified) (buffer-modified-p) (set-buffer-modified-p nil)))))
|
||||
|
||||
(defun rmail-fontify-message ()
|
||||
;; Fontify the current message if it is not already fontified.
|
||||
|
@ -2560,7 +2561,8 @@ This has an effect only if a summary buffer exists.")
|
|||
(save-excursion
|
||||
(save-match-data
|
||||
(add-text-properties (point-min) (point-max) '(rmail-fontified t))
|
||||
(font-lock-fontify-region (point-min) (point-max)))))))
|
||||
(font-lock-fontify-region (point-min) (point-max))
|
||||
(and (not modified) (buffer-modified-p) (set-buffer-modified-p nil)))))))
|
||||
|
||||
;;;; *** Rmail Specify Inbox Files ***
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue