adjust the clang-format penalties to reduce string breaking

this corrects some style glitches such as:
```
        long_function_call(arg, arg2, arg3, arg4, arg5, "str"
                                                        "ing");
```
...by adjusting the penalties for breaking strings and call
parameter lists.

(cherry picked from commit 0002377dca)
This commit is contained in:
Evan Hunt
2020-02-17 12:05:39 -08:00
parent 887244ae86
commit 25496b2299
18 changed files with 129 additions and 184 deletions

View File

@@ -361,9 +361,8 @@ main(int argc, char *argv[]) {
dns_result_register();
CHECKM(dns_dt_open(argv[0], dns_dtmode_file, mctx, &handle), "dns_dt_"
"openfil"
"e");
CHECKM(dns_dt_open(argv[0], dns_dtmode_file, mctx, &handle),
"dns_dt_openfile");
for (;;) {
isc_region_t input;