Function: mh-remove-cur-notation
mh-remove-cur-notation is an autoloaded and byte-compiled function
defined in mh-seq.el.gz.
Signature
(mh-remove-cur-notation)
Documentation
Remove old cur notation.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-seq.el.gz
;;;###mh-autoload
(defun mh-remove-cur-notation ()
"Remove old cur notation."
(let ((cur-msg (car (mh-seq-to-msgs 'cur))))
(save-excursion
(when (and cur-msg
(mh-goto-msg cur-msg t t)
(looking-at mh-scan-cur-msg-number-regexp))
(mh-notate nil ? mh-cmd-note)
(setq overlay-arrow-position nil)))))