Skip to content

Commit e22ef62

Browse files
authored
Merge pull request #2 from jackcviers/scala3-indent-cycle
Fixes incorrect argument order in call-interactively
2 parents 35f265f + 9d77eec commit e22ef62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scala-mode-indent.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -993,8 +993,8 @@ the optionally passed STRATEGY without cycling otherwise."
993993

994994
(interactive "*")
995995
(if scala-indent:use-cycle-indent
996-
(call-interactively t 'scala-indent:cycle-indent-line)
997-
(call-interactively t 'scala-indent:strategy-indent-line)))
996+
(call-interactively 'scala-indent:cycle-indent-line t)
997+
(call-interactively 'scala-indent:strategy-indent-line t)))
998998

999999
(defun scala-indent:indent-with-reluctant-strategy ()
10001000
(interactive "*")

0 commit comments

Comments
 (0)