]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix `ls-lisp-verbosity` custom type
authorMattias Engdegård <mattiase@acm.org>
Fri, 13 Oct 2023 14:36:46 +0000 (16:36 +0200)
committerMattias Engdegård <mattiase@acm.org>
Fri, 13 Oct 2023 14:38:54 +0000 (16:38 +0200)
* lisp/ls-lisp.el (ls-lisp-verbosity): Include `modes` in the type
and doc string.

lisp/ls-lisp.el

index efc06ffbbf8792e3e20f73d0d7bcdf46c6504d8d..5b264554005e30eaf4f3699c4ef5dda1cac096da 100644 (file)
@@ -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 <howard@silverstream.com>
   :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