Function: expand-clear-markers

expand-clear-markers is a byte-compiled function defined in expand.el.gz.

Signature

(expand-clear-markers)

Documentation

Make the markers point nowhere.

Source Code

;; Defined in /usr/src/emacs/lisp/expand.el.gz
(defun expand-clear-markers ()
  "Make the markers point nowhere."
  (if expand-pos
      (progn
    (let ((i (1- (length expand-pos))))
      (while (>= i 0)
	(set-marker (aref expand-pos i) nil)
	(setq i (1- i))))
    (setq expand-pos nil))))