From 473d76790f152e4189d09f8205be913b00f8ee34 Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Tue, 6 Feb 2024 19:15:48 +0300 Subject: [PATCH] fix: custom sequences --- password-store-ivy.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/password-store-ivy.el b/password-store-ivy.el index 8f7ebb1..3925d30 100644 --- a/password-store-ivy.el +++ b/password-store-ivy.el @@ -260,7 +260,7 @@ the current entry available via the `entry' variable." (if (string-match (rx bos "sequence-") field-name) `(,field-name . ,(condition-case err - (eval (car (read-from-string (cdr item)))) + (car (read-from-string (cdr item))) (error (user-error "Error in %s: %s" field-name (prin1-to-string err))))) `(,field-name . (wait (field . ,(car item)))))))