scripts: fix name of lists in hdata with scripts (remove leading "*")

This commit is contained in:
Sebastien Helleu 2012-08-05 09:57:05 +02:00
parent 00b879962a
commit 8bda6a3559

View File

@ -1178,8 +1178,8 @@ plugin_script_hdata_script (struct t_weechat_plugin *weechat_plugin,
WEECHAT_HDATA_VAR(struct t_plugin_script, unloading, INTEGER, NULL, NULL);
WEECHAT_HDATA_VAR(struct t_plugin_script, prev_script, POINTER, NULL, hdata_name);
WEECHAT_HDATA_VAR(struct t_plugin_script, next_script, POINTER, NULL, hdata_name);
WEECHAT_HDATA_LIST(*scripts);
WEECHAT_HDATA_LIST(*last_script);
weechat_hdata_new_list (hdata, "scripts", scripts);
weechat_hdata_new_list (hdata, "last_script", last_script);
}
return hdata;
}