From 6c5e42ca7a8d3cd41758864580cd7be517a7a3d1 Mon Sep 17 00:00:00 2001 From: john muhl Date: Tue, 18 Mar 2025 09:12:39 -0500 Subject: [PATCH] ; Fix 'lua-ts-mode' tests (Bug#77102) * test/lisp/progmodes/lua-ts-mode-resources/indent.erts: Remove unintended use of tabs and make indentation settings buffer local. (cherry picked from commit 60e9195984d746cbbb5939918ed5ddc27377c0e6) --- .../lua-ts-mode-resources/indent.erts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/lisp/progmodes/lua-ts-mode-resources/indent.erts b/test/lisp/progmodes/lua-ts-mode-resources/indent.erts index 575e0e2cbf0..408cd5d115c 100644 --- a/test/lisp/progmodes/lua-ts-mode-resources/indent.erts +++ b/test/lisp/progmodes/lua-ts-mode-resources/indent.erts @@ -1,8 +1,8 @@ Code: (lambda () - (setq lua-ts-indent-offset 2) - (setq indent-tabs-mode nil) (lua-ts-mode) + (setq-local indent-tabs-mode nil) + (setq-local lua-ts-indent-offset 2) (indent-region (point-min) (point-max))) Name: Chunk Indent @@ -479,8 +479,8 @@ local tb9 = { one = 1, two = 2 } =-= local tb9 = { one = 1, - -- comment - two = 2 } + -- comment + two = 2 } =-=-= Name: Argument Indent 1 @@ -805,9 +805,9 @@ end Code: (lambda () - (setq lua-ts-indent-offset 4) (lua-ts-mode) - (setq indent-tabs-mode nil) + (setq-local lua-ts-indent-offset 4) + (setq-local indent-tabs-mode nil) (indent-region (point-min) (point-max))) Name: End Indent 1 @@ -1072,10 +1072,10 @@ end end end Code: (lambda () - (setq lua-ts-indent-continuation-lines nil) - (setq lua-ts-indent-offset 2) (lua-ts-mode) - (setq indent-tabs-mode nil) + (setq-local lua-ts-indent-continuation-lines nil) + (setq-local lua-ts-indent-offset 2) + (setq-local indent-tabs-mode nil) (indent-region (point-min) (point-max))) Name: Unaligned Continuation Indent -- 2.39.5