diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/ls-lisp.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a85a874f130..33f613fda68 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-04-11 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * ls-lisp.el (ls-lisp-format): Leave a blank before "root". | ||
| 4 | |||
| 1 | 2001-04-11 John Wiegley <johnw@gnu.org> | 5 | 2001-04-11 John Wiegley <johnw@gnu.org> |
| 2 | 6 | ||
| 3 | * eshell/em-ls.el (eshell-ls-insert-directory): Set | 7 | * eshell/em-ls.el (eshell-ls-insert-directory): Set |
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." | |||
| 491 | (memq 'gid ls-lisp-verbosity)) | 491 | (memq 'gid ls-lisp-verbosity)) |
| 492 | (if (memq system-type '(macos windows-nt ms-dos)) | 492 | (if (memq system-type '(macos windows-nt ms-dos)) |
| 493 | ;; No useful concept of group... | 493 | ;; No useful concept of group... |
| 494 | "root" | 494 | " root" |
| 495 | (let* ((gid (nth 3 file-attr)) | 495 | (let* ((gid (nth 3 file-attr)) |
| 496 | (group (user-login-name gid))) | 496 | (group (user-login-name gid))) |
| 497 | (if group | 497 | (if group |