1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Intentation/whitespace fixes

Change several instances of space-indentation to tabs, matching the
surrounding code.
This commit is contained in:
Stephen Oberholtzer 2017-03-21 10:27:39 -04:00
parent 70f9db3cbd
commit 2b9be6e2ed

View File

@ -318,21 +318,21 @@ int main(int argc, char **argv)
can call our dirty-checker after each iteration */ can call our dirty-checker after each iteration */
while (!quitting) { while (!quitting) {
if (reload_config) { if (reload_config) {
/* SIGHUP received, do /RELOAD */ /* SIGHUP received, do /RELOAD */
reload_config = FALSE; reload_config = FALSE;
signal_emit("command reload", 1, ""); signal_emit("command reload", 1, "");
} }
dirty_check(); dirty_check();
term_refresh_freeze(); term_refresh_freeze();
g_main_iteration(TRUE); g_main_iteration(TRUE);
term_refresh_thaw(); term_refresh_thaw();
} }
g_main_destroy(main_loop); g_main_destroy(main_loop);
textui_deinit(); textui_deinit();
session_upgrade(); /* if we /UPGRADEd, start the new process */ session_upgrade(); /* if we /UPGRADEd, start the new process */
return 0; return 0;
} }