Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sat, 23 Sep 2017 18:59:20 UTC Commit: 198a0cf2bac46942d1b379a98a20ccc04a9ef5aa https://github.com/geany/geany/commit/198a0cf2bac46942d1b379a98a20ccc04a9ef5...
Log Message: ----------- Update a comment to better reflect the internal data changes
Modified Paths: -------------- src/symbols.c
Modified: src/symbols.c 4 lines changed, 3 insertions(+), 1 deletions(-) =================================================================== @@ -1317,7 +1317,9 @@ static void update_tree_tags(GeanyDocument *doc, GList **tags) GList *item;
/* Build hash tables holding tags and parents */ - /* parent table is GHashTable<tag_name, GTree<line_num, GtkTreeIter>> */ + /* parent table is GHashTable<tag_name, GTree<line_num, GtkTreeIter>> + * where tag_name might be a fully qualified name (with scope) if the language + * parser reports scope properly (see tm_tag_has_full_context()). */ parents_table = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, parents_table_value_free); /* tags table is another representation of the @tags list, * GHashTable<TMTag, GTree<line_num, GList<GList<TMTag>>>> */
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).