Skip to content

Commit

Permalink
vim: Import v8.1.0366
Browse files Browse the repository at this point in the history
* 8.1.0366: pieces of the xdiff code are not used
* 8.1.0365: function profile doesn't specify where it was defined
* 8.1.0364: compiler warning in xdiff code
* 8.1.0363: internal diff isn't used by default as advertised
* 8.1.0362: cannot get the script line number when executing a function
* 8.1.0361: remote user not used for completion
* 8.1.0360: using an external diff program is slow and inflexible
* Update runtime files.
  • Loading branch information
chrisbra committed Sep 10, 2018
1 parent ca73944 commit 3972dd9
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.1.0359](https://github.com/vim/vim/releases/tag/v8.1.0359): no clue what test failed when using a screendump twice\n* [8.1.0358](https://github.com/vim/vim/releases/tag/v8.1.0358): crash when using term_dumpwrite() after the job finished\n* [8.1.0357](https://github.com/vim/vim/releases/tag/v8.1.0357): instructions for tests are outdated\n* [8.1.0356](https://github.com/vim/vim/releases/tag/v8.1.0356): using :s with 'incsearch' prevents CTRL-R CTRL-W\n* [8.1.0355](https://github.com/vim/vim/releases/tag/v8.1.0355): incorrect adjusting the popup menu for the preview window
* [8.1.0366](https://github.com/vim/vim/releases/tag/v8.1.0366): pieces of the xdiff code are not used\n* [8.1.0365](https://github.com/vim/vim/releases/tag/v8.1.0365): function profile doesn't specify where it was defined\n* [8.1.0364](https://github.com/vim/vim/releases/tag/v8.1.0364): compiler warning in xdiff code\n* [8.1.0363](https://github.com/vim/vim/releases/tag/v8.1.0363): internal diff isn't used by default as advertised\n* [8.1.0362](https://github.com/vim/vim/releases/tag/v8.1.0362): cannot get the script line number when executing a function\n* [8.1.0361](https://github.com/vim/vim/releases/tag/v8.1.0361): remote user not used for completion\n* [8.1.0360](https://github.com/vim/vim/releases/tag/v8.1.0360): using an external diff program is slow and inflexible\n* Update runtime files.
2 changes: 1 addition & 1 deletion vim
Submodule vim updated 75 files
+16 −0 Filelist
+16 −11 runtime/doc/cmdline.txt
+6 −3 runtime/doc/diff.txt
+11 −2 runtime/doc/eval.txt
+27 −7 runtime/doc/options.txt
+6 −0 runtime/doc/syntax.txt
+3 −0 runtime/doc/tags
+12 −1 runtime/doc/terminal.txt
+21 −12 runtime/doc/todo.txt
+5 −6 runtime/ftplugin/vim.vim
+17 −12 runtime/syntax/sh.vim
+2 −130 runtime/syntax/tex.vim
+6 −6 runtime/tutor/tutor.ru
+6 −6 runtime/tutor/tutor.ru.cp1251
+3 −1 src/Make_all.mak
+53 −0 src/Make_cyg_ming.mak
+39 −2 src/Make_mvc.mak
+51 −2 src/Makefile
+5 −4 src/buffer.c
+632 −181 src/diff.c
+14 −9 src/eval.c
+3 −2 src/evalfunc.c
+27 −25 src/ex_cmds2.c
+31 −11 src/ex_docmd.c
+3 −3 src/ex_getln.c
+8 −7 src/fileio.c
+5 −3 src/getchar.c
+2 −2 src/globals.h
+9 −8 src/main.c
+2 −2 src/menu.c
+51 −18 src/misc1.c
+457 −443 src/option.c
+1 −1 src/proto/eval.pro
+22 −7 src/structs.h
+12 −6 src/syntax.c
+3 −2 src/term.c
+20 −0 src/testdir/dumps/Test_diff_01.dump
+20 −0 src/testdir/dumps/Test_diff_02.dump
+20 −0 src/testdir/dumps/Test_diff_03.dump
+20 −0 src/testdir/dumps/Test_diff_04.dump
+20 −0 src/testdir/dumps/Test_diff_05.dump
+20 −0 src/testdir/dumps/Test_diff_06.dump
+20 −0 src/testdir/dumps/Test_diff_07.dump
+20 −0 src/testdir/dumps/Test_diff_08.dump
+20 −0 src/testdir/dumps/Test_diff_09.dump
+20 −0 src/testdir/dumps/Test_diff_10.dump
+20 −0 src/testdir/dumps/Test_diff_11.dump
+20 −0 src/testdir/dumps/Test_diff_12.dump
+20 −0 src/testdir/dumps/Test_diff_13.dump
+20 −0 src/testdir/dumps/Test_diff_14.dump
+20 −0 src/testdir/dumps/Test_diff_15.dump
+20 −0 src/testdir/dumps/Test_diff_16.dump
+1 −0 src/testdir/test_alot.vim
+169 −15 src/testdir/test_diffmode.vim
+66 −0 src/testdir/test_expand_func.vim
+10 −5 src/testdir/test_maparg.vim
+151 −146 src/testdir/test_profile.vim
+22 −11 src/userfunc.c
+14 −0 src/version.c
+504 −0 src/xdiff/COPYING
+16 −0 src/xdiff/README.txt
+142 −0 src/xdiff/xdiff.h
+1,043 −0 src/xdiff/xdiffi.c
+64 −0 src/xdiff/xdiffi.h
+332 −0 src/xdiff/xemit.c
+36 −0 src/xdiff/xemit.h
+386 −0 src/xdiff/xhistogram.c
+61 −0 src/xdiff/xinclude.h
+54 −0 src/xdiff/xmacros.h
+390 −0 src/xdiff/xpatience.c
+483 −0 src/xdiff/xprepare.c
+34 −0 src/xdiff/xprepare.h
+67 −0 src/xdiff/xtypes.h
+425 −0 src/xdiff/xutils.c
+47 −0 src/xdiff/xutils.h

0 comments on commit 3972dd9

Please sign in to comment.