diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-09-24 18:59:24 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-09-24 18:59:24 +0200 |
commit | 0fd3f8b6eb4e0643f583be150c9c47c479f0ef64 (patch) | |
tree | 6d82237985140da92c3102c5f35344c2f7efe022 /src/plugins/irc/irc-command.h | |
parent | 6555ff5c7b3959dc6b4a7fca7e09718132eb29f2 (diff) | |
download | weechat-0fd3f8b6eb4e0643f583be150c9c47c479f0ef64.zip |
Option irc.look.one_server_buffer reintroduced (all IRC servers in one buffer)
Diffstat (limited to 'src/plugins/irc/irc-command.h')
-rw-r--r-- | src/plugins/irc/irc-command.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-command.h b/src/plugins/irc/irc-command.h index 5c1b1e8bd..561596342 100644 --- a/src/plugins/irc/irc-command.h +++ b/src/plugins/irc/irc-command.h @@ -25,7 +25,8 @@ struct t_irc_server; #define IRC_COMMAND_TOO_FEW_ARGUMENTS(__buffer, __command) \ weechat_printf (__buffer, \ _("%sirc: too few arguments for \"%s\" command"), \ - weechat_prefix ("error"), __command); \ + irc_buffer_get_server_prefix (ptr_server, "error"), \ + __command); \ return WEECHAT_RC_ERROR; |