Variable: org-use-effective-time
org-use-effective-time is a customizable variable defined in
org.el.gz.
Value
nil
Documentation
If non-nil, consider org-extend-today-until when creating timestamps.
For example, if org-extend-today-until is 8, and it's 4am, then the
"effective time" of any timestamps between midnight and 8am will be
23:59 of the previous day.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-use-effective-time nil
"If non-nil, consider `org-extend-today-until' when creating timestamps.
For example, if `org-extend-today-until' is 8, and it's 4am, then the
\"effective time\" of any timestamps between midnight and 8am will be
23:59 of the previous day."
:group 'org-time
:version "24.1"
:type 'boolean)