Function: gnus-registry-fetch-simplified-message-subject-fast

gnus-registry-fetch-simplified-message-subject-fast is a byte-compiled function defined in gnus-registry.el.gz.

Signature

(gnus-registry-fetch-simplified-message-subject-fast ARTICLE)

Documentation

Fetch the Subject quickly, using the internal gnus-data-find function.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-registry.el.gz
(defun gnus-registry-fetch-simplified-message-subject-fast (article)
  "Fetch the Subject quickly, using the internal `gnus-data-find' function."
  (when-let* ((data (and (numberp article) (gnus-data-find article))))
    (gnus-string-remove-all-properties
     (gnus-registry-simplify-subject
      (mail-header-subject (gnus-data-header data))))))