Age | Commit message (Collapse) | Author |
|
|
|
|
|
(closes #189)
|
|
|
|
|
|
|
|
new option irc.look.temporary_servers
|
|
|
|
and util_timeval_add
|
|
than 1
|
|
|
|
(closes #178)
|
|
|
|
|
|
|
|
buffer (closes #177)
|
|
"\S" is not supported on *BSD, so it is replaced by "[^ ]" (which should be
enough, since there should be no tabs or other whitespace different from
spaces in command line).
|
|
are displayed in same message (closes #171)
When several lines are displayed in a message (separated by "\n"), the
modifier "weechat_print" will now discard just one line (if return value is
an empty string), instead of discarding the whole message.
|
|
|
|
|
|
|
|
|
|
|
|
Yay! \o/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
arguments
|
|
|
|
|
|
The result of function was sometimes wrong, for example base64 decoding of
"YWJj" was returning "ab" instead of "abc".
|
|
|
|
|
|
|
|
|
|
(closes #130)
|
|
|
|
|
|
screen/tmux
The same warning is displayed with command "/debug term".
|
|
|
|
channels) (closes #117)
|
|
Python 2.x (closes #125)
|
|
The regex itself is not evaluated any more (so parentheses are kept).
Before the fix:
>> abcd =~ (?-i)^abc
== [0]
>> (abcd) =~ \(abcd\)
== [0]
After the fix:
>> abcd =~ (?-i)^abc
== [1]
>> (abcd) =~ \(abcd\)
== [1]
|
|
|