Function: org-at-comment-p

org-at-comment-p is a byte-compiled function defined in org.el.gz.

Signature

(org-at-comment-p)

Documentation

Return t if cursor is in a commented line.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-at-comment-p nil
  "Return t if cursor is in a commented line."
  (save-excursion
    (save-match-data
      (beginning-of-line)
      (looking-at org-comment-regexp))))