Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
and util_timeval_add
|
|
than 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
screen/tmux)
|
|
|
|
The result of function was sometimes wrong, for example base64 decoding of
"YWJj" was returning "ab" instead of "abc".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This is needed for automated tests, to exit with return code of tests.
|
|
|
|
screen/tmux
The same warning is displayed with command "/debug term".
|
|
|
|
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]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|