Function: rmail-speedbar-move-message
rmail-speedbar-move-message is a byte-compiled function defined in
rmail.el.gz.
Signature
(rmail-speedbar-move-message TEXT TOKEN INDENT)
Documentation
From button TEXT, copy current message to the rmail file specified by TOKEN.
TEXT and INDENT are not used.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defun rmail-speedbar-move-message (_text token _indent)
"From button TEXT, copy current message to the rmail file specified by TOKEN.
TEXT and INDENT are not used."
(dframe-with-attached-buffer
(message "Moving message to %s" token)
;; expand-file-name is needed due to the unhelpful way in which
;; rmail-output expands non-absolute filenames against rmail-default-file.
;; What is the point of that, anyway?
(rmail-output (expand-file-name token))))