[Github-comments] [geany/geany] Enable local variables for C/C++ and improve autocompletion (PR #3185)
elextr
notifications at github.com
Sun May 1 00:33:56 UTC 2022
@elextr commented on this pull request.
> + !(tag->type & tm_tag_local_var_t) &&
+ is_autocomplete_tag(tag, info);
+}
+
+
+static guint copy_tags(GPtrArray *dst, TMTag **src, guint src_len, GHashTable *name_table,
+ gint num, gboolean (*predicate) (TMTag *, CopyInfo *), CopyInfo *info)
+{
+ guint i;
+
+ g_return_val_if_fail(src && dst, 0);
+
+ for (i = 0; i < src_len && num > 0; i++)
+ {
+ TMTag *tag = *src;
+ if (predicate(tag, info) &&
Yeah, lets leave it and start worrying if it ever actually causes an issue.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3185#discussion_r862408634
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3185/review/958529758 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20220430/66230fac/attachment-0001.htm>
More information about the Github-comments
mailing list