Kaydet (Commit) 198a0cf2 authored tarafından Colomban Wendling's avatar Colomban Wendling

Update a comment to better reflect the internal data changes

üst 6522332b
...@@ -1317,7 +1317,9 @@ static void update_tree_tags(GeanyDocument *doc, GList **tags) ...@@ -1317,7 +1317,9 @@ static void update_tree_tags(GeanyDocument *doc, GList **tags)
GList *item; GList *item;
/* Build hash tables holding tags and parents */ /* 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); 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, /* tags table is another representation of the @tags list,
* GHashTable<TMTag, GTree<line_num, GList<GList<TMTag>>>> */ * GHashTable<TMTag, GTree<line_num, GList<GList<TMTag>>>> */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment