summaryrefslogtreecommitdiff
path: root/runtime/doc/version8.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-09-12 12:17:26 +0200
committerBram Moolenaar <Bram@vim.org>2016-09-12 12:17:26 +0200
commit220adb1e9f9e0b27d28185167d2730bf2f93057d (patch)
tree81952477c4f09698a287c23d3e04c9b92f870866 /runtime/doc/version8.txt
parente1c8c7a6742be6072290f9aa54ae358060d9c42f (diff)
downloadvim-git-220adb1e9f9e0b27d28185167d2730bf2f93057d.tar.gz
A few more runtime updates.
Diffstat (limited to 'runtime/doc/version8.txt')
-rw-r--r--runtime/doc/version8.txt37
1 files changed, 34 insertions, 3 deletions
diff --git a/runtime/doc/version8.txt b/runtime/doc/version8.txt
index f18559443..2e02523b2 100644
--- a/runtime/doc/version8.txt
+++ b/runtime/doc/version8.txt
@@ -1,4 +1,4 @@
-*version8.txt* For Vim version 8.0. Last change: 2016 Sep 09
+*version8.txt* For Vim version 8.0. Last change: 2016 Sep 12
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -14456,10 +14456,41 @@ Solution: Skip when the index is negative.
Files: src/ex_getln.c
Patch 7.4.2358
-Problem: Compiler warnings with Solaris Studio when using GTK3.
+Problem: Compiler warnings with Solaris Studio when using GTK3. (Danek
+ Duvall)
Solution: Define FUNC2GENERIC depending on the system. (Kazunobu Kuriyama)
Files: src/gui.h, src/gui_beval.c, src/gui_gtk_f.c
-[STILL MORE COMING!]
+Patch 7.4.2359
+Problem: Memory leak in timer_start().
+Solution: Check the right field to be NULL.
+Files: src/evalfunc.c, src/testdir/test_timers.vim
+
+Patch 7.4.2360
+Problem: Invalid memory access when formatting. (Dominique Pelle)
+Solution: Make sure cursor line and column are associated.
+Files: src/misc1.c
+
+Patch 7.4.2361
+Problem: Checking for last_timer_id to overflow is not reliable. (Ozaki
+ Kiichi)
+Solution: Check for the number not going up.
+Files: src/ex_cmds2.c
+
+Patch 7.4.2362
+Problem: Illegal memory access with ":1@". (Dominique Pelle)
+Solution: Correct cursor column after setting the line number. Also avoid
+ calling end_visual_mode() when not in Visual mode.
+Files: src/ex_docmd.c, src/buffer.c
+
+Patch 7.4.2363
+Problem: Superfluous function prototypes.
+Solution: Remove them.
+Files: src/regexp.c
+
+Patch 7.4.2364
+Problem: Sort test sometimes fails.
+Solution: Add it to the list of flaky tests.
+Files: src/testdir/runtest.vim
vim:tw=78:ts=8:ft=help:norl: