Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: hashmup/vim

Tags

v7.4.1262

Toggle v7.4.1262's commit message
patch 7.4.1262

Problem:    The channel callback is not invoked.
Solution:   Make a list of pending callbacks.

v7.4.1261

Toggle v7.4.1261's commit message
patch 7.4.1261

Problem:    Pending channel messages are garbage collected. Leaking memory in
            ch_sendexpr().  Leaking memory for a decoded JSON string.
Solution:   Mark the message list as used. Free the encoded JSON.  Don't save
            the JSON string.

v7.4.1260

Toggle v7.4.1260's commit message
patch 7.4.1260

Problem:    The channel feature doesn't work on Win32 GUI.
Solution:   Use WSAGetLastError(). (Ken Takata)

v7.4.1259

Toggle v7.4.1259's commit message
patch 7.4.1259

Problem:    No test for what patch 7.3.414 fixed.
Solution:   Add a test. (Elias Diem)

v7.4.1258

Toggle v7.4.1258's commit message
patch 7.4.1258

Problem:    The channel test can fail if messages arrive later.
Solution:   Add a short sleep. (Jun T.)

v7.4.1257

Toggle v7.4.1257's commit message
patch 7.4.1257

Problem:    Channel test fails in some configurations.
Solution:   Add check for the +channel feature.

v7.4.1256

Toggle v7.4.1256's commit message
patch 7.4.1256

Problem:    On Mac sys.exit(0) doesn't kill the test server.
Solution:   Use self.server.shutdown(). (Jun Takimoto)

v7.4.1255

Toggle v7.4.1255's commit message
patch 7.4.1255

Problem:    Crash for channel "eval" command without third argument.
Solution:   Check for missing argument.

v7.4.1254

Toggle v7.4.1254's commit message
patch 7.4.1254

Problem:    Opening a second channel causes a crash. (Ken Takata)
Solution:   Don't re-allocate the array with channels.

v7.4.1253

Toggle v7.4.1253's commit message
patch 7.4.1253

Problem:    Python test server not displaying second of two commands.
            Solaris doesn't have "pkill --full".
Solution:   Also echo the second command. Use "pkill -f".