mirror of
https://github.com/weechat/weechat.git
synced 2026-06-27 13:26:38 +02:00
Aspell plugin is born again
This commit is contained in:
@@ -2795,7 +2795,7 @@ irc_command_server (void *data, struct t_gui_buffer *buffer, int argc,
|
||||
{
|
||||
weechat_printf (NULL, "");
|
||||
weechat_printf (NULL,
|
||||
_("Servers with '%s':"),
|
||||
_("Servers with \"%s\":"),
|
||||
server_name);
|
||||
}
|
||||
one_server_found = 1;
|
||||
|
||||
@@ -230,9 +230,9 @@ irc_ignore_free (struct t_irc_ignore *ignore)
|
||||
|
||||
/* remove filter from filters list */
|
||||
if (ignore->prev_ignore)
|
||||
ignore->prev_ignore->next_ignore = ignore->next_ignore;
|
||||
(ignore->prev_ignore)->next_ignore = ignore->next_ignore;
|
||||
if (ignore->next_ignore)
|
||||
ignore->next_ignore->prev_ignore = ignore->prev_ignore;
|
||||
(ignore->next_ignore)->prev_ignore = ignore->prev_ignore;
|
||||
if (irc_ignore_list == ignore)
|
||||
irc_ignore_list = ignore->next_ignore;
|
||||
if (last_irc_ignore == ignore)
|
||||
|
||||
Reference in New Issue
Block a user