Skip to content

Commit

Permalink
Merge pull request #7 from carocad/unicodes
Browse files Browse the repository at this point in the history
allow unicode in name definitions
  • Loading branch information
carocad committed Oct 8, 2019
2 parents a1b957c + e7cebd3 commit 6072623
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject carocad/parcera "0.1.1"
(defproject carocad/parcera "0.1.2"
:description "Grammar-based Clojure(script) parser"
:url "https://github.com/carocad/parcera"
:license {:name "LGPLv3"
Expand Down
2 changes: 1 addition & 1 deletion src/parcera/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
;; on their own
VALID-CHARACTERS>: #'[\\w.*+\\-!?$%&=<>\\':#]+'
*)
<name>: #'([\\w.*+\\-!?$%&=<>\\':#]+\\/)?(\\/|([\\w.*+\\-!?$%&=<>\\':#]+))(?!\\/)'
<name>: #'([\\p{L}\\w.*+\\-!?$%&=<>\\':#]+\\/)?(\\/|([\\p{L}\\w.*+\\-!?$%&=<>\\':#]+))(?!\\/)'
(* HIDDEN PARSERS ------------------------------------------------------ *)
Expand Down

0 comments on commit 6072623

Please sign in to comment.