Function: smie-indent--bolp

smie-indent--bolp is a byte-compiled function defined in smie.el.gz.

Signature

(smie-indent--bolp)

Documentation

Return non-nil if the current token is the first on the line.

Aliases

smie-rule-bolp

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/smie.el.gz
(defun smie-indent--bolp ()
  "Return non-nil if the current token is the first on the line."
  (save-excursion (skip-chars-backward " \t") (bolp)))