[vim] branch debian/experimental updated (5f62676 -> 65a766a)

James McCoy jamessan at debian.org
Sun Jul 2 17:04:36 UTC 2017


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

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

      from  5f62676   Merge DEB_VENDOR-guarded changes from Ubuntu
       new  0062111   Remove test's pyc files during cleanup
      adds  06f1ed2   patch 8.0.0647: syntax highlighting can make cause a freeze
      adds  fadacf0   patch 8.0.0648: possible use of NULL pointer
      adds  9049298   patch 8.0.0649: when opening a help file the filetype is set several times
      adds  868831f   patch 8.0.0650: for extra help files the filetype is set more than once
      adds  157069b   patch 8.0.0651: build failure without the auto command feature
      adds  383aa84   patch 8.0.0652: unicode information is outdated
      adds  c768a20   patch 8.0.0653: the default highlight for QuickFixLine is not good
      adds  663bb23   patch 8.0.0654: no warning for text after :endfunction
      adds  d6abcd1   patch 8.0.0655: not easy to make sure a function does not exist
      adds  6f9a476   patch 8.0.0656: cannot use ! after some user commands
      adds  6a8958d   patch 8.0.0657: cannot get and set quickfix list items
      adds  d2c061d   patch 8.0.0658: spell test is old style
      adds  4d78589   patch 8.0.0659: no test for conceal mode
      adds  a1fed06   patch 8.0.0660: silent install on MS-Windows shows dialog
      adds  a529ce0   patch 8.0.0661: recognizing urxvt mouse codes does not work well
      adds  4670490   patch 8.0.0662: stray FIXME for fixed problem
      adds  f8be461   patch 8.0.0663: unexpected error message only when 'verbose' is set
      adds  6d006f9   patch 8.0.0664: mouse does not work in tmux
      adds  090209b   patch 8.0.0665: warning for uninitialized variable
      adds  5fe6912   patch 8.0.0666: dead for loop
      adds  53564f7   patch 8.0.0667: memory access error when command follows :endfunc
      adds  a1bd86e   patch 8.0.0668: nsis installer script does not work
      adds  24a9e34   patch 8.0.0669: CTRL-N at start of the buffer does not work correctly
      adds  1e8e145   patch 8.0.0670: can't use input() in a timer callback
      adds  4eb6531   patch 8.0.0671: hang when typing CTRL-C in confirm() in timer
      adds  cc0750d   patch 8.0.0672: third item of synconcealed() changes too often
      adds  ea20de8   patch 8.0.0673: build failure without conceal feature
      adds  5d7be4f   patch 8.0.0674: cannot build with eval but without timers
      adds  774e5a9   patch 8.0.0675: 'colorcolumn' has a higher priority than 'hlsearch'
      adds  182a17b   patch 8.0.0676: crash when closing quickfix window in autocmd
      adds  1814183   patch 8.0.0677: setting 'filetype' may switch buffers
      adds  8eeeba8   patch 8.0.0678: closing a window does not trigger resizing
      adds  41cc038   patch 8.0.0679: using freed memory
      adds  07ecfa6   patch 8.0.0680: plugins in start packages are sourced twice
      adds  18d90b9   patch 8.0.0681: unnamed register only contains the last deleted text
      adds  0b2eef2   patch 8.0.0682: no test for synIDtrans()
      adds  2e147ca   patch 8.0.0683: visual bell flashes too quickly
      adds  28b2382   patch 8.0.0684: old style tests are not nice
      adds  e6bf655   patch 8.0.0685: when conversion fails written file may be truncated
      adds  9f5f7bf   patch 8.0.0686: extra redraw when using CTRL-L in second window
      adds  86f100d   patch 8.0.0687: minor issues related to quickfix
      adds  9c4feff   patch 8.0.0688: cannot resize the window in a FileType autocommand
      adds  a693d05   patch 8.0.0689: ~ character not escaped when extending search pattern
      adds  c222684   patch 8.0.0690: compiler warning on non-Unix system
      adds  a83fe75   patch 8.0.0691: compiler warning without the linebreak feature
       new  00bef44   Merge tag 'v8.0.0691' into debian/experimental
       new  65a766a   Remove src/po/vim.pot during clean

