changeset 233:7887a48b74df

Remove stray \n from dts dts is not supposed to put a \n on the end of it's output.
author William Astle <lost@l-w.ca>
date Thu, 19 Jul 2012 13:17:30 -0600
parents 7da0452512b2
children d389adbcc4ab
files lwasm/pseudo.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lwasm/pseudo.c	Sun Jul 15 23:19:50 2012 -0600
+++ b/lwasm/pseudo.c	Thu Jul 19 13:17:30 2012 -0600
@@ -49,6 +49,8 @@
 
 	while (*t)
 	{
+		if (*t == '\n')
+			break;
 		lwasm_emit(l, *t);
 		t++;
 		l -> len += 1;