Fix escaping of double quotes in LIB_IDs

This commit is contained in:
Jon Evans 2021-09-28 20:38:24 -04:00
parent cd3b019b43
commit 0458afe20a
1 changed files with 2 additions and 0 deletions

View File

@ -167,6 +167,8 @@ wxString EscapeString( const wxString& aSource, ESCAPE_CONTEXT aContext )
converted += "{gt}";
else if( c == ':' )
converted += "{colon}";
else if( c == '\"' )
converted += "{dblquote}";
else if( c == '\n' || c == '\r' )
converted += ""; // drop
else