<p>In <a href="https://github.com/geany/geany/pull/406#discussion_r52910346">src/symbols.c</a>:</p>
<pre style='color:#555'>> +
> +  if (!tag_goto_popup)
> +          create_goto_popup();
> +
> +  model = gtk_tree_view_get_model(GTK_TREE_VIEW(tag_goto_tree_view));
> +  gtk_list_store_clear(GTK_LIST_STORE(model));
> +
> +  foreach_ptr_array(tmtag, i, tags)
> +  {
> +          gchar *fname = g_path_get_basename(tmtag->file->file_name);
> +          gchar *text;
> +
> +          if (first && have_best)
> +                  text = g_strdup_printf("<b>%s: %lu</b>", fname, tmtag->line);
> +          else
> +                  text = g_strdup_printf("%s: %lu", fname, tmtag->line);
</pre>
<p>text should be escaped for markup (g_markup_printf_escaped())</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br>Reply to this email directly or <a href="https://github.com/geany/geany/pull/406/files#r52910346">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/ABDrJwtOw4Dd4yeYq7sjnFiQ7e56toYiks5pkeQ6gaJpZM4DUzez.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/geany/geany/pull/406/files#r52910346"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>