Function: timeclock-entry-list-length

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

Signature

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

Documentation

Return the total length of ENTRY-LIST in seconds.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/timeclock.el.gz
(defsubst timeclock-entry-list-length (entry-list)
  "Return the total length of ENTRY-LIST in seconds."
  (let ((length 0))
    (dolist (entry entry-list)
      (setq length (+ length (timeclock-entry-length entry))))
    length))