diff options
author | nyamatongwe <unknown> | 2006-05-16 12:53:00 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-05-16 12:53:00 +0000 |
commit | e157ee1885ff0a21159ccd2f575288d00853fa1e (patch) | |
tree | e6ded17efacc554619e5b28fd225c012e94e7748 | |
parent | 34bafa918cc070010c5472493431d4e5b5dffb57 (diff) | |
download | scintilla-mirror-e157ee1885ff0a21159ccd2f575288d00853fa1e.tar.gz |
Bug 1489484 fixed as described in tracker.
-rw-r--r-- | src/LexBash.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexBash.cxx b/src/LexBash.cxx index dfbf309d6..e9c31d6b3 100644 --- a/src/LexBash.cxx +++ b/src/LexBash.cxx @@ -627,7 +627,7 @@ static void FoldBashDoc(unsigned int startPos, int length, int, WordList *[], && !IsCommentLine(lineCurrent+1, styler)) levelCurrent--; } - if (style == SCE_C_OPERATOR) { + if (style == SCE_SH_OPERATOR) { if (ch == '{') { levelCurrent++; } else if (ch == '}') { |