diff options
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/em-pred.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/eshell/em-pred.el b/lisp/eshell/em-pred.el index 8afc86dd41a..eb5109b82dc 100644 --- a/lisp/eshell/em-pred.el +++ b/lisp/eshell/em-pred.el | |||
| @@ -88,10 +88,10 @@ ordinary strings." | |||
| 88 | (if (file-exists-p file) | 88 | (if (file-exists-p file) |
| 89 | (= (file-attribute-user-id (file-attributes file)) | 89 | (= (file-attribute-user-id (file-attributes file)) |
| 90 | (user-uid))))) | 90 | (user-uid))))) |
| 91 | ;; (?G . (lambda (file) ; owned by effective gid | 91 | (?G . (lambda (file) ; owned by effective gid |
| 92 | ;; (if (file-exists-p file) | 92 | (if (file-exists-p file) |
| 93 | ;; (= (file-attribute-user-id (file-attributes file)) | 93 | (= (file-attribute-group-id (file-attributes file)) |
| 94 | ;; (user-uid))))) | 94 | (group-gid))))) |
| 95 | (?* . (lambda (file) | 95 | (?* . (lambda (file) |
| 96 | (and (file-regular-p file) | 96 | (and (file-regular-p file) |
| 97 | (not (file-symlink-p file)) | 97 | (not (file-symlink-p file)) |
| @@ -161,6 +161,7 @@ PERMISSION BITS (for owner/group/world): | |||
| 161 | 161 | ||
| 162 | OWNERSHIP: | 162 | OWNERSHIP: |
| 163 | U owned by effective uid | 163 | U owned by effective uid |
| 164 | G owned by effective gid | ||
| 164 | u(UID|\\='user\\=') owned by UID/user | 165 | u(UID|\\='user\\=') owned by UID/user |
| 165 | g(GID|\\='group\\=') owned by GID/group | 166 | g(GID|\\='group\\=') owned by GID/group |
| 166 | 167 | ||