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/aspell | |
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/aspell')
-rw-r--r-- | src/plugins/aspell/weechat-aspell.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/aspell/weechat-aspell.c b/src/plugins/aspell/weechat-aspell.c index 6d0874d9a..9cda527e2 100644 --- a/src/plugins/aspell/weechat-aspell.c +++ b/src/plugins/aspell/weechat-aspell.c @@ -996,7 +996,7 @@ weechat_aspell_speller_command (t_weechat_plugin *p, char **args; int c, r; - /* make gcc happy */ + /* make C compiler happy */ (void) p; (void) handler_args; (void) handler_pointer; @@ -1227,7 +1227,7 @@ weechat_aspell_keyb_check (t_weechat_plugin *p, int argc, char **argv, char *input, *ptr_input, *pos_space, *clword; int count, offset; - /* make gcc happy */ + /* make C compiler happy */ (void) p; (void) handler_args; (void) handler_pointer; @@ -1381,7 +1381,7 @@ void weechat_plugin_end (t_weechat_plugin *p) aspell_speller_t *s, *t; aspell_config_t *c, *d; - /* make gcc happy */ + /* make C compiler happy */ (void) p; weechat_aspell_options_save (); |