Echo no longer works with non-breaking spaces.

This commit is contained in:
Garth Minette
2020-10-25 15:36:30 -07:00
parent 0e823111dd
commit 1e193a090e
3 changed files with 7 additions and 9 deletions

View File

@@ -96,7 +96,7 @@ function struct_keys(struct) =
// struct = input structure
// name = optional structure name to list at the top of the output. Default: ""
function struct_echo(struct,name="") =
let( keylist = [for(entry=struct) str("  ",entry[0],": ",entry[1],"\n")])
let( keylist = [for(entry=struct) str(" ",entry[0],": ",entry[1],"\n")])
echo(str("\nStructure ",name,"\n",str_join(keylist)))
undef;