Function: org-timestamp-down-day
org-timestamp-down-day is an interactive and byte-compiled function
defined in org.el.gz.
Signature
(org-timestamp-down-day &optional ARG)
Documentation
Decrease the date in the time stamp by one day.
With prefix ARG, change that many days.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-timestamp-down-day (&optional arg)
"Decrease the date in the time stamp by one day.
With prefix ARG, change that many days."
(interactive "p")
(if (and (not (org-at-timestamp-p 'lax))
(org-at-heading-p))
(org-todo 'down)
(org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))