From 88133a7b9a3962a4e81bdf2d8d7f733ff70fde19 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Tue, 11 Mar 2008 17:53:08 +0100 Subject: [PATCH] Fix bug with options startup_command_{before|after}_plugins --- src/core/wee-command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/wee-command.c b/src/core/wee-command.c index c622bad9d..ccce7a664 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -2227,9 +2227,9 @@ command_startup (int plugins_loaded) struct t_gui_buffer *weechat_buffer; if (plugins_loaded) - command = CONFIG_STRING(config_startup_command_before_plugins); - else command = CONFIG_STRING(config_startup_command_after_plugins); + else + command = CONFIG_STRING(config_startup_command_before_plugins); if (command && command[0]) {