mirror of
https://github.com/weechat/weechat.git
synced 2026-07-05 17:23:15 +02:00
Rename function string_explode to string_split
This commit is contained in:
@@ -78,7 +78,7 @@ irc_mode_channel_set (struct t_irc_server *server,
|
||||
pos_args++;
|
||||
while (pos_args[0] == ' ')
|
||||
pos_args++;
|
||||
argv = weechat_string_explode (pos_args, " ", 0, 0, &argc);
|
||||
argv = weechat_string_split (pos_args, " ", 0, 0, &argc);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -212,7 +212,7 @@ irc_mode_channel_set (struct t_irc_server *server,
|
||||
if (str_modes)
|
||||
free (str_modes);
|
||||
if (argv)
|
||||
weechat_string_free_exploded (argv);
|
||||
weechat_string_free_split (argv);
|
||||
|
||||
weechat_bar_item_update ("buffer_name");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user