Function: gnus-summary-supersede-article
gnus-summary-supersede-article is an autoloaded, interactive and
byte-compiled function defined in gnus-msg.el.gz.
Signature
(gnus-summary-supersede-article)
Documentation
Compose an article that will supersede a previous article.
This is done simply by taking the old article and adding a Supersedes header line with the old Message-ID.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-msg.el.gz
(defun gnus-summary-supersede-article ()
"Compose an article that will supersede a previous article.
This is done simply by taking the old article and adding a Supersedes
header line with the old Message-ID."
(interactive nil gnus-summary-mode)
(let ((article (gnus-summary-article-number))
(mail-parse-charset gnus-newsgroup-charset))
(gnus-setup-message 'reply-yank
(gnus-summary-select-article t)
(set-buffer gnus-original-article-buffer)
(message-supersede)
(push
(let ((buf gnus-summary-buffer))
(lambda ()
(when (gnus-buffer-live-p buf)
(with-current-buffer buf
(gnus-cache-possibly-remove-article article nil nil nil t)
(gnus-summary-mark-as-read article gnus-canceled-mark)))))
message-send-actions)
;; Add Gcc header.
(gnus-inews-insert-gcc))))