Skip to content

Commit ee121cd

Browse files
committed
allow $ % & = as characters in Symbol
1 parent e25eb7f commit ee121cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/us/bpsm/edn/util/CharClassify.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public static boolean startsNumber(char c) {
6565
static {
6666
SYMBOL_START = new BitSet(128);
6767
SYMBOL_START.or(LETTER);
68-
for (char c: "!*+-./?_".toCharArray()) {
68+
for (char c: "!*+-./?_$%&=".toCharArray()) {
6969
SYMBOL_START.set(c);
7070
}
7171
}

0 commit comments

Comments
 (0)