# HG changeset patch # User William Astle # Date 1327556357 25200 # Node ID f8b33b3a45ac87a72037f0a5def9eed1c7e759b1 # Parent 68f41eaf44f2351d4871521d9840c2a29fc51cea Fix noexpand macro listings to show all bytes output Fix stupid error when checking for more than 8 bytes for a given source line so it checks the correct byte length instead of just checking the length of the current line's output. diff -r 68f41eaf44f2 -r f8b33b3a45ac lwasm/list.c --- a/lwasm/list.c Fri Jan 13 22:32:15 2012 -0700 +++ b/lwasm/list.c Wed Jan 25 22:39:17 2012 -0700 @@ -203,7 +203,7 @@ } } fputc('\n', of); - if (cl -> outputl > 8) + if (obytelen > 8) { for (i = 8; i < obytelen; i++) {