diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-04-12 15:16:28 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-04-12 15:16:28 +0000 |
commit | 9010db4cd33c5cecb3de3d3a37958f4c377f87bb (patch) | |
tree | bcb121da0b54c307251ccaa419089af27ce2737e /lisp/ls-lisp.el | |
parent | 522836336edf87bda7aef8fdd99bcead6d59d083 (diff) | |
download | emacs-9010db4cd33c5cecb3de3d3a37958f4c377f87bb.tar.gz |
(ls-lisp-format): Leave a blank before "root".
Diffstat (limited to 'lisp/ls-lisp.el')
-rw-r--r-- | lisp/ls-lisp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index bac2fc82b15..d8f52df45ea 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el @@ -491,7 +491,7 @@ SWITCHES, TIME-INDEX and NOW give the full switch list and time data." (memq 'gid ls-lisp-verbosity)) (if (memq system-type '(macos windows-nt ms-dos)) ;; No useful concept of group... - "root" + " root" (let* ((gid (nth 3 file-attr)) (group (user-login-name gid))) (if group |