changeset 7091:12b35ae03365

parsers: clean up whitespace
author Matt Mackall <mpm@selenic.com>
date Sun, 12 Oct 2008 15:21:08 -0500
parents 7b5c063b0b94
children fb3fc27617a2
files mercurial/parsers.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/parsers.c	Sun Oct 12 15:21:08 2008 -0500
+++ b/mercurial/parsers.c	Sun Oct 12 15:21:08 2008 -0500
@@ -21,7 +21,7 @@
 
 	if (c >= 'a' && c <= 'f')
 		return c - 'a' + 10;
-	
+
 	return -1;
 }
 
@@ -60,9 +60,9 @@
 
 		*d++ = (hi << 4) | lo;
 	}
-	
+
 	goto done;
-	
+
 bail:
 	Py_XDECREF(ret);
 	ret = NULL;