emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master bd297132016: Fix `ls-lisp-verbosity` custom type


From: Mattias Engdegård
Subject: master bd297132016: Fix `ls-lisp-verbosity` custom type
Date: Fri, 13 Oct 2023 10:43:02 -0400 (EDT)

branch: master
commit bd297132016ab2fbf7371617a29e2408220eb289
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>

    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 <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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]