Skip to content

Commit

Permalink
FEAT: allow forward-slash character in compiled REF! literals.
Browse files Browse the repository at this point in the history
  • Loading branch information
9214 authored and dockimbel committed May 5, 2020
1 parent cc15d58 commit 8a6a209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lexer.r
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ lexer: context [
not-file-char: charset {[](){}"@:;}
not-url-char: charset {[](){}";}
not-email-char: union not-file-char union ws-ASCII charset "<^/"
not-ref-char: exclude not-email-char charset "@:"
not-ref-char: union ws-ASCII charset {#$@'",;=\^^^/<>[](){}}
not-str-char: #"^""
not-mstr-char: #"}"
not-tag-1st: complement union ws-ASCII charset "=><[](){};^""
Expand Down

0 comments on commit 8a6a209

Please sign in to comment.