comparison mercurial/cext/revlog.c @ 34440:7ed0750c71a1

cext: wrap before brace for functions This is our prevailing style. Differential Revision: https://phab.mercurial-scm.org/D910
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 02 Oct 2017 19:28:41 +0100
parents b90e8da190da
children 6ece4a85c350
comparison
equal deleted inserted replaced
34439:88e83a618de0 34440:7ed0750c71a1
405 } 405 }
406 406
407 return newlist; 407 return newlist;
408 } 408 }
409 409
410 static int check_filter(PyObject *filter, Py_ssize_t arg) { 410 static int check_filter(PyObject *filter, Py_ssize_t arg)
411 {
411 if (filter) { 412 if (filter) {
412 PyObject *arglist, *result; 413 PyObject *arglist, *result;
413 int isfiltered; 414 int isfiltered;
414 415
415 arglist = Py_BuildValue("(n)", arg); 416 arglist = Py_BuildValue("(n)", arg);