diff options
author | Emmanuel Bouthenot <kolter@openics.org> | 2006-10-29 13:06:48 +0000 |
---|---|---|
committer | Emmanuel Bouthenot <kolter@openics.org> | 2006-10-29 13:06:48 +0000 |
commit | 07dc0c85df742b6e076a1efb3de23aca5b616ace (patch) | |
tree | c0787ba4c375d7efa03caf6a4d633214144d7345 /src | |
parent | 9d96e3ad33a334065e8127323daeff79475de563 (diff) | |
download | weechat-07dc0c85df742b6e076a1efb3de23aca5b616ace.zip |
fix minor display bug in aspell plugin
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/aspell/weechat-aspell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/aspell/weechat-aspell.c b/src/plugins/aspell/weechat-aspell.c index 1d0220f9d..27d0ae01a 100644 --- a/src/plugins/aspell/weechat-aspell.c +++ b/src/plugins/aspell/weechat-aspell.c @@ -904,7 +904,7 @@ weechat_aspell_config_load(void) weechat_aspell_plugin->free_exploded_string (weechat_aspell_plugin, servers_list); } - weechat_aspell_plugin->print_server (weechat_aspell_plugin, NULL, NULL, "[%s] [LOAD] configuration loaded", _PLUGIN_NAME); + weechat_aspell_plugin->print_server (weechat_aspell_plugin, "[%s] [LOAD] configuration loaded", _PLUGIN_NAME); return 1; } @@ -979,7 +979,7 @@ weechat_aspell_options_load(void) aspell_plugin_options.color_name = strdup (_PLUGIN_OPTION_COLOR); } - weechat_aspell_plugin->print_server (weechat_aspell_plugin, NULL, NULL, "[%s] [LOAD] options loaded", _PLUGIN_NAME); + weechat_aspell_plugin->print_server (weechat_aspell_plugin, "[%s] [LOAD] options loaded", _PLUGIN_NAME); return 1; } |