cext: move braces for control statements to same line
This seems to be the prevailing style in the code by a wide margin.
Differential Revision: https://phab.mercurial-scm.org/D907
--- a/mercurial/cext/base85.c Mon Oct 02 19:17:04 2017 +0100
+++ b/mercurial/cext/base85.c Mon Oct 02 19:02:43 2017 +0100
@@ -96,14 +96,12 @@
dst = PyBytes_AsString(out);
i = 0;
- while (i < len)
- {
+ while (i < len) {
acc = 0;
cap = len - i - 1;
if (cap > 4)
cap = 4;
- for (j = 0; j < cap; i++, j++)
- {
+ for (j = 0; j < cap; i++, j++) {
c = b85dec[(int)*text++] - 1;
if (c < 0)
return PyErr_Format(
@@ -112,8 +110,7 @@
(int)i);
acc = acc * 85 + c;
}
- if (i++ < len)
- {
+ if (i++ < len) {
c = b85dec[(int)*text++] - 1;
if (c < 0)
return PyErr_Format(
@@ -136,8 +133,7 @@
acc *= 85;
if (cap && cap < 4)
acc += 0xffffff >> (cap - 1) * 8;
- for (j = 0; j < cap; j++)
- {
+ for (j = 0; j < cap; j++) {
acc = (acc << 8) | (acc >> 24);
*dst++ = acc;
}
--- a/mercurial/cext/revlog.c Mon Oct 02 19:17:04 2017 +0100
+++ b/mercurial/cext/revlog.c Mon Oct 02 19:02:43 2017 +0100
@@ -445,8 +445,7 @@
iter = PyObject_GetIter(list);
if (iter == NULL)
return -2;
- while ((iter_item = PyIter_Next(iter)))
- {
+ while ((iter_item = PyIter_Next(iter))) {
iter_item_long = PyInt_AS_LONG(iter_item);
Py_DECREF(iter_item);
if (iter_item_long < min_idx)