1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-11 09:20:51 +00:00

Fix previous change in gnus-summary-bookmark-make-record.

2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
 * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
 the article buffer, not the summary buffer.
This commit is contained in:
Katsumi Yamaoka 2010-07-20 01:19:04 +00:00
parent 04779484e8
commit 72897ff9f7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-07-20 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
the article buffer, not the summary buffer.
2010-07-15 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for

View File

@ -12646,7 +12646,7 @@ If ALL is a number, fetch this number of articles."
(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))