Function: org-timestamp-up-day
org-timestamp-up-day is an interactive and byte-compiled function
defined in org.el.gz.
Signature
(org-timestamp-up-day &optional ARG)
Documentation
Increase 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-up-day (&optional arg)
"Increase 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 'up)
(org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))