Function: nndraft-request-restore-buffer

nndraft-request-restore-buffer is a byte-compiled function defined in nndraft.el.gz.

Signature

(nndraft-request-restore-buffer ARTICLE &optional GROUP SERVER)

Documentation

Request a new buffer that is restored to the state of ARTICLE.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nndraft.el.gz
(deffoo nndraft-request-restore-buffer (article &optional group server)
  "Request a new buffer that is restored to the state of ARTICLE."
  (nndraft-possibly-change-group group)
  (when (nndraft-request-article article group server (current-buffer))
    (message-remove-header "xref")
    (message-remove-header "lines")
    ;; Articles in nndraft:queue are considered as sent messages.  The
    ;; Date field should be the time when they are sent.
    ;;(message-remove-header "date")
    t))