Function: rmail-get-keywords
rmail-get-keywords is a byte-compiled function defined in rmail.el.gz.
Signature
(rmail-get-keywords &optional MSG)
Documentation
Return the message keywords in a comma separated string.
MSG, if non-nil, identifies the message number to use. If nil, that means the current message.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defun rmail-get-keywords (&optional msg)
"Return the message keywords in a comma separated string.
MSG, if non-nil, identifies the message number to use.
If nil, that means the current message."
(rmail-get-header rmail-keyword-header msg))