summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sotoudeh <matthewsot@outlook.com>2021-01-12 15:28:53 -0800
committerMatthew Sotoudeh <matthewsot@outlook.com>2021-01-12 15:28:53 -0800
commitfc97b2ca3b4aaa125dde614717b59214704fe2f6 (patch)
tree92f7c6cfe944eae1eff50eeeed7c40e6cdc87eef
parent521940ea33fc91ae9ac1a096fbddf41fccb0dd0b (diff)
Fix the order of unquoting
We want to unquote the procedure, not the call
-rw-r--r--example.rkt2
1 files changed, 1 insertions, 1 deletions
diff --git a/example.rkt b/example.rkt
index b2833db..4033627 100644
--- a/example.rkt
+++ b/example.rkt
@@ -56,7 +56,7 @@
(> (attr "timestamp") (- (today) (days 1)))
(> (attr "num-comments") 5)
(not (has-label? "triaged")))))
- `("Read Today" . (open-feed ',(read-today-feeddef)))
+ `("Read Today" . (open-feed ,`(,read-today-feeddef)))
`("All Read-Later-Days" . (open-feed '(source ReadLaterDays))))])
; This method takes an item and attempts to print it using the listed printers.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback