Function: mail-extr-markerize
mail-extr-markerize is a byte-compiled function defined in
mail-extr.el.gz.
Signature
(mail-extr-markerize POS)
Source Code
;; Defined in /usr/src/emacs/lisp/mail/mail-extr.el.gz
(defun mail-extr-markerize (pos)
;; coerces pos to a marker if non-nil.
(if (or (markerp pos) (null pos))
pos
(copy-marker pos)))