]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix display by Rmail of bidirectional text in MIME email messages.
authorEli Zaretskii <eliz@gnu.org>
Sat, 3 Sep 2011 08:44:16 +0000 (11:44 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 3 Sep 2011 08:44:16 +0000 (11:44 +0300)
 lisp/mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
 newline before and after the tag line, so it doesn't interfere
 with determining the paragraph direction of bidirectional text.

lisp/ChangeLog
lisp/mail/rmail.el
lisp/mail/rmailmm.el

index 599c383ef13c1ded3aad3c5338154df3e29619ae..781833d309c505421e27fa71a414096f25fdc1c4 100644 (file)
@@ -1,3 +1,9 @@
+2011-09-03  Eli Zaretskii  <eliz@gnu.org>
+
+       * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
+       newline before and after the tag line, so it doesn't interfere
+       with determining the paragraph direction of bidirectional text.
+
 2011-09-03  Leo Liu  <sdl.web@gmail.com>
 
        * files.el (find-file-not-true-dirname-list): Remove.  (Bug#9422)
index 252fb112a5daff412b0ccf2cf571b4a37d86853c..ac07f07a76bd2c80d7123a5a535c3f913ea09d51 100644 (file)
@@ -4482,7 +4482,7 @@ With prefix argument N moves forward N messages with these labels.
 
 ;;;***
 \f
-;;;### (autoloads (rmail-mime) "rmailmm" "rmailmm.el" "a7d3e7205efa4e20ca9038c9b260ce83")
+;;;### (autoloads (rmail-mime) "rmailmm" "rmailmm.el" "2c8675d7c069c68bc36a4003b15448d1")
 ;;; Generated autoloads from rmailmm.el
 
 (autoload 'rmail-mime "rmailmm" "\
index 597068562b55f036f3598c51f0229204e058b9c8..d3351255583d8efb4ef552d709beb3aac36e4f9c 100644 (file)
@@ -426,7 +426,7 @@ The value is a vector [ INDEX HEADER TAGLINE BODY END], where
   "Insert a tag line for MIME-entity ENTITY.
 ITEM-LIST is a list of strings or button-elements (list) to be added
 to the tag line."
-  (insert "[")
+  (insert "\n[")
   (let ((tag (aref (rmail-mime-entity-tagline entity) 0)))
     (if (> (length tag) 0) (insert (substring tag 1) ":")))
   (insert (car (rmail-mime-entity-type entity)) " ")
@@ -439,7 +439,7 @@ to the tag line."
       (if (stringp item)
          (insert item)
        (apply 'insert-button item))))
-  (insert "]\n"))
+  (insert "]\n\n"))
 
 (defun rmail-mime-update-tagline (entity)
   "Update the current tag line for MIME-entity ENTITY."