emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/lua-mode 612b1e7 166/468: Fixed misplaced paranthesis.


From: Philip Kaludercic
Subject: [nongnu] elpa/lua-mode 612b1e7 166/468: Fixed misplaced paranthesis.
Date: Thu, 5 Aug 2021 04:58:29 -0400 (EDT)

branch: elpa/lua-mode
commit 612b1e7d08077e6464c501da5ccea72441ad36c1
Author: Vedat Hallac <vedathallac@gmail.com>
Commit: Vedat Hallac <vedathallac@gmail.com>

    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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]