# HG changeset patch # User Katsumi Yamaoka # Date 1279588744 0 # Node ID 20f9503a8859e34bf0bfee6de221c64c14bb3be1 # Parent 1135ec86232d7fff9fb64f58e63ea19b9b2a9c2b Fix previous change in gnus-summary-bookmark-make-record. 2010-07-20 Katsumi Yamaoka * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in the article buffer, not the summary buffer. diff -r 1135ec86232d -r 20f9503a8859 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Mon Jul 19 22:55:12 2010 +0000 +++ b/lisp/gnus/ChangeLog Tue Jul 20 01:19:04 2010 +0000 @@ -1,3 +1,8 @@ +2010-07-20 Katsumi Yamaoka + + * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in + the article buffer, not the summary buffer. + 2010-07-15 Katsumi Yamaoka * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for diff -r 1135ec86232d -r 20f9503a8859 lisp/gnus/gnus-sum.el --- a/lisp/gnus/gnus-sum.el Mon Jul 19 22:55:12 2010 +0000 +++ b/lisp/gnus/gnus-sum.el Tue Jul 20 01:19:04 2010 +0000 @@ -12646,7 +12646,7 @@ (id (mail-header-id head))) `(,subject ,@(condition-case nil - (bookmark-make-record-default 'no-file 'no-context (point)) + (bookmark-make-record-default 'no-file 'no-context pos) (wrong-number-of-arguments (bookmark-make-record-default 'point-only))) (location . ,(format "Gnus-%s %s:%d:%s" buf grp art id))