# HG changeset patch # User Yuya Nishihara # Date 2018-07-14 01:50:10 # Node ID 992e108212a9ea6c1c8277245f2e563a9c323764 # Parent f016eac2a466ff9431af7aa495ba4ef591e7aa29 cext: reformat with clang-format 6.0 It appears some changes in clang-format affect our code. I didn't dig into that deeper since the new output looks better. diff --git a/mercurial/cext/pathencode.c b/mercurial/cext/pathencode.c --- a/mercurial/cext/pathencode.c +++ b/mercurial/cext/pathencode.c @@ -474,7 +474,10 @@ static Py_ssize_t basicencode(char *dest static const uint32_t twobytes[8] = {0, 0, 0x87fffffe}; static const uint32_t onebyte[8] = { - 1, 0x2bff3bfa, 0x68000001, 0x2fffffff, + 1, + 0x2bff3bfa, + 0x68000001, + 0x2fffffff, }; Py_ssize_t destlen = 0;