1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 10:13:12 +02:00

buflist: increase size of hashtables used for string evaluation (issue #998)

This should make refresh of buflist bar item a bit faster.
This commit is contained in:
Sébastien Helleu
2017-05-24 15:01:36 +02:00
parent 02b1fe9926
commit 323a19d73a
+4 -4
View File
@@ -379,7 +379,7 @@ buflist_bar_item_init ()
{
/* create hashtables used by the bar item callback */
buflist_hashtable_pointers = weechat_hashtable_new (
8,
32,
WEECHAT_HASHTABLE_STRING,
WEECHAT_HASHTABLE_POINTER,
NULL,
@@ -388,7 +388,7 @@ buflist_bar_item_init ()
return 0;
buflist_hashtable_extra_vars = weechat_hashtable_new (
32,
128,
WEECHAT_HASHTABLE_STRING,
WEECHAT_HASHTABLE_STRING,
NULL,
@@ -400,7 +400,7 @@ buflist_bar_item_init ()
}
buflist_hashtable_options = weechat_hashtable_new (
8,
32,
WEECHAT_HASHTABLE_STRING,
WEECHAT_HASHTABLE_STRING,
NULL,
@@ -414,7 +414,7 @@ buflist_bar_item_init ()
weechat_hashtable_set (buflist_hashtable_options, "extra", "eval");
buflist_hashtable_options_conditions = weechat_hashtable_new (
8,
32,
WEECHAT_HASHTABLE_STRING,
WEECHAT_HASHTABLE_STRING,
NULL, NULL);