From c91c4fa47140c0d6191241a832fc534b1c1514ce Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 19 Jan 2012 17:51:57 -0500 Subject: [PATCH] [hb-shape] Change glyphstring brackets from to [/] Sorry for the disruption but I need this to differentiate from the Unicode string. --- util/options.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/options.cc b/util/options.cc index 2bf2c58..f920838 100644 --- a/util/options.cc +++ b/util/options.cc @@ -717,7 +717,7 @@ format_options_t::serialize_glyphs (hb_buffer_t *buffer, hb_glyph_info_t *info = hb_buffer_get_glyph_infos (buffer, NULL); hb_glyph_position_t *pos = hb_buffer_get_glyph_positions (buffer, NULL); - g_string_append_c (gs, '<'); + g_string_append_c (gs, '['); for (unsigned int i = 0; i < num_glyphs; i++) { if (i) @@ -749,7 +749,7 @@ format_options_t::serialize_glyphs (hb_buffer_t *buffer, info++; pos++; } - g_string_append_c (gs, '>'); + g_string_append_c (gs, ']'); } void format_options_t::serialize_line_no (unsigned int line_no, -- 2.7.4