branch: elpa/sesman
commit e8bfb0e37940bf5f370ae300b896dd04afbc63c8
Author: Vitalie Spinu <spinu...@gmail.com>
Commit: Vitalie Spinu <spinu...@gmail.com>

    Convert buffers to strings during formatting
---
 sesman.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sesman.el b/sesman.el
index cdd3251d3b..4a35566507 100644
--- a/sesman.el
+++ b/sesman.el
@@ -282,7 +282,8 @@ If SORT is non-nil, sort in relevance order."
          (session (gethash (car link) sesman-sessions-hashmap)))
     (format "%s(%s) -> %s [%s]"
             (sesman--lnk-context-type link)
-            (propertize (sesman--abbrev-path-maybe (sesman--lnk-value link)) 
'face 'bold)
+            (propertize (format "%s" (sesman--abbrev-path-maybe 
(sesman--lnk-value link)))
+                        'face 'bold)
             (propertize (sesman--lnk-session-name link) 'face 'bold)
             (if session
                 (sesman--format-session-objects system session)

Reply via email to