Function: org-list-at-regexp-after-bullet-p

org-list-at-regexp-after-bullet-p is a byte-compiled function defined in org-list.el.gz.

Signature

(org-list-at-regexp-after-bullet-p REGEXP)

Documentation

Is point at a list item with REGEXP after bullet?

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defun org-list-at-regexp-after-bullet-p (regexp)
  "Is point at a list item with REGEXP after bullet?"
  (and (org-at-item-p)
       (save-excursion
	 (goto-char (match-end 0))
	 (let ((counter-re (concat "\\(?:\\[@\\(?:start:\\)?"
				   (if org-list-allow-alphabetical
				       "\\([0-9]+\\|[A-Za-z]\\)"
				     "[0-9]+")
				   "\\][ \t]*\\)")))
	   ;; Ignore counter if any
	   (when (looking-at counter-re) (goto-char (match-end 0))))
	 (looking-at regexp))))