branch: elpa/fedi
commit 075acfb220499ac0bd6bf5f11027807f8cb1bcf8
Author: marty hiatt <[email protected]>
Commit: marty hiatt <[email protected]>

    replace eval call with symbol-value, finally.
---
 fedi-post.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fedi-post.el b/fedi-post.el
index 31d516d3acd..9bd740f8b6b 100644
--- a/fedi-post.el
+++ b/fedi-post.el
@@ -484,7 +484,7 @@ Item-var, containing the data to be displayed, can be a 
string, or a
 cons cell, or a list. If the latter two, the first element is displayed."
   (let-alist item
     (let ((region (fedi--find-property-range .prop (point-min)))
-          (val (eval .item-var))) ;; FIXME: remove this eval?
+          (val (symbol-value .item-var)))
       (add-text-properties
        (car region) (cdr region)
        (list 'display

Reply via email to