diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-16 10:01:31 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-16 10:01:45 +0200 |
commit | e40a7844b48e7262b51df573605e542cd621687e (patch) | |
tree | 76119dab805305320f2dd554e37a2aa907277958 /lisp/mastodon-views.el | |
parent | a203ad2fe6a759f3ac340198b4a168fd0d636a16 (diff) |
don't quote keywords
Diffstat (limited to 'lisp/mastodon-views.el')
-rw-r--r-- | lisp/mastodon-views.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-views.el b/lisp/mastodon-views.el index fbeb1c7..790c548 100644 --- a/lisp/mastodon-views.el +++ b/lisp/mastodon-views.el @@ -830,7 +830,7 @@ IND is the optional indentation level to print at." (mastodon-views--print-json-keys (cdr el) (if ind (+ ind 4) 4))) (t ; basic handling of raw booleans: - (let ((val (cond ((equal (cdr el) ':json-false) + (let ((val (cond ((equal (cdr el) :json-false) "no") ((equal (cdr el) 't) "yes") |