[hb-shape] Add parantheses around --show-text output
diff --git a/util/options.cc b/util/options.cc
index f920838..4914cb6 100644
--- a/util/options.cc
+++ b/util/options.cc
@@ -768,7 +768,9 @@
 {
   if (show_text) {
     serialize_line_no (line_no, gs);
+    g_string_append_c (gs, '(');
     g_string_append_len (gs, text, text_len);
+    g_string_append_c (gs, ')');
     g_string_append_c (gs, '\n');
   }