shithub: sl

Download patch

ref: bf8afbbf77844ee20f460c7494468048a20f6695
parent: c2998250358d9318007e6d2d008cf94dd0665559
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
-
--