Variable: org-agenda-todo-ignore-time-comparison-use-seconds

org-agenda-todo-ignore-time-comparison-use-seconds is a customizable variable defined in org-agenda.el.gz.

Value

nil

Documentation

Time unit to use when possibly ignoring an agenda item.

See the docstring of various org-agenda-todo-ignore-* options. The default is to compare time stamps using days. An item is thus considered to be in the future if it is at least one day after today. Non-nil means to compare time stamps using seconds. An item is then considered future if it has a time value later than current time.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  "Time unit to use when possibly ignoring an agenda item.

See the docstring of various `org-agenda-todo-ignore-*' options.
The default is to compare time stamps using days.  An item is thus
considered to be in the future if it is at least one day after today.
Non-nil means to compare time stamps using seconds.  An item is then
considered future if it has a time value later than current time."
  :group 'org-agenda-skip
  :group 'org-agenda-todo-list
  :version "24.4"
  :package-version '(Org . "8.0")
  :type '(choice
	  (const :tag "Compare time with days" nil)
	  (const :tag "Compare time with seconds" t)))