Function: tabulated-list--column-number
tabulated-list--column-number is a byte-compiled function defined in
tabulated-list.el.gz.
Signature
(tabulated-list--column-number NAME)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/tabulated-list.el.gz
(defun tabulated-list--column-number (name)
(let ((len (length tabulated-list-format))
(n 0)
found)
(while (and (< n len) (null found))
(if (equal (car (aref tabulated-list-format n)) name)
(setq found n))
(setq n (1+ n)))
(or found
(error "No column named %s" name))))