diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-02-12 17:39:34 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-02-12 17:39:34 +0000 |
commit | aba6e1257d4ef85e8641ee0f35428ea53a217b03 (patch) | |
tree | cc1e920d8aead9f1d43d665484d8b442a4fe0993 /src/plugins/charset/weechat-charset.c | |
parent | 6d01968259a92cc1a62cb313742b22b5c1178788 (diff) | |
download | weechat-aba6e1257d4ef85e8641ee0f35428ea53a217b03.zip |
Added "call" option to /key command, added new key function "insert" to insert text on command line (task #6468)
Diffstat (limited to 'src/plugins/charset/weechat-charset.c')
-rw-r--r-- | src/plugins/charset/weechat-charset.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/charset/weechat-charset.c b/src/plugins/charset/weechat-charset.c index 763ea20c5..ed85e3175 100644 --- a/src/plugins/charset/weechat-charset.c +++ b/src/plugins/charset/weechat-charset.c @@ -276,7 +276,7 @@ weechat_charset_irc_in (t_weechat_plugin *plugin, int argc, char **argv, char *nick, *command, *channel, *charset, *ptr_args; char *output; - /* make gcc happy */ + /* make C compiler happy */ (void) argc; (void) handler_args; (void) handler_pointer; @@ -324,7 +324,7 @@ weechat_charset_irc_out (t_weechat_plugin *plugin, int argc, char **argv, char *nick, *command, *channel, *charset, *ptr_args; char *output; - /* make gcc happy */ + /* make C compiler happy */ (void) argc; (void) handler_args; (void) handler_pointer; @@ -457,7 +457,7 @@ weechat_charset_cmd (t_weechat_plugin *plugin, if (cmd_argc < 3) return PLUGIN_RC_KO; - /* make gcc happy */ + /* make C compiler happy */ (void) handler_args; (void) handler_pointer; @@ -609,7 +609,7 @@ weechat_plugin_init (t_weechat_plugin *plugin) void weechat_plugin_end (t_weechat_plugin *plugin) { - /* make gcc happy */ + /* make C compiler happy */ (void) plugin; if (weechat_charset_terminal) |