tisp

tiny lisp
git clone git://edryd.org/tisp
Log | Files | Refs | LICENSE

commit 6dc20d5e12a292e1d7679838475a92231872b5bd
parent 836c58d5b4dbf8c9639ac612e1f7d8f49dd825c8
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Wed, 30 Jan 2019 17:39:20 -0800

Allow for more characters as symbols

Diffstat:
tisp.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tisp.c b/tisp.c @@ -106,7 +106,7 @@ static int issym(char c) { return BETWEEN(c, 'a', 'z') || BETWEEN(c, 'A', 'Z') || - BETWEEN(c, '0', '9') || strchr("_+-*/=<>?", c); + BETWEEN(c, '0', '9') || strchr("_+-*/=<>!?$&^#@:~", c); } static int