changeset 24975:89c2bf63a83b

lazymanifest: drop SP before some labels These seem to be the only occurrences in our code base, so let's make it consistent.
author Martin von Zweigbergk <martinvonz@google.com>
date Sun, 12 Apr 2015 07:14:53 -0700
parents 46408b80c3a1
children 147d8892fc4b
files mercurial/manifest.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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);