diff options
Diffstat (limited to 'who.tl')
-rw-r--r-- | who.tl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -258,11 +258,11 @@ (esc (thing) (with-gensyms (result) ^(whenlet ((,result ,thing)) - (put-string (html-encode* ,result) ,',var)))) + (put-string (html-encode* (tostringp ,result)) ,',var)))) (escq (thing) (with-gensyms (result) ^(whenlet ((,result ,thing)) - (put-string (html-encode ,result) ,',var)))) + (put-string (html-encode (tostringp ,result)) ,',var)))) (escj (thing) (with-gensyms (result) ^(whenlet ((,result ,thing)) |