aboutsummaryrefslogtreecommitdiffstats
path: root/global-functions.rsc
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2023-12-04 10:59:41 +0100
committerGravatar Christian Hesse <mail@eworm.de>2023-12-04 12:08:47 +0100
commit1bb2871e0badcbdf56605ccfd64e319e61556172 (patch)
tree08c18568987019b77af4253e0b59815aa9e30b97 /global-functions.rsc
parent5e2e65b25207ceae7d847285336fe4791df339bc (diff)
global-functions: $FormatLine: use $CharacterMultiply
Diffstat (limited to 'global-functions.rsc')
-rw-r--r--global-functions.rsc4
1 files changed, 3 insertions, 1 deletions
diff --git a/global-functions.rsc b/global-functions.rsc
index ffa02c7..34d3df0 100644
--- a/global-functions.rsc
+++ b/global-functions.rsc
@@ -377,12 +377,14 @@
:local Key [ :tostr $1 ];
:local Value [ :tostr $2 ];
:local Indent [ :tonum $3 ];
- :local Spaces " ";
+ :local Spaces;
:local Return "";
+ :global CharacterMultiply;
:global EitherOr;
:set Indent [ $EitherOr $Indent 16 ];
+ :local Spaces [ $CharacterMultiply " " $Indent ];
:if ([ :len $Key ] > 0) do={ :set Return ($Key . ":"); }
:if ([ :len $Key ] > ($Indent - 2)) do={