branch: elpa/lua-mode
commit eab8fc05a68da1cb383685b8e6b5d186c3451288
Author: Vedat Hallac <[email protected]>
Commit: Vedat Hallac <[email protected]>
Move docstrings to the end of constants.
The old constants were broken due to docstring location.
---
lua-mode.el | 25 ++++++++++++-------------
1 file changed, 12 insertions(+), 13 deletions(-)
diff --git a/lua-mode.el b/lua-mode.el
index 4abe24d..b64d010 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -622,11 +622,6 @@ Returns final value of point as integer or nil if
operation failed."
"-+*/^.=<>~"))
(defconst lua-cont-eol-regexp
- "Regexp that matches the ending of a line that needs continuation
-
-This regexp starts from eol and looks for a binary operator or an unclosed
-block intro (i.e. 'for' without 'do' or 'if' without 'then') followed by
-an optional whitespace till the end of the line."
(eval-when-compile
(concat
"\\(\\_<"
@@ -637,16 +632,14 @@ an optional whitespace till the end of the line."
(regexp-opt '("+" "-" "*" "/" "^" ".." "==" "=" "<" ">" "<=" ">=" "~=") t)
"\\)"
"\\s *\\=")
- ))
+ )
+ "Regexp that matches the ending of a line that needs continuation
+This regexp starts from eol and looks for a binary operator or an unclosed
+block intro (i.e. 'for' without 'do' or 'if' without 'then') followed by
+an optional whitespace till the end of the line.")
(defconst lua-cont-bol-regexp
- "Regexp that matches a line that continues previous one
-
-This regexp means, starting from point there is an optional whitespace followed
-by Lua binary operator. Lua is very liberal when it comes to continuation line,
-so we're safe to assume that every line that starts with a binop continues
-previous one even though it looked like an end-of-statement."
(eval-when-compile
(concat
"\\=\\s *"
@@ -657,7 +650,13 @@ previous one even though it looked like an
end-of-statement."
"\\($\\|[^" lua-operator-class "]\\)"
"\\)")
- ))
+ )
+ "Regexp that matches a line that continues previous one
+
+This regexp means, starting from point there is an optional whitespace followed
+by Lua binary operator. Lua is very liberal when it comes to continuation line,
+so we're safe to assume that every line that starts with a binop continues
+previous one even though it looked like an end-of-statement.")
(defun lua-last-token-continues-p ()
"Returns true if the last token on this line is a continuation token."