diff options
author | nyamatongwe <unknown> | 2011-02-19 09:50:45 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-02-19 09:50:45 +1100 |
commit | 8c5599b68c50e04bc5d07e6776e2c77154346eec (patch) | |
tree | c455bbb540c29866e6b1d9d1e020cdc417f88627 | |
parent | 76e0484821dd99765b597a9725daf7994781a77b (diff) | |
download | scintilla-mirror-8c5599b68c50e04bc5d07e6776e2c77154346eec.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; |