]>
granicus.if.org Git - vim/log
Bram Moolenaar [Tue, 13 Mar 2018 12:10:41 +0000 (13:10 +0100)]
patch 8.0.1602: crash in parsing JSON
Problem: Crash in parsing JSON.
Solution: Fail when using array or dict as dict key. (Damien)
Bram Moolenaar [Mon, 12 Mar 2018 21:16:37 +0000 (22:16 +0100)]
patch 8.0.1601: highlight test fails on Win32
Problem: Highlight test fails on Win32.
Solution: Check for vtp and vcon support.
Bram Moolenaar [Mon, 12 Mar 2018 20:48:32 +0000 (21:48 +0100)]
patch 8.0.1600: crash when setting t_Co to zero when 'termguicolors' is set
Problem: Crash when setting t_Co to zero when 'termguicolors' is set.
Solution: Use IS_CTERM instead of checking the number of colors.
(closes #2710)
Bram Moolenaar [Sun, 11 Mar 2018 19:51:52 +0000 (20:51 +0100)]
patch 8.0.1599: no error message when gdb does not support debugger
Problem: No error message when gdb does not support the terminal debugger.
Solution: Check for the response to open the Machine Interface.
Bram Moolenaar [Sun, 11 Mar 2018 18:30:45 +0000 (19:30 +0100)]
patch 8.0.1598: cannot select text in a terminal with the mouse
Problem: Cannot select text in a terminal with the mouse.
Solution: When a job in a terminal is not consuming mouse events, use them
for modeless selection. Also stop Insert mode when clicking in a
terminal window.
Bram Moolenaar [Sun, 11 Mar 2018 16:02:12 +0000 (17:02 +0100)]
patch 8.0.1597: autocommand events are not sorted
Problem: Autocommand events are not sorted.
Solution: Sort the autocommand events.
Bram Moolenaar [Sun, 11 Mar 2018 15:55:36 +0000 (16:55 +0100)]
patch 8.0.1596: no autocommand specifically for opening a terminal window
Problem: No autocommand specifically for opening a terminal window.
Solution: Add TerminalOpen. (?, closes #2484)
Bram Moolenaar [Sun, 11 Mar 2018 13:44:18 +0000 (14:44 +0100)]
patch 8.0.1595: no autocommand triggered before exiting
Problem: No autocommand triggered before exiting.
Solution: Add the ExitPre autocommand event.
Bram Moolenaar [Sat, 10 Mar 2018 19:51:25 +0000 (20:51 +0100)]
patch 8.0.1594: :conform qall not tested with active terminal window
Problem: :conform qall not tested with active terminal window.
Solution: Add a test.
Bram Moolenaar [Sat, 10 Mar 2018 19:28:12 +0000 (20:28 +0100)]
patch 8.0.1593: :qall never exits with an active terminal window
Problem: :qall never exits with an active terminal window.
Solution: Add a way to kill a job in a terminal window.
Bram Moolenaar [Fri, 9 Mar 2018 21:22:21 +0000 (22:22 +0100)]
Update runtime files.
Bram Moolenaar [Fri, 9 Mar 2018 20:33:34 +0000 (21:33 +0100)]
patch 8.0.1592: terminal windows in a session are not properly restored
Problem: Terminal windows in a session are not properly restored.
Solution: Add "terminal" in 'sessionoptions'. When possible restore the
command running in a terminal.
Bram Moolenaar [Thu, 8 Mar 2018 21:03:14 +0000 (22:03 +0100)]
patch 8.0.1591: MS-Windows: when reparsing the arguments 'wildignore' matters
Problem: MS-Windows: when reparsing the arguments 'wildignore' matters.
Solution: Save and reset 'wildignore'. (Yasuhiro Matsumoto, closes #2702)
Bram Moolenaar [Thu, 8 Mar 2018 20:46:43 +0000 (21:46 +0100)]
patch 8.0.1590: padding in list type wastes memory
Problem: Padding in list type wastes memory.
Solution: Reorder struct members to optimize padding. (Dominique Pelle,
closes #2704)
Bram Moolenaar [Wed, 7 Mar 2018 22:02:33 +0000 (23:02 +0100)]
patch 8.0.1589: error for setting 'modifiable' when resetting it
Problem: Error for setting 'modifiable' when resetting it.
Solution: Check if 'modifiable' was actually set.
Bram Moolenaar [Wed, 7 Mar 2018 21:09:11 +0000 (22:09 +0100)]
patch 8.0.1588: popup menu hangs after typing CTRL-C
Problem: Popup menu hangs after typing CTRL-C.
Solution: Make CTRL-C exit the loop. (Ozaki Kiichi, closes #2697)
Bram Moolenaar [Tue, 6 Mar 2018 18:51:13 +0000 (19:51 +0100)]
patch 8.0.1587: inserting from the clipboard doesn't work literally
Problem: inserting from the clipboard doesn't work literally
Solution: When pasting from the * or + register always assume literally.
Bram Moolenaar [Tue, 6 Mar 2018 17:59:57 +0000 (18:59 +0100)]
patch 8.0.1586: imactivatefunc does not work on non-GUI Mac
Problem: Imactivatefunc does not work on non-GUI Mac.
Solution: Fix logic in #ifdef.
Bram Moolenaar [Tue, 6 Mar 2018 17:20:03 +0000 (18:20 +0100)]
patch 8.0.1585: enabling beval_term feature in Win32 GUI
Problem: Enabling beval_term feature in Win32 GUI.
Solution: Only enable beval_term in Win32 console.
Bram Moolenaar [Tue, 6 Mar 2018 16:55:01 +0000 (17:55 +0100)]
patch 8.0.1584: using C99 in Mac file gives compiler warning messages
Problem: Using C99 in Mac file gives compiler warning messages.
Solution: Add #prama's to avoid the warnings. (Kazunobu Kuriyama)
Bram Moolenaar [Tue, 6 Mar 2018 16:43:22 +0000 (17:43 +0100)]
patch 8.0.1583: using C99 comment
Problem: Using C99 comment.
Solution: Use old style comment. (Kazunobu Kuriyama)
Bram Moolenaar [Tue, 6 Mar 2018 16:09:20 +0000 (17:09 +0100)]
patch 8.0.1582: in the MS-Windows console mouse movement is not used
Problem: In the MS-Windows console mouse movement is not used.
Solution: Pass mouse movement events when useful.
Bram Moolenaar [Tue, 6 Mar 2018 15:11:47 +0000 (16:11 +0100)]
patch 8.0.1581: cannot build Win32 GUI without +eval
Problem: Cannot build Win32 GUI without +eval.
Solution: Define HAVE_INPUT_METHOD without +eval. (Ken Takata)
Bram Moolenaar [Tue, 6 Mar 2018 14:06:19 +0000 (15:06 +0100)]
patch 8.0.1580: FEAT_CURSORBIND and FEAT_SCROLLBIND are unused
Problem: FEAT_CURSORBIND and FEAT_SCROLLBIND are unused.
Solution: Delete them.
Bram Moolenaar [Tue, 6 Mar 2018 13:22:58 +0000 (14:22 +0100)]
patch 8.0.1579: virtual replace test fails in GUI
Problem: Virtual replace test fails in GUI.
Solution: Don't save key options if they were not set.
Bram Moolenaar [Tue, 6 Mar 2018 12:23:08 +0000 (13:23 +0100)]
patch 8.0.1578: no test for :popup in terminal
Problem: No test for :popup in terminal.
Solution: Add a screen dump test.
Bram Moolenaar [Tue, 6 Mar 2018 12:17:23 +0000 (13:17 +0100)]
patch 8.0.1577: virtual replace test fails on MS-Windows
Problem: Virtual replace test fails on MS-Windows.
Solution: Make adding a termcap entry work for a builtin terminal.
Restore terminal keys in a better way.
Bram Moolenaar [Tue, 6 Mar 2018 11:25:56 +0000 (12:25 +0100)]
patch 8.0.1576: Perl VIM::Buffers() does not find every buffer
Problem: Perl VIM::Buffers() does not find every buffer.
Solution: Also find unlisted buffer by number or name. (Chris Weyl,
closes #2692)
Bram Moolenaar [Tue, 6 Mar 2018 11:10:48 +0000 (12:10 +0100)]
patch 8.0.1575: crash when using virtual replace
Problem: Crash when using virtual replace.
Solution: Adjust orig_line_count. Add more tests. (Christian Brabandt)
Bram Moolenaar [Tue, 6 Mar 2018 10:43:04 +0000 (11:43 +0100)]
patch 8.0.1574: show cursor in wrong place when using popup menu
Problem: Show cursor in wrong place when using popup menu. (Wei Zhang)
Solution: Force updating the cursor position. Fix skipping over unused
entries.
Bram Moolenaar [Mon, 5 Mar 2018 21:43:10 +0000 (22:43 +0100)]
patch 8.0.1573: getwinpos(1) may cause response to be handled as command
Problem: getwinpos(1) may cause response to be handled as command.
Solution: Handle any cursor position report once one was request. (partly by
Hirohito Higashi)
Bram Moolenaar [Mon, 5 Mar 2018 20:59:37 +0000 (21:59 +0100)]
patch 8.0.1572: Mac: getting memory size doesn't work everywhere
Problem: Mac: getting memory size doesn't work everywhere.
Solution: Use MACOS_X instead of MACOS_X_DARWIN. (Kazunobu Kuriyama)
Bram Moolenaar [Mon, 5 Mar 2018 20:32:27 +0000 (21:32 +0100)]
patch 8.0.1571: can't build without GUI
Problem: Can't build without GUI.
Solution: Adjust #ifdef for gui_find_menu().
Bram Moolenaar [Mon, 5 Mar 2018 20:06:23 +0000 (21:06 +0100)]
patch 8.0.1570: can't use :popup for a menu in the terminal
Problem: Can't use :popup for a menu in the terminal. (Wei Zhang)
Solution: Make :popup work in the terminal. Also fix that entries were
included that don't work in the current state.
Bram Moolenaar [Mon, 5 Mar 2018 11:42:42 +0000 (12:42 +0100)]
patch 8.0.1569: warning for uninitialized variable from gcc
Problem: Warning for uninitialized variable from gcc.
Solution: Initialize the variable.
Bram Moolenaar [Mon, 5 Mar 2018 09:54:53 +0000 (10:54 +0100)]
patch 8.0.1568: can't build on older Mac, header file is missing
Problem: Can't build on older Mac, header file is missing.
Solution: Remove the header file. (Ozaki Kiichi, closes #2691)
Bram Moolenaar [Sun, 4 Mar 2018 20:36:05 +0000 (21:36 +0100)]
patch 8.0.1567: cannot build Win32 GUI without IME
Problem: Cannot build Win32 GUI without IME. (John Marriott)
Solution: Adjust when IME_WITHOUT_XIM and HAVE_INPUT_METHOD are defined and
use it in a few more places.
Bram Moolenaar [Sun, 4 Mar 2018 19:14:14 +0000 (20:14 +0100)]
patch 8.0.1566: too many #ifdefs
Problem: Too many #ifdefs.
Solution: Graduate FEAT_SCROLLBIND and FEAT_CURSORBIND.
Bram Moolenaar [Sun, 4 Mar 2018 17:57:19 +0000 (18:57 +0100)]
patch 8.0.1565: can't build Mac version without GUI
Problem: Can't build Mac version without GUI.
Solution: Adjust when IME_WITHOUT_XIM is defined.
Bram Moolenaar [Sun, 4 Mar 2018 17:08:14 +0000 (18:08 +0100)]
patch 8.0.1564: too many #ifdefs
Problem: Too many #ifdefs.
Solution: Graduate the +autocmd feature. Takes away 450 #ifdefs and
increases code size of tiny Vim by only 40 Kbyte.
Bram Moolenaar [Sat, 3 Mar 2018 20:29:55 +0000 (21:29 +0100)]
patch 8.0.1563: timeout of getwinposx() can be too short
Problem: Timeout of getwinposx() can be too short. (lilydjwg)
Solution: Add getwinpos(). (closes #2689)
Bram Moolenaar [Sat, 3 Mar 2018 19:47:21 +0000 (20:47 +0100)]
patch 8.0.1562: the terminal debugger can't set a breakpoint with the mouse
Problem: The terminal debugger can't set a breakpoint with the mouse.
Solution: Add popup menu entries.
Bram Moolenaar [Sat, 3 Mar 2018 19:02:19 +0000 (20:02 +0100)]
patch 8.0.1561: crash with rust syntax highligting
Problem: Crash with rust syntax highligting. (Edd Barrett)
Solution: Avoid going past the end of an empty line.
Bram Moolenaar [Sat, 3 Mar 2018 18:51:58 +0000 (19:51 +0100)]
patch 8.0.1560: build failure without GUI on MS-Windows
Problem: Build failure without GUI on MS-Windows.
Solution: Adjust #ifdef for vcol2col().
Bram Moolenaar [Sat, 3 Mar 2018 18:29:43 +0000 (19:29 +0100)]
patch 8.0.1559: build failure without GUI
Problem: Build failure without GUI.
Solution: Adjust #ifdef for get_fpos_of_mouse().
Bram Moolenaar [Sat, 3 Mar 2018 17:59:16 +0000 (18:59 +0100)]
patch 8.0.1558: no right-click menu in a terminal
Problem: No right-click menu in a terminal.
Solution: Implement the right click menu for the terminal.
Bram Moolenaar [Sat, 3 Mar 2018 14:06:52 +0000 (15:06 +0100)]
patch 8.0.1557: printf() does not work with only one argument
Problem: printf() does not work with only one argument. (Daniel Hahler)
Solution: Allow using just the format. (Ken Takata, closes #2687)
Bram Moolenaar [Fri, 2 Mar 2018 19:58:42 +0000 (20:58 +0100)]
patch 8.0.1556: may not parse the t_RS response correctly
Problem: May not parse the t_RS response correctly, resulting in wrong
characters in the input stream.
Solution: When the t_RS response is partly received wait for more
characters.
Bram Moolenaar [Thu, 1 Mar 2018 22:10:45 +0000 (23:10 +0100)]
patch 8.0.1555: build error for some combination of features
Problem: Build error for some combination of features.
Solution: Declare variable in more situations.
Bram Moolenaar [Thu, 1 Mar 2018 20:57:32 +0000 (21:57 +0100)]
patch 8.0.1554: custom plugins loaded with --clean
Problem: Custom plugins loaded with --clean.
Solution: Do not include the home directory in 'runtimepath'.
Bram Moolenaar [Tue, 27 Feb 2018 20:09:30 +0000 (21:09 +0100)]
patch 8.0.1553: cannot see what digraph is used to insert a character
Problem: Cannot see what digraph is used to insert a character.
Solution: Show the digraph with the "ga" command. (Christian Brabandt)
Bram Moolenaar [Tue, 27 Feb 2018 18:10:00 +0000 (19:10 +0100)]
patch 8.0.1552: may leak file descriptors when executing job
Problem: May leak file descriptors when executing job.
Solution: Close more file descriptors. (Ozaki Kiichi, closes #2531)
Bram Moolenaar [Tue, 27 Feb 2018 16:58:20 +0000 (17:58 +0100)]
patch 8.0.1551: on Mac 'maxmemtot' is set to a weird value
Problem: On Mac 'maxmemtot' is set to a weird value.
Solution: For Mac use total memory and subtract system memory. For other
systems accept both a 32 bit and 64 bit result. (Ozaki Kiichi,
closes #2646)
Bram Moolenaar [Tue, 27 Feb 2018 16:27:13 +0000 (17:27 +0100)]
patch 8.0.1550: various small problems in source files
Problem: Various small problems in source files.
Solution: Fix the problems.
Bram Moolenaar [Tue, 27 Feb 2018 16:17:42 +0000 (17:17 +0100)]
patch 8.0.1549: various small problems in test files
Problem: Various small problems in test files.
Solution: Include small changes.
Bram Moolenaar [Tue, 27 Feb 2018 16:11:01 +0000 (17:11 +0100)]
Include Serbian spell input files
Bram Moolenaar [Tue, 27 Feb 2018 16:07:43 +0000 (17:07 +0100)]
patch 8.0.1548: screen dump test script not included in distribution
Problem: Screen dump test script not included in distribution.
Solution: Add the script to the list of distributed files.
Bram Moolenaar [Tue, 27 Feb 2018 16:04:25 +0000 (17:04 +0100)]
patch 8.0.1547: undo in the options window makes it empty
Problem: Undo in the options window makes it empty.
Solution: Set 'undolevels' while filling the buffer. (Yasuhiro Matthew,
closes #2645)
Bram Moolenaar [Tue, 27 Feb 2018 15:29:28 +0000 (16:29 +0100)]
patch 8.0.1546: using feedkeys() in a terminal may trigger mappings
Problem: Using feedkeys() in a terminal window may trigger mappings.
(Charles Sheridan)
Solution: Avoid triggering a mapping when peeking for a key.
Bram Moolenaar [Tue, 27 Feb 2018 13:54:53 +0000 (14:54 +0100)]
patch 8.0.1545: screen dumps not included in distribution
Problem: Screen dumps not included in distribution.
Solution: Add dumps to the list of distributed files.
Bram Moolenaar [Tue, 27 Feb 2018 13:53:30 +0000 (14:53 +0100)]
Updated runtime files.
Add Serbian translations and spell checking.
Bram Moolenaar [Tue, 27 Feb 2018 13:39:03 +0000 (14:39 +0100)]
patch 8.0.1544: when using 'termguicolors' SpellBad doesn't show
Problem: When using 'termguicolors' SpellBad doesn't show.
Solution: When the GUI colors are not set fall back to the cterm colors.
Bram Moolenaar [Tue, 27 Feb 2018 12:04:59 +0000 (13:04 +0100)]
patch 8.0.1543: with 'termguicolors' Normal color doesn't work correctly
Problem: With 'termguicolors' Normal color doesn't work correctly.
Solution: Set cterm_normal_bg_gui_color and cterm_normal_fg_color always.
(Kazunobu Kuriyama, closes #981, closes #2332)
Bram Moolenaar [Sun, 25 Feb 2018 20:39:46 +0000 (21:39 +0100)]
patch 8.0.1542: terminal screen dump does not include cursor position
Problem: Terminal screen dump does not include cursor position.
Solution: Mark the cursor position in the cump.
Bram Moolenaar [Sat, 24 Feb 2018 20:36:34 +0000 (21:36 +0100)]
patch 8.0.1541: synpat_T is taking too much memory
Problem: synpat_T is taking too much memory.
Solution: Reorder members to reduce padding. (Dominique Pelle, closes #2671)
Bram Moolenaar [Sat, 24 Feb 2018 20:25:44 +0000 (21:25 +0100)]
patch 8.0.1540: popup menu positioning fails with longer string
Problem: Popup menu positioning fails with longer string.
Solution: Only align with right side of window when width is less than
'pumwidth' (closes #2661)
Bram Moolenaar [Sat, 24 Feb 2018 18:53:53 +0000 (19:53 +0100)]
patch 8.0.1539: no test for the popup menu positioning
Problem: No test for the popup menu positioning.
Solution: Add a screendump test for the popup menu.
Bram Moolenaar [Sat, 24 Feb 2018 17:59:55 +0000 (18:59 +0100)]
patch 8.0.1538: popupmenu is too far left when completion is long
Problem: Popupmenu is too far left when completion is long. (Linwei)
Solution: Adjust column computations. (Hirohito Higashi, closes #2661)
Bram Moolenaar [Sat, 24 Feb 2018 17:30:55 +0000 (18:30 +0100)]
patch 8.0.1537: xxd does not skip NUL lines when using ebcdic
Problem: Xxd does not skip NUL lines when using ebcdic.
Solution: Check for a NUL before converting a character for ebcdic. (Tim
Sell, closes #2668)
Bram Moolenaar [Sat, 24 Feb 2018 16:42:28 +0000 (17:42 +0100)]
patch 8.0.1536: quotestar test is flaky when using the GUI
Problem: Quotestar test is flaky when using the GUI.
Solution: Add check that the star register arrived at the server. Increase
timeouts.
Bram Moolenaar [Sat, 24 Feb 2018 15:51:32 +0000 (16:51 +0100)]
patch 8.0.1535: C syntax test still fails when using gvim
Problem: C syntax test still fails when using gvim.
Solution: Clear Normal cterm highlighting instead of setting it.
Bram Moolenaar [Sat, 24 Feb 2018 13:38:51 +0000 (14:38 +0100)]
patch 8.0.1534: C syntax test fails when using gvim
Problem: C syntax test fails when using gvim
Solution: Force running in a terminal. Check that 'background' is correct
even when $COLORFGBG is set.
Bram Moolenaar [Sat, 24 Feb 2018 13:03:56 +0000 (14:03 +0100)]
patch 8.0.1533: libterm doesn't support requesting fg and bg color
Problem: Libterm doesn't support requesting fg and bg color.
Solution: Implement t_RF and t_RB.
Bram Moolenaar [Fri, 23 Feb 2018 17:23:30 +0000 (18:23 +0100)]
patch 8.0.1532: compiler warnings without termguicolors feature
Problem: Compiler warnings without termguicolors feature.
Solution: Add #ifdef. (John Marriott) Cleanup the code a bit.
Bram Moolenaar [Thu, 22 Feb 2018 20:07:09 +0000 (21:07 +0100)]
patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Problem: Cannot use 24 bit colors in MS-Windows console.
Solution: Add support for vcon. (Nobuhiro Takasaki, Ken Takasaki,
fixes #1270, fixes #2060)
Bram Moolenaar [Thu, 22 Feb 2018 10:42:49 +0000 (11:42 +0100)]
patch 8.0.1530: dump test fails when using a shadow directory
Problem: Dump test fails when using a shadow directory.
Solution: Add the directory to the list of symlinks to make (Elimar
Riesebieter)
Bram Moolenaar [Tue, 20 Feb 2018 20:46:05 +0000 (21:46 +0100)]
patch 8.0.1529: assert_equalfile() does not close file descriptors
Problem: Assert_equalfile() does not close file descriptors. (Coverity)
Solution: Close the file descriptors.
Bram Moolenaar [Tue, 20 Feb 2018 20:44:45 +0000 (21:44 +0100)]
patch 8.0.1528: dead code found
Problem: Dead code found.
Solution: Remove the useless lines. (CodeAi, closes #2656)
Bram Moolenaar [Tue, 20 Feb 2018 16:09:16 +0000 (17:09 +0100)]
patch 8.0.1527: screen dump test fails on MS-Windows
Problem: Screen dump test fails on MS-Windows.
Solution: Skip dump test on MS-Windows for now.
Bram Moolenaar [Tue, 20 Feb 2018 14:51:40 +0000 (15:51 +0100)]
patch 8.0.1526: no test using a screen dump yet
Problem: No test using a screen dump yet.
Solution: Add a test for C syntax highlighting. Add helper functions.
Bram Moolenaar [Mon, 19 Feb 2018 22:10:02 +0000 (23:10 +0100)]
patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Problem: Using :wqa exits even if a job runs in a terminal window. (Jason
Felice)
Solution: Check if a terminal has a running job. (closes #2654)
Bram Moolenaar [Mon, 19 Feb 2018 20:50:42 +0000 (21:50 +0100)]
patch 8.0.1524: compiler warnings for uninitialized variables
Problem: Compiler warnings for uninitialized variables. (Tony Mechelynck)
Solution: Initialize variables.
Bram Moolenaar [Sun, 18 Feb 2018 21:13:29 +0000 (22:13 +0100)]
patch 8.0.1523: cannot write and read terminal screendumps
Problem: Cannot write and read terminal screendumps.
Solution: Add term_dumpwrite(), term_dumpread() and term_dumpdiff().
Also add assert_equalfile().
Bram Moolenaar [Sat, 17 Feb 2018 19:35:29 +0000 (20:35 +0100)]
patch 8.0.1522: popup menu is positioned in the wrong place
Problem: Popup menu is positioned in the wrong place. (Davit Samvelyan,
Boris Staletic)
Solution: Correct computation of the column and the conditions for that.
(Hirohito Higashi, closes #2640)
Bram Moolenaar [Fri, 16 Feb 2018 19:01:04 +0000 (20:01 +0100)]
patch 8.0.1521: Shift-Tab does not work in a terminal window
Problem: Shift-Tab does not work in a terminal window.
Solution: Recognize Shift-Tab key press. (Jsees Luehrs, closes #2644)
Bram Moolenaar [Tue, 13 Feb 2018 20:19:21 +0000 (21:19 +0100)]
patch 8.0.1520: cursor in wrong line when using a WinBar in Terminal window
Problem: Cursor is in the wrong line when using a WinBar in a Terminal
window.
Solution: Adjust the row number. (Christian Brabandt, closes #2362)
Bram Moolenaar [Tue, 13 Feb 2018 18:21:17 +0000 (19:21 +0100)]
patch 8.0.1519: getchangelist() does not use argument as bufname()
Problem: Getchangelist() does not use argument as bufname().
Solution: Use get_buf_tv(). (Yegappan Lakshmanan, closes #2641)
Bram Moolenaar [Tue, 13 Feb 2018 17:05:18 +0000 (18:05 +0100)]
patch 8.0.1518: error messages suppressed after ":silent! try"
Problem: Error messages suppressed after ":silent! try". (Ben Reilly)
Solution: Restore emsg_silent before executing :try. (closes #2531)
Bram Moolenaar [Tue, 13 Feb 2018 15:35:06 +0000 (16:35 +0100)]
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Problem: Invalid memory acces with pattern using look-behind match.
(Dominique Pelle)
Solution: Get a pointer to the right line.
Bram Moolenaar [Tue, 13 Feb 2018 14:17:58 +0000 (15:17 +0100)]
patch 8.0.1516: errors for job options are not very specific
Problem: Errors for job options are not very specific.
Solution: Add more specific error messages.
Bram Moolenaar [Tue, 13 Feb 2018 13:07:18 +0000 (14:07 +0100)]
patch 8.0.1515: BufWinEnter event fired when opening hidden terminal
Problem: BufWinEnter event fired when opening hidden terminal.
Solution: Do not fire BufWinEnter when the terminal is midden and does not
open a window. (Kenta Sato, closes #2636)
Bram Moolenaar [Tue, 13 Feb 2018 12:59:59 +0000 (13:59 +0100)]
patch 8.0.1514: getting the list of changes is not easy
Problem: Getting the list of changes is not easy.
Solution: Add the getchangelist() function. (Yegappan Lakshmanan,
closes #2634)
Bram Moolenaar [Tue, 13 Feb 2018 12:33:29 +0000 (13:33 +0100)]
patch 8.0.1513: the jumplist is not always properly cleaned up
Problem: The jumplist is not always properly cleaned up.
Solution: Call fname2fnum() before cleanup_jumplist(). (Yegappan Lakshmanan)
Bram Moolenaar [Tue, 13 Feb 2018 12:12:11 +0000 (13:12 +0100)]
patch 8.0.1512: warning for possibly using NULL pointer
Problem: Warning for possibly using NULL pointer. (Coverity)
Solution: Skip using the pointer if it's NULL.
Bram Moolenaar [Tue, 13 Feb 2018 11:57:42 +0000 (12:57 +0100)]
patch 8.0.1511: some code for the debugger watch expression is clumsy
Problem: Some code for the debugger watch expression is clumsy.
Solution: Clean up the code.
Bram Moolenaar [Tue, 13 Feb 2018 11:26:14 +0000 (12:26 +0100)]
patch 8.0.1510: cannot test if a command causes a beep
Problem: Cannot test if a command causes a beep.
Solution: Add assert_beeps().
Bram Moolenaar [Mon, 12 Feb 2018 21:49:00 +0000 (22:49 +0100)]
patch 8.0.1509: test for failing drag-n-drop command no longer fails
Problem: Test for failing drag-n-drop command no longer fails.
Solution: Check for the "dnd" feature.
Bram Moolenaar [Mon, 12 Feb 2018 21:08:06 +0000 (22:08 +0100)]
patch 8.0.1508: the :drop command is not always available
Problem: The :drop command is not always available.
Solution: Include :drop in all builds. (Yasuhiro Matsumoto, closes #2639)
Bram Moolenaar [Mon, 12 Feb 2018 20:31:35 +0000 (21:31 +0100)]
patch 8.0.1507: timer test is a bit flaky
Problem: Timer test is a bit flaky.
Solution: Add it to the list of flaky tests.
Bram Moolenaar [Mon, 12 Feb 2018 19:58:11 +0000 (20:58 +0100)]
patch 8.0.1506: new version of HP NonStop (Tandem) doesn't like a header
Problem: New version of HP NonStop (Tandem) doesn't like the default header
for setenv().
Solution: Put a #ifdef around the setenv() entry. (Joachim Schmitz)