diff options
| -rw-r--r-- | lisp/ls-lisp.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index 6b5304caada..85e91cdadc0 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el | |||
| @@ -348,7 +348,9 @@ SWITCHES is a *list* of characters. TIME-INDEX is the time index into | |||
| 348 | file-attributes according to SWITCHES. WILDCARD-REGEXP is nil or an *Emacs | 348 | file-attributes according to SWITCHES. WILDCARD-REGEXP is nil or an *Emacs |
| 349 | regexp*. FULL-DIRECTORY-P means file is a directory and SWITCHES does | 349 | regexp*. FULL-DIRECTORY-P means file is a directory and SWITCHES does |
| 350 | not contain `d', so that a full listing is expected." | 350 | not contain `d', so that a full listing is expected." |
| 351 | (if (or wildcard-regexp full-directory-p) | 351 | (if (or (and wildcard-regexp |
| 352 | (not (string= "[^~]\\'" wildcard-regexp))) ; Switch -B pseudo-wildcard regexp | ||
| 353 | full-directory-p) | ||
| 352 | (let* ((dir (file-name-as-directory file)) | 354 | (let* ((dir (file-name-as-directory file)) |
| 353 | (default-directory dir) ; so that file-attributes works | 355 | (default-directory dir) ; so that file-attributes works |
| 354 | (file-alist | 356 | (file-alist |