]> git.eshelyaron.com Git - emacs.git/commitdiff
shr.el (shr-tag-img): Add a space at the end of an ALT image text to make asynchronou...
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 2 Oct 2011 22:03:55 +0000 (22:03 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sun, 2 Oct 2011 22:03:55 +0000 (22:03 +0000)
lisp/gnus/ChangeLog
lisp/gnus/shr.el

index a330d5c6be8dba54aad0c45ef2de5b03db447b9c..67a517753d2ad51b6c76587bfdcaa038fcf8c5a6 100644 (file)
@@ -1,3 +1,8 @@
+2011-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * shr.el (shr-tag-img): Add a space at the end of an ALT image text to
+       make asynchronous adjacent image insertion work better.
+
 2011-09-27  Daiki Ueno  <ueno@unixuser.org>
 
        * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
index f49bbd69da37617e2150b576c83c01ef4c808785..ddf47f4ed1416c162d6300f5e0d0fa2afb093dd2 100644 (file)
@@ -901,7 +901,7 @@ ones, in case fg and bg are nil."
               (url-is-cached (shr-encode-url url)))
          (funcall shr-put-image-function (shr-get-image-data url) alt))
         (t
-         (insert alt)
+         (insert alt " ")
          (when (and shr-ignore-cache
                     (url-is-cached (shr-encode-url url)))
            (let ((file (url-cache-create-filename (shr-encode-url url))))
@@ -912,7 +912,7 @@ ones, in case fg and bg are nil."
               'url-queue-retrieve
             'url-retrieve)
           (shr-encode-url url) 'shr-image-fetched
-          (list (current-buffer) start (point-marker))
+          (list (current-buffer) start (set-marker (make-marker) (1- (point))))
           t)))
        (put-text-property start (point) 'keymap shr-map)
        (put-text-property start (point) 'shr-alt alt)