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