We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05b65d5 commit 98158fdCopy full SHA for 98158fd
crates/oxide/src/extractor/pre_processors/clojure.rs
@@ -18,7 +18,7 @@ pub struct Clojure;
18
fn is_keyword_character(byte: u8) -> bool {
19
return matches!(
20
byte,
21
- b'!' | b'%' | b'*' | b'+' | b'-' | b'.' | b'/' | b':' | b'_'
+ b'!' | b'#' | b'%' | b'*' | b'+' | b'-' | b'.' | b'/' | b':' | b'_'
22
) | byte.is_ascii_alphanumeric();
23
}
24
0 commit comments