Changes committed gnus/lisp (ChangeLog gnus-sum.el)

"Katsumi Yamaoka" <[email protected]> Thu, 15 Apr 2010 01:16:40 +0200
Newsgroups gmane.emacs.gnus.commits
Message-ID <[email protected]>
Modified: ChangeLog gnus-sum.el

(gnus-summary-bookmark-make-record): Add `location' field.  By Stefan Monnier.


Index: ChangeLog
diff -u gnus/lisp/ChangeLog:7.2083 gnus/lisp/ChangeLog:7.2084
--- ChangeLog:7.2083	Wed Apr 14 16:54:28 2010
+++ ChangeLog	Thu Apr 15 01:16:40 2010
@@ -1,3 +1,7 @@
+2010-04-14  Stefan Monnier  <[email protected]>
+
+	* gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
+
 2010-04-14  Katsumi Yamaoka  <[email protected]>
 
 	* lpath.el: Fbind bookmark-default-handler,
Index: gnus-sum.el
diff -u gnus/lisp/gnus-sum.el:7.249 gnus/lisp/gnus-sum.el:7.250
--- gnus-sum.el:7.249	Wed Apr 14 16:54:28 2010
+++ gnus-sum.el	Thu Apr 15 01:16:40 2010
@@ -12657,8 +12657,9 @@
          (id      (mail-header-id head)))
     `(,subject
       ,@(bookmark-make-record-default 'point-only)
-        (group . ,grp) (article . ,art)
-        (message-id . ,id) (handler . gnus-summary-bookmark-jump))))
+      (location . ,(format "Gnus %s:%d:%s" grp art id))
+      (group . ,grp) (article . ,art)
+      (message-id . ,id) (handler . gnus-summary-bookmark-jump))))
 
 ;;;###autoload
 (defun gnus-summary-bookmark-jump (bookmark)