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

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

[nongnu] elpa/lua-mode a20b08e 078/468: lua-indent-line: remove extra va


From: Philip Kaludercic
Subject: [nongnu] elpa/lua-mode a20b08e 078/468: lua-indent-line: remove extra variable shift-amt
Date: Thu, 5 Aug 2021 04:58:11 -0400 (EDT)

branch: elpa/lua-mode
commit a20b08e44cb5d67518bdbcc3721a732576c5b85d
Author: immerrr <immerrr@gmail.com>
Commit: immerrr <immerrr@gmail.com>

    lua-indent-line: remove extra variable shift-amt
---
 lua-mode.el | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/lua-mode.el b/lua-mode.el
index f304d9e..e24495a 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -421,7 +421,6 @@ This function replaces previous prefix-key binding with a 
new one."
   "Indent current line for Lua mode.
 Return the amount the indentation changed by."
   (let (indent
-        shift-amt
         (case-fold-search nil)
         ;; save point as a distance to eob - it's invariant w.r.t indentation
         (pos (- (point-max) (point))))
@@ -431,15 +430,13 @@ Return the amount the indentation changed by."
 
       (setq indent (max 0 (- (lua-calculate-indentation nil)
                              (lua-calculate-unindentation))))
-      (setq shift-amt (- indent (current-column)))
-      (when (not (zerop shift-amt))
+      (when (not (equal indent (current-column)))
         (delete-region (line-beginning-position) (point))
         (indent-to indent))
       ;; If initial point was within line's indentation,
       ;; position after the indentation.  Else stay at same point in text.
       (if (> (- (point-max) pos) (point))
           (goto-char (- (point-max) pos)))
-      shift-amt
       indent)))
 
 (defun lua-find-regexp (direction regexp &optional limit ignore-p)



reply via email to

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