branch: elpa/helm
commit a6de6aeb225369e15ab5b2c679276f05b6a42a6b
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Fix highligthing matches in helm-file-name-history-transformer
---
 helm-files.el | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/helm-files.el b/helm-files.el
index 2ab6847725d..bff351c44cc 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -6855,11 +6855,9 @@ be existing directories."
                             ((file-exists-p elm)
                              (let ((last-access (format-time-string "%d/%m/%Y  
%X"
                                                  (nth 4 (file-attributes 
elm)))))
-                               (propertize
-                                elm 'display
-                                (concat (propertize c 'face 'helm-ff-file)
-                                        (make-string (1+ (- lgst (length c))) 
? )
-                                        last-access))))
+                               (concat (propertize c 'face 'helm-ff-file)
+                                       (make-string (1+ (- lgst (length c))) ? 
)
+                                       last-access)))
                             ;; Should not happen as long as we use recentf.
                             (t (propertize c 'face 'helm-history-deleted)))
            when disp

Reply via email to