Function: org-shiftcontrolup
org-shiftcontrolup is an interactive and byte-compiled function
defined in org.el.gz.
Signature
(org-shiftcontrolup &optional N)
Documentation
Change timestamps synchronously up in CLOCK log lines.
Optional argument N tells to change by that many units.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-shiftcontrolup (&optional n)
"Change timestamps synchronously up in CLOCK log lines.
Optional argument N tells to change by that many units."
(interactive "P")
(if (and (org-at-clock-log-p) (org-at-timestamp-p 'lax))
(let (org-support-shift-select)
(org-clock-timestamps-up n))
(user-error "Not at a clock log")))