Revert "allow for disabling the filtering mechanism"

This reverts commit c1ec6d1039.
This commit is contained in:
Berke Viktor
2012-01-20 01:47:01 +01:00
parent c37c719210
commit 3563acdb0d
5 changed files with 8 additions and 23 deletions

View File

@@ -374,14 +374,11 @@ scrollback_load (session *sess)
if (text)
{
text = strip_color (text + 1, -1, STRIP_COLOR);
if (prefs.text_nonbmp)
cleaned_text = text_replace_non_bmp (text, -1, &cleaned_len);
if (cleaned_text != NULL)
{
cleaned_text = text_replace_non_bmp (text, -1, &cleaned_len);
if (cleaned_text != NULL)
{
g_free (text);
text = cleaned_text;
}
g_free (text);
text = cleaned_text;
}
fe_print_text (sess, text, stamp);
g_free (text);