diff options
| author | Eli Zaretskii | 2015-06-06 12:52:56 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2015-06-06 12:52:56 +0300 |
| commit | e5108ff1e4ac0c17361a703e565fda78112812db (patch) | |
| tree | 7d1ca14de5abc0d459a5a65cd8098a9ba82b016c | |
| parent | 6cdeb62ea6f8613cb16ae046407250eed9cbaf88 (diff) | |
| download | emacs-e5108ff1e4ac0c17361a703e565fda78112812db.tar.gz emacs-e5108ff1e4ac0c17361a703e565fda78112812db.zip | |
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.
| -rw-r--r-- | lisp/ls-lisp.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index 0ddae24d577..d4b890504aa 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el | |||
| @@ -237,13 +237,13 @@ to fail to line up, e.g. if month names are not all of the same length." | |||
| 237 | :type 'boolean | 237 | :type 'boolean |
| 238 | :group 'ls-lisp) | 238 | :group 'ls-lisp) |
| 239 | 239 | ||
| 240 | (defvar ls-lisp-uid-d-fmt "-%d" | 240 | (defvar ls-lisp-uid-d-fmt " %d" |
| 241 | "Format to display integer UIDs.") | 241 | "Format to display integer UIDs.") |
| 242 | (defvar ls-lisp-uid-s-fmt "-%s" | 242 | (defvar ls-lisp-uid-s-fmt " %s" |
| 243 | "Format to display user names.") | 243 | "Format to display user names.") |
| 244 | (defvar ls-lisp-gid-d-fmt "-%d" | 244 | (defvar ls-lisp-gid-d-fmt " %d" |
| 245 | "Format to display integer GIDs.") | 245 | "Format to display integer GIDs.") |
| 246 | (defvar ls-lisp-gid-s-fmt "-%s" | 246 | (defvar ls-lisp-gid-s-fmt " %s" |
| 247 | "Format to display user group names.") | 247 | "Format to display user group names.") |
| 248 | (defvar ls-lisp-filesize-d-fmt "%d" | 248 | (defvar ls-lisp-filesize-d-fmt "%d" |
| 249 | "Format to display integer file sizes.") | 249 | "Format to display integer file sizes.") |