Function: expand-build-marks
expand-build-marks is a byte-compiled function defined in
expand.el.gz.
Signature
(expand-build-marks P)
Documentation
Transform the offsets vector into a marker vector.
Source Code
;; Defined in /usr/src/emacs/lisp/expand.el.gz
(defun expand-build-marks (p)
"Transform the offsets vector into a marker vector."
(if expand-list
(progn
(setq expand-index 0)
(setq expand-pos (make-vector (length expand-list) nil))
(let ((i (1- (length expand-list))))
(while (>= i 0)
(aset expand-pos i (copy-marker (- p (aref expand-list i))))
(setq i (1- i))))
(setq expand-list nil))))