about summary refs log tree commit diff stats
path: root/linkify/linkify.cc
diff options
context:
space:
mode:
Diffstat (limited to 'linkify/linkify.cc')
-rw-r--r--linkify/linkify.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/linkify/linkify.cc b/linkify/linkify.cc
index b37c5296..9557f256 100644
--- a/linkify/linkify.cc
+++ b/linkify/linkify.cc
@@ -198,6 +198,11 @@ void replace_tags_in_file(const string& filename, const map<string, syminfo>& in
             while (in2 >> c) out << c;
             at_start_of_line = false;
           }
+          // send through open parens at start of line
+          else if (c == '(') {
+            out << c;
+            at_start_of_line = false;
+          }
           else {
 //?             cerr << "rest\n";
             if (c == ',' || c == ':') {