1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-04 08:47:11 +00:00

Fix Dired display of an explicit list of files by ls-lisp.el

* lisp/ls-lisp.el (ls-lisp-uid-d-fmt, ls-lisp-uid-s-fmt)
(ls-lisp-gid-d-fmt, ls-lisp-gid-s-fmt): Make the initial values be
correct for when displaying individual files separately, not as
part of listing a directory, in which case these values are not
recomputed by 'ls-lisp-insert-directory', but used verbatim.
This commit is contained in:
Eli Zaretskii 2015-06-06 12:52:56 +03:00
parent 6cdeb62ea6
commit e5108ff1e4

View File

@ -237,13 +237,13 @@ to fail to line up, e.g. if month names are not all of the same length."
:type 'boolean
:group 'ls-lisp)
(defvar ls-lisp-uid-d-fmt "-%d"
(defvar ls-lisp-uid-d-fmt " %d"
"Format to display integer UIDs.")
(defvar ls-lisp-uid-s-fmt "-%s"
(defvar ls-lisp-uid-s-fmt " %s"
"Format to display user names.")
(defvar ls-lisp-gid-d-fmt "-%d"
(defvar ls-lisp-gid-d-fmt " %d"
"Format to display integer GIDs.")
(defvar ls-lisp-gid-s-fmt "-%s"
(defvar ls-lisp-gid-s-fmt " %s"
"Format to display user group names.")
(defvar ls-lisp-filesize-d-fmt "%d"
"Format to display integer file sizes.")