branch: elpa/lua-mode
commit 7935b5f62e9e4219573841b10995f1518769e99e
Author: immerrr <[email protected]>
Commit: immerrr <[email protected]>
Fix previous commit
---
lua-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lua-mode.el b/lua-mode.el
index 674cb8e..38ed501 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -379,7 +379,7 @@ to `lua-mode-map', otherwise they are prefixed with
`lua-prefix-key'."
Return the amount the indentation changed by."
(let ((indent (max 0 (- (lua-calculate-indentation nil)
(lua-calculate-indentation-left-shift))))
- (beg line-beginning-position)
+ (beg (line-beginning-position))
shift-amt
(case-fold-search nil)
(pos (- (point-max) (point))))