Function: org-mouse-bolp

org-mouse-bolp is a byte-compiled function defined in org-mouse.el.gz.

Signature

(org-mouse-bolp)

Documentation

Return non-nil if there only spaces, tabs, and * before point.

This means, between the beginning of line and the point.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-mouse.el.gz
(defun org-mouse-bolp ()
  "Return non-nil if there only spaces, tabs, and `*' before point.
This means, between the beginning of line and the point."
  (save-excursion
    (skip-chars-backward " \t*") (bolp)))