Function: bdf-file-mod-time

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

Signature

(bdf-file-mod-time FILENAME)

Documentation

Return modification time of FILENAME.

The value is a timestamp in the same format as current-time.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-bdf.el.gz
(defsubst bdf-file-mod-time (filename)
  "Return modification time of FILENAME.
The value is a timestamp in the same format as `current-time'."
  (file-attribute-modification-time (file-attributes filename)))