[geany/geany] 2085e8: Symbol browser breaks with END ASSOCIATE

Adam Hirst git-noreply at xxxxx
Fri Feb 14 18:30:24 UTC 2014


Branch:      refs/heads/master
Author:      Adam Hirst <adam at aphirst.karoo.co.uk>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Fri, 14 Feb 2014 18:30:24 UTC
Commit:      2085e8a57c1623eb8fdd950c5eeda61c85c9b1ac
             https://github.com/geany/geany/commit/2085e8a57c1623eb8fdd950c5eeda61c85c9b1ac

Log Message:
-----------
Symbol browser breaks with END ASSOCIATE

Related to bug #1023.


Modified Paths:
--------------
    tagmanager/ctags/fortran.c

Modified: tagmanager/ctags/fortran.c
5 files changed, 4 insertions(+), 1 deletions(-)
===================================================================
@@ -63,6 +63,7 @@
 	KEYWORD_NONE = -1,
 	KEYWORD_allocatable,
 	KEYWORD_assignment,
+	KEYWORD_associate,
 	KEYWORD_automatic,
 	KEYWORD_block,
 	KEYWORD_byte,
@@ -230,6 +231,7 @@
 	/* keyword          keyword ID */
 	{ "allocatable",    KEYWORD_allocatable  },
 	{ "assignment",     KEYWORD_assignment   },
+	{ "associate",      KEYWORD_associate    },
 	{ "automatic",      KEYWORD_automatic    },
 	{ "block",          KEYWORD_block        },
 	{ "byte",           KEYWORD_byte         },
@@ -2052,7 +2054,8 @@ static boolean parseExecutionPart (tokenInfo *const token)
 					isSecondaryKeyword (token, KEYWORD_if) ||
 					isSecondaryKeyword (token, KEYWORD_select) ||
 					isSecondaryKeyword (token, KEYWORD_where) ||
-					isSecondaryKeyword (token, KEYWORD_forall))
+					isSecondaryKeyword (token, KEYWORD_forall) ||
+					isSecondaryKeyword (token, KEYWORD_associate))
 				{
 					skipToNextStatement (token);
 					result = TRUE;



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list