diff options
| -rw-r--r-- | listamsb.c | 5 | 
1 files changed, 5 insertions, 0 deletions
@@ -671,6 +671,8 @@ int decrunch_line(void) {  		byte = read_prog_byte();  		if(byte != 0) { +			if(byte == ' ' || is_comment_start(byte)) spacecount++; +  			if(in_string) {  				if(byte == '|')  					in_string = 0; @@ -754,6 +756,9 @@ void crunch_program(void) {  			newproglen,  			percent < 0 ? -percent : percent,  			percent < 0 ? "larger" : "smaller"); + +	if(decrunch && spacecount) +		warn("%d spaces/comments, are you sure it was crunched?", spacecount);  }  void print_help(void) {  | 
