summaryrefslogtreecommitdiff
path: root/lib/coderay
diff options
context:
space:
mode:
Diffstat (limited to 'lib/coderay')
-rw-r--r--lib/coderay/scanners/clojure.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/coderay/scanners/clojure.rb b/lib/coderay/scanners/clojure.rb
index ead788a..a16abdc 100644
--- a/lib/coderay/scanners/clojure.rb
+++ b/lib/coderay/scanners/clojure.rb
@@ -86,8 +86,8 @@ module CodeRay
add(CORE_FORMS, :reserved).
add(PREDEFINED_CONSTANTS, :pre_constant)
- BASIC_IDENTIFYER = /[a-zA-Z$%*\/_+!?&<>\-=][a-zA-Z0-9ยง$&*+!\/_?<>\-\#]*/
- IDENTIFIER = /(?:[@']?(?:#{BASIC_IDENTIFYER}\.)*#{BASIC_IDENTIFYER}(?:\/#{BASIC_IDENTIFYER})?\.?)|\.\.?/
+ BASIC_IDENTIFIER = /[a-zA-Z$%*\/_+!?&<>\-=][a-zA-Z0-9$&*+!\/_?<>\-\#]*/
+ IDENTIFIER = /(?:[@']?(?:#{BASIC_IDENTIFIER}\.)*#{BASIC_IDENTIFIER}(?:\/#{BASIC_IDENTIFIER})?\.?)|\.\.?/
SYMBOL = /::?#{IDENTIFIER}/o
DIGIT = /\d/
DIGIT10 = DIGIT