Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
buflist.format.name (issue #1020)
|
|
|
|
(closes #1022)
This regression was introduced by commit
fadee506642ee80f42027816cc6cb758dcb68011 (issue #1019)
|
|
when the nick already exists (closes #1019)
|
|
irc_server_get_number_buffer (issue #1012)
|
|
|
|
|
|
|
|
|
|
This removes scan-build warnings about dereference of last_xxx null pointers.
|
|
irc: Remove unnecessary stores
|
|
If hashmap creation fails (eg. not enough memory), it jumps to the label
"end", where it checks the pointer tags, that hadn't been initialized
before.
The simple fix is to initialize it before creating the hashmap.
|
|
|
|
|
|
This is better for symmetry of comparison callback (comparing buffer1 and
buffer2 will give same as comparing buffer2 and bufer1).
Thanks to Simmo Saan for reporting the problem.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
signal/modifier hooks
|
|
|
|
|
|
|
|
insensitive comparison
|
|
weechat_hdata_compare
|
|
|
|
|
|
|
|
mechanism
|
|
This should make refresh of buflist bar item a bit faster.
|
|
(closes #998)
The function hdata_search (which evaluates a condition for each item in a list)
is too slow to search server and channel on each buffer. It is replaced by a
manual search in the list (using weechat_hdata_string to get the name), much
faster.
|
|
|
|
|
|
|
|
|
|
|