Function: org-timer-value-string

org-timer-value-string is a byte-compiled function defined in org-timer.el.gz.

Signature

(org-timer-value-string)

Documentation

Return current timer string.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-timer.el.gz
(defun org-timer-value-string ()
  "Return current timer string."
  (format org-timer-format
	  (org-timer-secs-to-hms
	   (let ((time (- (float-time org-timer-pause-time)
			  (float-time org-timer-start-time))))
	     (abs (floor (if org-timer-countdown-timer (- time) time)))))))