Function: rmail-summary-kill-label

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

Signature

(rmail-summary-kill-label LABEL)

Documentation

Remove LABEL from 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-kill-label (label)
  "Remove LABEL from labels associated with current Rmail message.
Completion is performed over known labels when reading."
  (interactive (list (with-current-buffer rmail-buffer
		       (rmail-read-label "Kill label"))))
  (with-current-buffer rmail-buffer
    (rmail-set-label label nil)))