summaryrefslogtreecommitdiffstats
path: root/runtime/doc/version8.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-11 23:05:48 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-11 23:05:48 +0100
commit469bdbde1e8ea8110705327ab193acca79296742 (patch)
tree2acc911d913510f0766ae9212ed659151ebf83ce /runtime/doc/version8.txt
parent36698e34aacee4186e6f5f87f431626752fcb337 (diff)
Minor runtime file updates.
Diffstat (limited to 'runtime/doc/version8.txt')
-rw-r--r--runtime/doc/version8.txt78
1 files changed, 77 insertions, 1 deletions
diff --git a/runtime/doc/version8.txt b/runtime/doc/version8.txt
index c13fa10d08..84cfd7d854 100644
--- a/runtime/doc/version8.txt
+++ b/runtime/doc/version8.txt
@@ -1,4 +1,4 @@
-*version8.txt* For Vim version 8.1. Last change: 2019 Dec 09
+*version8.txt* For Vim version 8.1. Last change: 2019 Dec 11
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41061,6 +41061,82 @@ Problem: MS-Windows: test_iminsert fails without IME support.
Solution: Skip the test when imgetstatus() doesn't work.
Files: src/testdir/test_iminsert.vim
+Patch 8.1.2411
+Problem: Function argument copied unnecessarily.
+Solution: Use the argument directly.
+Files: src/ex_docmd.c
+
+Patch 8.1.2412
+Problem: Crash when evaluating expression with error. (Dhiraj Mishra)
+Solution: Check parsing failed. (closes #5329)
+Files: src/eval.c, src/testdir/test_lambda.vim
+
+Patch 8.1.2413
+Problem: Cannot update ex_cmdidxs.h on MS-Windows.
+Solution: Add build rules and dependencies. (Ken Takata, closes #5337)
+Files: src/Make_cyg_ming.mak, src/Make_mvc.mak, src/Make_vms.mms
+
+Patch 8.1.2414
+Problem: MS-Windows: properties dialog box shows wrong character.
+Solution: Explicitly specify encoding. (Ken Takata, closes #5338)
+Files: src/vim.rc
+
+Patch 8.1.2415
+Problem: Popup menu flickers if an info popup is used. (Nick Jensen)
+Solution: Set the pum_skip_redraw flag.
+Files: src/popupmenu.c
+
+Patch 8.1.2416
+Problem: Loading menus sets v:errmsg.
+Solution: Avoid setting v:errmsg and add a test for that. (Jason Franklin)
+Files: runtime/delmenu.vim, runtime/menu.vim, src/testdir/test_menu.vim
+
+Patch 8.1.2417
+Problem: MinGW/Cygwin build does not clean up all files.
+Solution: Delete *.map files. (Michael Soyka)
+Files: src/Make_cyg_ming.mak
+
+Patch 8.1.2418
+Problem: bufnr('$') is wrong after recycling popup buffer.
+Solution: Sort the buffer list by buffer number. (closes #5335)
+Files: src/buffer.c, src/testdir/test_popupwin.vim
+
+Patch 8.1.2419
+Problem: With a long file name the hit-enter prompt appears. (J. Lewis
+ Muir)
+Solution: When checking for text to wrap don't do this when outputing a CR.
+Files: src/message.c, src/testdir/test_display.vim,
+ src/testdir/dumps/Test_long_file_name_1.dump
+
+Patch 8.1.2420
+Problem: Crash when calling popup_close() in win_execute().
+Solution: Disallow popup_close() in popup window. (Yasuhiro Matsumoto,
+ closes #5345)
+Files: src/popupwin.c, src/testdir/test_popupwin.vim
+
+Patch 8.1.2421
+Problem: Test88 is old style.
+Solution: Turn into a new style test. (Yegappan Lakshmanan, closes #5347)
+Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/Make_vms.mms,
+ src/testdir/test88.in, src/testdir/test88.ok,
+ src/testdir/test_conceal.vim, src/testdir/test_python2.vim
+ src/testdir/test_python3.vim
+
+Patch 8.1.2422
+Problem: "make depend" does not work correctly for libvterm.
+Solution: Fix build dependencies. And a few minor improvements.
+Files: src/Makefile, src/filepath.c, src/insexpand.c, src/main.c
+
+Patch 8.1.2423
+Problem: MS-Windows properties shows version as "8, 1, 0".
+Solution: Use "8.1.0". (Ken Takata, closes #5342)
+Files: src/vim.rc
+
+Patch 8.1.2424
+Problem: MS-Windows: console buffer is resized unnecessarily.
+Solution: Only call ResizeConBuf() when the size differs. (Nobuhiro
+ Takasaki, closes #5343)
+Files: src/os_win32.c
vim:tw=78:ts=8:noet:ft=help:norl: