Function: org-clock-timestamps-down

org-clock-timestamps-down is an interactive and byte-compiled function defined in org-clock.el.gz.

Signature

(org-clock-timestamps-down &optional N)

Documentation

Decrease 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-down (&optional n)
  "Decrease CLOCK timestamps at cursor.
Optional argument N tells to change by that many units."
  (interactive "P")
  (org-clock-timestamps-change 'down n))