branch: externals/ebdb
commit e760dadc6bbcbc822186cd606a947666b7cc8e55
Author: Eric Abrahamsen <[email protected]>
Commit: Eric Abrahamsen <[email protected]>

    Fix quoting bug in ebdb-fmt-record-header
    
    * ebdb-com.el (ebdb-fmt-record-header): Quotes were eating variable
      value of text property.
---
 ebdb-com.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ebdb-com.el b/ebdb-com.el
index 9620d73..6f5f86a 100644
--- a/ebdb-com.el
+++ b/ebdb-com.el
@@ -563,7 +563,7 @@ This happens in addition to any pre-defined indentation of 
STRING."
     (setq step (point))
     (insert (slot-value (ebdb-record-cache record) 'name-string))
     (add-text-properties (line-beginning-position) (point)
-                        '(ebdb-record record-class))
+                        (list 'ebdb-record record-class))
     (add-text-properties step (point)
                         (list
                          'face (cdr (assoc record-class 
ebdb-name-face-alist)))))

Reply via email to