Function: mh-remove-all-notation

mh-remove-all-notation is an autoloaded and byte-compiled function defined in mh-seq.el.gz.

Signature

(mh-remove-all-notation)

Documentation

Remove all notations on all scan lines that MH-E introduces.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-seq.el.gz
;;;###mh-autoload
(defun mh-remove-all-notation ()
  "Remove all notations on all scan lines that MH-E introduces."
  (save-excursion
    (setq overlay-arrow-position nil)
    (goto-char (point-min))
    (mh-iterate-on-range msg (cons (point-min) (point-max))
      (mh-notate nil ?  mh-cmd-note)
      (mh-remove-sequence-notation msg nil t))
    (clrhash mh-sequence-notation-history)))