SF.net SVN: geany: [756] trunk/tagmanager/pascal.c
eht16 at users.sourceforge.net
eht16 at xxxxx
Tue Aug 22 19:15:40 UTC 2006
Revision: 756
Author: eht16
Date: 2006-08-22 12:15:33 -0700 (Tue, 22 Aug 2006)
ViewCVS: http://svn.sourceforge.net/geany/?rev=756&view=rev
Log Message:
-----------
Added recognition for keyword "type".
Modified Paths:
--------------
trunk/tagmanager/pascal.c
Modified: trunk/tagmanager/pascal.c
===================================================================
--- trunk/tagmanager/pascal.c 2006-08-22 19:03:38 UTC (rev 755)
+++ trunk/tagmanager/pascal.c 2006-08-22 19:15:33 UTC (rev 756)
@@ -246,6 +246,13 @@
kind = K_FUNCTION;
}
break;
+ case 't':
+ if (tail ("ype"))
+ {
+ get_tagname = TRUE;
+ kind = K_FUNCTION;
+ }
+ break;
}
} /* while not eof */
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list