Function: rmail-add-label

rmail-add-label is an autoloaded, interactive and byte-compiled function defined in rmailkwd.el.gz.

Signature

(rmail-add-label LABEL)

Documentation

Add LABEL to labels associated with current RMAIL message.

Completes (see rmail-read-label) over known labels when reading. LABEL may be a symbol or string. Only one label is allowed.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailkwd.el.gz
;;;###autoload
(defun rmail-add-label (label)
  "Add LABEL to labels associated with current RMAIL message.
Completes (see `rmail-read-label') over known labels when reading.
LABEL may be a symbol or string.  Only one label is allowed."
  (interactive (list (rmail-read-label "Add label")))
  (rmail-set-label label t))