Function: sgml-at-indentation-p
sgml-at-indentation-p is a byte-compiled function defined in
sgml-mode.el.gz.
Signature
(sgml-at-indentation-p)
Documentation
Return t if point is at the first non-whitespace character on the line.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
(defsubst sgml-at-indentation-p ()
"Return t if point is at the first non-whitespace character on the line."
(save-excursion
(skip-chars-backward " \t")
(bolp)))