Fix bidi-paragraph-direction in Rmail view buffer
* lisp/mail/rmail.el (rmail-show-message-1): Reset bidi-paragraph-direction to nil before formatting the message for display.
This commit is contained in:
parent
dc9d837d02
commit
98b8d44892
1 changed files with 6 additions and 1 deletions
|
@ -2797,7 +2797,12 @@ The current mail message becomes the message displayed."
|
|||
;; rmail-header-style based on the binding in effect when
|
||||
;; this function is called; `rmail-toggle-headers' can
|
||||
;; inspect this value to determine how to toggle.
|
||||
(set (make-local-variable 'rmail-header-style) header-style))
|
||||
(set (make-local-variable 'rmail-header-style) header-style)
|
||||
;; In case viewing the previous message sets the paragraph
|
||||
;; direction non-nil, we reset it here to allow independent
|
||||
;; dynamic determination of paragraph direction in every
|
||||
;; message.
|
||||
(setq bidi-paragraph-direction nil))
|
||||
(if (and rmail-enable-mime
|
||||
rmail-show-mime-function
|
||||
(re-search-forward "mime-version: 1.0" nil t))
|
||||
|
|
Loading…
Add table
Reference in a new issue