branch: elpa/lua-mode
commit 0a986f75b9ec65c71dd73d3eb2dd9f96dd9f7146
Author: immerrr <[email protected]>
Commit: immerrr <[email protected]>
Add hideshow support for "repeat... until" blocks
---
lua-mode.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lua-mode.el b/lua-mode.el
index 3405c4a..e08955c 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -651,7 +651,8 @@ Groups 6-9 can be used in any of argument regexps."
(defvar lua-sexp-alist '(("then" . "end")
("function" . "end")
- ("do" . "end")))
+ ("do" . "end")
+ ("repeat" . "until")))
(defvar lua-mode-abbrev-table nil
"Abbreviation table used in lua-mode buffers.")