Function: tar-grind-file-mode

tar-grind-file-mode is a byte-compiled function defined in tar-mode.el.gz.

This function is obsolete since 28.1; use file-modes-number-to-symbolic instead.

Signature

(tar-grind-file-mode MODE)

Documentation

Construct a rw-r--r-- string indicating MODE.

MODE should be an integer which is a file mode value. For instance, if mode is #o700, then it produces rwx------.

Source Code

;; Defined in /usr/src/emacs/lisp/tar-mode.el.gz
(defun tar-grind-file-mode (mode)
  "Construct a `rw-r--r--' string indicating MODE.
MODE should be an integer which is a file mode value.
For instance, if mode is #o700, then it produces `rwx------'."
  (declare (obsolete file-modes-number-to-symbolic "28.1"))
  (substring (file-modes-number-to-symbolic mode) 1))