[hb-shape] Add parantheses around --show-text output

This commit is contained in:
Behdad Esfahbod 2012-01-20 17:18:59 -05:00
parent b12c4d4361
commit d8134bc017
1 changed files with 2 additions and 0 deletions

View File

@ -768,7 +768,9 @@ format_options_t::serialize_line (hb_buffer_t *buffer,
{ {
if (show_text) { if (show_text) {
serialize_line_no (line_no, gs); serialize_line_no (line_no, gs);
g_string_append_c (gs, '(');
g_string_append_len (gs, text, text_len); g_string_append_len (gs, text, text_len);
g_string_append_c (gs, ')');
g_string_append_c (gs, '\n'); g_string_append_c (gs, '\n');
} }