diff options
Diffstat (limited to 'lexlua/lisp.lua')
-rw-r--r-- | lexlua/lisp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/lisp.lua b/lexlua/lisp.lua index 7c2cda738..bc127a925 100644 --- a/lexlua/lisp.lua +++ b/lexlua/lisp.lua @@ -59,6 +59,6 @@ lex:add_fold_point(lexer.OPERATOR, '(', ')') lex:add_fold_point(lexer.OPERATOR, '[', ']') 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 |