Remove non-working detach/attach code.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4806 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2008-04-19 15:01:16 +00:00 committed by exg
commit 7bd938542e
4 changed files with 3 additions and 76 deletions

View file

@ -38,7 +38,7 @@
#define MIN_SCREEN_WIDTH 20
int term_width, term_height, term_detached;
int term_width, term_height;
int term_use_colors;
int term_type;
@ -116,8 +116,6 @@ static void read_settings(void)
int old_colors = term_use_colors;
int old_type = term_type;
term_auto_detach(settings_get_bool("term_auto_detach"));
/* set terminal type */
str = settings_get_str("term_charset");
if (g_ascii_strcasecmp(str, "utf-8") == 0)
@ -150,7 +148,6 @@ void term_common_init(void)
#endif
settings_add_bool("lookandfeel", "colors", TRUE);
settings_add_bool("lookandfeel", "term_force_colors", FALSE);
settings_add_bool("lookandfeel", "term_auto_detach", FALSE);
settings_add_bool("lookandfeel", "mirc_blink_fix", FALSE);
force_colors = FALSE;