From 79145d3e895b62bfc39495c7f89921b597a97212 Mon Sep 17 00:00:00 2001 From: James Crook Date: Thu, 15 Feb 2018 19:33:04 +0000 Subject: [PATCH] Remove "list" from LISP label format. - Not needed if we can add a back tick at the start. --- src/commands/CommandTargets.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CommandTargets.cpp b/src/commands/CommandTargets.cpp index 730db0b60..4b94cfe42 100644 --- a/src/commands/CommandTargets.cpp +++ b/src/commands/CommandTargets.cpp @@ -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 ); }