Function: message-dont-send

message-dont-send is an interactive and byte-compiled function defined in message.el.gz.

Signature

(message-dont-send)

Documentation

Don't send the message you have been editing.

Instead, just auto-save the buffer and then bury it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-dont-send ()
  "Don't send the message you have been editing.
Instead, just auto-save the buffer and then bury it."
  (interactive nil message-mode)
  (set-buffer-modified-p t)
  (save-buffer)
  (let ((actions message-postpone-actions))
    (message-bury (current-buffer))
    (message-do-actions actions)))