Variable: org-deadline-past-days

org-deadline-past-days is a customizable variable defined in org-agenda.el.gz.

Value

10000

Documentation

Number of days to warn about missed deadlines.

When an item has deadline on a date, it shows up in the agenda on this day and will appear as a reminder until it is marked DONE or for the number of days given here.

This variable was added, or its default value changed, in Org version
9.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-deadline-past-days 10000
  "Number of days to warn about missed deadlines.
When an item has deadline on a date, it shows up in the agenda on
this day and will appear as a reminder until it is marked DONE or
for the number of days given here."
  :group 'org-agenda-daily/weekly
  :type 'integer
  :version "26.1"
  :package-version '(Org . "9.1")
  :safe 'integerp)