Added recognition for keyword "type".

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@756 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2006-08-22 19:15:33 +00:00
parent f509afca7e
commit 5d4aad6501

View File

@ -246,6 +246,13 @@ static void findPascalTags (void)
kind = K_FUNCTION;
}
break;
case 't':
if (tail ("ype"))
{
get_tagname = TRUE;
kind = K_FUNCTION;
}
break;
}
} /* while not eof */
}