Function: timeclock-entry-list-span

timeclock-entry-list-span is a byte-compiled function defined in timeclock.el.gz.

Signature

(timeclock-entry-list-span ENTRY-LIST)

Documentation

Return the total time in seconds spanned by ENTRY-LIST.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/timeclock.el.gz
(defsubst timeclock-entry-list-span (entry-list)
  "Return the total time in seconds spanned by ENTRY-LIST."
  (float-time (time-subtract (timeclock-entry-list-end entry-list)
			     (timeclock-entry-list-begin entry-list))))