summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.1820v7.4.1820Bram Moolenaar2016-05-073-9/+133
| | | | | Problem: Removing language from help tags too often. Solution: Only remove @en when not needed. (Hirohito Higashi)
* patch 7.4.1819v7.4.1819Bram Moolenaar2016-05-054-16/+20
| | | | | | Problem: Compiler warnings when sprintf() is a macro. Solution: Don't interrupt sprintf() with an #ifdef. (Michael Jarvis, closes #788)
* patch 7.4.1818v7.4.1818Bram Moolenaar2016-05-052-8/+9
| | | | | Problem: Help completion adds @en to all matches except the first one. Solution: Remove "break", go over all items.
* patch 7.4.1817v7.4.1817Bram Moolenaar2016-05-042-0/+9
| | | | | | Problem: The screen is not updated if a callback is invoked when closing a channel. Solution: Invoke redraw_after_callback().
* patch 7.4.1816v7.4.1816Bram Moolenaar2016-05-013-1/+15
| | | | | Problem: Looping over a null list throws an error. Solution: Skip over the for loop.
* patch 7.4.1815v7.4.1815Bram Moolenaar2016-05-012-3/+5
| | | | | Problem: Compiler warnings for unused variables. (Ajit Thakkar) Solution: Add a dummy initialization. (Yasuhiro Matsumoto)
* patch 7.4.1814v7.4.1814Bram Moolenaar2016-05-014-18/+29
| | | | | | | 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.
* patch 7.4.1813v7.4.1813Bram Moolenaar2016-05-012-6/+8
| | | | | Problem: Memory access error when running test_quickfix. Solution: Allocate one more byte. (Yegappan Lakshmanan)
* patch 7.4.1812v7.4.1812Bram Moolenaar2016-05-013-2/+14
| | | | | Problem: Failure on startup with Athena and Motif. Solution: Check for INVALCOLOR. (Kazunobu Kuriyama)
* patch 7.4.1811v7.4.1811Bram Moolenaar2016-04-304-0/+23
| | | | | Problem: Netbeans channel gets garbage collected. Solution: Set reference in nb_channel.
* patch 7.4.1810v7.4.1810Bram Moolenaar2016-04-303-14/+10
| | | | | Problem: Sending DETACH after a channel was closed isn't useful. Solution: Only add DETACH for a netbeans channel.
* patch 7.4.1809v7.4.1809Bram Moolenaar2016-04-301-0/+2
| | | | | Problem: Using wrong short option name for 'termguicolors'. Solution: Use the option name.
* patch 7.4.1808v7.4.1808Bram Moolenaar2016-04-301-0/+2
| | | | | Problem: Using wrong feature name to check for 'termguicolors'. Solution: Use the right feature name. (Ken Takata)
* patch 7.4.1807v7.4.1807Bram Moolenaar2016-04-303-6/+15
| | | | | Problem: Test_out_close_cb sometimes fails. Solution: Always write DETACH to out, not err.
* patch 7.4.1806v7.4.1806Bram Moolenaar2016-04-301-0/+2
| | | | | Problem: 'termguicolors' option missing from the options window. Solution: Add the entry.
* patch 7.4.1805v7.4.1805Bram Moolenaar2016-04-302-0/+3
| | | | | Problem: Running tests in shadow dir fails. Solution: Link the samples directory
* patch 7.4.1804v7.4.1804Bram Moolenaar2016-04-301-0/+2
| | | | | Problem: Can't use Vim as MANPAGER. Solution: Add manpager.vim. (Enno Nagel, closes #491)
* patch 7.4.1803v7.4.1803Bram Moolenaar2016-04-302-0/+6
| | | | | Problem: GTK3 doesn't handle menu separaters properly. Solution: Use gtk_separator_menu_item_new(). (Kazunobu Kuriyama)
* patch 7.4.1802v7.4.1802Bram Moolenaar2016-04-304-27/+251
| | | | | Problem: Quickfix doesn't handle long lines well, they are split. Solution: Drop characters after a limit. (Anton Lindqvist)
* patch 7.4.1801v7.4.1801Bram Moolenaar2016-04-302-0/+3
| | | | | Problem: Make uninstall leaves file behind. Solution: Delete rgb.txt. (Kazunobu Kuriyama)
* patch 7.4.1800v7.4.1800Bram Moolenaar2016-04-302-7/+3
| | | | | Problem: Unnecessary #ifdef. Solution: Just use USE_24BIT. (Ken Takata)
* patch 7.4.1799v7.4.1799Bram Moolenaar2016-04-2913-100/+102
| | | | | Problem: 'guicolors' is a confusing option name. Solution: Use 'termguicolors' instead. (Hirohito Higashi)
* patch 7.4.1798v7.4.1798Bram Moolenaar2016-04-292-1/+3
| | | | | Problem: Still compiler warning for unused return value. (Charles Campbell) Solution: Assign to ignoredp.
* patch 7.4.1797v7.4.1797Bram Moolenaar2016-04-282-1/+3
| | | | | Problem: Warning from Windows 64 bit compiler. Solution: Change int to size_t. (Mike Williams)
* patch 7.4.1796v7.4.1796Bram Moolenaar2016-04-272-54/+60
| | | | | Problem: Colors are wrong on MS-Windows. (Christian Robinson) Solution: Use existing RGB macro if it exists. (Ken Takata)
* patch 7.4.1795v7.4.1795Bram Moolenaar2016-04-262-53/+55
| | | | | Problem: Compiler warning for redefining RGB. (John Marriott) Solution: Rename it to TORGB.
* patch 7.4.1794v7.4.1794Bram Moolenaar2016-04-262-0/+4
| | | | | Problem: Can't build on MS-Windows. Solution: Add missing declaration.
* patch 7.4.1793v7.4.1793Bram Moolenaar2016-04-263-8/+11
| | | | | | 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)
* patch 7.4.1792v7.4.1792Bram Moolenaar2016-04-266-565/+153
| | | | | Problem: Color name decoding is implemented several times. Solution: Move it to term.c. (Christian Brabandt)
* patch 7.4.1791v7.4.1791Bram Moolenaar2016-04-262-5/+14
| | | | | | 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.
* patch 7.4.1790v7.4.1790Bram Moolenaar2016-04-262-1/+3
| | | | | Problem: Leading white space in a job command matters. (Andrew Stewart) Solution: Skip leading white space.
* patch 7.4.1789v7.4.1789Bram Moolenaar2016-04-265-41/+100
| | | | | | 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.
* patch 7.4.1788v7.4.1788Bram Moolenaar2016-04-261-0/+2
| | | | | Problem: NSIS script is missing packages. Solution: Add the missing directories. (Ken Takata)
* patch 7.4.1787v7.4.1787Bram Moolenaar2016-04-265-50/+120
| | | | | | | 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.
* patch 7.4.1786v7.4.1786Bram Moolenaar2016-04-242-27/+29
| | | | | Problem: Compiled-in colors do not match rgb.txt. Solution: Use the rgb.txt colors. (Kazunobu Kuriyama)
* patch 7.4.1785v7.4.1785Bram Moolenaar2016-04-242-0/+3
| | | | | Problem: Regexp test fails on windows. Solution: set 'isprint' to the right value for testing.
* patch 7.4.1784v7.4.1784Bram Moolenaar2016-04-245-30/+9
| | | | | | | Problem: The termtruecolor feature is enabled differently from many other features. Solution: Enable the termtruecolor feature for the big build, not through configure.
* patch 7.4.1783v7.4.1783Bram Moolenaar2016-04-243-10/+68
| | | | | | Problem: The old regexp engine doesn't handle character classes correctly. (Manuel Ortega) Solution: Use regmbc() instead of regc(). Add a test.
* patch 7.4.1782v7.4.1782Bram Moolenaar2016-04-233-2/+14
| | | | | | Problem: strcharpart() does not work properly with some multi-byte characters. Solution: Use mb_cptr2len() instead of mb_char2len(). (Hirohito Higashi)
* patch 7.4.1781v7.4.1781Bram Moolenaar2016-04-232-2/+4
| | | | | Problem: synIDattr() does not respect 'guicolors'. Solution: Change the conditition for the mode. (Christian Brabandt)
* patch 7.4.1780v7.4.1780Bram Moolenaar2016-04-236-12/+16
| | | | | Problem: Warnings reported by cppcheck. Solution: Fix the warnings. (Dominique Pelle)
* patch 7.4.1779v7.4.1779Bram Moolenaar2016-04-232-1/+8
| | | | | Problem: Using negative index in strcharpart(). (Yegappan Lakshmanan) Solution: Assume single byte when using a negative iindex.
* patch 7.4.1778v7.4.1778Bram Moolenaar2016-04-222-7/+8
| | | | | | Problem: When using the term truecolor feature, the t_8f and t_8b termcap options are not set by default. Solution: Move the values to before BT_EXTRA_KEYS. (Christian Brabandt)
* patch 7.4.1777v7.4.1777Bram Moolenaar2016-04-222-2/+8
| | | | | Problem: Newly added features can escape the sandbox. Solution: Add checks for restricted and secure. (Yasuhiro Matsumoto)
* patch 7.4.1776v7.4.1776Bram Moolenaar2016-04-222-1/+3
| | | | | Problem: Using wrong buffer length. Solution: use the right name. (Kazunobu Kuriyama)
* patch 7.4.1775v7.4.1775Bram Moolenaar2016-04-222-0/+8
| | | | | Problem: The rgb.txt file is not installed. Solution: Install the file. (Christian Brabandt)
* patch 7.4.1774v7.4.1774Bram Moolenaar2016-04-224-17/+16
| | | | | Problem: Cterm true color feature has warnings. Solution: Add type casts.
* patch 7.4.1773v7.4.1773Bram Moolenaar2016-04-223-6/+11
| | | | | Problem: Compiler warnings. (Dominique Pelle) Solution: Add UNUSED. Add type cast. Avoid a buffer overflow.
* patch 7.4.1772v7.4.1772Bram Moolenaar2016-04-222-2/+4
| | | | | Problem: Installation fails when $GTK_UPDATE_ICON_CACHE is empty. Solution: Add quotes. (Kazunobu Kuriyama)
* patch 7.4.1771v7.4.1771Bram Moolenaar2016-04-222-0/+4
| | | | | Problem: Warning for unused variable. Solution: Add #ifdef. (John Marriott)