aboutsummaryrefslogtreecommitdiff
path: root/src/debugger.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/debugger.c')
-rw-r--r--src/debugger.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/debugger.c b/src/debugger.c
index 15012e6..c1e971e 100644
--- a/src/debugger.c
+++ b/src/debugger.c
@@ -146,9 +146,8 @@ static void debug_text_para(Paragraph *para, cairo_t *cr, double *ypos,
}
}
- if ( get_newline_at_end(para) ) {
- plot_text(cr, ypos, fontdesc, "Ends with newline");
- }
+ snprintf(tmp, 255, "Newline at end: %p\n", get_newline_at_end(para));
+ plot_text(cr, ypos, fontdesc, tmp);
}