Function: org-clock-clock-in

org-clock-clock-in is a byte-compiled function defined in org-clock.el.gz.

Signature

(org-clock-clock-in CLOCK &optional RESUME START-TIME)

Documentation

Clock in to the clock located by CLOCK.

If necessary, clock-out of the currently active clock.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defsubst org-clock-clock-in (clock &optional resume start-time)
  "Clock in to the clock located by CLOCK.
If necessary, clock-out of the currently active clock."
  (org-with-clock-position clock
    (let ((org-clock-in-resume (or resume org-clock-in-resume)))
      (org-clock-in nil start-time))))