lazymanifest: drop SP before some labels
These seem to be the only occurrences in our code base, so let's make
it consistent.
--- a/mercurial/manifest.c Sun Apr 12 07:12:39 2015 -0700
+++ b/mercurial/manifest.c Sun Apr 12 07:14:53 2015 -0700
@@ -247,7 +247,7 @@
goto done;
}
ret = PyTuple_Pack(3, path, hash, flags);
- done:
+done:
Py_XDECREF(path);
Py_XDECREF(hash);
Py_XDECREF(flags);
@@ -672,7 +672,7 @@
copy->pydata = self->pydata;
Py_INCREF(copy->pydata);
return copy;
- nomem:
+nomem:
PyErr_NoMemory();
Py_XDECREF(copy);
return NULL;
@@ -724,7 +724,7 @@
}
copy->livelines = copy->numlines;
return copy;
- nomem:
+nomem:
PyErr_NoMemory();
Py_XDECREF(copy);
return NULL;
@@ -845,7 +845,7 @@
}
Py_DECREF(emptyTup);
return ret;
- nomem:
+nomem:
PyErr_NoMemory();
Py_XDECREF(ret);
Py_XDECREF(emptyTup);