Revert "aspell: store dictionaries in buffer local variable "aspell_dict""

This reverts commit 8b61a557640e62e67f6eb7349c3a12cca9b43b5e.

The local variable in buffers introduced new display bugs and would need
some extra code and optimizations to fix.
This will be reintroduced after the release of version 0.4.0.
This commit is contained in:
Sebastien Helleu 2013-01-11 16:07:45 +01:00
parent 57024ab1e4
commit db62b272b5
3 changed files with 1 additions and 6 deletions

View File

@ -66,7 +66,6 @@ Version 0.4.0 (under dev!)
hook_connect (task #11205)
* alias: give higher priority to aliases (2000) so that they take precedence
over an existing command
* aspell: store dictionaries in buffer local variable "aspell_dict"
* aspell: ignore self and remote nicks in private buffers
* aspell: add signal "aspell_suggest" (sent when new suggestions are displayed)
* aspell: add bar items "aspell_dict" (dictionary used on current buffer) and

View File

@ -50,8 +50,7 @@ weechat_aspell_bar_item_dict (void *data, struct t_gui_bar_item *item,
buffer = weechat_window_get_pointer (window, "buffer");
if (buffer)
{
dict_list = weechat_buffer_get_string (buffer,
"localvar_aspell_dict");
dict_list = weechat_aspell_get_dict (buffer);
if (dict_list)
return strdup (dict_list);
}

View File

@ -362,10 +362,7 @@ weechat_aspell_create_spellers (struct t_gui_buffer *buffer)
}
weechat_string_free_split (argv);
}
weechat_buffer_set (buffer, "localvar_set_aspell_dict", dict_list);
}
else
weechat_buffer_set (buffer, "localvar_del_aspell_dict", "");
weechat_bar_item_update ("aspell_dict");
}
}