From a985fa11676c15fcfc1e0bc077bf52c1a85cb665 Mon Sep 17 00:00:00 2001 From: PatR Date: Wed, 1 Nov 2023 22:07:43 -0700 Subject: [PATCH] comment fixup for saving cond_xyz This started as a typo/thinko fix but ended up rewording the comment. --- src/options.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/options.c b/src/options.c index f81dc65b2..390da2bf7 100644 --- a/src/options.c +++ b/src/options.c @@ -9454,9 +9454,9 @@ all_options_conds(strbuf_t *sbuf) ++idx; } /* finish off final line; value might be empty if one or more cond_xyz - options were changed in such a manner that that they're all back - to their default values; that will produce "OPTIONS=" will nothing - after the equals sign, if which case we need to suppress it */ + options were changed in such a manner that they're all back to their + default values--which will produce "OPTIONS=" with nothing after the + equals sign; only add to the output when there is more present */ if (strcmp(buf, "OPTIONS=")) { Strcat(buf, "\n"); strbuf_append(sbuf, buf);