branch: master
commit 88bf29945f4594a61773d90efc52fcc39a2f3912
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>

    counsel.el (counsel-recentf): Remove properties from recentf-list
    
    Fixes #770
---
 counsel.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/counsel.el b/counsel.el
index 36450bd..90ea62c 100644
--- a/counsel.el
+++ b/counsel.el
@@ -1418,7 +1418,7 @@ When INITIAL-INPUT is non-nil, use it in the minibuffer 
during completion."
   (interactive)
   (require 'recentf)
   (recentf-mode)
-  (ivy-read "Recentf: " recentf-list
+  (ivy-read "Recentf: " (mapcar #'substring-no-properties recentf-list)
             :action (lambda (f)
                       (with-ivy-window
                        (find-file f)))

Reply via email to