Function: file-attribute-device-number

file-attribute-device-number is a byte-compiled function defined in files.el.gz.

Signature

(file-attribute-device-number ATTRIBUTES)

Documentation

The file system device number in ATTRIBUTES returned by file-attributes.

It is an integer or a cons cell of integers.

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defsubst file-attribute-device-number (attributes)
  "The file system device number in ATTRIBUTES returned by `file-attributes'.
It is an integer or a cons cell of integers."
  (nth 11 attributes))