Skip to content

Commit

Permalink
vim: Import v8.0.1451
Browse files Browse the repository at this point in the history
* 8.0.1451: difficult to set the python home directories properly
* 8.0.1450: GUI: endless loop when stopping cursor blinking
* 8.0.1449: slow redrawing with DirectX
* 8.0.1448: segfault with exception inside :rubyfile command
* 8.0.1447: still too many old style tests
* 8.0.1446: acessing freed memory after window command in auto command
* 8.0.1445: cannot act on edits in the command line
* 8.0.1444: missing -D_FILE_OFFSET_BITS=64 may cause problems
* 8.0.1443: compiler complains about uninitialized variable
  • Loading branch information
chrisbra committed Jan 31, 2018
1 parent ba26cc9 commit 2614169
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gitlog.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* [8.0.1442](https://github.com/vim/vim/releases/tag/v8.0.1442): using pointer before it is set\n* [8.0.1441](https://github.com/vim/vim/releases/tag/v8.0.1441): using ":undo 0" leaves undo in wrong state\n* [8.0.1440](https://github.com/vim/vim/releases/tag/v8.0.1440): terminal window: some vterm responses are delayed\n* [8.0.1439](https://github.com/vim/vim/releases/tag/v8.0.1439): if cscope fails a search Vim may hang
* [8.0.1451](https://github.com/vim/vim/releases/tag/v8.0.1451): difficult to set the python home directories properly\n* [8.0.1450](https://github.com/vim/vim/releases/tag/v8.0.1450): GUI: endless loop when stopping cursor blinking\n* [8.0.1449](https://github.com/vim/vim/releases/tag/v8.0.1449): slow redrawing with DirectX\n* [8.0.1448](https://github.com/vim/vim/releases/tag/v8.0.1448): segfault with exception inside :rubyfile command\n* [8.0.1447](https://github.com/vim/vim/releases/tag/v8.0.1447): still too many old style tests\n* [8.0.1446](https://github.com/vim/vim/releases/tag/v8.0.1446): acessing freed memory after window command in auto command\n* [8.0.1445](https://github.com/vim/vim/releases/tag/v8.0.1445): cannot act on edits in the command line\n* [8.0.1444](https://github.com/vim/vim/releases/tag/v8.0.1444): missing -D_FILE_OFFSET_BITS=64 may cause problems\n* [8.0.1443](https://github.com/vim/vim/releases/tag/v8.0.1443): compiler complains about uninitialized variable
2 changes: 1 addition & 1 deletion vim
Submodule vim updated 59 files
+8 −1 runtime/doc/autocmd.txt
+32 −18 runtime/doc/options.txt
+2 −0 runtime/doc/quickref.txt
+8 −0 runtime/optwin.vim
+3 −3 src/Makefile
+12 −0 src/auto/configure
+1 −8 src/channel.c
+14 −0 src/configure.ac
+5 −7 src/edit.c
+5 −0 src/ex_getln.c
+1 −0 src/fileio.c
+4 −10 src/getchar.c
+39 −15 src/gui.c
+85 −13 src/gui_dwrite.cpp
+1 −0 src/gui_dwrite.h
+6 −6 src/gui_gtk_x11.c
+3 −2 src/gui_mac.c
+3 −3 src/gui_photon.c
+16 −31 src/gui_w32.c
+3 −3 src/gui_x11.c
+10 −3 src/if_python.c
+12 −3 src/if_python3.c
+11 −4 src/if_ruby.c
+14 −3 src/macros.h
+7 −5 src/main.c
+2 −0 src/message.c
+7 −41 src/netbeans.c
+18 −0 src/option.c
+6 −0 src/option.h
+3 −0 src/proto/gui.pro
+2 −2 src/proto/gui_gtk_x11.pro
+1 −1 src/proto/gui_mac.pro
+1 −1 src/proto/gui_photon.pro
+1 −1 src/proto/gui_w32.pro
+1 −1 src/proto/gui_x11.pro
+1 −0 src/proto/term.pro
+13 −10 src/screen.c
+2 −8 src/search.c
+21 −0 src/term.c
+2 −3 src/testdir/Make_all.mak
+3 −3 src/testdir/Make_vms.mms
+2 −2 src/testdir/main.aap
+0 −136 src/testdir/test15.in
+0 −111 src/testdir/test15.ok
+0 −114 src/testdir/test36.in
+0 −105 src/testdir/test36.ok
+0 −90 src/testdir/test50.in
+0 −14 src/testdir/test50.ok
+12 −0 src/testdir/test_autocmd.vim
+240 −0 src/testdir/test_regex_char_classes.vim
+8 −0 src/testdir/test_ruby.vim
+70 −0 src/testdir/test_shortpathname.vim
+286 −0 src/testdir/test_textformat.vim
+11 −0 src/testdir/test_window_cmd.vim
+3 −10 src/ui.c
+5 −2 src/undo.c
+18 −0 src/version.c
+1 −0 src/vim.h
+9 −1 src/window.c

0 comments on commit 2614169

Please sign in to comment.