Function: file-attribute-file-identifier
file-attribute-file-identifier is a byte-compiled function defined in
compat-29.el.
Signature
(file-attribute-file-identifier ATTRIBUTES)
Documentation
[Compatibility function for file-attribute-file-identifier, defined in Emacs
29.1. See (compat) Emacs 29.1' for more details.]
The inode and device numbers in ATTRIBUTES returned by file-attributes. The
value is a list of the form (INODENUM DEVICE), where DEVICE could be either a
single number or a cons cell of two numbers. This tuple of numbers uniquely
identifies the file.
Source Code
;; Defined in ~/.emacs.d/elpa/compat-30.1.0.1/compat-29.el
(compat-defun file-attribute-file-identifier (attributes) ;; <compat-tests:file-attribute-getters>
"The inode and device numbers in ATTRIBUTES returned by `file-attributes'.
The value is a list of the form (INODENUM DEVICE), where DEVICE could be
either a single number or a cons cell of two numbers.
This tuple of numbers uniquely identifies the file."
(nthcdr 10 attributes))