Function: tramp-time-diff

tramp-time-diff is a byte-compiled function defined in tramp.el.gz.

Signature

(tramp-time-diff T1 T2)

Documentation

Return the difference between the two times, in seconds.

T1 and T2 are time values (as returned by current-time for example).

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-time-diff (t1 t2)
  "Return the difference between the two times, in seconds.
T1 and T2 are time values (as returned by `current-time' for example)."
  (float-time (time-subtract t1 t2)))