aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2011-02-19 09:50:45 +1100
committernyamatongwe <unknown>2011-02-19 09:50:45 +1100
commit8c5599b68c50e04bc5d07e6776e2c77154346eec (patch)
treec455bbb540c29866e6b1d9d1e020cdc417f88627
parent76e0484821dd99765b597a9725daf7994781a77b (diff)
downloadscintilla-mirror-8c5599b68c50e04bc5d07e6776e2c77154346eec.tar.gz
Fixed to make compile.
-rw-r--r--lexers/LexFortran.cxx2
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;