Function: org-shiftcontroldown
org-shiftcontroldown is an interactive and byte-compiled function
defined in org.el.gz.
Signature
(org-shiftcontroldown &optional N)
Documentation
Change timestamps synchronously down 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-shiftcontroldown (&optional n)
"Change timestamps synchronously down 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-down n))
(user-error "Not at a clock log")))