Function: todo-done-item-section-p

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

Signature

(todo-done-item-section-p)

Documentation

Return non-nil if point is in category's done items section.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-done-item-section-p ()
  "Return non-nil if point is in category's done items section."
  (save-excursion
    (or (re-search-backward (concat "^" (regexp-quote todo-category-done))
			    nil t)
	(progn (goto-char (point-min))
	       (looking-at todo-done-string-start)))))