Fix up the PEG change from the last commit

This is not a regular expression.
This commit is contained in:
Přemysl Eric Janouch 2022-08-14 19:09:52 +02:00
parent f545be725d
commit 63aed8f0fd
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 2 additions and 2 deletions

View File

@ -4412,8 +4412,8 @@ socket_io_try_write (int socket_fd, struct str *wb)
// object = lws '{' entries endobj
// endobj = lws '}'
//
// quoted = lws '"' ('\\' escape / ![\\"] char)* '"'
// / lws '`' ![`]* '`'
// quoted = lws '"' (!["\\] char / '\\' escape)* '"'
// / lws '`' (![`] char)* '`'
// string = (quoted)+
// char = [\0-\177] # or any Unicode codepoint in the UTF-8 encoding
// escape = [\\"abfnrtv] / [xX][0-9A-Fa-f][0-9A-Fa-f]? / [0-7][0-7]?[0-7]?