Function: org-agenda-todo-custom-ignore-p

org-agenda-todo-custom-ignore-p is a byte-compiled function defined in org-agenda.el.gz.

Signature

(org-agenda-todo-custom-ignore-p TIME N)

Documentation

Check whether timestamp is farther away than n number of days.

This function is invoked if org-agenda-todo-ignore-deadlines, org-agenda-todo-ignore-scheduled or org-agenda-todo-ignore-timestamp is set to an integer.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-todo-custom-ignore-p (time n)
  "Check whether timestamp is farther away than n number of days.
This function is invoked if `org-agenda-todo-ignore-deadlines',
`org-agenda-todo-ignore-scheduled' or
`org-agenda-todo-ignore-timestamp' is set to an integer."
  (let ((days (org-time-stamp-to-now
	       time org-agenda-todo-ignore-time-comparison-use-seconds)))
    (if (>= n 0)
	(>= days n)
      (<= days n))))