The 3 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:
 debian/changelog                                   |   4 +-
 ...of-more-LaTeX-commands-for-tex-filetype-d.patch |   4 +-
 ...s-decision-to-disable-modelines-by-defaul.patch |   2 +-
 ...ng-a-vimrc.tiny-when-Vim-is-invoked-as-vi.patch |  12 +-
 ...ing-compilation-date-in-SOURCE_DATE_EPOCH.patch |   2 +-
 debian/rules                                       |   1 +
 nsis/gvim.nsi                                      |   1 +
 runtime/doc/eval.txt                               | 109 ++-
 runtime/doc/options.txt                            |  12 +-
 runtime/filetype.vim                               |  13 +-
 runtime/tools/unicode.vim                          |   6 +-
 src/Makefile                                       |   8 +-
 src/buffer.c                                       |   2 +-
 src/edit.c                                         |  16 +-
 src/evalfunc.c                                     |  30 +-
 src/ex_cmds.c                                      |  11 +-
 src/ex_cmds.h                                      |   8 +-
 src/ex_cmds2.c                                     |  67 +-
 src/ex_docmd.c                                     |   3 +-
 src/ex_getln.c                                     |   7 +-
 src/fileio.c                                       | 727 +++++++++++----------
 src/getchar.c                                      |   5 +
 src/globals.h                                      |   1 +
 src/keymap.h                                       |   2 +
 src/main.c                                         |  16 +-
 src/mbyte.c                                        | 161 +++--
 src/message.c                                      |   7 +
 src/misc1.c                                        |  30 +-
 src/misc2.c                                        |   1 +
 src/normal.c                                       |   8 +
 src/ops.c                                          |   4 +-
 src/option.c                                       |  94 ++-
 src/os_unix.c                                      |  17 +-
 src/proto/ex_cmds2.pro                             |   3 +-
 src/proto/message.pro                              |   1 +
 src/proto/syntax.pro                               |   2 +-
 src/proto/term.pro                                 |   1 +
 src/quickfix.c                                     | 121 +++-
 src/regexp.c                                       |  16 +-
 src/screen.c                                       |  68 +-
 src/structs.h                                      |   3 +
 src/syntax.c                                       |  47 +-
 src/term.c                                         | 216 +++---
 src/testdir/Make_all.mak                           |   3 -
 src/testdir/Make_vms.mms                           |   8 +-
 src/testdir/test58.in                              | 656 -------------------
 src/testdir/test58.ok                              | 289 --------
 src/testdir/test82.in                              | 103 ---
 src/testdir/test82.ok                              |   5 -
 src/testdir/test90.in                              |  53 --
 src/testdir/test90.ok                              |   6 -
 src/testdir/test_listlbr_utf8.vim                  |  15 +
 src/testdir/test_popup.vim                         |  14 +
 src/testdir/test_put.vim                           |  11 +
 src/testdir/test_quickfix.vim                      | 131 +++-
 src/testdir/test_search.vim                        |  20 +
 src/testdir/test_sha256.vim                        |  22 +
 src/testdir/test_spell.vim                         | 726 +++++++++++++++++++-
 src/testdir/test_startup.vim                       |  20 +-
 src/testdir/test_syntax.vim                        |  98 ++-
 src/testdir/test_timers.vim                        |  16 +
 src/testdir/test_utf8_comparisons.vim              |  95 +++
 src/testdir/test_vimscript.vim                     |  58 ++
 src/testdir/test_window_cmd.vim                    |  44 ++
 src/testdir/test_writefile.vim                     |  18 +
 src/userfunc.c                                     |  56 +-
 src/version.c                                      |  90 +++
 src/window.c                                       |   5 +-
 68 files changed, 2615 insertions(+), 1816 deletions(-)
 delete mode 100644 src/testdir/test58.in
 delete mode 100644 src/testdir/test58.ok
 delete mode 100644 src/testdir/test82.in
 delete mode 100644 src/testdir/test82.ok
 delete mode 100644 src/testdir/test90.in
 delete mode 100644 src/testdir/test90.ok
 create mode 100644 src/testdir/test_sha256.vim
 create mode 100644 src/testdir/test_utf8_comparisons.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