emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117262: Gnus: bugfixes to make `gnus-mime-save-part


From: Katsumi Yamaoka
Subject: [Emacs-diffs] trunk r117262: Gnus: bugfixes to make `gnus-mime-save-part-and-strip' work again
Date: Thu, 05 Jun 2014 01:38:51 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117262
revision-id: address@hidden
parent: address@hidden
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Thu 2014-06-05 01:38:42 +0000
message:
  Gnus: bugfixes to make `gnus-mime-save-part-and-strip' work again
  
  * gnus-art.el (gnus-mm-display-part):
  * mm-decode.el (mm-shr):
  * mm-view.el (mm-inline-text-html-render-with-w3m, mm-inline-text)
  (mm-insert-inline): Set insertion type of end-marker, not only
  start-marker, of undisplayer so as to stay after inserted text.
modified:
  lisp/gnus/ChangeLog            changelog-20091113204419-o5vbwnq5f7feedwu-1433
  lisp/gnus/gnus-art.el          gnusart.el-20091113204419-o5vbwnq5f7feedwu-1108
  lisp/gnus/mm-decode.el         
mmdecode.el-20091113204419-o5vbwnq5f7feedwu-1971
  lisp/gnus/mm-view.el           mmview.el-20091113204419-o5vbwnq5f7feedwu-1976
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2014-06-02 00:18:22 +0000
+++ b/lisp/gnus/ChangeLog       2014-06-05 01:38:42 +0000
@@ -1,3 +1,11 @@
+2014-06-05  Katsumi Yamaoka  <address@hidden>
+
+       * gnus-art.el (gnus-mm-display-part):
+       * mm-decode.el (mm-shr):
+       * mm-view.el (mm-inline-text-html-render-with-w3m, mm-inline-text)
+       (mm-insert-inline): Set insertion type of end-marker, not only
+       start-marker, of undisplayer so as to stay after inserted text.
+
 2014-06-02  Andreas Schwab  <address@hidden>
 
        * html2text.el (html2text-get-attr): Fix typo when splitting value from

=== modified file 'lisp/gnus/gnus-art.el'
--- a/lisp/gnus/gnus-art.el     2014-05-15 23:31:30 +0000
+++ b/lisp/gnus/gnus-art.el     2014-06-05 01:38:42 +0000
@@ -5736,7 +5736,7 @@
                        `(lambda ()
                           (let ((inhibit-read-only t))
                             (delete-region ,(copy-marker (point-min) t)
-                                           ,(point-max-marker)))))))
+                                           ,(copy-marker (point-max) t)))))))
                    (part
                     (mm-display-inline handle))))))
       (goto-char point)

=== modified file 'lisp/gnus/mm-decode.el'
--- a/lisp/gnus/mm-decode.el    2014-05-02 09:44:34 +0000
+++ b/lisp/gnus/mm-decode.el    2014-06-05 01:38:42 +0000
@@ -1868,7 +1868,7 @@
        `(lambda ()
          (let ((inhibit-read-only t))
            (delete-region ,(copy-marker (point-min) t)
-                          ,(point-max-marker))))))))
+                          ,(copy-marker (point-max) t))))))))
 
 (defvar shr-map)
 

=== modified file 'lisp/gnus/mm-view.el'
--- a/lisp/gnus/mm-view.el      2014-05-29 03:45:29 +0000
+++ b/lisp/gnus/mm-view.el      2014-06-05 01:38:42 +0000
@@ -218,7 +218,7 @@
         `(lambda ()
            (let ((inhibit-read-only t))
              (delete-region ,(copy-marker (point-min) t)
-                            ,(point-max-marker)))))))))
+                            ,(copy-marker (point-max) t)))))))))
 
 (defvar mm-w3m-standalone-supports-m17n-p (if (featurep 'mule) 'undecided)
   "*T means the w3m command supports the m17n feature.")
@@ -392,7 +392,7 @@
        `(lambda ()
           (let ((inhibit-read-only t))
            (delete-region ,(copy-marker (point-min) t)
-                          ,(point-max-marker))))))))
+                          ,(copy-marker (point-max) t))))))))
 
 (defun mm-insert-inline (handle text)
   "Insert TEXT inline from HANDLE."
@@ -405,7 +405,7 @@
      `(lambda ()
        (let ((inhibit-read-only t))
          (delete-region ,(copy-marker b t)
-                        ,(copy-marker (point))))))))
+                        ,(copy-marker (point) t)))))))
 
 (defun mm-inline-audio (handle)
   (message "Not implemented"))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]