mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
[plist] Allow ` to be used without quotes
It has no special meaning when parsing property lists, so there's no reason to require quotes around it.
This commit is contained in:
parent
9e755f270e
commit
a6703c95cf
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ static void
|
|||
init_quotables (void)
|
||||
{
|
||||
const char *unquotables = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||
"abcdefghijklmnopqrstuvwxyz!#$%&*+-./:?@|~_^";
|
||||
"`abcdefghijklmnopqrstuvwxyz!#$%&*+-./:?@|~_^";
|
||||
const byte *c;
|
||||
memset (quotable_bitmap, ~0, sizeof (quotable_bitmap));
|
||||
for (c = (byte *) unquotables; *c; c++)
|
||||
|
|
Loading…
Reference in a new issue