aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlua/groovy.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lexlua/groovy.lua')
-rw-r--r--lexlua/groovy.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/groovy.lua b/lexlua/groovy.lua
index ed0caeb54..6f9bfd3c6 100644
--- a/lexlua/groovy.lua
+++ b/lexlua/groovy.lua
@@ -63,6 +63,6 @@ lex:add_rule('operator', token(lexer.OPERATOR, S('=~|!<>+-/*?&.,:;()[]{}')))
-- Fold points.
lex:add_fold_point(lexer.OPERATOR, '{', '}')
lex:add_fold_point(lexer.COMMENT, '/*', '*/')
-lex:add_fold_point(lexer.COMMENT, '//', lexer.fold_line_comments('//'))
+lex:add_fold_point(lexer.COMMENT, lexer.fold_consecutive_lines('//'))
return lex