From a6703c95cf2c8406977c090a2259d363a238e1ab Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 2 Dec 2021 13:38:12 +0900 Subject: [PATCH] [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. --- libs/util/plist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/util/plist.c b/libs/util/plist.c index 32bde8a73..1fd72f8e2 100644 --- a/libs/util/plist.c +++ b/libs/util/plist.c @@ -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++)