Bram Moolenaar
e40d75f6ef
patch 7.4.1831
...
Problem: When timer_stop() is called with a string there is no proper error
message.
Solution: Require getting a number. (Bjorn Linse)
v7.4.1831
2016-05-15 18:00:19 +02:00
Bram Moolenaar
73a733e08b
patch 7.4.1830
...
Problem: non-antialiased misnamed.
Solution: Use NONANTIALIASED and NONANTIALIASED_QUALITY. (Kim Brouer,
closes #793 )
v7.4.1830
2016-05-11 21:05:05 +02:00
Bram Moolenaar
de7eb0a47b
patch 7.4.1829
...
Problem: No message on channel log when buffer was freed.
Solution: Log a message.
v7.4.1829
2016-05-09 20:54:33 +02:00
Bram Moolenaar
e0f76d0097
patch 7.4.1828
...
Problem: May try to access buffer that's already freed.
Solution: When freeing a buffer remove it from any channel.
v7.4.1828
2016-05-09 20:38:53 +02:00
Bram Moolenaar
fb6ffc732e
patch 7.4.1827
...
Problem: No error when invoking a callback when it's not safe.
Solution: Add an error message. Avoid the error when freeing a channel.
v7.4.1827
2016-05-09 17:58:04 +02:00
Bram Moolenaar
cf7ff70ca7
patch 7.4.1826
...
Problem: Callbacks are invoked when it's not safe. (Andrew Stewart)
Solution: When a channel is to be closed don't invoke callbacks right away,
wait for a safe moment.
v7.4.1826
2016-05-09 17:20:14 +02:00
Bram Moolenaar
5d96e3ae53
patch 7.4.1825
...
Problem: When job writes to buffer nothing is written. (Nicola)
Solution: Do not discard a channel before writing is done.
v7.4.1825
2016-05-08 21:47:01 +02:00
Bram Moolenaar
36e0f7da9b
patch 7.4.1824
...
Problem: When a job is no longer referenced and does not have an exit
callback the process may hang around in defunc state. (Nicola)
Solution: Call job_status() if the job is running and won't get freed
because it might still be useful.
v7.4.1824
2016-05-08 13:21:12 +02:00
Bram Moolenaar
d9db8b448c
patch 7.4.1823
...
Problem: Warning from 64 bit compiler.
Solution: Add type cast. (Mike Williams)
v7.4.1823
2016-05-08 12:52:05 +02:00
Bram Moolenaar
91c4937be1
Updated runtime files.
2016-05-08 09:50:29 +02:00
Bram Moolenaar
ea83bf06b9
patch 7.4.1822
...
Problem: Redirecting stdout of a channel to "null" doesn't work. (Nicola)
Solution: Correct the file descriptor number.
v7.4.1822
2016-05-08 09:40:51 +02:00
Bram Moolenaar
4ed6b2e2d7
patch 7.4.1821
...
Problem: Test fails on MS-Windows.
Solution: Sort the completion results.
v7.4.1821
2016-05-07 22:28:53 +02:00
Bram Moolenaar
9ccaae04c6
patch 7.4.1820
...
Problem: Removing language from help tags too often.
Solution: Only remove @en when not needed. (Hirohito Higashi)
v7.4.1820
2016-05-07 18:36:48 +02:00
Bram Moolenaar
827b165b2a
patch 7.4.1819
...
Problem: Compiler warnings when sprintf() is a macro.
Solution: Don't interrupt sprintf() with an #ifdef. (Michael Jarvis,
closes #788 )
v7.4.1819
2016-05-05 18:14:03 +02:00
Bram Moolenaar
89c79b9932
patch 7.4.1818
...
Problem: Help completion adds @en to all matches except the first one.
Solution: Remove "break", go over all items.
v7.4.1818
2016-05-05 17:18:41 +02:00
Bram Moolenaar
cefe4f9948
patch 7.4.1817
...
Problem: The screen is not updated if a callback is invoked when closing a
channel.
Solution: Invoke redraw_after_callback().
v7.4.1817
2016-05-04 21:49:19 +02:00
Bram Moolenaar
d8585eded6
patch 7.4.1816
...
Problem: Looping over a null list throws an error.
Solution: Skip over the for loop.
v7.4.1816
2016-05-01 23:05:53 +02:00
Bram Moolenaar
9a3b3311d2
patch 7.4.1815
...
Problem: Compiler warnings for unused variables. (Ajit Thakkar)
Solution: Add a dummy initialization. (Yasuhiro Matsumoto)
v7.4.1815
2016-05-01 20:20:49 +02:00
Bram Moolenaar
b8d4905592
patch 7.4.1814
...
Problem: A channel may be garbage collected while it's still being used by
a job. (James McCoy)
Solution: Mark the channel as used if the job is still used. Do the same
for channels that are still used.
v7.4.1814
2016-05-01 14:22:16 +02:00
Bram Moolenaar
9b4ebc692d
patch 7.4.1813
...
Problem: Memory access error when running test_quickfix.
Solution: Allocate one more byte. (Yegappan Lakshmanan)
v7.4.1813
2016-05-01 13:28:38 +02:00
Bram Moolenaar
187147aedd
patch 7.4.1812
...
Problem: Failure on startup with Athena and Motif.
Solution: Check for INVALCOLOR. (Kazunobu Kuriyama)
v7.4.1812
2016-05-01 13:09:57 +02:00
Bram Moolenaar
3266c85a44
patch 7.4.1811
...
Problem: Netbeans channel gets garbage collected.
Solution: Set reference in nb_channel.
v7.4.1811
2016-04-30 18:07:05 +02:00
Bram Moolenaar
715d285d79
patch 7.4.1810
...
Problem: Sending DETACH after a channel was closed isn't useful.
Solution: Only add DETACH for a netbeans channel.
v7.4.1810
2016-04-30 17:06:31 +02:00
Bram Moolenaar
868cfc19bb
patch 7.4.1809
...
Problem: Using wrong short option name for 'termguicolors'.
Solution: Use the option name.
v7.4.1809
2016-04-30 16:49:58 +02:00
Bram Moolenaar
8a24b794b8
patch 7.4.1808
...
Problem: Using wrong feature name to check for 'termguicolors'.
Solution: Use the right feature name. (Ken Takata)
v7.4.1808
2016-04-30 16:13:10 +02:00
Bram Moolenaar
d75263c020
patch 7.4.1807
...
Problem: Test_out_close_cb sometimes fails.
Solution: Always write DETACH to out, not err.
v7.4.1807
2016-04-30 16:07:23 +02:00
Bram Moolenaar
8e3d1b6326
patch 7.4.1806
...
Problem: 'termguicolors' option missing from the options window.
Solution: Add the entry.
v7.4.1806
2016-04-30 15:17:19 +02:00
Bram Moolenaar
0648142700
Update runtime files.
2016-04-30 15:13:38 +02:00
Bram Moolenaar
4cc39a527f
patch 7.4.1805
...
Problem: Running tests in shadow dir fails.
Solution: Link the samples directory
v7.4.1805
2016-04-30 15:08:27 +02:00
Bram Moolenaar
b20545f2a7
patch 7.4.1804
...
Problem: Can't use Vim as MANPAGER.
Solution: Add manpager.vim. (Enno Nagel, closes #491 )
v7.4.1804
2016-04-30 14:15:54 +02:00
Bram Moolenaar
0b6cf69c03
patch 7.4.1803
...
Problem: GTK3 doesn't handle menu separaters properly.
Solution: Use gtk_separator_menu_item_new(). (Kazunobu Kuriyama)
v7.4.1803
2016-04-30 13:26:14 +02:00
Bram Moolenaar
6be8c8e165
patch 7.4.1802
...
Problem: Quickfix doesn't handle long lines well, they are split.
Solution: Drop characters after a limit. (Anton Lindqvist)
v7.4.1802
2016-04-30 13:17:09 +02:00
Bram Moolenaar
113ce08456
patch 7.4.1801
...
Problem: Make uninstall leaves file behind.
Solution: Delete rgb.txt. (Kazunobu Kuriyama)
v7.4.1801
2016-04-30 12:32:52 +02:00
Bram Moolenaar
631225627d
patch 7.4.1800
...
Problem: Unnecessary #ifdef.
Solution: Just use USE_24BIT. (Ken Takata)
v7.4.1800
2016-04-30 12:28:15 +02:00
Bram Moolenaar
61be73bb0f
patch 7.4.1799
...
Problem: 'guicolors' is a confusing option name.
Solution: Use 'termguicolors' instead. (Hirohito Higashi)
v7.4.1799
2016-04-29 22:59:22 +02:00
Bram Moolenaar
bb82762907
patch 7.4.1798
...
Problem: Still compiler warning for unused return value. (Charles Campbell)
Solution: Assign to ignoredp.
v7.4.1798
2016-04-29 22:33:27 +02:00
Bram Moolenaar
c61348e83f
patch 7.4.1797
...
Problem: Warning from Windows 64 bit compiler.
Solution: Change int to size_t. (Mike Williams)
v7.4.1797
2016-04-28 22:20:03 +02:00
Bram Moolenaar
283ee8b3a0
patch 7.4.1796
...
Problem: Colors are wrong on MS-Windows. (Christian Robinson)
Solution: Use existing RGB macro if it exists. (Ken Takata)
v7.4.1796
2016-04-27 20:36:31 +02:00
Bram Moolenaar
5487544fa5
patch 7.4.1795
...
Problem: Compiler warning for redefining RGB. (John Marriott)
Solution: Rename it to TORGB.
v7.4.1795
2016-04-26 22:33:17 +02:00
Bram Moolenaar
c285fe7c3f
patch 7.4.1794
...
Problem: Can't build on MS-Windows.
Solution: Add missing declaration.
v7.4.1794
2016-04-26 21:51:48 +02:00
Bram Moolenaar
e8aee7dcf9
patch 7.4.1793
...
Problem: Some character classes may differ between systems. On OS/X the
regexp test fails.
Solution: Make this less dependent on the system. (idea by Kazunobu Kuriyama)
v7.4.1793
2016-04-26 21:39:13 +02:00
Bram Moolenaar
ab3022196e
patch 7.4.1792
...
Problem: Color name decoding is implemented several times.
Solution: Move it to term.c. (Christian Brabandt)
v7.4.1792
2016-04-26 20:59:29 +02:00
Bram Moolenaar
674127e180
patch 7.4.1791
...
Problem: Channel could be garbage collected too early.
Solution: Don't free a channel or remove it from a job when it is still
useful.
v7.4.1791
2016-04-26 20:30:07 +02:00
Bram Moolenaar
6231cb8b5b
patch 7.4.1790
...
Problem: Leading white space in a job command matters. (Andrew Stewart)
Solution: Skip leading white space.
v7.4.1790
2016-04-26 19:42:42 +02:00
Bram Moolenaar
437905c25d
patch 7.4.1789
...
Problem: Cannot use ch_read() in the close callback.
Solution: Do not discard the channel if there is readahead. Do not discard
readahead if there is a close callback.
v7.4.1789
2016-04-26 19:01:05 +02:00
Bram Moolenaar
c7baa43fdb
patch 7.4.1788
...
Problem: NSIS script is missing packages.
Solution: Add the missing directories. (Ken Takata)
v7.4.1788
2016-04-26 17:34:44 +02:00
Bram Moolenaar
b2658a1ab0
patch 7.4.1787
...
Problem: When a job ends the close callback is invoked before other
callbacks. On Windows the close callback is not called.
Solution: First invoke out/err callbacks before the close callback.
Make the close callback work on Windows.
v7.4.1787
2016-04-26 17:16:24 +02:00
Bram Moolenaar
d10abe5201
patch 7.4.1786
...
Problem: Compiled-in colors do not match rgb.txt.
Solution: Use the rgb.txt colors. (Kazunobu Kuriyama)
v7.4.1786
2016-04-24 15:41:33 +02:00
Bram Moolenaar
490465bda6
patch 7.4.1785
...
Problem: Regexp test fails on windows.
Solution: set 'isprint' to the right value for testing.
v7.4.1785
2016-04-24 15:11:02 +02:00
Bram Moolenaar
8e9eb3a6a1
patch 7.4.1784
...
Problem: The termtruecolor feature is enabled differently from many other
features.
Solution: Enable the termtruecolor feature for the big build, not through
configure.
v7.4.1784
2016-04-24 15:00:11 +02:00