shithub: neatpost

Download patch

ref: 28949d2e5934be77d5b8ed1e401ea214e3f52c20
parent: 890599cc49cc9cfd2a3f38367c321b05349d4276
author: Ali Gholami Rudi <ali@rudi.ir>
date: Sun Jun 16 13:17:11 EDT 2013

post: push back the \n in iseol()

--- a/post.c
+++ b/post.c
@@ -90,8 +90,7 @@
 	do {
 		c = next();
 	} while (c == ' ');
-	if (c != '\n')
-		back(c);
+	back(c);
 	return c == '\n';
 }