[gnus git] branch master updated: m0-5-250-gf036ee4 =1= gnus-art.el, gnus-async.el: Use point-min-marker and point-max-marker
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via f036ee4b99935a15584186aad375afce769affe1 (commit)
from 4d5210efac86cc8813b3d036fd008ab25ef53143 (commit)
- Log -----------------------------------------------------------------
commit f036ee4b99935a15584186aad375afce769affe1
Author: Dmitry Antipov <[email protected]>
Date: Fri Jan 11 15:08:09 2013 +0000
gnus-art.el, gnus-async.el: Use point-min-marker and point-max-marker
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c6519ea..e09bab9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2013-01-11 Dmitry Antipov <[email protected]>
+
+ * gnus-art.el (gnus-mime-display-security): Use point-min-marker
+ and point-max-marker.
+ * gnus-async.el (gnus-async-article-callback): Use point-max-marker.
+
2013-01-11 Julien Danjou <[email protected]>
* color.el (color-rgb-to-hsv): Fix conversion computing in case min and
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index a476851..7e642aa 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
@@ -8689,9 +8689,7 @@ For example:
gnus-mime-security-button-end-line-format))
(gnus-insert-mime-security-button handle)))
(mm-set-handle-multipart-parameter
- handle 'gnus-region
- (cons (set-marker (make-marker) (point-min))
- (set-marker (make-marker) (point-max))))
+ handle 'gnus-region (cons (point-min-marker) (point-max-marker)))
(goto-char (point-max))))
(defun gnus-mime-security-run-function (function)
diff --git a/lisp/gnus-async.el b/lisp/gnus-async.el
index 41b0cc2..c5d6433 100644
--- a/lisp/gnus-async.el
+++ b/lisp/gnus-async.el
@@ -254,7 +254,7 @@ that was fetched."
gnus-async-article-alist
(cons (list (intern (format "%s-%d" group article)
gnus-async-hashtb)
- mark (set-marker (make-marker) (point-max))
+ mark (point-max-marker)
group article)
gnus-async-article-alist))))
(if (not (gnus-buffer-live-p summary))
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 6 ++++++
lisp/gnus-art.el | 4 +---
lisp/gnus-async.el | 2 +-
3 files changed, 8 insertions(+), 4 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project