From 3ccb896e13b878bb53bac576fa578b1874eb9083 Mon Sep 17 00:00:00 2001 From: Shmuel Zeigerman Date: Tue, 21 Nov 2023 20:54:48 +0200 Subject: [PATCH] Fix code indentation --- far/macro.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/far/macro.cpp b/far/macro.cpp index e35b598c89..0beb676e44 100644 --- a/far/macro.cpp +++ b/far/macro.cpp @@ -3536,10 +3536,10 @@ void FarMacroApi::fargetconfigFunc() const else if (const auto Opt = dynamic_cast(option)) { auto Val = Opt->Get(); - if (Val == 0 || Val == 1) - PassBoolean(Val == 1); - else - PassValue(L"other"); + if (Val == 0 || Val == 1) + PassBoolean(Val == 1); + else + PassValue(L"other"); PassValue(L"3-state"); } @@ -3553,11 +3553,11 @@ void FarMacroApi::fargetconfigFunc() const PassValue(Opt->Get()); PassValue(L"string"); } - else - PassError(L"unknown option type"); + else + PassError(L"unknown option type"); } - else - PassError(L"setting doesn't exist"); + else + PassError(L"setting doesn't exist"); } else PassError(L"invalid argument #1");