1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 16:53:14 +02:00

Fix error message for /buffer and /window commands when option is unknown

This commit is contained in:
Sebastien Helleu
2008-06-27 17:29:56 +02:00
parent 50f8bf0043
commit 817f546653
+12 -10
View File
@@ -644,7 +644,12 @@ command_buffer (void *data, struct t_gui_buffer *buffer,
}
}
return WEECHAT_RC_OK;
gui_chat_printf (NULL,
_("%sError: unknown option for \"%s\" "
"command"),
gui_chat_prefix[GUI_CHAT_PREFIX_ERROR],
"buffer");
return WEECHAT_RC_ERROR;
}
/*
@@ -2623,16 +2628,13 @@ command_window (void *data, struct t_gui_buffer *buffer,
if (argc > 2)
gui_window_scroll (gui_current_window, argv[2]);
}
else
{
gui_chat_printf (NULL,
_("%sError: unknown option for \"%s\" command"),
gui_chat_prefix[GUI_CHAT_PREFIX_ERROR],
"window");
return WEECHAT_RC_ERROR;
}
return WEECHAT_RC_OK;
gui_chat_printf (NULL,
_("%sError: unknown option for \"%s\" "
"command"),
gui_chat_prefix[GUI_CHAT_PREFIX_ERROR],
"window");
return WEECHAT_RC_ERROR;
}
/*