From b7c0edfc7193204da58ca9b7608f4a940b887cac Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Mon, 5 Jul 2021 02:37:18 -0500 Subject: [PATCH] WIP: Don't use -let? Grasping at straws here... --- org-ql.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/org-ql.el b/org-ql.el index 193592a..82773e9 100644 --- a/org-ql.el +++ b/org-ql.el @@ -1162,8 +1162,11 @@ result form." ;; do with the version of map.el being used (although it happens locally even in ;; a clean sandbox, which should produce the same result as on CI). Maybe the ;; real fix would be to make makem.sh support dependency versions... - `(-let (((&keys :from :to :on :type) rest) - (result)) + `(let ((from (plist-get rest :from)) + (to (plist-get rest :to)) + (on (plist-get rest :on)) + (type (plist-get rest :type)) + (result)) (ignore type) ;; Only (ts) uses it. (pcase rest (`(,(and num (pred numberp)) . ,rest*)