summaryrefslogtreecommitdiff
path: root/public/vendor/codemirror/addon/fold/comment-fold.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/vendor/codemirror/addon/fold/comment-fold.js')
-rw-r--r--public/vendor/codemirror/addon/fold/comment-fold.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/vendor/codemirror/addon/fold/comment-fold.js b/public/vendor/codemirror/addon/fold/comment-fold.js
index 60fa3e43..e8d800eb 100644
--- a/public/vendor/codemirror/addon/fold/comment-fold.js
+++ b/public/vendor/codemirror/addon/fold/comment-fold.js
@@ -29,7 +29,7 @@ CodeMirror.registerGlobalHelper("fold", "comment", function(mode) {
}
if (pass == 1 && found < start.ch) return;
if (/comment/.test(cm.getTokenTypeAt(CodeMirror.Pos(line, found + 1))) &&
- (lineText.slice(found - endToken.length, found) == endToken ||
+ (found == 0 || lineText.slice(found - endToken.length, found) == endToken ||
!/comment/.test(cm.getTokenTypeAt(CodeMirror.Pos(line, found))))) {
startCh = found + startToken.length;
break;