@techee commented on this pull request.


In ctags/parsers/asciidoc.c:

>  
 	while (1)
 	{
 		nl = nestingLevelsGetCurrent(nestingLevels);
-		if (nl && nl->type >= kind)
+		e = getEntryOfNestingLevel (nl);
+		if ((nl && (e == NULL)) || (e && (e->kind - AsciidocKinds) >= kind))

Because it can be set to CORK_NIL in makeAsciidocTag() when vStringLength (name) == 0.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.