diff options
author | nyamatongwe <devnull@localhost> | 2011-02-19 09:50:45 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-02-19 09:50:45 +1100 |
commit | 63d64405ee7c55959b393cfc5afa5eb13f65d95a (patch) | |
tree | fe604bab476535fab97c78790e0419a425d2d271 | |
parent | 1b44dcd9a33d8028366b96a8649eff70b77f7afd (diff) | |
download | scintilla-mirror-63d64405ee7c55959b393cfc5afa5eb13f65d95a.tar.gz |
Fixed to make compile.
-rw-r--r-- | lexers/LexFortran.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexFortran.cxx b/lexers/LexFortran.cxx index 47e46e82f..6c61c540f 100644 --- a/lexers/LexFortran.cxx +++ b/lexers/LexFortran.cxx @@ -266,7 +266,7 @@ static int classifyFoldPointFortran(const char* s, const char* prevWord, const c || strcmp(s, "endmodule") == 0 || strcmp(s, "endprogram") == 0 || strcmp(s, "endsubroutine") == 0 || strcmp(s, "endtype") == 0 || strcmp(s, "endwhere") == 0 - || (strcmp(s, "procedure") == 0 && strcmp(prevWord,"module")==0) // Take care of the module procedure statement + || (strcmp(s, "procedure") == 0 && strcmp(prevWord,"module")==0) ) { // Take care of the module procedure statement lev = -1; } else if (strcmp(prevWord, "end") == 0 && strcmp(s, "if") == 0){ // end if lev = 0; |