branch: elpa/lua-mode
commit d742cae6636bbe5e0368578e3361a13baa6b7e01
Author: immerrr <[email protected]>
Commit: immerrr <[email protected]>
lua-mark-all-multiline-literals: comment out debug message
---
lua-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lua-mode.el b/lua-mode.el
index 876b4ba..4337e49 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -1262,7 +1262,7 @@ If END is nil, stop at `end-of-buffer'."
(let (ml-begin ml-end)
(setq ml-begin (match-beginning 0))
(when (re-search-forward (format "\\]%s\\]" (or (match-string 1)
"")) nil 'noerror)
- (message "found match %s" (match-string 0))
+ ;; (message "found match %s" (match-string 0))
(setq ml-end (match-end 0)))
(lua-mark-multiline-region ml-begin ml-end))))))