Function: gnus-bookmark-make-record

gnus-bookmark-make-record is a byte-compiled function defined in gnus-bookmark.el.gz.

Signature

(gnus-bookmark-make-record GROUP MESSAGE-ID AUTHOR DATE SUBJECT ANNOTATION)

Documentation

Return the record part of a new bookmark.

Arguments GROUP MESSAGE-ID AUTHOR DATE SUBJECT and ANNOTATION will be saved in the bookmark.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-bookmark.el.gz
(defun gnus-bookmark-make-record
  (group message-id author date subject annotation)
  "Return the record part of a new bookmark.
Arguments GROUP MESSAGE-ID AUTHOR DATE SUBJECT and ANNOTATION
will be saved in the bookmark."
  (let ((the-record
	 `((group . ,(substring-no-properties group))
	   (message-id . ,(substring-no-properties message-id))
	   (author . ,(substring-no-properties author))
	   (date . ,(substring-no-properties date))
	   (subject . ,(substring-no-properties subject))
	   (annotation . ,(substring-no-properties annotation)))))
    the-record))