Function: file-attribute-group-id

file-attribute-group-id is a byte-compiled function defined in files.el.gz.

Signature

(file-attribute-group-id ATTRIBUTES)

Documentation

The GID field in ATTRIBUTES returned by file-attributes.

This is either a string or a number. If a string value cannot be looked up, a numeric value, either an integer or a float, is returned.

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defsubst file-attribute-group-id (attributes)
  "The GID field in ATTRIBUTES returned by `file-attributes'.
This is either a string or a number.  If a string value cannot be
looked up, a numeric value, either an integer or a float, is
returned."
  (nth 3 attributes))