Function: mh-show-unquote-From

mh-show-unquote-From is a byte-compiled function defined in mh-show.el.gz.

Signature

(mh-show-unquote-From)

Documentation

Decode >From at beginning of lines for mh-show-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-show.el.gz
;;; Support Routines

(defun mh-show-unquote-From ()
  "Decode >From at beginning of lines for `mh-show-mode'."
  (save-excursion
    (let ((modified (buffer-modified-p))
          (case-fold-search nil)
          (buffer-read-only nil))
      (goto-char (mh-mail-header-end))
      (while (re-search-forward "^>From" nil t)
        (replace-match "From"))
      (set-buffer-modified-p modified))))