Function: spam-stat-strip-xref

spam-stat-strip-xref is a byte-compiled function defined in spam-stat.el.gz.

Signature

(spam-stat-strip-xref)

Documentation

Strip the Xref header.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam-stat.el.gz
;; Testing

(defun spam-stat-strip-xref ()
  "Strip the Xref header."
  (save-restriction
    (mail-narrow-to-head)
    (when (re-search-forward "^Xref:.*\n" nil t)
      (delete-region (match-beginning 0) (match-end 0)))))