Function: rmail-kill-label

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

Signature

(rmail-kill-label LABEL)

Documentation

Remove LABEL from 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.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailkwd.el.gz
;;;###autoload
(defun rmail-kill-label (label)
  "Remove LABEL from 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 "Remove label")))
  (rmail-set-label label nil))