1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Formatting: miscellaneous.

This patch fixes a few other whitespace and formatting issues which
were pointed out by the bulk-reindent or which I spotted in passing,
some involving manual editing to break lines more nicely.

I think the weirdest hunk in here is the one in windows/window.c
TranslateKey() where _half_ of an assignment statement inside an 'if'
was on the same line as the trailing paren of the if condition. No
idea at all how that one managed to happen!
This commit is contained in:
Simon Tatham
2022-08-03 20:48:46 +01:00
parent 4b8dc56284
commit 9cac27946a
18 changed files with 65 additions and 75 deletions

View File

@ -476,7 +476,7 @@ void conf_del_str_str(Conf *conf, int primary, const char *secondary)
del234(conf->tree, entry);
free_entry(entry);
}
}
}
void conf_set_filename(Conf *conf, int primary, const Filename *value)
{