Function: org-at-item-bullet-p
org-at-item-bullet-p is a byte-compiled function defined in
org-list.el.gz.
Signature
(org-at-item-bullet-p)
Documentation
Is point at the bullet of a plain list item?
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defun org-at-item-bullet-p ()
"Is point at the bullet of a plain list item?"
(and (org-at-item-p)
(not (member (char-after) '(?\ ?\t)))
(< (point) (match-end 0))))