- lexer.rl: fix incompatible delimiters on percent literal by pocke · Pull Request #808 · whitequark/parser
CRuby only accepts ASCII characters except [A-Za-z0-9] as a delimiter of percent literal, but the lexer accepts different characters. For exmaple: CRuby accepts %w^Dfoo^D, but parser didn't (n...