summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.1338v7.4.1338Bram Moolenaar2016-02-162-1/+4
| | | | | Problem: Another part of the change is missing. Solution: Type os_unix.c right this time.
* patch 7.4.1337v7.4.1337Bram Moolenaar2016-02-162-26/+63
| | | | | Problem: Part of the change is missing. Solution: Add changes to eval.c
* patch 7.4.1336v7.4.1336Bram Moolenaar2016-02-169-33/+150
| | | | | Problem: Channel NL mode is not supported yet. Solution: Add NL mode support to channels.
* patch 7.4.1335v7.4.1335Bram Moolenaar2016-02-162-1/+5
| | | | | | Problem: Can't build on MS-Windows with +job but without +channel. (Cesar Romani) Solution: Add #ifdefs. (Yasuhiro Matsumoto)
* patch 7.4.1334v7.4.1334Bram Moolenaar2016-02-1618-153/+194
| | | | | Problem: Many compiler warnings with MingW. Solution: Add type casts. (Yasuhiro Matsumoto)
* patch 7.4.1333v7.4.1333Bram Moolenaar2016-02-164-3/+9
| | | | | Problem: Channel test fails on non-darwin builds. Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama)
* patch 7.4.1332v7.4.1332Bram Moolenaar2016-02-162-1/+3
| | | | | | Problem: Problem using Python3 when compiled with MingW. Solution: Define PYTHON3_HOME as a wide character string. (Yasuhiro Matsumoto)
* patch 7.4.1331v7.4.1331Bram Moolenaar2016-02-163-6/+39
| | | | | | Problem: Crash when closing the channel in a callback. (Christian J. Robinson) Solution: Take the callback out of the list before invoking it.
* patch 7.4.1330v7.4.1330Bram Moolenaar2016-02-162-3/+5
| | | | | Problem: fd_read() has an unused argument. Solution: Remove the timeout. (Yasuhiro Matsumoto)
* patch 7.4.1329v7.4.1329Bram Moolenaar2016-02-164-4/+16
| | | | | Problem: Crash when using channel that failed to open. Solution: Check for NULL. Update messages. (Yukihiro Nakadaira)
* patch 7.4.1328v7.4.1328Bram Moolenaar2016-02-152-2/+18
| | | | | Problem: Can't compile with +job but without +channel. (John Marriott) Solution: Add more #ifdefs.
* patch 7.4.1327v7.4.1327Bram Moolenaar2016-02-152-7/+14
| | | | | Problem: Channel test doesn't work if Python executable is python.exe. Solution: Find py.exe or python.exe. (Ken Takata)
* patch 7.4.1326v7.4.1326Bram Moolenaar2016-02-152-3/+2
| | | | | | 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)
* patch 7.4.1325v7.4.1325Bram Moolenaar2016-02-153-5/+46
| | | | | Problem: Channel test fails on difference between Unix and DOS line endings. Solution: Strip off CR. Make assert show difference better.
* Update runtime files.Bram Moolenaar2016-02-1515-244/+711
|
* patch 7.4.1324v7.4.1324Bram Moolenaar2016-02-157-66/+161
| | | | | Problem: Channels with pipes don't work on MS-Windows. Solution: Add pipe I/O support. (Yasuhiro Matsumoto)
* patch 7.4.1323v7.4.1323Bram Moolenaar2016-02-152-1/+3
| | | | | Problem: Do not get warnings when building with MingW. Solution: Remove the -w flag. (Ken Takata)
* patch 7.4.1322v7.4.1322Bram Moolenaar2016-02-155-9/+53
| | | | | | 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.
* patch 7.4.1321v7.4.1321Bram Moolenaar2016-02-152-0/+4
| | | | | Problem: Compiler complains about missing statement. Solution: Add an empty statement. (Andrei Olsen)
* patch 7.4.1320v7.4.1320Bram Moolenaar2016-02-142-2/+6
| | | | | | Problem: Building with Cygwin or MingW with channel but without Netbeans doesn't work. Solution: Set NETBEANS to "no" when not used.
* patch 7.4.1319v7.4.1319Bram Moolenaar2016-02-146-73/+81
| | | | | Problem: Tests fail on MS-Windows and on Unix with GUI. Solution: Fix unregistering.
* patch 7.4.1318v7.4.1318Bram Moolenaar2016-02-149-244/+291
| | | | | Problem: Channel with pipes doesn't work in GUI. Solution: Register input handlers for pipes.
* patch 7.4.1317v7.4.1317Bram Moolenaar2016-02-142-0/+6
| | | | | Problem: MS-Windows: channel test fails. Solution: Temporarily disable Test_connect_waittime().
* patch 7.4.1316v7.4.1316Bram Moolenaar2016-02-132-1/+12
| | | | | Problem: Can't build MS-Windows console version. (Tux) Solution: Add #ifdefs.
* patch 7.4.1315v7.4.1315Bram Moolenaar2016-02-1314-571/+716
| | | | | Problem: Using a channel handle does not allow for freeing it when unused. Solution: Add the Channel variable type.
* patch 7.4.1314v7.4.1314Bram Moolenaar2016-02-132-1/+3
| | | | | Problem: Warning for uninitialzed variable. Solution: Initialize it. (Dominique Pelle)
* patch 7.4.1313v7.4.1313Bram Moolenaar2016-02-133-8/+10
| | | | | | 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.
* patch 7.4.1312v7.4.1312Bram Moolenaar2016-02-132-4/+4
| | | | | Problem: sock_T is not defined without the +channel feature. Solution: Always define it.
* patch 7.4.1311v7.4.1311Bram Moolenaar2016-02-132-8/+10
| | | | | Problem: sock_T is defined too late. Solution: Move it up.
* patch 7.4.1310v7.4.1310Bram Moolenaar2016-02-1310-342/+931
| | | | | | Problem: Jobs don't open a channel. Solution: Create pipes and add them to the channel. Add ch_logfile(). Only Unix for now.
* patch 7.4.1309v7.4.1309Bram Moolenaar2016-02-132-31/+37
| | | | | Problem: When a test fails not all relevant info is listed. Solution: Add the errors to the messages.
* patch 7.4.1308v7.4.1308Bram Moolenaar2016-02-122-1/+3
| | | | | Problem: Typo in test. Solution: Change endf to endif.
* patch 7.4.1307v7.4.1307Bram Moolenaar2016-02-122-2/+10
| | | | | Problem: Some channel tests fail on MS-Windows. Solution: Disable the failing tests temporarily.
* patch 7.4.1306v7.4.1306Bram Moolenaar2016-02-128-24/+105
| | | | | | Problem: Job control doesn't work well on MS-Windows. Solution: Various fixes. (Ken Takata, Ozaki Kiichi , Yukihiro Nakadaira, Yasuhiro Matsumoto)
* patch 7.4.1305v7.4.1305Bram Moolenaar2016-02-125-4/+22
| | | | | Problem: "\%1l^#.*" does not match on a line starting with "#". Solution: Do not clear the start-of-line flag. (Christian Brabandt)
* patch 7.4.1304v7.4.1304Bram Moolenaar2016-02-114-178/+182
| | | | | | 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.
* patch 7.4.1303v7.4.1303Bram Moolenaar2016-02-113-13/+26
| | | | | Problem: A Funcref is not accepted as a callback. Solution: Make a Funcref work. (Damien)
* patch 7.4.1302v7.4.1302Bram Moolenaar2016-02-114-8/+10
| | | | | Problem: Typo in struct field name. (Ken Takata) Solution: Rename jf_pi to jv_pi.
* patch 7.4.1301v7.4.1301Bram Moolenaar2016-02-102-1/+3
| | | | | Problem: Missing options in ch_open(). Solution: Add s:chopt like in the other calls. (Ozaki Kiichi)
* patch 7.4.1300v7.4.1300Bram Moolenaar2016-02-106-4/+50
| | | | | Problem: Cannot test CursorMovedI because there is typeahead. Solution: Add disable_char_avail_for_testing().
* patch 7.4.1299v7.4.1299Bram Moolenaar2016-02-104-3/+48
| | | | | | | 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.
* patch 7.4.1298v7.4.1298Bram Moolenaar2016-02-102-44/+72
| | | | | | Problem: When the channel test fails in an unexpected way the server keeps running. Solution: Use try/catch. (Ozaki Kiichi)
* patch 7.4.1297v7.4.1297Bram Moolenaar2016-02-092-3/+6
| | | | | Problem: On Mac test_channel leaves python instances running. Solution: Use a small waittime to make ch_open() work. (Ozaki Kiichi)
* patch 7.4.1296v7.4.1296Bram Moolenaar2016-02-092-0/+7
| | | | | | Problem: Cursor changes column with up motion when the matchparen plugin saves and restores the cursor position. (Martin Kunev) Solution: Make sure curswant is updated before invoking the autocommand.
* patch 7.4.1295v7.4.1295Bram Moolenaar2016-02-092-1/+7
| | | | | Problem: string(job) doesn't work well on MS-Windows. Solution: Use the process ID. (Yasuhiro Matsumoto)
* patch 7.4.1294v7.4.1294Bram Moolenaar2016-02-092-1/+9
| | | | | Problem: job_stop() only kills the started process. Solution: Send the signal to the process group. (Olaf Dabrunz)
* patch 7.4.1293v7.4.1293Bram Moolenaar2016-02-082-8/+20
| | | | | | Problem: Sometimes a channel may hang waiting for a message that was already discarded. (Ken Takata) Solution: Store the ID of the message blocking on in the channel.
* patch 7.4.1292v7.4.1292Bram Moolenaar2016-02-082-3/+5
| | | | | | Problem: Some compilers complain about uninitialzed variable, even though all possible cases are handled. (Dominique Pelle) Solution: Add a default initialization.
* patch 7.4.1291v7.4.1291Bram Moolenaar2016-02-082-1/+3
| | | | | Problem: On MS-Windows the channel test server doesn't quit. Solution: Use return instead of break. (Ken Takata)
* Updated runtime files.Bram Moolenaar2016-02-076-53/+94
|