Function: woman-get-tab-stop
woman-get-tab-stop is a byte-compiled function defined in woman.el.gz.
Signature
(woman-get-tab-stop TAB-STOPS)
Documentation
If TAB-STOPS is a cons, return its car, else return TAB-STOPS.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defsubst woman-get-tab-stop (tab-stops)
"If TAB-STOPS is a cons, return its car, else return TAB-STOPS."
(if (consp tab-stops) (car tab-stops) tab-stops))