Function: gnus-bookmark-insert-details

gnus-bookmark-insert-details is a byte-compiled function defined in gnus-bookmark.el.gz.

Signature

(gnus-bookmark-insert-details BMK-NAME)

Documentation

Insert the details of the article associated with BMK-NAME.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-bookmark.el.gz
(defun gnus-bookmark-insert-details (bmk-name)
  "Insert the details of the article associated with BMK-NAME."
  (let ((start (point)))
    (prog1
	(insert (gnus-bookmark-get-details
		 bmk-name
		 gnus-bookmark-bookmark-inline-details))
      (if (display-mouse-p)
	  (add-text-properties
	   start
	   (save-excursion (re-search-backward
			    "[^ \t]")
					       (1+ (point)))
	   `(mouse-face highlight
	     follow-link t
	     help-echo ,(format "%s: go to this article"
				'mouse-2)))))))