Function: org-clocking-buffer

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

Signature

(org-clocking-buffer)

Documentation

Return the buffer where the clock is currently running.

Return nil if no clock is running.

Aliases

org-clock-is-active

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-clocking-buffer ()
  "Return the buffer where the clock is currently running.
Return nil if no clock is running."
  (marker-buffer org-clock-marker))