From 90528b166495fa32073cdb66963ce439b7c9eb7a Mon Sep 17 00:00:00 2001 From: Joao Tavora Date: Sun, 20 Oct 2013 12:42:19 +0100 Subject: [PATCH] fix: no need for eval here, since make-snippet is a function --- snippet-tests.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippet-tests.el b/snippet-tests.el index e258d04..5e63851 100644 --- a/snippet-tests.el +++ b/snippet-tests.el @@ -49,7 +49,7 @@ (mirror 1 (if (string-match "%" field-text) "\)" "")))))) (defun snippet--insert-test-snippet (name) - (funcall (eval `(make-snippet ,(cadr (assoc name snippet--test-snippets-alist)))))) + (funcall (make-snippet (cadr (assoc name snippet--test-snippets-alist))))) (ert-deftest foo-expansion ()