shithub: femtolisp

Download patch

ref: 64afa666f159be2f11dc99a3f42a72c48fa38b6f
parent: 61e1bbc29155917b2f2a27d5286428cbf9c315fb
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Tue Oct 22 15:11:20 EDT 2024

symchar: add } and {

--- a/read.h
+++ b/read.h
@@ -9,7 +9,6 @@
 // exceptions are '.', which is an ordinary symbol character
 // unless it's the only character in the symbol, and '#', which is
 // an ordinary symbol character unless it's the first character.
-#define symchar(c) (!strchr("()[]'\";`,\\| \a\b\f\n\r\t\v", (c)))
+#define symchar(c) (!strchr("()[]{}'\";`,\\| \a\b\f\n\r\t\v", (c)))
 
 #endif
-