Function: ert-font-lock--get-first-char-column
ert-font-lock--get-first-char-column is a byte-compiled function
defined in ert-font-lock.el.gz.
Signature
(ert-font-lock--get-first-char-column)
Documentation
Get the position of the first non-empty char in the current line.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert-font-lock.el.gz
(defun ert-font-lock--get-first-char-column ()
"Get the position of the first non-empty char in the current line."
(save-excursion
(ert-font-lock--goto-first-char)
(- (point) (line-beginning-position))))