diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | debug.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2016-03-17 Arnold D. Robbins <arnold@skeeve.com> + + * debug.c (print_instruction): For Op_comment, improve notation as + to whether it's a full comment or an end of line comment. + 2016-03-14 Arnold D. Robbins <arnold@skeeve.com> * io.c (socketopen): For SOCK_DGRAM, set read_len to sizeof @@ -4035,9 +4035,9 @@ print_instruction(INSTRUCTION *pc, Func_print print_func, FILE *fp, int in_dump) case Op_comment: print_memory(pc->memory, func, print_func, fp); - fprintf(fp, " {%s}\n", + fprintf(fp, " [comment_type = %s]\n", pc->memory->comment_type == EOL_COMMENT ? - "eol" : "full"); + "EOL" : "FULL"); break; case Op_push_i: |