Function: timeclock-entry-length

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

Signature

(timeclock-entry-length ENTRY)

Documentation

Return the length of ENTRY in seconds.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/timeclock.el.gz
(defsubst timeclock-entry-length (entry)
  "Return the length of ENTRY in seconds."
  (float-time (time-subtract (cadr entry) (car entry))))