Function: feedmail-message-action-help-blat

feedmail-message-action-help-blat is a byte-compiled function defined in feedmail.el.gz.

Signature

(feedmail-message-action-help-blat D-STRING)

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defun feedmail-message-action-help-blat (d-string)
  (feedmail-say-debug ">in-> feedmail-message-action-help-blat")
  (with-output-to-temp-buffer feedmail-p-h-b-n
    (princ (substitute-command-keys "\
You're dispatching a message and feedmail queuing is enabled.
Typing ? again will normally scroll this help buffer.

Choices:
   q  QUEUE        for later sending (via feedmail-run-the-queue)
   Q  QUEUE!       like \"q\", but always make a new file
   i  IMMEDIATELY  send this (but not the other queued messages)
   I  IMMEDIATELY! like \"i\", but skip following confirmation prompt
   d  DRAFT        queue in the draft directory
   D  DRAFT!       like \"d\", but always make a new file
   e  EDIT         return to the message edit buffer (don't send or queue)
   *  SPRAY        toggle spray mode (individual message transmissions)
   >  SCROLL UP    scroll message up (toward end of message)
   <  SCROLL DOWN  scroll message down (toward beginning of message)
   ?  HELP         show or scroll this help buffer

Synonyms:
   s  SEND         immediately (same as \"i\")
   S  SEND!        immediately (same as \"I\")
   r  ROUGH        draft (same as \"d\")
   R  ROUGH!       draft (same as \"D\")
   n  NOPE         didn't mean it (same as \"e\")
   y  YUP          do the default behavior (same as \"C-m\")
  SPC SCROLL UP    (same as \">\")

The user-configurable default is currently \""))
	(princ d-string)
	(princ "\".  For other possibilities,
see the variable feedmail-prompt-before-queue-user-alist.
")
	(and (stringp feedmail-prompt-before-queue-help-supplement)
		 (princ feedmail-prompt-before-queue-help-supplement))
    (with-current-buffer standard-output
      (help-mode))))