diff options
| author | Katsumi Yamaoka | 2010-07-20 01:19:04 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-07-20 01:19:04 +0000 |
| commit | 72897ff9f7e5ab83d2cbf117f0afd7f9c506a5fe (patch) | |
| tree | 3d17b5f9bb63fe08ce5b0f11ff7d6447c5ca129b | |
| parent | 04779484e8945ad2333049f00bc00e793ff18ab7 (diff) | |
| download | emacs-72897ff9f7e5ab83d2cbf117f0afd7f9c506a5fe.tar.gz emacs-72897ff9f7e5ab83d2cbf117f0afd7f9c506a5fe.zip | |
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.
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 4e172cc8064..ba83627094e 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-07-20 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in | ||
| 4 | the article buffer, not the summary buffer. | ||
| 5 | |||
| 1 | 2010-07-15 Katsumi Yamaoka <yamaoka@jpl.org> | 6 | 2010-07-15 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 7 | ||
| 3 | * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for | 8 | * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for |
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index ae29c17ae18..93024e07280 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -12646,7 +12646,7 @@ If ALL is a number, fetch this number of articles." | |||
| 12646 | (id (mail-header-id head))) | 12646 | (id (mail-header-id head))) |
| 12647 | `(,subject | 12647 | `(,subject |
| 12648 | ,@(condition-case nil | 12648 | ,@(condition-case nil |
| 12649 | (bookmark-make-record-default 'no-file 'no-context (point)) | 12649 | (bookmark-make-record-default 'no-file 'no-context pos) |
| 12650 | (wrong-number-of-arguments | 12650 | (wrong-number-of-arguments |
| 12651 | (bookmark-make-record-default 'point-only))) | 12651 | (bookmark-make-record-default 'point-only))) |
| 12652 | (location . ,(format "Gnus-%s %s:%d:%s" buf grp art id)) | 12652 | (location . ,(format "Gnus-%s %s:%d:%s" buf grp art id)) |