Function: org-timestamp-up
org-timestamp-up is an interactive and byte-compiled function defined
in org.el.gz.
Signature
(org-timestamp-up &optional ARG)
Documentation
Increase the date item at the cursor by one.
If the cursor is on the year, change the year. If it is on the month, the day or the time, change that. If the cursor is on the enclosing bracket, change the timestamp type. With prefix ARG, change by that many units.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-timestamp-up (&optional arg)
"Increase the date item at the cursor by one.
If the cursor is on the year, change the year. If it is on the month,
the day or the time, change that. If the cursor is on the enclosing
bracket, change the timestamp type.
With prefix ARG, change by that many units."
(interactive "p")
(org-timestamp-change (prefix-numeric-value arg) nil 'updown))