[vim] branch debian/sid updated (7823849 -> b4bc7d0)

James McCoy jamessan at debian.org
Fri Sep 9 11:45:42 UTC 2016


This is an automated email from the git hooks/post-receive script.

jamessan pushed a change to branch debian/sid
in repository vim.

      from  7823849   releasing package vim version 2:7.4.2330-1
      adds  33a80ee   patch 7.4.2331 Problem:    Using CTRL-X CTRL-V to complete a command line from Insert mode             does not work after entering an expression on the command line. Solution:   Don't use "ccline" when not actually using a command line. (test             by Hirohito Higashi)
      adds  75537a9   patch 7.4.2332 Problem:    Crash when stop_timer() is called in a callback of a callback.             Vim hangs when the timer callback uses too much time. Solution:   Set tr_id to -1 when a timer is to be deleted. Don't keep calling             callbacks forever. (Ozaki Kiichi)
      adds  3184509   patch 7.4.2333 Problem:    Outdated comments in test. Solution:   Cleanup normal mode test. (Christian Brabandt)
      adds  1b0c2fc   patch 7.4.2334 Problem:    On MS-Windows test_getcwd leaves Xtopdir behind. Solution:   Set 'noswapfile'. (Michael Soyka)
      adds  72b4b87   patch 7.4.2335 Problem:    taglist() is slow. (Luc Hermitte) Solution:   Check for CTRL-C less often when doing a linear search. (closes             #1044)
      adds  df0db16   patch 7.4.2336 Problem:    Running normal mode tests leave a couple of files behind.             (Yegappan Lakshmanan) Solution:   Delete the files. (Christian Brabandt)
      adds  77b6425   patch 7.4.2337 Problem:    taglist() is still slow. (Luc Hermitte) Solution:   Check for CTRL-C less often when finding duplicates.
      adds  7947312   patch 7.4.2338 Problem:    Can't build with small features. (John Marriott) Solution:   Nearly always define FEAT_TAG_BINS.
      adds  100f5c9   patch 7.4.2339 Problem:    Tab page test fails when run as fake root. Solution:   Check 'buftype' instead of 'filetype'. (James McCoy, closes #1042)
      adds  6384c5d   patch 7.4.2340 Problem:    MS-Windows: Building with Ruby uses old version. Solution:   Update to 2.2.X. Use clearer name for the API version. (Ken             Takata)
      adds  64d8e25   Updated runtime files.
      adds  aeac900   patch 7.4.2341 Problem:    Tiny things.  Test doesn't clean up properly. Solution:   Adjust comment and white space. Restore option value.
      adds  1b0c1d0   patch 7.4.2342 Problem:    Typo in MS-Windows build script. Solution:   change "w2" to "22".
      adds  53f1673   patch 7.4.2343 Problem:    Too many old file tests. Solution:   Turn several into new style tests. (Yegappan Lakshmanan)
      adds  169ebb0   patch 7.4.2344 Problem:    The "Reading from channel output..." message can be unwanted.             Appending to a buffer leaves an empty first line behind. Solution:   Add the "out_msg" and "err_msg" options. Writing the first line             overwrites the first, empty line.
      adds  0eaadec   patch 7.4.2345 Problem:    For MinGW RUBY_API_VER_LONG isn't set correctly.  Many default             version numbers are outdated. Solution:   Set RUBY_API_VER_LONG to RUBY_VER_LONG. Use latest stable releases             for defaults. (Ken Takata)
      adds  f18c4db   patch 7.4.2346 Problem:    Autocommand test fails when run directly, passes when run as part             of test_alot. Solution:   Add command to make the cursor move.  Close a tab page.
      adds  abd468e   Updated runtime files
      adds  c4a908e   patch 7.4.2347 Problem:    Crash when closing a buffer while Visual mode is active.             (Dominique Pelle) Solution:   Adjust the position before computing the number of lines.             When closing the current buffer stop Visual mode.
       new  b585e09   Merge tag 'v7.4.2347' into debian/sid
       new  b4bc7d0   Start changelog for 7.4.2347-1

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Makefile                                           |   2 +-
 debian/changelog                                   |   7 +
 debian/changelog.upstream                          |  16 +
 ...s-decision-to-disable-modelines-by-defaul.patch |   4 +-
 ...ng-a-vimrc.tiny-when-Vim-is-invoked-as-vi.patch |   4 +-
 ...ing-compilation-date-in-SOURCE_DATE_EPOCH.patch |   2 +-
 runtime/colors/koehler.vim                         |   3 +-
 runtime/doc/autocmd.txt                            |  18 +-
 runtime/doc/channel.txt                            |  16 +-
 runtime/doc/eval.txt                               |   7 +-
 runtime/doc/if_lua.txt                             |   6 +
 runtime/doc/if_mzsch.txt                           |   3 +
 runtime/doc/if_perl.txt                            |   3 +
 runtime/doc/if_pyth.txt                            |  12 +-
 runtime/doc/if_ruby.txt                            |   7 +-
 runtime/doc/if_tcl.txt                             |   3 +
 runtime/doc/message.txt                            |   3 +-
 runtime/doc/options.txt                            |  11 +-
 runtime/doc/starting.txt                           |   5 +-
 runtime/doc/tags                                   |   7 +
 runtime/doc/term.txt                               |   9 +-
 runtime/doc/todo.txt                               |  53 +--
 runtime/doc/usr_41.txt                             |   3 +-
 runtime/doc/various.txt                            |   4 +-
 runtime/doc/version8.txt                           | 434 ++++++++++++++++++++-
 runtime/ftplugin/python.vim                        |  34 +-
 runtime/ftplugin/scala.vim                         |   2 -
 runtime/syntax/awk.vim                             |  12 +-
 runtime/syntax/help.vim                            |   4 +-
 runtime/syntax/prolog.vim                          |   6 +-
 runtime/syntax/uil.vim                             |   4 +-
 runtime/syntax/vim.vim                             |  40 +-
 src/INSTALLpc.txt                                  |  14 +-
 src/Make_cyg_ming.mak                              |  53 +--
 src/Make_mvc.mak                                   |  51 +--
 src/Makefile                                       |   5 +-
 src/bigvim.bat                                     |   2 +-
 src/buffer.c                                       |   9 +
 src/channel.c                                      |  41 +-
 src/edit.c                                         |   2 +-
 src/evalfunc.c                                     |  27 +-
 src/ex_cmds.c                                      |   2 +-
 src/ex_cmds2.c                                     | 145 +++----
 src/ex_getln.c                                     |   9 +-
 src/feature.h                                      |   2 +-
 src/message.c                                      |   2 +-
 src/normal.c                                       |   5 +-
 src/proto/ex_cmds2.pro                             |   2 +-
 src/proto/ex_getln.pro                             |   2 +-
 src/structs.h                                      |  11 +-
 src/tag.c                                          |  10 +-
 src/testdir/Make_all.mak                           |  10 +-
 src/testdir/test101.in                             |  48 ---
 src/testdir/test101.ok                             |  12 -
 src/testdir/test18.in                              |  16 -
 src/testdir/test18.ok                              |   4 -
 src/testdir/test2.in                               |  29 --
 src/testdir/test2.ok                               |   4 -
 src/testdir/test21.in                              |  19 -
 src/testdir/test21.ok                              |   2 -
 src/testdir/test6.in                               |  24 --
 src/testdir/test6.ok                               |  18 -
 src/testdir/test_arglist.vim                       |  29 ++
 src/testdir/test_autocmd.vim                       |   7 +
 src/testdir/test_channel.vim                       |  56 ++-
 src/testdir/test_charsearch.vim                    |   4 +-
 src/testdir/test_fnameescape.vim                   |   2 +-
 src/testdir/test_getcwd.in                         |   3 +
 src/testdir/test_gf.vim                            |  33 ++
 src/testdir/test_hlsearch.vim                      |  34 ++
 src/testdir/test_normal.vim                        |  55 +--
 src/testdir/test_popup.vim                         |  37 +-
 src/testdir/test_smartindent.vim                   |  14 +
 src/testdir/test_tabpage.vim                       |   2 +-
 src/testdir/test_tagjump.vim                       |  30 ++
 src/testdir/test_timers.vim                        |  30 ++
 src/version.c                                      |  34 ++
 77 files changed, 1170 insertions(+), 524 deletions(-)
 delete mode 100644 src/testdir/test101.in
 delete mode 100644 src/testdir/test101.ok
 delete mode 100644 src/testdir/test18.in
 delete mode 100644 src/testdir/test18.ok
 delete mode 100644 src/testdir/test2.in
 delete mode 100644 src/testdir/test2.ok
 delete mode 100644 src/testdir/test21.in
 delete mode 100644 src/testdir/test21.ok
 delete mode 100644 src/testdir/test6.in
 delete mode 100644 src/testdir/test6.ok
 create mode 100644 src/testdir/test_gf.vim
 create mode 100644 src/testdir/test_hlsearch.vim
 create mode 100644 src/testdir/test_smartindent.vim

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-vim/vim.git



More information about the pkg-vim-maintainers mailing list