Function: message-add-action

message-add-action is a byte-compiled function defined in message.el.gz.

Signature

(message-add-action ACTION &rest TYPES)

Documentation

Add ACTION to be performed when doing an exit of type TYPES.

Valid types are send, return, exit, kill and postpone.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-add-action (action &rest types)
  "Add ACTION to be performed when doing an exit of type TYPES.
Valid types are `send', `return', `exit', `kill' and `postpone'."
  (while types
    (add-to-list (intern (format "message-%s-actions" (pop types)))
		 action)))