FULL-DIRECTORY-P are nil, and FILE is absolute, expand it. This
prevents file names like "~/" been listed literally.
+2010-02-10 Michael Albinus <michael.albinus@gmx.de>
+
+ * ls-lisp.el (ls-lisp-insert-directory): Wen WILDCARD-REGEXP and
+ FULL-DIRECTORY-P are nil, and FILE is absolute, expand it. This
+ prevents file names like "~/" been listed literally.
+
2010-02-10 Dan Nicolaescu <dann@ics.uci.edu>
* term/xterm.el (xterm-maybe-set-dark-background-mode): Remove
;; If not full-directory-p, FILE *must not* end in /, as
;; file-attributes will not recognize a symlink to a directory,
;; so must make it a relative filename as ls does:
+ (if (file-name-absolute-p file) (setq file (expand-file-name file)))
(if (eq (aref file (1- (length file))) ?/)
(setq file (substring file 0 -1)))
(let ((fattr (file-attributes file 'string)))