branch: elpa/lua-mode
commit 612b1e7d08077e6464c501da5ccea72441ad36c1
Author: Vedat Hallac <[email protected]>
Commit: Vedat Hallac <[email protected]>
Fixed misplaced paranthesis.
---
lua-mode.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lua-mode.el b/lua-mode.el
index bc95549..4f79e82 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -591,8 +591,8 @@ Return the amount the indentation changed by."
(current-indentation))
;; otherwise indent by lua-indent-level relative to the line where
literal starts
(t
- (goto-char (lua-get-multiline-start)))
- (+ (current-indentation) lua-indent-level)))))
+ (goto-char (lua-get-multiline-start))
+ (+ (current-indentation) lua-indent-level))))))
(defun lua-find-regexp (direction regexp &optional limit ignore-p)
"Searches for a regular expression in the direction specified.