branch: elpa/lua-mode
commit 7b2c18cc7f758943cfbb6663db5999478fcc3ade
Merge: 530aa9f a7780dc
Author: dennis again <[email protected]>
Commit: dennis again <[email protected]>
Merge pull request #99 from tarsius/master
silence 25.1 byte-compiler
---
lua-mode.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lua-mode.el b/lua-mode.el
index abe91f5..db12ce5 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -727,7 +727,8 @@ Groups 6-9 can be used in any of argument regexps."
(lua--setq-local comment-start lua-comment-start)
(lua--setq-local comment-start-skip lua-comment-start-skip)
(lua--setq-local comment-use-syntax t)
- (lua--setq-local comment-use-global-state t)
+ (with-no-warnings
+ (lua--setq-local comment-use-global-state t))
(lua--setq-local imenu-generic-expression lua-imenu-generic-expression)