Function: rmail-summary-add-label

rmail-summary-add-label is an interactive and byte-compiled function defined in rmailsum.el.gz.

Signature

(rmail-summary-add-label LABEL)

Documentation

Add LABEL to labels associated with current Rmail message.

Completion is performed over known labels when reading.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-add-label (label)
  "Add LABEL to labels associated with current Rmail message.
Completion is performed over known labels when reading."
  (interactive (list (with-current-buffer rmail-buffer
		       (rmail-read-label "Add label"))))
  (with-current-buffer rmail-buffer
    (rmail-add-label label)))