# HG changeset patch # User Matt Mackall # Date 2008-10-12 20:21:08 # Node ID 12b35ae0336534014152b1e868c7714e245a8d1b # Parent 7b5c063b0b94afc77dae3e76f57341a19e974660 parsers: clean up whitespace diff --git a/mercurial/parsers.c b/mercurial/parsers.c --- a/mercurial/parsers.c +++ b/mercurial/parsers.c @@ -21,7 +21,7 @@ static int hexdigit(char c) if (c >= 'a' && c <= 'f') return c - 'a' + 10; - + return -1; } @@ -60,9 +60,9 @@ static PyObject *unhexlify(const char *s *d++ = (hi << 4) | lo; } - + goto done; - + bail: Py_XDECREF(ret); ret = NULL;