branch: elpa/lua-mode
commit dfdbd854bcc4c0536de2d4aad277bf1a29904ca7
Author: immerrr <[email protected]>
Commit: immerrr <[email protected]>

    lua-cont-eol-regexp: add missing keywords "if", "until" and "elseif"
---
 lua-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lua-mode.el b/lua-mode.el
index 540bd2b..127e117 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -692,7 +692,7 @@ Returns final value of point as integer or nil if operation 
failed."
     (concat
      "\\(\\_<"
      (regexp-opt '("and" "or" "not" "in" "for" "while"
-                   "local" "function") t)
+                   "local" "function" "if" "until" "elseif") t)
      "\\_>\\|"
      "\\(^\\|[^" lua-operator-class "]\\)"
      (regexp-opt '("+" "-" "*" "/" "^" ".." "==" "=" "<" ">" "<=" ">=" "~=") t)

Reply via email to