Skip to content

Commit

Permalink
fix: disallow escape character \ and , for symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
carocad committed Oct 9, 2019
1 parent 0847357 commit 606e94c
Showing 1 changed file with 1 addition and 1 deletion.
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>: #'[^\\s\\(\\)\\[\\]{}\"@~]+'
*)
<name>: #'([^\\s\\(\\)\\[\\]{}\"@~]+\\/)?(\\/|([^\\s\\(\\)\\[\\]{}\"@~]+))(?!\\/)'
<name>: #'([^\\s\\(\\)\\[\\]{}\"@~,\\\\]+\\/)?(\\/|([^\\s\\(\\)\\[\\]{}\"@~,\\\\]+))(?!\\/)'
(* HIDDEN PARSERS ------------------------------------------------------ *)
Expand Down

0 comments on commit 606e94c

Please sign in to comment.