Function: org-clock-timestamps-up
org-clock-timestamps-up is an interactive and byte-compiled function
defined in org-clock.el.gz.
Signature
(org-clock-timestamps-up &optional N)
Documentation
Increase CLOCK timestamps at cursor.
Optional argument N tells to change by that many units.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defun org-clock-timestamps-up (&optional n)
"Increase CLOCK timestamps at cursor.
Optional argument N tells to change by that many units."
(interactive "P")
(org-clock-timestamps-change 'up n))