From cd6b37514fd3eea9cc26a76514d487328a11a8ba Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Thu, 17 Mar 2016 22:01:26 +0200 Subject: Improve instruction dump of comments. --- debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debug.c') diff --git a/debug.c b/debug.c index 388b62bc..f5eaa779 100644 --- a/debug.c +++ b/debug.c @@ -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: -- cgit v1.2.3