Function: gnus-registry-article-marks-to-names

gnus-registry-article-marks-to-names is a byte-compiled function defined in gnus-registry.el.gz.

Signature

(gnus-registry-article-marks-to-names HEADERS)

Documentation

Show the marks for an article by name.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-registry.el.gz
;; use like this:
;; (defalias 'gnus-user-format-function-M #'gnus-registry-article-marks-to-names)
(defun gnus-registry-article-marks-to-names (headers)
  "Show the marks for an article by name."
  (if gnus-registry-enabled
      (let* ((id (mail-header-message-id headers))
             (marks (when id (gnus-registry-get-id-key id 'mark))))
	(mapconcat #'symbol-name marks ","))
    ""))