1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04:00

irsis --dummy fixed.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2850 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-06-07 15:52:16 +00:00 committed by cras
parent 80cc61b63f
commit b2a7ac4686

View File

@ -177,9 +177,11 @@ static void textui_finish_init(void)
gui_windows_init();
statusbar_init();
term_refresh_thaw();
/* don't check settings with dummy mode */
settings_check();
}
settings_check();
module_register("core", "fe-text");
#ifdef HAVE_STATIC_PERL
@ -347,9 +349,9 @@ int main(int argc, char **argv)
/* Does the same as g_main_run(main_loop), except we
can call our dirty-checker after each iteration */
while (!quitting) {
term_refresh_freeze();
if (!dummy) term_refresh_freeze();
g_main_iteration(TRUE);
term_refresh_thaw();
if (!dummy) term_refresh_thaw();
if (reload_config) {
/* SIGHUP received, do /RELOAD */