1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 21:36:37 +02:00

alias: fix default value of alias options (in "cmd" and "completion" sections): defaults to initial command, instead of empty string

This commit is contained in:
Sebastien Helleu
2012-11-27 12:32:00 +01:00
parent 1585593bda
commit 8df76563fd
+2 -2
View File
@@ -214,7 +214,7 @@ alias_config_cmd_new_option (const char *name, const char *command)
{
weechat_config_new_option (alias_config_file, alias_config_section_cmd,
name, "string", NULL,
NULL, 0, 0, "", command, 0,
NULL, 0, 0, NULL, command, 0,
NULL, NULL,
&alias_config_cmd_change_cb, NULL,
&alias_config_cmd_delete_cb, NULL);
@@ -273,7 +273,7 @@ alias_config_completion_new_option (const char *name, const char *completion)
weechat_config_new_option (alias_config_file,
alias_config_section_completion,
name, "string", NULL,
NULL, 0, 0, "", completion, 0,
NULL, 0, 0, NULL, completion, 0,
NULL, NULL,
&alias_config_completion_change_cb, NULL,
&alias_config_completion_delete_cb, NULL);