Function: gnus-summary-remove-bookmark

gnus-summary-remove-bookmark is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-remove-bookmark ARTICLE)

Documentation

Remove the bookmark from the current article.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-remove-bookmark (article)
  "Remove the bookmark from the current article."
  (interactive (list (gnus-summary-article-number))
	       gnus-summary-mode)
  ;; Remove old bookmark, if one exists.
  (if (not (assq article gnus-newsgroup-bookmarks))
      (gnus-message 6 "No bookmark in current article.")
    (gnus-alist-pull article gnus-newsgroup-bookmarks)
    (gnus-message 6 "Removed bookmark.")))