diff options
| author | Lars Hansen | 2004-09-25 06:56:03 +0000 |
|---|---|---|
| committer | Lars Hansen | 2004-09-25 06:56:03 +0000 |
| commit | b3df990b2d6338f160d418af8937686bedba9d53 (patch) | |
| tree | 5b68185df77e0e627e72db1e182b70d62f9b05a8 | |
| parent | 0869a86073876749fa7ef6ae65ee6aebfd88eb3a (diff) | |
| download | emacs-b3df990b2d6338f160d418af8937686bedba9d53.tar.gz emacs-b3df990b2d6338f160d418af8937686bedba9d53.zip | |
(ls-lisp-format): Mark file names with poperty dired-filename.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/ls-lisp.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6671dc67fb6..a77f2206e58 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-09-25 Lars Hansen <larsh@math.ku.dk> | ||
| 2 | |||
| 3 | * ls-lisp.el (ls-lisp-format): Mark file names with poperty | ||
| 4 | dired-filename. | ||
| 5 | |||
| 1 | 2004-09-25 Kim F. Storm <storm@cua.dk> | 6 | 2004-09-25 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * ido.el (ido-max-directory-size): New defcustom. | 8 | * ido.el (ido-max-directory-size): New defcustom. |
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index 521729b764f..8944d4c20c0 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el | |||
| @@ -534,7 +534,7 @@ SWITCHES, TIME-INDEX and NOW give the full switch list and time data." | |||
| 534 | " " | 534 | " " |
| 535 | (ls-lisp-format-time file-attr time-index now) | 535 | (ls-lisp-format-time file-attr time-index now) |
| 536 | " " | 536 | " " |
| 537 | file-name | 537 | (propertize file-name 'dired-filename t) |
| 538 | (if (stringp file-type) ; is a symbolic link | 538 | (if (stringp file-type) ; is a symbolic link |
| 539 | (concat " -> " file-type)) | 539 | (concat " -> " file-type)) |
| 540 | "\n" | 540 | "\n" |