aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-04-28 17:06:53 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-04-28 17:06:53 +0200
commitb4f463aaed526f637f9bd5d6aa494b9f195272c5 (patch)
tree0354b08ecc5d21b409c989ebb5893f80d647509f
parent00cb199457d2bd83ed16b296d5c858b291b900c3 (diff)
no quasi-quotes for let-alist dots
-rw-r--r--lisp/mastodon-tl.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 7b979d1..4082905 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -2206,9 +2206,10 @@ report the account for spam."
(defvar crm-separator)
(defun mastodon-tl--map-rules-alist (rules)
+ "Return an alist of the text and id fields of RULES."
(mapcar (lambda (x)
(let-alist x
- `(,.text . ,.id)))
+ (cons .text .id)))
rules))
(defun mastodon-tl--read-rules-ids ()