diff options
author | Karl Fogel <kfogel@red-bean.com> | 2010-07-14 11:57:54 -0400 |
---|---|---|
committer | Karl Fogel <kfogel@red-bean.com> | 2010-07-14 11:57:54 -0400 |
commit | e44fa724e4563cfd3f30b85c3c16a2d2dab65ccd (patch) | |
tree | 0d518ac756edeaf43522be1cec5c784f8dc1f702 /lisp/gnus | |
parent | 2bb8db3ea7516856cc42e2b597a3348fe8e5e678 (diff) | |
download | emacs-e44fa724e4563cfd3f30b85c3c16a2d2dab65ccd.tar.gz |
Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
* lisp/bookmark.el (bookmark-make-record-default): Allow unneeded
information to be omitted from the record.
Adjust declarations and calls:
* lisp/info.el (bookmark-make-record-default): Adjust declaration.
(Info-bookmark-make-record): Adjust call.
* lisp/woman.el (bookmark-make-record-default): Adjust declaration.
(woman-bookmark-make-record): Adjust call.
* lisp/man.el (bookmark-make-record-default): Adjust declaration.
(Man-bookmark-make-record): Adjust call.
* lisp/image-mode.el (bookmark-make-record-default): Adjust declaration.
* lisp/doc-view.el (bookmark-make-record-default): Adjust declaration.
* lisp/gnus/gnus-sum.el (bookmark-make-record-default): Adjust declaration.
Diffstat (limited to 'lisp/gnus')
-rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/gnus/gnus-sum.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index d25caf70347..a32da68da36 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,8 @@ +2010-07-13 Karl Fogel <kfogel@red-bean.com> + + * gnus/gnus-sum.el (bookmark-make-record-default): Adjust + declaration, based on changes in bookmark.el. + 2010-06-22 Mark A. Hershberger <mah@everybody.org> * mm-url.el (mm-url-encode-multipart-form-data): New function to handle diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 98a0556d499..ce945186fbf 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -12621,7 +12621,8 @@ If ALL is a number, fetch this number of articles." (gnus-summary-position-point))) ;;; Bookmark support for Gnus. -(declare-function bookmark-make-record-default "bookmark" (&optional pos-only)) +(declare-function bookmark-make-record-default + "bookmark" (&optional no-file no-context posn)) (declare-function bookmark-prop-get "bookmark" (bookmark prop)) (declare-function bookmark-default-handler "bookmark" (bmk)) (declare-function bookmark-get-bookmark-record "bookmark" (bmk)) |