Function: bdf-file-newer-than-time

bdf-file-newer-than-time is a byte-compiled function defined in ps-bdf.el.gz.

Signature

(bdf-file-newer-than-time FILENAME MOD-TIME)

Documentation

Return non-nil if and only if FILENAME is newer than MOD-TIME.

MOD-TIME is a modification time in the same format as current-time.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-bdf.el.gz
(defun bdf-file-newer-than-time (filename mod-time)
  "Return non-nil if and only if FILENAME is newer than MOD-TIME.
MOD-TIME is a modification time in the same format as `current-time'."
  (let ((new-mod-time (bdf-file-mod-time filename)))
    (time-less-p mod-time new-mod-time)))