diff options
Diffstat (limited to 'lexlua/gtkrc.lua')
-rw-r--r-- | lexlua/gtkrc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/gtkrc.lua b/lexlua/gtkrc.lua index 59baa37fd..acf3b37c5 100644 --- a/lexlua/gtkrc.lua +++ b/lexlua/gtkrc.lua @@ -54,6 +54,6 @@ lex:add_rule('operator', token(lexer.OPERATOR, S(':=,*()[]{}'))) -- Fold points. lex:add_fold_point(lexer.OPERATOR, '{', '}') -lex:add_fold_point(lexer.COMMENT, '#', lexer.fold_line_comments('#')) +lex:add_fold_point(lexer.COMMENT, lexer.fold_consecutive_lines('#')) return lex |