Age | Commit message (Collapse) | Author |
|
|
|
|
|
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]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
is given
|
|
|
|
|
|
|
|
|
|
|
|
#751108)
The memory leak should not happen if infolists are properly freed by plugins,
and it happened only on unload of plugins (or exit).
|
|
|
|
|
|
|
|
|
|
argument before in the command line
|
|
|
|
|
|
|
|
|
|
|
|
Yeah \o/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|