Merge pull request #566 from jonathandturner/fix_538

Allow % in bare words
This commit is contained in:
Jonathan Turner 2019-09-02 12:59:01 +12:00 committed by GitHub
commit 36c181706d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -644,6 +644,7 @@ fn is_bare_char(c: char) -> bool {
'=' => true,
'~' => true,
'+' => true,
'%' => true,
_ => false,
}
}