<p>In <a href="https://github.com/geany/geany/pull/797#discussion_r54357906">src/symbols.c</a>:</p>
<pre style='color:#555'>> {
> - if (((GList *) node->data)->data == tag)
> - break;
> + GList *node;
> + /* should always be the first element as we returned the first one in
> + * tags_table_lookup() */
> + foreach_list(node, list)
> + {
> + if (((GList *) node->data)->data == tag)
> + break;
> + }
> + list = g_list_delete_link(list, node);
> + g_tree_insert(tree, GINT_TO_POINTER(tag->line), list);
</pre>
<p>shouldn't the entry be removed if <code>list==NULL</code> like it used to do?</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/797/files#r54357906">view it on GitHub</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/ABDrJwCqwsIqwQ8YHCyhKEK3lVIO3S_Oks5po2yYgaJpZM4G0Ju3.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/797/files#r54357906"></link>
<meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>