]>
granicus.if.org Git - vim/log
Bram Moolenaar [Thu, 25 Feb 2016 22:10:17 +0000 (23:10 +0100)]
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.
Bram Moolenaar [Thu, 25 Feb 2016 21:37:42 +0000 (22:37 +0100)]
patch 7.4.1420
Problem: Missing makefile.
Solution: Type the path correctly.
Bram Moolenaar [Thu, 25 Feb 2016 20:21:52 +0000 (21:21 +0100)]
patch 7.4.1419
Problem: Tests slowed down because of the "not a terminal" warning.
Solution: Add the --not-a-term command line argument.
Bram Moolenaar [Thu, 25 Feb 2016 19:56:01 +0000 (20:56 +0100)]
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.
Bram Moolenaar [Thu, 25 Feb 2016 19:37:40 +0000 (20:37 +0100)]
patch 7.4.1417
Problem: Missing appveyor.bat from the distribution.
Solution: Add it to the list of files.
Bram Moolenaar [Thu, 25 Feb 2016 14:25:03 +0000 (15:25 +0100)]
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.
Bram Moolenaar [Wed, 24 Feb 2016 23:00:01 +0000 (00:00 +0100)]
Updated runtime files.
Bram Moolenaar [Wed, 24 Feb 2016 21:27:05 +0000 (22:27 +0100)]
patch 7.4.1415
Problem: Dropped the skip-tags setting.
Solution: Put it back.
Bram Moolenaar [Wed, 24 Feb 2016 20:02:20 +0000 (21:02 +0100)]
patch 7.4.1414
Problem: Appveyor only builds one feature set.
Solution: Build a combination of features and GUI/console. (Christian
Brabandt)
Bram Moolenaar [Wed, 24 Feb 2016 19:43:06 +0000 (20:43 +0100)]
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.
Bram Moolenaar [Wed, 24 Feb 2016 11:57:50 +0000 (12:57 +0100)]
patch 7.4.1412
Problem: Compiler warning for indent. (Dominique Pelle)
Solution: Fix the indent.
Bram Moolenaar [Tue, 23 Feb 2016 22:04:36 +0000 (23:04 +0100)]
patch 7.4.1411
Problem: Compiler warning for indent. (Ajit Thakkar)
Solution: Indent normally.
Bram Moolenaar [Tue, 23 Feb 2016 21:50:12 +0000 (22:50 +0100)]
patch 7.4.1410
Problem: Leaking memory in cscope interface.
Solution: Free memory when no tab is found. (Christian Brabandt)
Bram Moolenaar [Tue, 23 Feb 2016 21:30:31 +0000 (22:30 +0100)]
patch 7.4.1409
Problem: Configure includes GUI despite --disable-gui flag.
Solution: Add SKIP_GTK3. (Kazunobu Kuriyama)
Bram Moolenaar [Tue, 23 Feb 2016 21:07:32 +0000 (22:07 +0100)]
patch 7.4.1408
Problem: MS-Windows doesn't have isnan() and isinf().
Solution: Use _isnan() and _isinf().
Bram Moolenaar [Tue, 23 Feb 2016 20:26:43 +0000 (21:26 +0100)]
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().
Bram Moolenaar [Tue, 23 Feb 2016 19:44:08 +0000 (20:44 +0100)]
patch 7.4.1406
Problem: Leaking memory in cs_print_tags_priv().
Solution: Free tbuf. (idea by Forrest Fleming)
Bram Moolenaar [Tue, 23 Feb 2016 19:13:16 +0000 (20:13 +0100)]
patch 7.4.1405
Problem: Completion menu flickers.
Solution: Delay showing the popup menu. (Shougo, Justin M. Keyes, closes
#656)
Bram Moolenaar [Tue, 23 Feb 2016 18:34:01 +0000 (19:34 +0100)]
patch 7.4.1404
Problem: ch_read() doesn't time out on MS-Windows.
Solution: Instead of WM_NETBEANS use select(). (Yukihiro Nakadaira)
Bram Moolenaar [Tue, 23 Feb 2016 17:55:43 +0000 (18:55 +0100)]
patch 7.4.1403
Problem: Can't build without the quickfix feature.
Solution: Add #ifdefs. Call ex_ni() for unimplemented commands. (Yegappan
Lakshmanan)
Bram Moolenaar [Tue, 23 Feb 2016 16:14:37 +0000 (17:14 +0100)]
patch 7.4.1402
Problem: GTK 3 is not supported.
Solution: Add GTK 3 support. (Kazunobu Kuriyama)
Bram Moolenaar [Tue, 23 Feb 2016 15:19:07 +0000 (16:19 +0100)]
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)
Bram Moolenaar [Tue, 23 Feb 2016 15:06:28 +0000 (16:06 +0100)]
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)
Bram Moolenaar [Tue, 23 Feb 2016 13:53:34 +0000 (14:53 +0100)]
patch 7.4.1399
Problem: The MS-DOS code does not build.
Solution: Remove the old MS-DOS code.
Bram Moolenaar [Tue, 23 Feb 2016 12:20:22 +0000 (13:20 +0100)]
patch 7.4.1398
Problem: The close-cb option is not implemented yet.
Solution: Implemente close-cb. (Yasuhiro Matsumoto)
Bram Moolenaar [Mon, 22 Feb 2016 22:50:28 +0000 (23:50 +0100)]
patch 7.4.1397
Problem: Sort test fails on MS-Windows.
Solution: Correct the compare function.
Bram Moolenaar [Mon, 22 Feb 2016 22:25:25 +0000 (23:25 +0100)]
patch 7.4.1396
Problem: Compiler warnings for conversions.
Solution: Add type cast.
Bram Moolenaar [Mon, 22 Feb 2016 22:13:33 +0000 (23:13 +0100)]
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.
Bram Moolenaar [Mon, 22 Feb 2016 21:51:33 +0000 (22:51 +0100)]
patch 7.4.1394
Problem: Can't sort inside a sort function.
Solution: Use a struct to store the sort parameters. (Jacob Niehus)
Bram Moolenaar [Mon, 22 Feb 2016 21:19:22 +0000 (22:19 +0100)]
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)
Bram Moolenaar [Mon, 22 Feb 2016 21:05:32 +0000 (22:05 +0100)]
patch 7.4.1392
Problem: Some tests fail for Win32 console version.
Solution: Move the tests to SCRIPTS_MORE2. Pass VIMRUNTIME. (Christian
Brabandt)
Bram Moolenaar [Mon, 22 Feb 2016 20:48:30 +0000 (21:48 +0100)]
patch 7.4.1391
Problem: Warning for uninitialzed variable.
Solution: Set it to zero. (Christian Brabandt)
Bram Moolenaar [Mon, 22 Feb 2016 20:07:06 +0000 (21:07 +0100)]
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)
Bram Moolenaar [Mon, 22 Feb 2016 19:20:25 +0000 (20:20 +0100)]
patch 7.4.1389
Problem: Incomplete function declaration.
Solution: Add "void". (Yasuhiro Matsumoto)
Bram Moolenaar [Mon, 22 Feb 2016 19:19:03 +0000 (20:19 +0100)]
patch 7.4.1388
Problem: Compiler warning. (Cesar Romani)
Solution: Initialize variable.
Bram Moolenaar [Mon, 22 Feb 2016 19:07:49 +0000 (20:07 +0100)]
patch 7.4.1387
Problem: Win16 docs still referenced.
Solution: Remove Win16 files from the docs Makefile. (Kenichi Ito)
Bram Moolenaar [Mon, 22 Feb 2016 10:39:27 +0000 (11:39 +0100)]
patch 7.4.1386
Problem: When the Job exit callback is invoked, the job may be freed too
soon. (Yasuhiro Matsumoto)
Solution: Increase refcount.
Bram Moolenaar [Sun, 21 Feb 2016 22:12:41 +0000 (23:12 +0100)]
patch 7.4.1385
Problem: Compiler warning for using array.
Solution: Use the right member name. (Yegappan Lakshmanan)
Bram Moolenaar [Sun, 21 Feb 2016 22:02:49 +0000 (23:02 +0100)]
patch 7.4.1384
Problem: It is not easy to use a set of plugins and their dependencies.
Solution: Add packages, ":loadopt", 'packpath'.
Bram Moolenaar [Sun, 21 Feb 2016 19:30:22 +0000 (20:30 +0100)]
patch 7.4.1383
Problem: GvimExt only loads the old libintl.dll.
Solution: Also try loading libint-8.dll. (Ken Takata, closes #608)
Bram Moolenaar [Sun, 21 Feb 2016 19:10:26 +0000 (20:10 +0100)]
patch 7.4.1382
Problem: Can't get the job of a channel.
Solution: Add ch_getjob().
Bram Moolenaar [Sun, 21 Feb 2016 18:32:02 +0000 (19:32 +0100)]
patch 7.4.1381
Problem: Exit value not available on MS-Windows.
Solution: Set the exit value.
Bram Moolenaar [Sun, 21 Feb 2016 18:14:41 +0000 (19:14 +0100)]
patch 7.4.1380
Problem: The job exit callback is not implemented.
Solution: Add the "exit-cb" option.
Bram Moolenaar [Sun, 21 Feb 2016 16:20:55 +0000 (17:20 +0100)]
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)
Bram Moolenaar [Sun, 21 Feb 2016 15:40:11 +0000 (16:40 +0100)]
patch 7.4.1378
Problem: Can't change job settings after it started.
Solution: Add job_setoptions() with the "stoponexit" flag.
Bram Moolenaar [Sun, 21 Feb 2016 12:01:53 +0000 (13:01 +0100)]
patch 7.4.1377
Problem: Test_connect_waittime() is flaky.
Solution: Ignore the "Connection reset by peer" error.
Bram Moolenaar [Sat, 20 Feb 2016 22:32:02 +0000 (23:32 +0100)]
Update channel.txt
Bram Moolenaar [Sat, 20 Feb 2016 22:30:07 +0000 (23:30 +0100)]
patch 7.4.1376
Problem: ch_setoptions() cannot set all options.
Solution: Support more options.
Bram Moolenaar [Sat, 20 Feb 2016 21:17:05 +0000 (22:17 +0100)]
patch 7.4.1375
Problem: Still some Win16 code.
Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
Bram Moolenaar [Sat, 20 Feb 2016 20:48:25 +0000 (21:48 +0100)]
patch 7.4.1374
Problem: Channel test hangs on MS-Windows.
Solution: Disable the ch_read() that is supposed to time out.
Bram Moolenaar [Sat, 20 Feb 2016 20:39:05 +0000 (21:39 +0100)]
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.
Bram Moolenaar [Sat, 20 Feb 2016 18:56:13 +0000 (19:56 +0100)]
patch 7.4.1372
Problem: channel read implementation is incomplete.
Solution: Add ch_read() and options for ch_readraw().
Bram Moolenaar [Sat, 20 Feb 2016 17:44:39 +0000 (18:44 +0100)]
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.
Bram Moolenaar [Sat, 20 Feb 2016 17:26:48 +0000 (18:26 +0100)]
patch 7.4.1370
Problem: The Python test script may keep on running.
Solution: Join the threads. (Yasuhiro Matsumoto)
Bram Moolenaar [Sat, 20 Feb 2016 17:18:59 +0000 (18:18 +0100)]
patch 7.4.1369
Problem: Channels don't have a queue for stderr.
Solution: Have a queue for each part of the channel.
Bram Moolenaar [Sat, 20 Feb 2016 14:50:18 +0000 (15:50 +0100)]
patch 7.4.1368
Problem: One more Win16 file remains.
Solution: Delete it.
Bram Moolenaar [Sat, 20 Feb 2016 14:47:01 +0000 (15:47 +0100)]
Updated runtime files.
Bram Moolenaar [Sat, 20 Feb 2016 14:26:42 +0000 (15:26 +0100)]
patch 7.4.1367
Problem: Compiler warning for unreachable code.
Solution: Remove a "break". (Danek Duvall)
Bram Moolenaar [Sat, 20 Feb 2016 14:10:50 +0000 (15:10 +0100)]
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)
Bram Moolenaar [Sat, 20 Feb 2016 13:41:40 +0000 (14:41 +0100)]
patch 7.4.1365
Problem: Cannot execute a single test function.
Solution: Add an argument to filter the functions with. (Yasuhiro Matsumoto)
Bram Moolenaar [Sat, 20 Feb 2016 12:55:06 +0000 (13:55 +0100)]
patch 7.4.1364
Problem: The Win 16 code is not maintained and unused.
Solution: Remove the Win 16 support.
Bram Moolenaar [Sat, 20 Feb 2016 12:08:46 +0000 (13:08 +0100)]
patch 7.4.1363
Problem: Compiler warnings with tiny build.
Solution: Add #ifdefs.
Bram Moolenaar [Fri, 19 Feb 2016 22:31:40 +0000 (23:31 +0100)]
patch 7.4.1362
Problem: Using unitinialized value.
Solution: Initialize jo_set.
Bram Moolenaar [Fri, 19 Feb 2016 22:23:12 +0000 (23:23 +0100)]
patch 7.4.1361
Problem: Channel test fails on Solaris.
Solution: Use the 1 msec waittime for all systems.
Bram Moolenaar [Fri, 19 Feb 2016 22:21:26 +0000 (23:21 +0100)]
patch 7.4.1360
Problem: Can't remove a callback with ch_setoptions().
Solution: When passing zero or an empty string remove the callback.
Bram Moolenaar [Fri, 19 Feb 2016 21:59:44 +0000 (22:59 +0100)]
patch 7.4.1359
Problem: Channel test ch_sendexpr() times out.
Solution: Increase the timeout
Bram Moolenaar [Fri, 19 Feb 2016 21:46:34 +0000 (22:46 +0100)]
patch 7.4.1358
Problem: Compiler warning when not building with +crypt.
Solution: Add #ifdef. (John Marriott)
Bram Moolenaar [Fri, 19 Feb 2016 21:38:15 +0000 (22:38 +0100)]
patch 7.4.1357
Problem: Error for returning value from void function.
Solution: Don't do that.
Bram Moolenaar [Fri, 19 Feb 2016 21:33:35 +0000 (22:33 +0100)]
patch 7.4.1356
Problem: Job and channel options parsing is scattered.
Solution: Move all option value parsing to get_job_options();
Bram Moolenaar [Fri, 19 Feb 2016 20:05:03 +0000 (21:05 +0100)]
patch 7.4.1355
Problem: Win32 console and GUI handle channels differently.
Solution: Consolidate code between Win32 console and GUI.
Bram Moolenaar [Fri, 19 Feb 2016 18:43:49 +0000 (19:43 +0100)]
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)
Bram Moolenaar [Thu, 18 Feb 2016 21:58:26 +0000 (22:58 +0100)]
patch 7.4.1353
Problem: Test_connect_waittime is skipped for MS-Windows.
Solution: Add the test back, it works now.
Bram Moolenaar [Thu, 18 Feb 2016 21:25:47 +0000 (22:25 +0100)]
patch 7.4.1352
Problem: The test script lists all functions before executing them.
Solution: Only list the function currently being executed.
Bram Moolenaar [Thu, 18 Feb 2016 21:23:34 +0000 (22:23 +0100)]
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().
Bram Moolenaar [Thu, 18 Feb 2016 21:17:42 +0000 (22:17 +0100)]
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.
Bram Moolenaar [Thu, 18 Feb 2016 20:19:21 +0000 (21:19 +0100)]
patch 7.4.1349
Problem: And some more MingW compiler warnings. (Cesar Romani)
Solution: Add type casts.
Bram Moolenaar [Thu, 18 Feb 2016 19:46:39 +0000 (20:46 +0100)]
patch 7.4.1348
Problem: More compiler warnings. (John Marriott)
Solution: Add type casts, remove unused variable.
Bram Moolenaar [Thu, 18 Feb 2016 19:31:34 +0000 (20:31 +0100)]
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)
Bram Moolenaar [Thu, 18 Feb 2016 19:18:09 +0000 (20:18 +0100)]
patch 7.4.1346
Problem: Compiler warnings in build with -O2.
Solution: Add inintializations.
Bram Moolenaar [Wed, 17 Feb 2016 19:48:19 +0000 (20:48 +0100)]
patch 7.4.1345
Problem: A few more compiler warnings. (Axel Bender)
Solution: Add type casts.
Bram Moolenaar [Wed, 17 Feb 2016 11:30:17 +0000 (12:30 +0100)]
patch 7.4.1344
Problem: Can't compile Win32 GUI with tiny features.
Solution: Add #ifdef. (Christian Brabandt)
Bram Moolenaar [Wed, 17 Feb 2016 09:05:42 +0000 (10:05 +0100)]
patch 7.4.1343
Problem: Can't compile with +job but without +channel. (Andrei Olsen)
Solution: Move get_job_options up and adjust #ifdef.
Bram Moolenaar [Tue, 16 Feb 2016 21:01:30 +0000 (22:01 +0100)]
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.
Bram Moolenaar [Tue, 16 Feb 2016 20:03:07 +0000 (21:03 +0100)]
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.
Bram Moolenaar [Tue, 16 Feb 2016 19:31:31 +0000 (20:31 +0100)]
patch 7.4.1340
Problem: Merge left extra #endif behind.
Solution: Remove the #endif
Bram Moolenaar [Tue, 16 Feb 2016 19:12:02 +0000 (20:12 +0100)]
patch 7.4.1339
Problem: Warnings when building the GUI with MingW. (Cesar Romani)
Solution: Add type cats. (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 16 Feb 2016 18:44:20 +0000 (19:44 +0100)]
patch 7.4.1338
Problem: Another part of the change is missing.
Solution: Type os_unix.c right this time.
Bram Moolenaar [Tue, 16 Feb 2016 18:37:29 +0000 (19:37 +0100)]
patch 7.4.1337
Problem: Part of the change is missing.
Solution: Add changes to eval.c
Bram Moolenaar [Tue, 16 Feb 2016 18:25:12 +0000 (19:25 +0100)]
patch 7.4.1336
Problem: Channel NL mode is not supported yet.
Solution: Add NL mode support to channels.
Bram Moolenaar [Tue, 16 Feb 2016 15:39:51 +0000 (16:39 +0100)]
patch 7.4.1335
Problem: Can't build on MS-Windows with +job but without +channel. (Cesar
Romani)
Solution: Add #ifdefs. (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 16 Feb 2016 14:06:59 +0000 (15:06 +0100)]
patch 7.4.1334
Problem: Many compiler warnings with MingW.
Solution: Add type casts. (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 16 Feb 2016 13:07:40 +0000 (14:07 +0100)]
patch 7.4.1333
Problem: Channel test fails on non-darwin builds.
Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama)
Bram Moolenaar [Tue, 16 Feb 2016 12:42:24 +0000 (13:42 +0100)]
patch 7.4.1332
Problem: Problem using Python3 when compiled with MingW.
Solution: Define PYTHON3_HOME as a wide character string. (Yasuhiro
Matsumoto)
Bram Moolenaar [Tue, 16 Feb 2016 12:33:52 +0000 (13:33 +0100)]
patch 7.4.1331
Problem: Crash when closing the channel in a callback. (Christian J.
Robinson)
Solution: Take the callback out of the list before invoking it.
Bram Moolenaar [Tue, 16 Feb 2016 12:11:17 +0000 (13:11 +0100)]
patch 7.4.1330
Problem: fd_read() has an unused argument.
Solution: Remove the timeout. (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 16 Feb 2016 11:44:26 +0000 (12:44 +0100)]
patch 7.4.1329
Problem: Crash when using channel that failed to open.
Solution: Check for NULL. Update messages. (Yukihiro Nakadaira)
Bram Moolenaar [Mon, 15 Feb 2016 22:09:04 +0000 (23:09 +0100)]
patch 7.4.1328
Problem: Can't compile with +job but without +channel. (John Marriott)
Solution: Add more #ifdefs.
Bram Moolenaar [Mon, 15 Feb 2016 21:55:28 +0000 (22:55 +0100)]
patch 7.4.1327
Problem: Channel test doesn't work if Python executable is python.exe.
Solution: Find py.exe or python.exe. (Ken Takata)
Bram Moolenaar [Mon, 15 Feb 2016 21:45:12 +0000 (22:45 +0100)]
patch 7.4.1326
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)
Bram Moolenaar [Mon, 15 Feb 2016 21:37:37 +0000 (22:37 +0100)]
patch 7.4.1325
Problem: Channel test fails on difference between Unix and DOS line endings.
Solution: Strip off CR. Make assert show difference better.