diff options
Diffstat (limited to 'nim/parsecfg.pas')
-rw-r--r-- | nim/parsecfg.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nim/parsecfg.pas b/nim/parsecfg.pas index a99da6852..3c10cc8fc 100644 --- a/nim/parsecfg.pas +++ b/nim/parsecfg.pas @@ -350,7 +350,7 @@ begin addChar(result.key, '.'); rawGetTok(c, c.tok); if c.tok.kind = tkSymbol then begin - result.key := result.key +{&} c.tok.literal; + add(result.key, c.tok.literal); rawGetTok(c, c.tok); end else begin |