the patch posted by @b4n is not compatible anymore.
For the record Im posting a new patch which works with geany 2
```
--- a/ctags/parsers/erlang.c
+++ b/ctags/parsers/erlang.c
@@ -112,7 +112,7 @@
{
vString *const identifier = vStringNew ();
parseIdentifier (cp, identifier);
- makeMemberTag (identifier, K_FUNCTION, module);
+ makeMemberTag (identifier, K_FUNCTION, NULL);
vStringDelete (identifier);
}
```
Im not an expert in geany codebase can someone verify Im not breaking something
with that patch?
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/2650#issuecomment-2049077269
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/2650/[email protected]>