Function: indent-accumulate-tab-stops
indent-accumulate-tab-stops is a byte-compiled function defined in
indent.el.gz.
Signature
(indent-accumulate-tab-stops LIMIT)
Documentation
Get a list of tab stops before LIMIT (inclusive).
Source Code
;; Defined in /usr/src/emacs/lisp/indent.el.gz
(defun indent-accumulate-tab-stops (limit)
"Get a list of tab stops before LIMIT (inclusive)."
(let ((tab 0) (tab-stops))
(while (<= (setq tab (indent-next-tab-stop tab)) limit)
(push tab tab-stops))
(nreverse tab-stops)))