Function: todo-diary-item-p

todo-diary-item-p is a byte-compiled function defined in todo-mode.el.gz.

Signature

(todo-diary-item-p)

Documentation

Return non-nil if item at point has diary entry format.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-diary-item-p ()
  "Return non-nil if item at point has diary entry format."
  (save-excursion
    (when (todo-item-string)		; Exclude empty lines.
      (todo-item-start)
      (not (looking-at (regexp-quote todo-nondiary-start))))))