1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-02 08:59:28 +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; wxString Padding;
Padding.Pad( mCounts.GetCount() *2 -2); Padding.Pad( mCounts.GetCount() *2 -2);
Update( wxString::Format( "\n%s(list ", Padding )); Update( wxString::Format( "\n%s(", Padding ));
mCounts.Last() += 1; mCounts.Last() += 1;
mCounts.push_back( 0 ); mCounts.push_back( 0 );
} }