From bd297132016ab2fbf7371617a29e2408220eb289 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Fri, 13 Oct 2023 16:36:46 +0200 Subject: [PATCH] Fix `ls-lisp-verbosity` custom type * lisp/ls-lisp.el (ls-lisp-verbosity): Include `modes` in the type and doc string. --- lisp/ls-lisp.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index efc06ffbbf8..5b264554005 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el @@ -169,7 +169,7 @@ A value of nil (or an empty list) means display none of them. Concepts come from UNIX: `links' means count of names associated with the file; `uid' means user (owner) identifier; `gid' means group -identifier. +identifier; `modes' means Unix-style permission bits (drwxrwxrwx). If emulation is MacOS then default is nil; if emulation is MS-Windows then default is `(links)' if platform is @@ -180,7 +180,8 @@ if emulation is GNU then default is `(links uid gid)'." ;; Functionality suggested by Howard Melman :type '(set (const :tag "Show Link Count" links) (const :tag "Show User" uid) - (const :tag "Show Group" gid)) + (const :tag "Show Group" gid) + (const :tag "Show Modes" modes)) :group 'ls-lisp) (defcustom ls-lisp-use-insert-directory-program -- 2.39.2