# HG changeset patch # User Katsumi Yamaoka # Date 1279588805 0 # Node ID f7b2644b5eeef3df83538433093d35b52a327270 # Parent 91bbf4e4290fe1a6c6f9978e1a5c7a92a079d38b# Parent 20f9503a8859e34bf0bfee6de221c64c14bb3be1 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 91bbf4e4290f -r f7b2644b5eee lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Mon Jul 19 15:39:19 2010 +0200 +++ b/lisp/gnus/ChangeLog Tue Jul 20 01:20:05 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 91bbf4e4290f -r f7b2644b5eee lisp/gnus/gnus-sum.el --- a/lisp/gnus/gnus-sum.el Mon Jul 19 15:39:19 2010 +0200 +++ b/lisp/gnus/gnus-sum.el Tue Jul 20 01:20:05 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))