Commit ed66a3b209614f9e8131f73a577d061e896452d6
Fix a comment in engine/parsing.c
"strings" are obviously surrounded by double quotes, not single quotes.
Author: xaizek
Author date (UTC): 2025-07-05 10:42
Committer name: xaizek
Committer date (UTC): 2025-07-05 10:43
Parent(s): 78a77b2e241ae3ccdb1c4e9ac902efbe2efd661f
Signing key: 99DC5E4DB05F6BE2
Tree: 88391dba23ce035e75bbb224facb7eb056653e24
File src/engine/parsing.c changed (mode: 100644) (index 7351e3d94..4f1def932) |
... |
... |
parse_singly_quoted_char(parse_context_t *ctx, const char **in, sbuffer *sbuf) |
1034 |
1034 |
return 1; |
return 1; |
1035 |
1035 |
} |
} |
1036 |
1036 |
|
|
1037 |
|
/* dqstr ::= ''' dqchar { dqchar } ''' */ |
|
|
1037 |
|
/* dqstr ::= '"' dqchar { dqchar } '"' */ |
1038 |
1038 |
static var_t |
static var_t |
1039 |
1039 |
parse_doubly_quoted_string(parse_context_t *ctx, const char **in) |
parse_doubly_quoted_string(parse_context_t *ctx, const char **in) |
1040 |
1040 |
{ |
{ |