LIB_IDs can have forward slashes

This commit is contained in:
Jon Evans
2022-09-11 10:11:25 -04:00
parent 91358dfcac
commit b4e71de89f
+1 -3
View File
@@ -160,9 +160,7 @@ wxString EscapeString( const wxString& aSource, ESCAPE_CONTEXT aContext )
}
else if( aContext == CTX_LIBID )
{
if( c == '/' )
converted += wxT( "{slash}" );
else if( c == '\\' )
if( c == '\\' )
converted += wxT( "{backslash}" );
else if( c == '<' )
converted += wxT( "{lt}" );