Age | Commit message (Collapse) | Author |
|
Problem: A few more compiler warnings. (Axel Bender)
Solution: Add type casts.
|
|
Problem: Can't compile Win32 GUI with tiny features.
Solution: Add #ifdef. (Christian Brabandt)
|
|
Problem: Can't compile with +job but without +channel. (Andrei Olsen)
Solution: Move get_job_options up and adjust #ifdef.
|
|
Problem: On Mac OS/X the waittime must be > 0 for connect to work.
Solution: Use select() in a different way. (partly by Kazunobu Kuriyama)
Always use a waittime of 1 or more.
|
|
Problem: It's difficult to add more arguments to ch_sendraw() and
ch_sendexpr().
Solution: Make the third option a dictionary.
|
|
Problem: Merge left extra #endif behind.
Solution: Remove the #endif
|
|
Problem: Warnings when building the GUI with MingW. (Cesar Romani)
Solution: Add type cats. (Yasuhiro Matsumoto)
|
|
Problem: Another part of the change is missing.
Solution: Type os_unix.c right this time.
|
|
Problem: Part of the change is missing.
Solution: Add changes to eval.c
|
|
Problem: Channel NL mode is not supported yet.
Solution: Add NL mode support to channels.
|
|
Problem: Can't build on MS-Windows with +job but without +channel. (Cesar
Romani)
Solution: Add #ifdefs. (Yasuhiro Matsumoto)
|
|
Problem: Many compiler warnings with MingW.
Solution: Add type casts. (Yasuhiro Matsumoto)
|
|
Problem: Channel test fails on non-darwin builds.
Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama)
|
|
Problem: Problem using Python3 when compiled with MingW.
Solution: Define PYTHON3_HOME as a wide character string. (Yasuhiro
Matsumoto)
|
|
Problem: Crash when closing the channel in a callback. (Christian J.
Robinson)
Solution: Take the callback out of the list before invoking it.
|
|
Problem: fd_read() has an unused argument.
Solution: Remove the timeout. (Yasuhiro Matsumoto)
|
|
Problem: Crash when using channel that failed to open.
Solution: Check for NULL. Update messages. (Yukihiro Nakadaira)
|
|
Problem: Can't compile with +job but without +channel. (John Marriott)
Solution: Add more #ifdefs.
|
|
Problem: Channel test doesn't work if Python executable is python.exe.
Solution: Find py.exe or python.exe. (Ken Takata)
|
|
Problem: Build rules are bit too complicated.
Solution: Remove -lwsock32 from Netbeans, it's already added for the channel
feature that it depends on. (Tony Mechelynck)
|
|
Problem: Channel test fails on difference between Unix and DOS line endings.
Solution: Strip off CR. Make assert show difference better.
|
|
|
|
Problem: Channels with pipes don't work on MS-Windows.
Solution: Add pipe I/O support. (Yasuhiro Matsumoto)
|
|
Problem: Do not get warnings when building with MingW.
Solution: Remove the -w flag. (Ken Takata)
|
|
Problem: Crash when unletting the variable that holds the channel in a
callback function. (Christian Robinson)
Solution: Increase the reference count while invoking the callback.
|
|
Problem: Compiler complains about missing statement.
Solution: Add an empty statement. (Andrei Olsen)
|
|
Problem: Building with Cygwin or MingW with channel but without Netbeans
doesn't work.
Solution: Set NETBEANS to "no" when not used.
|
|
Problem: Tests fail on MS-Windows and on Unix with GUI.
Solution: Fix unregistering.
|
|
Problem: Channel with pipes doesn't work in GUI.
Solution: Register input handlers for pipes.
|
|
Problem: MS-Windows: channel test fails.
Solution: Temporarily disable Test_connect_waittime().
|
|
Problem: Can't build MS-Windows console version. (Tux)
Solution: Add #ifdefs.
|
|
Problem: Using a channel handle does not allow for freeing it when unused.
Solution: Add the Channel variable type.
|
|
Problem: Warning for uninitialzed variable.
Solution: Initialize it. (Dominique Pelle)
|
|
Problem: MS-Windows: Using socket after it was closed causes an exception.
Solution: Don't give an error when handling WM_NETBEANS. Re-enable tests
for MS-Windows.
|
|
Problem: sock_T is not defined without the +channel feature.
Solution: Always define it.
|
|
Problem: sock_T is defined too late.
Solution: Move it up.
|
|
Problem: Jobs don't open a channel.
Solution: Create pipes and add them to the channel. Add ch_logfile().
Only Unix for now.
|
|
Problem: When a test fails not all relevant info is listed.
Solution: Add the errors to the messages.
|
|
Problem: Typo in test.
Solution: Change endf to endif.
|
|
Problem: Some channel tests fail on MS-Windows.
Solution: Disable the failing tests temporarily.
|
|
Problem: Job control doesn't work well on MS-Windows.
Solution: Various fixes. (Ken Takata, Ozaki Kiichi , Yukihiro Nakadaira,
Yasuhiro Matsumoto)
|
|
Problem: "\%1l^#.*" does not match on a line starting with "#".
Solution: Do not clear the start-of-line flag. (Christian Brabandt)
|
|
Problem: Function names are difficult to read.
Solution: Rename jsonencode to json_encode, jsondecode to json_decode,
jsencode to js_encode and jsdecode to js_decode.
|
|
Problem: A Funcref is not accepted as a callback.
Solution: Make a Funcref work. (Damien)
|
|
Problem: Typo in struct field name. (Ken Takata)
Solution: Rename jf_pi to jv_pi.
|
|
Problem: Missing options in ch_open().
Solution: Add s:chopt like in the other calls. (Ozaki Kiichi)
|
|
Problem: Cannot test CursorMovedI because there is typeahead.
Solution: Add disable_char_avail_for_testing().
|
|
Problem: When the server sends a message with ID zero the channel handler
is not invoked. (Christian J. Robinson)
Solution: Recognize zero value for the request ID. Add a test for invoking
the channel handler.
|
|
Problem: When the channel test fails in an unexpected way the server keeps
running.
Solution: Use try/catch. (Ozaki Kiichi)
|
|
Problem: On Mac test_channel leaves python instances running.
Solution: Use a small waittime to make ch_open() work. (Ozaki Kiichi)
|