1
0
forked from aniani/vim

Commit Graph

  • d804fdf4c2 patch 7.4.1429 Problem: On MS-Windows, when not use renderoptions=type:directx, drawing emoji will be broken. Solution: Fix usage of unicodepdy. (Yasuhiro Matsumoto) v7.4.1429 Bram Moolenaar 2016-02-27 16:04:58 +01:00
  • edb4f2b360 patch 7.4.1428 Problem: Compiler warning for non-virtual destructor. Solution: Make it virtual. (Yasuhiro Matsumoto) v7.4.1428 Bram Moolenaar 2016-02-27 15:27:23 +01:00
  • 43acbce1bb patch 7.4.1427 Problem: Trailing comma in enums is not ANSI C. Solution: Remove the trailing commas. v7.4.1427 Bram Moolenaar 2016-02-27 15:21:32 +01:00
  • 187db50d04 patch 7.4.1426 Problem: The "out-io" option for jobs is not implemented yet. Solution: Implement the "buffer" value: append job output to a buffer. v7.4.1426 Bram Moolenaar 2016-02-27 14:44:26 +01:00
  • 6e722e2f94 patch 7.4.1425 Problem: There are still references to MS-DOS support. Solution: Remove most of the help txt and install instructions. (Ken Takata) v7.4.1425 Bram Moolenaar 2016-02-26 19:58:58 +01:00
  • 0c0dac1fb1 patch 7.4.1424 Problem: Not using --not-a-term when running tests on MS-Windows. Solution: Use NO_PLUGIN. (Christian Brabandt) v7.4.1424 Bram Moolenaar 2016-02-26 15:56:42 +01:00
  • 4cafa6dc7f patch 7.4.1423 Problem: Channel test fails on MS-Windows. Solution: Do not give an error message when reading fails, assume the other end exited. v7.4.1423 Bram Moolenaar 2016-02-26 11:52:39 +01:00
  • 46c85439c9 patch 7.4.1422 Problem: Error when reading fails uses wrong errno. Keeping channel open after job stops results in test failing. Solution: Move the error up. Add ch_job_killed. v7.4.1422 Bram Moolenaar 2016-02-26 11:17:46 +01:00
  • c8dcbb12c5 patch 7.4.1421 Problem: May free a channel when a callback may need to be invoked. Solution: Keep the channel when refcount is zero. v7.4.1421 Bram Moolenaar 2016-02-25 23:10:17 +01:00
  • d2227a02b0 patch 7.4.1420 Problem: Missing makefile. Solution: Type the path correctly. v7.4.1420 Bram Moolenaar 2016-02-25 22:37:42 +01:00
  • 49c39ff678 patch 7.4.1419 Problem: Tests slowed down because of the "not a terminal" warning. Solution: Add the --not-a-term command line argument. v7.4.1419 Bram Moolenaar 2016-02-25 21:21:52 +01:00
  • 923d926d57 patch 7.4.1418 Problem: job_stop() on MS-Windows does not really stop the job. Solution: Make the default to stop the job forcefully. (Ken Takata) Make MS-Windows and Unix more similar. v7.4.1418 Bram Moolenaar 2016-02-25 20:56:01 +01:00
  • 265f64efcf patch 7.4.1417 Problem: Missing appveyor.bat from the distribution. Solution: Add it to the list of files. v7.4.1417 Bram Moolenaar 2016-02-25 20:37:40 +01:00
  • 669cac0a80 patch 7.4.1416 Problem: Using "u_char" intead of "char_u", which doesn't work everywhere. (Jörg Plate) Solution: Use "char_u" always. v7.4.1416 Bram Moolenaar 2016-02-25 15:25:03 +01:00
  • f391327adb Updated runtime files. Bram Moolenaar 2016-02-25 00:00:01 +01:00
  • 84f4996d2a patch 7.4.1415 Problem: Dropped the skip-tags setting. Solution: Put it back. v7.4.1415 Bram Moolenaar 2016-02-24 22:27:05 +01:00
  • 81275ca9ce patch 7.4.1414 Problem: Appveyor only builds one feature set. Solution: Build a combination of features and GUI/console. (Christian Brabandt) v7.4.1414 Bram Moolenaar 2016-02-24 21:02:20 +01:00
  • 8b374215cc patch 7.4.1413 Problem: When calling ch_close() the close callback is invoked, even though the docs say it isn't. (Christian J. Robinson) Solution: Don't call the close callback. v7.4.1413 Bram Moolenaar 2016-02-24 20:43:06 +01:00
  • 68c85fcdf3 patch 7.4.1412 Problem: Compiler warning for indent. (Dominique Pelle) Solution: Fix the indent. v7.4.1412 Bram Moolenaar 2016-02-24 12:57:50 +01:00
  • 9e34110816 patch 7.4.1411 Problem: Compiler warning for indent. (Ajit Thakkar) Solution: Indent normally. v7.4.1411 Bram Moolenaar 2016-02-23 23:04:36 +01:00
  • 42dd7aee41 patch 7.4.1410 Problem: Leaking memory in cscope interface. Solution: Free memory when no tab is found. (Christian Brabandt) v7.4.1410 Bram Moolenaar 2016-02-23 22:50:12 +01:00
  • 1858a842af patch 7.4.1409 Problem: Configure includes GUI despite --disable-gui flag. Solution: Add SKIP_GTK3. (Kazunobu Kuriyama) v7.4.1409 Bram Moolenaar 2016-02-23 22:30:31 +01:00
  • 3ea0f1ae31 patch 7.4.1408 Problem: MS-Windows doesn't have isnan() and isinf(). Solution: Use _isnan() and _isinf(). v7.4.1408 Bram Moolenaar 2016-02-23 22:07:32 +01:00
  • f1b6ac7229 patch 7.4.1407 Problem: json_encode() does not handle NaN and inf properly. (David Barnett) Solution: For JSON turn them into "null". For JS use "NaN" and "Infinity". Add isnan(). v7.4.1407 Bram Moolenaar 2016-02-23 21:26:43 +01:00
  • e16e5a9d8d patch 7.4.1406 Problem: Leaking memory in cs_print_tags_priv(). Solution: Free tbuf. (idea by Forrest Fleming) v7.4.1406 Bram Moolenaar 2016-02-23 20:44:08 +01:00
  • 8aefbe0ad5 patch 7.4.1405 Problem: Completion menu flickers. Solution: Delay showing the popup menu. (Shougo, Justin M. Keyes, closes #656) v7.4.1405 Bram Moolenaar 2016-02-23 20:13:16 +01:00
  • 9186a27622 patch 7.4.1404 Problem: ch_read() doesn't time out on MS-Windows. Solution: Instead of WM_NETBEANS use select(). (Yukihiro Nakadaira) v7.4.1404 Bram Moolenaar 2016-02-23 19:34:01 +01:00
  • 0106e3d0bf patch 7.4.1403 Problem: Can't build without the quickfix feature. Solution: Add #ifdefs. Call ex_ni() for unimplemented commands. (Yegappan Lakshmanan) v7.4.1403 Bram Moolenaar 2016-02-23 18:55:43 +01:00
  • 9892189d2e patch 7.4.1402 Problem: GTK 3 is not supported. Solution: Add GTK 3 support. (Kazunobu Kuriyama) v7.4.1402 Bram Moolenaar 2016-02-23 17:14:37 +01:00
  • 6bd364e084 patch 7.4.1401 Problem: Having 'autochdir' set during startup and using diff mode doesn't work. (Axel Bender) Solution: Don't use 'autochdir' while still starting up. (Christian Brabandt) v7.4.1401 Bram Moolenaar 2016-02-23 16:19:07 +01:00
  • 254ebaf068 patch 7.4.1400 Problem: Perl eval doesn't work properly on 64-bit big-endian machine. Solution: Use 32 bit type for the key. (Danek Duvall) v7.4.1400 Bram Moolenaar 2016-02-23 16:06:28 +01:00
  • 48e330aff9 patch 7.4.1399 Problem: The MS-DOS code does not build. Solution: Remove the old MS-DOS code. v7.4.1399 Bram Moolenaar 2016-02-23 14:53:34 +01:00
  • 4e221c99e8 patch 7.4.1398 Problem: The close-cb option is not implemented yet. Solution: Implemente close-cb. (Yasuhiro Matsumoto) v7.4.1398 Bram Moolenaar 2016-02-23 13:20:22 +01:00
  • 0bb6108eb4 patch 7.4.1397 Problem: Sort test fails on MS-Windows. Solution: Correct the compare function. v7.4.1397 Bram Moolenaar 2016-02-22 23:50:28 +01:00
  • 1daae446e5 patch 7.4.1396 Problem: Compiler warnings for conversions. Solution: Add type cast. v7.4.1396 Bram Moolenaar 2016-02-22 23:25:25 +01:00
  • eed284a169 patch 7.4.1395 Problem: Using DETACH in quotes is not compatible with the Netbeans interface. (Xavier de Gaye) Solution: Remove the quotes, only use them for JSON and JS mode. v7.4.1395 Bram Moolenaar 2016-02-22 23:13:33 +01:00
  • 0b962473dd patch 7.4.1394 Problem: Can't sort inside a sort function. Solution: Use a struct to store the sort parameters. (Jacob Niehus) v7.4.1394 Bram Moolenaar 2016-02-22 22:51:33 +01:00
  • bd73ae1bc6 patch 7.4.1393 Problem: Starting a job hangs in the GUI. (Takuya Fujiwara) Solution: Don't check if ch_job is NULL when checking for an error. (Yasuhiro Matsumoto) v7.4.1393 Bram Moolenaar 2016-02-22 22:19:22 +01:00
  • 2cd5bb2505 patch 7.4.1392 Problem: Some tests fail for Win32 console version. Solution: Move the tests to SCRIPTS_MORE2. Pass VIMRUNTIME. (Christian Brabandt) v7.4.1392 Bram Moolenaar 2016-02-22 22:05:32 +01:00
  • 4db20ab091 patch 7.4.1391 Problem: Warning for uninitialzed variable. Solution: Set it to zero. (Christian Brabandt) v7.4.1391 Bram Moolenaar 2016-02-22 21:48:30 +01:00
  • 33c31d5abf patch 7.4.1390 Problem: When building with GTK and glib-compile-resources cannot be found building Vim fails. (Michael Gehring) Solution: Make GLIB_COMPILE_RESOURCES empty instead of leaving it at "no". (nuko8, closes #655) v7.4.1390 Bram Moolenaar 2016-02-22 21:07:06 +01:00
  • b2bd6a087d patch 7.4.1389 Problem: Incomplete function declaration. Solution: Add "void". (Yasuhiro Matsumoto) v7.4.1389 Bram Moolenaar 2016-02-22 20:20:25 +01:00
  • bdcd752750 patch 7.4.1388 Problem: Compiler warning. (Cesar Romani) Solution: Initialize variable. v7.4.1388 Bram Moolenaar 2016-02-22 20:19:03 +01:00
  • 8f8ae40ce4 patch 7.4.1387 Problem: Win16 docs still referenced. Solution: Remove Win16 files from the docs Makefile. (Kenichi Ito) v7.4.1387 Bram Moolenaar 2016-02-22 20:07:49 +01:00
  • 23c463a157 patch 7.4.1386 Problem: When the Job exit callback is invoked, the job may be freed too soon. (Yasuhiro Matsumoto) Solution: Increase refcount. v7.4.1386 Bram Moolenaar 2016-02-22 11:39:27 +01:00
  • 5e83840756 patch 7.4.1385 Problem: Compiler warning for using array. Solution: Use the right member name. (Yegappan Lakshmanan) v7.4.1385 Bram Moolenaar 2016-02-21 23:12:41 +01:00
  • f6fee0e2d4 patch 7.4.1384 Problem: It is not easy to use a set of plugins and their dependencies. Solution: Add packages, ":loadopt", 'packpath'. v7.4.1384 Bram Moolenaar 2016-02-21 23:02:49 +01:00
  • 271273c39f patch 7.4.1383 Problem: GvimExt only loads the old libintl.dll. Solution: Also try loading libint-8.dll. (Ken Takata, closes #608) v7.4.1383 Bram Moolenaar 2016-02-21 20:30:22 +01:00
  • 02e83b438e patch 7.4.1382 Problem: Can't get the job of a channel. Solution: Add ch_getjob(). v7.4.1382 Bram Moolenaar 2016-02-21 20:10:26 +01:00
  • eab089d22f patch 7.4.1381 Problem: Exit value not available on MS-Windows. Solution: Set the exit value. v7.4.1381 Bram Moolenaar 2016-02-21 19:32:02 +01:00
  • ee1cffc07a patch 7.4.1380 Problem: The job exit callback is not implemented. Solution: Add the "exit-cb" option. v7.4.1380 Bram Moolenaar 2016-02-21 19:14:41 +01:00
  • b7522a2f0c patch 7.4.1379 Problem: Channel test fails on Win32 console. Solution: Don't sleep when timeout is zero. Call channel_wait() before channel_read(). Channels are not polled during ":sleep". (Yukihiro Nakadaira) v7.4.1379 Bram Moolenaar 2016-02-21 17:20:55 +01:00
  • 65edff8f51 patch 7.4.1378 Problem: Can't change job settings after it started. Solution: Add job_setoptions() with the "stoponexit" flag. v7.4.1378 Bram Moolenaar 2016-02-21 16:40:11 +01:00
  • 08298fa1d3 patch 7.4.1377 Problem: Test_connect_waittime() is flaky. Solution: Ignore the "Connection reset by peer" error. v7.4.1377 Bram Moolenaar 2016-02-21 13:01:53 +01:00
  • decb14d68c Update channel.txt Bram Moolenaar 2016-02-20 23:32:02 +01:00
  • b6b5252bcd patch 7.4.1376 Problem: ch_setoptions() cannot set all options. Solution: Support more options. v7.4.1376 Bram Moolenaar 2016-02-20 23:30:07 +01:00
  • e89ff0472b patch 7.4.1375 Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi) v7.4.1375 Bram Moolenaar 2016-02-20 22:17:05 +01:00
  • af7559f666 patch 7.4.1374 Problem: Channel test hangs on MS-Windows. Solution: Disable the ch_read() that is supposed to time out. v7.4.1374 Bram Moolenaar 2016-02-20 21:48:25 +01:00
  • ece61b06ef patch 7.4.1373 Problem: Calling a Vim function over a channel requires turning the arguments into a string. Solution: Add the "call" command. (Damien) Also merge "expr" and "eval" into one. v7.4.1373 Bram Moolenaar 2016-02-20 21:39:05 +01:00
  • 6f3a544228 patch 7.4.1372 Problem: channel read implementation is incomplete. Solution: Add ch_read() and options for ch_readraw(). v7.4.1372 Bram Moolenaar 2016-02-20 19:56:13 +01:00
  • fffd5560c6 patch 7.4.1371 Problem: X11 GUI callbacks don't specify the part of the channel. Solution: Pass the fd instead of the channel ID. v7.4.1371 Bram Moolenaar 2016-02-20 18:44:39 +01:00
  • ddbe7d26b1 patch 7.4.1370 Problem: The Python test script may keep on running. Solution: Join the threads. (Yasuhiro Matsumoto) v7.4.1370 Bram Moolenaar 2016-02-20 18:26:48 +01:00
  • 42d38a2db1 patch 7.4.1369 Problem: Channels don't have a queue for stderr. Solution: Have a queue for each part of the channel. v7.4.1369 Bram Moolenaar 2016-02-20 18:18:59 +01:00
  • 914331648d patch 7.4.1368 Problem: One more Win16 file remains. Solution: Delete it. v7.4.1368 Bram Moolenaar 2016-02-20 15:50:18 +01:00
  • e0fa3742ea Updated runtime files. Bram Moolenaar 2016-02-20 15:47:01 +01:00
  • c6b14f0a83 patch 7.4.1367 Problem: Compiler warning for unreachable code. Solution: Remove a "break". (Danek Duvall) v7.4.1367 Bram Moolenaar 2016-02-20 15:26:42 +01:00
  • 663128270e patch 7.4.1366 Problem: Typo in test and resulting error in test result. Solution: Fix the typo and correct the result. (James McCoy, close #650) v7.4.1366 Bram Moolenaar 2016-02-20 15:10:50 +01:00
  • befb366aff patch 7.4.1365 Problem: Cannot execute a single test function. Solution: Add an argument to filter the functions with. (Yasuhiro Matsumoto) v7.4.1365 Bram Moolenaar 2016-02-20 14:41:40 +01:00
  • cf7164a088 patch 7.4.1364 Problem: The Win 16 code is not maintained and unused. Solution: Remove the Win 16 support. v7.4.1364 Bram Moolenaar 2016-02-20 13:55:06 +01:00
  • 065bbac8ad patch 7.4.1363 Problem: Compiler warnings with tiny build. Solution: Add #ifdefs. v7.4.1363 Bram Moolenaar 2016-02-20 13:08:46 +01:00
  • 8600ace876 patch 7.4.1362 Problem: Using unitinialized value. Solution: Initialize jo_set. v7.4.1362 Bram Moolenaar 2016-02-19 23:31:40 +01:00
  • 254e00d714 patch 7.4.1361 Problem: Channel test fails on Solaris. Solution: Use the 1 msec waittime for all systems. v7.4.1361 Bram Moolenaar 2016-02-19 23:23:12 +01:00
  • 0ba75a9714 patch 7.4.1360 Problem: Can't remove a callback with ch_setoptions(). Solution: When passing zero or an empty string remove the callback. v7.4.1360 Bram Moolenaar 2016-02-19 23:21:26 +01:00
  • 1f6ef66254 patch 7.4.1359 Problem: Channel test ch_sendexpr() times out. Solution: Increase the timeout v7.4.1359 Bram Moolenaar 2016-02-19 22:59:44 +01:00
  • 1d6fbe6540 patch 7.4.1358 Problem: Compiler warning when not building with +crypt. Solution: Add #ifdef. (John Marriott) v7.4.1358 Bram Moolenaar 2016-02-19 22:46:34 +01:00
  • 132006c3d0 patch 7.4.1357 Problem: Error for returning value from void function. Solution: Don't do that. v7.4.1357 Bram Moolenaar 2016-02-19 22:38:15 +01:00
  • 40ea1da14b patch 7.4.1356 Problem: Job and channel options parsing is scattered. Solution: Move all option value parsing to get_job_options(); v7.4.1356 Bram Moolenaar 2016-02-19 22:33:35 +01:00
  • ed5a78e11c patch 7.4.1355 Problem: Win32 console and GUI handle channels differently. Solution: Consolidate code between Win32 console and GUI. v7.4.1355 Bram Moolenaar 2016-02-19 21:05:03 +01:00
  • 223b723be0 patch 7.4.1354 Problem: MS-Windows: Mismatch between default compile options and what the code expects. Solution: Change the default WINVER from 0x0500 to 0x0501. (Ken Takata) v7.4.1354 Bram Moolenaar 2016-02-19 19:43:49 +01:00
  • 922d25f99c patch 7.4.1353 Problem: Test_connect_waittime is skipped for MS-Windows. Solution: Add the test back, it works now. v7.4.1353 Bram Moolenaar 2016-02-18 22:58:26 +01:00
  • 93bf558cae patch 7.4.1352 Problem: The test script lists all functions before executing them. Solution: Only list the function currently being executed. v7.4.1352 Bram Moolenaar 2016-02-18 22:25:47 +01:00
  • 81661fb868 patch 7.4.1351 Problem: When the port isn't opened yet when ch_open() is called it may fail instead of waiting for the specified time. Solution: Loop when select() succeeds but when connect() failed. Also use channel logging for jobs. Add ch_log(). v7.4.1351 Bram Moolenaar 2016-02-18 22:23:34 +01:00
  • ec70bdd68a patch 7.4.1350 Problem: When the test server fails to start Vim hangs. Solution: Check that there is actually something to read from the tty fd. v7.4.1350 Bram Moolenaar 2016-02-18 22:17:42 +01:00
  • 74a97b1ea0 patch 7.4.1349 Problem: And some more MingW compiler warnings. (Cesar Romani) Solution: Add type casts. v7.4.1349 Bram Moolenaar 2016-02-18 21:19:21 +01:00
  • 7f0608fb52 patch 7.4.1348 Problem: More compiler warnings. (John Marriott) Solution: Add type casts, remove unused variable. v7.4.1348 Bram Moolenaar 2016-02-18 20:46:39 +01:00
  • 8b778d5599 patch 7.4.1347 Problem: When there is any error Vim will use a non-zero exit code. Solution: When using ":silent!" do not set the exit code. (Yasuhiro Matsumoto) v7.4.1347 Bram Moolenaar 2016-02-18 20:31:34 +01:00
  • a1e24b9bc9 patch 7.4.1346 Problem: Compiler warnings in build with -O2. Solution: Add inintializations. v7.4.1346 Bram Moolenaar 2016-02-18 20:18:09 +01:00
  • a87e2c277e patch 7.4.1345 Problem: A few more compiler warnings. (Axel Bender) Solution: Add type casts. v7.4.1345 Bram Moolenaar 2016-02-17 20:48:19 +01:00
  • 203219048f patch 7.4.1344 Problem: Can't compile Win32 GUI with tiny features. Solution: Add #ifdef. (Christian Brabandt) v7.4.1344 Bram Moolenaar 2016-02-17 12:30:17 +01:00
  • cd39bbcd1d patch 7.4.1343 Problem: Can't compile with +job but without +channel. (Andrei Olsen) Solution: Move get_job_options up and adjust #ifdef. v7.4.1343 Bram Moolenaar 2016-02-17 10:05:42 +01:00
  • e74e8e7d75 patch 7.4.1342 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. v7.4.1342 Bram Moolenaar 2016-02-16 22:01:30 +01:00
  • 910b8aac5d patch 7.4.1341 Problem: It's difficult to add more arguments to ch_sendraw() and ch_sendexpr(). Solution: Make the third option a dictionary. v7.4.1341 Bram Moolenaar 2016-02-16 21:03:07 +01:00
  • 7d63f62460 patch 7.4.1340 Problem: Merge left extra #endif behind. Solution: Remove the #endif v7.4.1340 Bram Moolenaar 2016-02-16 20:31:31 +01:00
  • 418f81b5fa patch 7.4.1339 Problem: Warnings when building the GUI with MingW. (Cesar Romani) Solution: Add type cats. (Yasuhiro Matsumoto) v7.4.1339 Bram Moolenaar 2016-02-16 20:12:02 +01:00
  • 0c2c96e47c patch 7.4.1338 Problem: Another part of the change is missing. Solution: Type os_unix.c right this time. v7.4.1338 Bram Moolenaar 2016-02-16 19:44:20 +01:00
  • ba093bc000 patch 7.4.1337 Problem: Part of the change is missing. Solution: Add changes to eval.c v7.4.1337 Bram Moolenaar 2016-02-16 19:37:29 +01:00
  • 9a6e33a19b patch 7.4.1336 Problem: Channel NL mode is not supported yet. Solution: Add NL mode support to channels. v7.4.1336 Bram Moolenaar 2016-02-16 19:25:12 +01:00
  • 5d54a04598 patch 7.4.1335 Problem: Can't build on MS-Windows with +job but without +channel. (Cesar Romani) Solution: Add #ifdefs. (Yasuhiro Matsumoto) v7.4.1335 Bram Moolenaar 2016-02-16 16:39:51 +01:00
  • 6aa2cd4be2 patch 7.4.1334 Problem: Many compiler warnings with MingW. Solution: Add type casts. (Yasuhiro Matsumoto) v7.4.1334 Bram Moolenaar 2016-02-16 15:06:59 +01:00
  • f8df7addc5 patch 7.4.1333 Problem: Channel test fails on non-darwin builds. Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama) v7.4.1333 Bram Moolenaar 2016-02-16 14:07:40 +01:00