1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-01 08:09:41 +02:00

Remove "list" from LISP label format.

- Not needed if we can add a back tick at the start.
This commit is contained in:
James Crook 2018-02-15 19:33:04 +00:00 committed by Paul Licameli
parent 7b4d55accd
commit 0ec5cbb339

View File

@ -98,7 +98,7 @@ void LispyCommandMessageTarget::StartArray()
{
wxString Padding;
Padding.Pad( mCounts.GetCount() *2 -2);
Update( wxString::Format( "\n%s(list ", Padding ));
Update( wxString::Format( "\n%s(", Padding ));
mCounts.Last() += 1;
mCounts.push_back( 0 );
}