mirror of
https://github.com/weechat/weechat.git
synced 2026-07-09 11:13:12 +02:00
Aspell plugin is born again
This commit is contained in:
+2
-2
@@ -680,9 +680,9 @@ gui_chat_line_free (struct t_gui_buffer *buffer, struct t_gui_line *line)
|
||||
|
||||
/* remove line from lines list */
|
||||
if (line->prev_line)
|
||||
line->prev_line->next_line = line->next_line;
|
||||
(line->prev_line)->next_line = line->next_line;
|
||||
if (line->next_line)
|
||||
line->next_line->prev_line = line->prev_line;
|
||||
(line->next_line)->prev_line = line->prev_line;
|
||||
if (buffer->lines == line)
|
||||
buffer->lines = line->next_line;
|
||||
if (buffer->last_line == line)
|
||||
|
||||
Reference in New Issue
Block a user