diff options
author | Dragan Simic <dsimic@manjaro.org> | 2024-03-21 07:06:05 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-03-21 23:57:09 +0100 |
commit | 0d49b1e5a8c789dd3f1029f382bd76a464b72da0 (patch) | |
tree | 2cd97a2bd3dcde5cd955f2f8120739ea88eb9857 /config.c | |
parent | Git 2.42.1 (diff) | |
download | git-0d49b1e5a8c789dd3f1029f382bd76a464b72da0.tar.xz git-0d49b1e5a8c789dd3f1029f382bd76a464b72da0.zip |
config: minor addition of whitespace
In general, binary operators should be enclosed in a pair of leading and
trailing space (SP) characters. Thus, clean up one spotted expression that
for some reason had a "bunched up" operator.
Signed-off-by: Dragan Simic <dsimic@manjaro.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -871,7 +871,7 @@ static char *parse_value(struct config_source *cs) continue; } if (c == '"') { - quote = 1-quote; + quote = 1 - quote; continue; } strbuf_addch(&cs->value, c); |