[vim] branch debian/sid updated (0328a09 -> a97dd48)

James McCoy jamessan at debian.org
Tue Sep 6 03:20:11 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  0328a09   Turn vim-gnome into a transitional package to vim-gtk3
      adds  89bcfda   Updated runtime files.  Remove version checks for Vim older than 6.0.
      adds  c628fdc   patch 7.4.2296 Problem:    No tests for :undolist and "U" command. Solution:   Add tests. (Dominique Pelle)
      adds  f37506f   Updated runtime files.  Remove HiLink commands.
      adds  d8b5549   patch 7.4.2297 Problem:    When starting a job that reads from a buffer and reaching the end,             the job hangs. Solution:   Close the pipe or socket when all lines were read.
      adds  0874a83   patch 7.4.2298 Problem:    It is not possible to close the "in" part of a channel. Solution:   Add ch_close_in().
      adds  04c4ce6   patch 7.4.2299 Problem:    QuickFixCmdPre and QuickFixCmdPost autocommands are not always             triggered. Solution:   Also trigger on ":expr", ":cbuffer", etc. (Yegappan Lakshmanan)
      adds  5c80908   patch 7.4.2300 Problem:    Get warning for deleting autocommand group when the autocommand             using the group is scheduled for deletion. (Pavol Juhas) Solution:   Check for deleted autocommand.
      adds  641ad6c   patch 7.4.2301 Problem:    MS-Windows: some files remain after testing. Solution:   Close the channel output file.  Wait for the file handle to be             closed before deleting the file.
      adds  f1b512a   patch 7.4.2302 Problem:    Default interface versions for MS-Windows are outdated. Solution:   Use Active Perl 5.24, Python 3.5.2.  Could only make it work with             Ruby 1.9.2.
      adds  779f2fc   patch 7.4.2303 Problem:    When using "is" the mode isn't always updated. Solution:   Redraw the command line. (Christian Brabandt)
      adds  417ccd7   patch 7.4.2304 Problem:    In a timer callback the timer itself can't be found or stopped.             (Thinca) Solution:   Do not remove the timer from the list, remember whether it was             freed.
      adds  19a1669   patch 7.4.2305 Problem:    Marks, writefile and nested function tests are old style. Solution:   Turn them into new style tests. (Yegappan Lakshmanan)
      adds  da9ce2c   patch 7.4.2306 Problem:    Default value for 'langremap' is wrong. Solution:   Set the right value. (Jürgen Krämer)  Add a test.
      adds  cd055da   patch 7.4.2307 Problem:    Several tests are old style. Solution:   Turn them into new style tests. (Yegappan Lakshmanan)
      adds  44f660c   patch 7.4.2308 Problem:    Old charsearch test still listed in Makefile. Solution:   Remove the line.
      adds  11fbc28   patch 7.4.2309 Problem:    Crash when doing tabnext in a BufUnload autocmd. (Dominique Pelle) Solution:   When detecting that the tab page changed, don't just abort but             delete the window where w_buffer is NULL.
      adds  a5d4121   patch 7.4.2310 Problem:    Accessing freed memory when a timer does not repeat. Solution:   Free after removing it. (Dominique Pelle)
      adds  dd905a2   patch 7.4.2311 Problem:    Appveyor 64 bit build still using Python 3.4 Solution:   Switch to Python 3.5. (Ken Takata, closes #1032)
      adds  5a49789   patch 7.4.2312 Problem:    Crash when autocommand moves to another tab. (Dominique Pelle) Solution:   When navigating to another window halfway the :edit command go             back to the right window.
      adds  b62cc36   patch 7.4.2313 Problem:    Crash when deleting an augroup and listing an autocommand.             (Dominique Pelle) Solution:   Make sure deleted_augroup is valid.
      adds  de653f0   patch 7.4.2314 Problem:    No error when deleting an augroup while it's the current one. Solution:   Disallow deleting an augroup when it's the current one.
      adds  87bc3f7   patch 7.4.2315 Problem:    Insufficient testing for Normal mode commands. Solution:   Add a big test. (Christian Brabandt, closes #1029)
      adds  f7f3e32   patch 7.4.2316 Problem:    Channel sort test is flaky. Solution:   Add a check the output has been read.
      adds  0913a10   patch 7.4.2317 Problem:    Normal mode tests fail on MS-Windows. Solution:   Do some tests only on Unix.  Set 'fileformat' to "unix".
      adds  349e7d9   patch 7.4.2318 Problem:    When 'incsearch' is not set CTRL-T and CTRL-G are not inserted as             before. Solution:   Move #ifdef and don't use goto.
      adds  b07a82b   patch 7.4.2319 Problem:    No way for a system wide vimrc to stop loading defaults.vim.             (Christian Hesse) Solution:   Bail out of defaults.vim if skip_defaults_vim was set.
      adds  dda933d   patch 7.4.2320 Problem:    Redraw problem when using 'incsearch'. Solution:   Save the current view when deleting characters. (Christian             Brabandt) Fix that the '" mark is set in the wrong position. Don't             change the search start when using BS.
      adds  dac1947   patch 7.4.2321 Problem:    When a test is commented out we forget about it. Solution:   Let a test throw an exception with "Skipped" and list skipped test             functions. (Christian Brabandt)
      adds  bc54f3f   patch 7.4.2322 Problem:    Access memory beyond the end of the line. (Dominique Pelle) Solution:   Adjust the cursor column.
      adds  d77f9d5   patch 7.4.2323 Problem:    Using freed memory when using 'formatexpr'. (Dominique Pelle) Solution:   Make a copy of 'formatexpr' before evaluating it.
      adds  e0ab94e   patch 7.4.2324 Problem:    Crash when editing a new buffer and BufUnload autocommand wipes             out the new buffer. (Norio Takagi) Solution:   Don't allow wiping out this buffer. (partly by Hirohito Higashi)             Move old style test13 into test_autocmd. Avoid ml_get error when             editing a file.
      adds  30180b8   patch 7.4.2325 Problem:    Tiny build fails. Solution:   Add #ifdef.
      adds  d5824ce   patch 7.4.2326 Problem:    Illegal memory access when Visual selection starts in invalid             position. (Dominique Pelle) Solution:   Correct position when needed.
      adds  c8fe338   patch 7.4.2327 Problem:    Freeing a variable that is on the stack. Solution:   Don't free res_tv or err_tv. (Ozaki Kiichi)
      adds  f9e687e   patch 7.4.2328 Problem:    Crash when BufWinLeave autocmd goes to another tab page. (Hirohito             Higashi) Solution:   Make close_buffer() go back to the right window.
      adds  26b8433   patch 7.4.2329 Problem:    Error for min() and max() contains %s. (Nikolay Pavlov) Solution:   Pass the function name. (closes #1040)
       new  c0e8098   Merge tag 'v7.4.2329' into debian/sid
       new  57c2152   Refresh debian/patches
      adds  030cddc   patch 7.4.2330 Problem:    Coverity complains about not checking curwin to be NULL. Solution:   Use firstwin to avoid the warning.
       new  1fe1fc7   Merge tag 'v7.4.2330' into debian/sid
       new  028b64e   Bump upstream changelog and version in d/changelog
       new  a97dd48   Move testing from install to build targets

The 5 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:
 appveyor.yml                                       |    3 +-
 debian/changelog                                   |    6 +-
 debian/changelog.upstream                          |  501 +++++
 ...ng-a-vimrc.tiny-when-Vim-is-invoked-as-vi.patch |    2 +-
 debian/patches/series                              |    3 -
 ...te-for-old-Vim-versions-from-Debian-runti.patch |  169 --
 ...ing-compilation-date-in-SOURCE_DATE_EPOCH.patch |    2 +-
 ...ebcontrol.vim-Add-mips64el-as-a-recognize.patch |   23 -
 ...tax-debsources.vim-Update-Ubuntu-releases.patch |   33 -
 debian/rules                                       |   12 +-
 runtime/autoload/rubycomplete.vim                  |   36 +-
 runtime/compiler/cucumber.vim                      |    4 +-
 runtime/compiler/haml.vim                          |    4 +-
 runtime/compiler/rake.vim                          |    6 +-
 runtime/compiler/rspec.vim                         |    3 +-
 runtime/compiler/rubyunit.vim                      |    2 +
 runtime/compiler/sass.vim                          |    4 +-
 runtime/defaults.vim                               |   11 +-
 runtime/doc/channel.txt                            |    8 +-
 runtime/doc/eval.txt                               |   39 +-
 runtime/doc/os_win32.txt                           |   27 +-
 runtime/doc/todo.txt                               |   29 +-
 runtime/doc/version8.txt                           |    6 +-
 runtime/ftplugin/cucumber.vim                      |   28 +-
 runtime/ftplugin/eruby.vim                         |    2 +-
 runtime/ftplugin/git.vim                           |    4 +-
 runtime/ftplugin/gitcommit.vim                     |   17 +-
 runtime/ftplugin/gitrebase.vim                     |    5 +-
 runtime/ftplugin/haml.vim                          |    2 +-
 runtime/ftplugin/markdown.vim                      |   32 +-
 runtime/ftplugin/ruby.vim                          |  153 +-
 runtime/ftplugin/sass.vim                          |    5 +-
 runtime/ftplugin/scss.vim                          |    3 +-
 runtime/indent/cucumber.vim                        |   21 +-
 runtime/indent/eruby.vim                           |   43 +-
 runtime/indent/fortran.vim                         |    5 +-
 runtime/indent/gitconfig.vim                       |    9 +-
 runtime/indent/haml.vim                            |    7 +-
 runtime/indent/liquid.vim                          |   11 +-
 runtime/indent/ruby.vim                            |  229 ++-
 runtime/indent/sass.vim                            |    6 +-
 runtime/syntax/a65.vim                             |   47 +-
 runtime/syntax/abap.vim                            |   67 +-
 runtime/syntax/abaqus.vim                          |   35 +-
 runtime/syntax/abc.vim                             |   39 +-
 runtime/syntax/abel.vim                            |   81 +-
 runtime/syntax/acedb.vim                           |   51 +-
 runtime/syntax/aflex.vim                           |   54 +-
 runtime/syntax/ahdl.vim                            |   43 +-
 runtime/syntax/amiga.vim                           |   47 +-
 runtime/syntax/aml.vim                             |   57 +-
 runtime/syntax/ampl.vim                            |   46 +-
 runtime/syntax/antlr.vim                           |   28 +-
 runtime/syntax/apache.vim                          |   61 +-
 runtime/syntax/apachestyle.vim                     |   31 +-
 runtime/syntax/aptconf.vim                         |    7 +-
 runtime/syntax/arduino.vim                         |   13 +-
 runtime/syntax/asm.vim                             |   59 +-
 runtime/syntax/asm68k.vim                          |  111 +-
 runtime/syntax/asmh8300.vim                        |   35 +-
 runtime/syntax/asn.vim                             |   53 +-
 runtime/syntax/aspperl.vim                         |   18 +-
 runtime/syntax/aspvbs.vim                          |   52 +-
 runtime/syntax/asterisk.vim                        |   68 +-
 runtime/syntax/asteriskvm.vim                      |   41 +-
 runtime/syntax/atlas.vim                           |   59 +-
 runtime/syntax/automake.vim                        |   52 +-
 runtime/syntax/ave.vim                             |   41 +-
 runtime/syntax/ayacc.vim                           |   58 +-
 runtime/syntax/b.vim                               |  101 +-
 runtime/syntax/baan.vim                            |   65 +-
 runtime/syntax/basic.vim                           |   49 +-
 runtime/syntax/bc.vim                              |   39 +-
 runtime/syntax/bib.vim                             |   42 +-
 runtime/syntax/bindzone.vim                        |   65 +-
 runtime/syntax/blank.vim                           |   29 +-
 runtime/syntax/bst.vim                             |   45 +-
 runtime/syntax/btm.vim                             |   75 +-
 runtime/syntax/bzr.vim                             |   35 +-
 runtime/syntax/cabal.vim                           |   37 +-
 runtime/syntax/cdl.vim                             |  Bin 3345 -> 3100 bytes
 runtime/syntax/cf.vim                              |   97 +-
 runtime/syntax/cfg.vim                             |   38 +-
 runtime/syntax/ch.vim                              |   35 +-
 runtime/syntax/change.vim                          |   27 +-
 runtime/syntax/changelog.vim                       |   62 +-
 runtime/syntax/chaskell.vim                        |    6 +-
 runtime/syntax/cheetah.vim                         |   35 +-
 runtime/syntax/chill.vim                           |  119 +-
 runtime/syntax/cl.vim                              |   71 +-
 runtime/syntax/clean.vim                           |   79 +-
 runtime/syntax/clipper.vim                         |   49 +-
 runtime/syntax/cmake.vim                           |   45 +-
 runtime/syntax/cobol.vim                           |   93 +-
 runtime/syntax/coco.vim                            |    5 +-
 runtime/syntax/config.vim                          |   39 +-
 runtime/syntax/cpp.vim                             |   52 +-
 runtime/syntax/crontab.vim                         |   59 +-
 runtime/syntax/csc.vim                             |   73 +-
 runtime/syntax/csh.vim                             |   99 +-
 runtime/syntax/csp.vim                             |   77 +-
 runtime/syntax/css.vim                             |  263 ++-
 runtime/syntax/cterm.vim                           |   81 +-
 runtime/syntax/cuda.vim                            |   13 +-
 runtime/syntax/cupl.vim                            |   63 +-
 runtime/syntax/cuplsim.vim                         |   47 +-
 runtime/syntax/cvs.vim                             |   31 +-
 runtime/syntax/cweb.vim                            |   33 +-
 runtime/syntax/cynlib.vim                          |   35 +-
 runtime/syntax/cynpp.vim                           |   30 +-
 runtime/syntax/datascript.vim                      |    5 +-
 runtime/syntax/dcd.vim                             |   33 +-
 runtime/syntax/dcl.vim                             |   88 +-
 runtime/syntax/debchangelog.vim                    |   39 +-
 runtime/syntax/debcontrol.vim                      |   59 +-
 runtime/syntax/debsources.vim                      |   10 +-
 runtime/syntax/def.vim                             |   35 +-
 runtime/syntax/desc.vim                            |   66 +-
 runtime/syntax/desktop.vim                         |   67 +-
 runtime/syntax/diva.vim                            |   38 +-
 runtime/syntax/django.vim                          |   41 +-
 runtime/syntax/dnsmasq.vim                         |    6 +-
 runtime/syntax/docbk.vim                           |   32 +-
 runtime/syntax/dosbatch.vim                        |   83 +-
 runtime/syntax/dosini.vim                          |   31 +-
 runtime/syntax/dot.vim                             |   57 +-
 runtime/syntax/dracula.vim                         |   29 +-
 runtime/syntax/dtd.vim                             |   60 +-
 runtime/syntax/dtml.vim                            |   41 +-
 runtime/syntax/dtrace.vim                          |   13 +-
 runtime/syntax/dylan.vim                           |   71 +-
 runtime/syntax/dylanintr.vim                       |   37 +-
 runtime/syntax/dylanlid.vim                        |   27 +-
 runtime/syntax/ecd.vim                             |   36 +-
 runtime/syntax/edif.vim                            |   39 +-
 runtime/syntax/eiffel.vim                          |   95 +-
 runtime/syntax/elf.vim                             |   49 +-
 runtime/syntax/elmfilt.vim                         |   52 +-
 runtime/syntax/erlang.vim                          |  217 +--
 runtime/syntax/eruby.vim                           |    2 +-
 runtime/syntax/esmtprc.vim                         |    7 +-
 runtime/syntax/esqlc.vim                           |   35 +-
 runtime/syntax/esterel.vim                         |   36 +-
 runtime/syntax/euphoria3.vim                       |    6 +-
 runtime/syntax/euphoria4.vim                       |    6 +-
 runtime/syntax/eviews.vim                          |   61 +-
 runtime/syntax/exim.vim                            |   40 +-
 runtime/syntax/expect.vim                          |   55 +-
 runtime/syntax/exports.vim                         |   44 +-
 runtime/syntax/falcon.vim                          |   54 +-
 runtime/syntax/fasm.vim                            |    5 +-
 runtime/syntax/fdcc.vim                            |   97 +-
 runtime/syntax/fgl.vim                             |   37 +-
 runtime/syntax/flexwiki.vim                        |    6 +-
 runtime/syntax/focexec.vim                         |   45 +-
 runtime/syntax/form.vim                            |   81 +-
 runtime/syntax/forth.vim                           |  101 +-
 runtime/syntax/fortran.vim                         |    6 +-
 runtime/syntax/foxpro.vim                          |   55 +-
 runtime/syntax/fstab.vim                           |  112 +-
 runtime/syntax/fvwm2m4.vim                         |   21 +-
 runtime/syntax/gdb.vim                             |   39 +-
 runtime/syntax/gdmo.vim                            |   45 +-
 runtime/syntax/gedcom.vim                          |   35 +-
 runtime/syntax/gitcommit.vim                       |    9 +-
 runtime/syntax/gitrebase.vim                       |    4 +-
 runtime/syntax/gitsendemail.vim                    |    8 +-
 runtime/syntax/gkrellmrc.vim                       |   58 +-
 runtime/syntax/gnash.vim                           |    7 +-
 runtime/syntax/gnuplot.vim                         |   91 +-
 runtime/syntax/godoc.vim                           |    4 +-
 runtime/syntax/gp.vim                              |   48 +-
 runtime/syntax/grads.vim                           |   41 +-
 runtime/syntax/gretl.vim                           |   59 +-
 runtime/syntax/groovy.vim                          |  168 +-
 runtime/syntax/gsp.vim                             |   19 +-
 runtime/syntax/gtkrc.vim                           |  110 +-
 runtime/syntax/haml.vim                            |    4 +-
 runtime/syntax/hamster.vim                         |   28 +-
 runtime/syntax/haskell.vim                         |  116 +-
 runtime/syntax/haste.vim                           |    7 +-
 runtime/syntax/hastepreproc.vim                    |   19 +-
 runtime/syntax/hb.vim                              |   47 +-
 runtime/syntax/hercules.vim                        |   48 +-
 runtime/syntax/hex.vim                             |   49 +-
 runtime/syntax/hog.vim                             |    5 +-
 runtime/syntax/hostsaccess.vim                     |    8 +-
 runtime/syntax/html.vim                            |  143 +-
 runtime/syntax/htmlcheetah.vim                     |   18 +-
 runtime/syntax/htmldjango.vim                      |   18 +-
 runtime/syntax/htmlm4.vim                          |   20 +-
 runtime/syntax/htmlos.vim                          |   77 +-
 runtime/syntax/ia64.vim                            |   71 +-
 runtime/syntax/icemenu.vim                         |    6 +-
 runtime/syntax/icon.vim                            |   97 +-
 runtime/syntax/idl.vim                             |  172 +-
 runtime/syntax/idlang.vim                          |   53 +-
 runtime/syntax/inform.vim                          |  112 +-
 runtime/syntax/inittab.vim                         |   44 +-
 runtime/syntax/ipfilter.vim                        |    7 +-
 runtime/syntax/ishd.vim                            |   51 +-
 runtime/syntax/iss.vim                             |   73 +-
 runtime/syntax/ist.vim                             |   45 +-
 runtime/syntax/jal.vim                             |  137 +-
 runtime/syntax/jam.vim                             |  167 +-
 runtime/syntax/jargon.vim                          |   27 +-
 runtime/syntax/java.vim                            |  186 +-
 runtime/syntax/javacc.vim                          |   35 +-
 runtime/syntax/javascript.vim                      |   92 +-
 runtime/syntax/jess.vim                            |   63 +-
 runtime/syntax/jgraph.vim                          |   31 +-
 runtime/syntax/jproperties.vim                     |   41 +-
 runtime/syntax/json.vim                            |   59 +-
 runtime/syntax/jsp.vim                             |   49 +-
 runtime/syntax/kix.vim                             |   88 +-
 runtime/syntax/kscript.vim                         |   49 +-
 runtime/syntax/kwt.vim                             |   47 +-
 runtime/syntax/lace.vim                            |   85 +-
 runtime/syntax/latte.vim                           |   41 +-
 runtime/syntax/ldif.vim                            |   32 +-
 runtime/syntax/lex.vim                             |   47 +-
 runtime/syntax/lhaskell.vim                        |   50 +-
 runtime/syntax/lifelines.vim                       |   75 +-
 runtime/syntax/lilo.vim                            |  128 +-
 runtime/syntax/lisp.vim                            |   46 +-
 runtime/syntax/lite.vim                            |   61 +-
 runtime/syntax/logtalk.vim                         |   71 +-
 runtime/syntax/lotos.vim                           |   33 +-
 runtime/syntax/lout.vim                            |   78 +-
 runtime/syntax/lpc.vim                             |  171 +-
 runtime/syntax/lprolog.vim                         |   67 +-
 runtime/syntax/lscript.vim                         |   53 +-
 runtime/syntax/lss.vim                             |  112 +-
 runtime/syntax/lua.vim                             |   61 +-
 runtime/syntax/m4.vim                              |   51 +-
 runtime/syntax/make.vim                            |   63 +-
 runtime/syntax/man.vim                             |   39 +-
 runtime/syntax/maple.vim                           |  145 +-
 runtime/syntax/markdown.vim                        |   31 +-
 runtime/syntax/mason.vim                           |   36 +-
 runtime/syntax/master.vim                          |   29 +-
 runtime/syntax/matlab.vim                          |   77 +-
 runtime/syntax/maxima.vim                          |   63 +-
 runtime/syntax/mel.vim                             |   77 +-
 runtime/syntax/mf.vim                              |   65 +-
 runtime/syntax/mgl.vim                             |   69 +-
 runtime/syntax/mgp.vim                             |   44 +-
 runtime/syntax/mma.vim                             |   78 +-
 runtime/syntax/mmix.vim                            |   71 +-
 runtime/syntax/mmp.vim                             |   10 +-
 runtime/syntax/modsim3.vim                         |   46 +-
 runtime/syntax/modula2.vim                         |   45 +-
 runtime/syntax/modula3.vim                         |   29 +-
 runtime/syntax/monk.vim                            |   55 +-
 runtime/syntax/moo.vim                             |    4 +-
 runtime/syntax/mp.vim                              |   35 +-
 runtime/syntax/msidl.vim                           |   63 +-
 runtime/syntax/msmessages.vim                      |    7 +-
 runtime/syntax/msql.vim                            |   71 +-
 runtime/syntax/mupad.vim                           |   40 +-
 runtime/syntax/mush.vim                            |   58 +-
 runtime/syntax/muttrc.vim                          |  311 ++-
 runtime/syntax/mysql.vim                           |   39 +-
 runtime/syntax/named.vim                           |   91 +-
 runtime/syntax/nasm.vim                            |  190 +-
 runtime/syntax/nastran.vim                         |   60 +-
 runtime/syntax/natural.vim                         |  108 +-
 runtime/syntax/ncf.vim                             |   65 +-
 runtime/syntax/netrw.vim                           |    5 +-
 runtime/syntax/nqc.vim                             |   87 +-
 runtime/syntax/nroff.vim                           |  109 +-
 runtime/syntax/nsis.vim                            |   79 +-
 runtime/syntax/obj.vim                             |   45 +-
 runtime/syntax/objcpp.vim                          |   18 +-
 runtime/syntax/ocaml.vim                           |  141 +-
 runtime/syntax/occam.vim                           |   66 +-
 runtime/syntax/omnimark.vim                        |   39 +-
 runtime/syntax/openroad.vim                        |   46 +-
 runtime/syntax/opl.vim                             |   31 +-
 runtime/syntax/ora.vim                             |   52 +-
 runtime/syntax/papp.vim                            |   29 +-
 runtime/syntax/pascal.vim                          |   87 +-
 runtime/syntax/pcap.vim                            |   31 +-
 runtime/syntax/pccts.vim                           |   59 +-
 runtime/syntax/perl.vim                            |  192 +-
 runtime/syntax/perl6.vim                           |  335 ++--
 runtime/syntax/pfmain.vim                          |   48 +-
 runtime/syntax/php.vim                             |  200 +-
 runtime/syntax/pic.vim                             |   57 +-
 runtime/syntax/pike.vim                            |   87 +-
 runtime/syntax/pilrc.vim                           |   46 +-
 runtime/syntax/pine.vim                            |   31 +-
 runtime/syntax/pli.vim                             |   94 +-
 runtime/syntax/plm.vim                             |   71 +-
 runtime/syntax/plp.vim                             |   18 +-
 runtime/syntax/plsql.vim                           |   89 +-
 runtime/syntax/po.vim                              |  107 +-
 runtime/syntax/pod.vim                             |   39 +-
 runtime/syntax/postscr.vim                         |  123 +-
 runtime/syntax/pov.vim                             |   10 +-
 runtime/syntax/povini.vim                          |   10 +-
 runtime/syntax/ppd.vim                             |   39 +-
 runtime/syntax/ppwiz.vim                           |   47 +-
 runtime/syntax/prescribe.vim                       |   31 +-
 runtime/syntax/procmail.vim                        |   43 +-
 runtime/syntax/progress.vim                        |   75 +-
 runtime/syntax/prolog.vim                          |   72 +-
 runtime/syntax/promela.vim                         |    7 +-
 runtime/syntax/proto.vim                           |    5 +-
 runtime/syntax/psf.vim                             |   38 +-
 runtime/syntax/ptcap.vim                           |   54 +-
 runtime/syntax/purifylog.vim                       |   97 +-
 runtime/syntax/pyrex.vim                           |   42 +-
 runtime/syntax/python.vim                          |   84 +-
 runtime/syntax/radiance.vim                        |   49 +-
 runtime/syntax/ratpoison.vim                       |   47 +-
 runtime/syntax/rc.vim                              |   95 +-
 runtime/syntax/rcs.vim                             |   33 +-
 runtime/syntax/rcslog.vim                          |   25 +-
 runtime/syntax/rebol.vim                           |  119 +-
 runtime/syntax/redif.vim                           |    6 +-
 runtime/syntax/registry.vim                        |   40 +-
 runtime/syntax/remind.vim                          |   50 +-
 runtime/syntax/resolv.vim                          |   60 +-
 runtime/syntax/reva.vim                            |    9 +-
 runtime/syntax/rexx.vim                            |  139 +-
 runtime/syntax/rib.vim                             |   29 +-
 runtime/syntax/robots.vim                          |   38 +-
 runtime/syntax/rpcgen.vim                          |   49 +-
 runtime/syntax/rpl.vim                             |  139 +-
 runtime/syntax/rtf.vim                             |   55 +-
 runtime/syntax/ruby.vim                            |  439 +++--
 runtime/syntax/samba.vim                           |   33 +-
 runtime/syntax/sas.vim                             |  113 +-
 runtime/syntax/sass.vim                            |   12 +-
 runtime/syntax/sather.vim                          |   71 +-
 runtime/syntax/scala.vim                           |    5 +-
 runtime/syntax/scheme.vim                          |   53 +-
 runtime/syntax/scilab.vim                          |   83 +-
 runtime/syntax/sd.vim                              |   38 +-
 runtime/syntax/sdl.vim                             |   60 +-
 runtime/syntax/sed.vim                             |   72 +-
 runtime/syntax/sendpr.vim                          |    7 +-
 runtime/syntax/sgml.vim                            |    7 +-
 runtime/syntax/sgmldecl.vim                        |   45 +-
 runtime/syntax/sgmllnx.vim                         |   45 +-
 runtime/syntax/sh.vim                              |  259 ++-
 runtime/syntax/sicad.vim                           |   79 +-
 runtime/syntax/simula.vim                          |   66 +-
 runtime/syntax/sinda.vim                           |   69 +-
 runtime/syntax/sindacmp.vim                        |   31 +-
 runtime/syntax/sindaout.vim                        |   57 +-
 runtime/syntax/sisu.vim                            |    6 +-
 runtime/syntax/skill.vim                           |   55 +-
 runtime/syntax/sl.vim                              |   71 +-
 runtime/syntax/slang.vim                           |   75 +-
 runtime/syntax/slice.vim                           |   47 +-
 runtime/syntax/slrnrc.vim                          |   73 +-
 runtime/syntax/slrnsc.vim                          |   55 +-
 runtime/syntax/sm.vim                              |   50 +-
 runtime/syntax/smarty.vim                          |   36 +-
 runtime/syntax/smcl.vim                            |    5 +-
 runtime/syntax/smil.vim                            |   61 +-
 runtime/syntax/smith.vim                           |   33 +-
 runtime/syntax/sml.vim                             |  109 +-
 runtime/syntax/snnsnet.vim                         |   26 +-
 runtime/syntax/snnspat.vim                         |   32 +-
 runtime/syntax/snnsres.vim                         |   30 +-
 runtime/syntax/snobol4.vim                         |   75 +-
 runtime/syntax/spec.vim                            |  137 +-
 runtime/syntax/specman.vim                         |   79 +-
 runtime/syntax/spice.vim                           |   41 +-
 runtime/syntax/splint.vim                          |  111 +-
 runtime/syntax/spup.vim                            |  125 +-
 runtime/syntax/spyce.vim                           |   17 +-
 runtime/syntax/sql.vim                             |    7 +-
 runtime/syntax/sqlanywhere.vim                     |    7 +-
 runtime/syntax/sqlforms.vim                        |   52 +-
 runtime/syntax/sqlhana.vim                         |    7 +-
 runtime/syntax/sqlinformix.vim                     |   73 +-
 runtime/syntax/sqlj.vim                            |   39 +-
 runtime/syntax/sqloracle.vim                       |   26 +-
 runtime/syntax/sqr.vim                             |  119 +-
 runtime/syntax/squid.vim                           |   41 +-
 runtime/syntax/srec.vim                            |   47 +-
 runtime/syntax/sshconfig.vim                       |   72 +-
 runtime/syntax/sshdconfig.vim                      |   80 +-
 runtime/syntax/st.vim                              |   45 +-
 runtime/syntax/stata.vim                           |    5 +-
 runtime/syntax/stp.vim                             |   57 +-
 runtime/syntax/strace.vim                          |   48 +-
 runtime/syntax/svn.vim                             |   37 +-
 runtime/syntax/systemverilog.vim                   |   40 +-
 runtime/syntax/tads.vim                            |   95 +-
 runtime/syntax/tags.vim                            |   34 +-
 runtime/syntax/tak.vim                             |   71 +-
 runtime/syntax/takcmp.vim                          |   35 +-
 runtime/syntax/takout.vim                          |   53 +-
 runtime/syntax/taskdata.vim                        |    7 +-
 runtime/syntax/taskedit.vim                        |    7 +-
 runtime/syntax/tasm.vim                            |   45 +-
 runtime/syntax/tcl.vim                             |   79 +-
 runtime/syntax/tex.vim                             |  174 +-
 runtime/syntax/texinfo.vim                         |   79 +-
 runtime/syntax/texmf.vim                           |   56 +-
 runtime/syntax/tf.vim                              |   73 +-
 runtime/syntax/tli.vim                             |   39 +-
 runtime/syntax/tpp.vim                             |   57 +-
 runtime/syntax/trasys.vim                          |   71 +-
 runtime/syntax/trustees.vim                        |    5 +-
 runtime/syntax/tsalt.vim                           |   77 +-
 runtime/syntax/tsscl.vim                           |   59 +-
 runtime/syntax/tssgm.vim                           |   55 +-
 runtime/syntax/tssop.vim                           |   45 +-
 runtime/syntax/uc.vim                              |  113 +-
 runtime/syntax/uil.vim                             |   54 +-
 runtime/syntax/upstart.vim                         |    5 +-
 runtime/syntax/vb.vim                              |   61 +-
 runtime/syntax/vera.vim                            |  131 +-
 runtime/syntax/verilog.vim                         |   59 +-
 runtime/syntax/verilogams.vim                      |   59 +-
 runtime/syntax/vhdl.vim                            |   53 +-
 runtime/syntax/vim.vim                             |  332 ++--
 runtime/syntax/virata.vim                          |  110 +-
 runtime/syntax/vmasm.vim                           |   95 +-
 runtime/syntax/vrml.vim                            |   75 +-
 runtime/syntax/vroom.vim                           |    7 +-
 runtime/syntax/vsejcl.vim                          |   33 +-
 runtime/syntax/wdiff.vim                           |   28 +-
 runtime/syntax/web.vim                             |   15 +-
 runtime/syntax/webmacro.vim                        |   51 +-
 runtime/syntax/winbatch.vim                        |   39 +-
 runtime/syntax/wml.vim                             |   64 +-
 runtime/syntax/wsml.vim                            |   76 +-
 runtime/syntax/xdefaults.vim                       |   57 +-
 runtime/syntax/xf86conf.vim                        |    8 +-
 runtime/syntax/xkb.vim                             |   74 +-
 runtime/syntax/xmath.vim                           |   65 +-
 runtime/syntax/xpm.vim                             |   33 +-
 runtime/syntax/xpm2.vim                            |   44 +-
 runtime/syntax/xs.vim                              |   45 +-
 runtime/syntax/xxd.vim                             |   28 +-
 runtime/syntax/yacc.vim                            |   11 +-
 runtime/syntax/z8a.vim                             |   45 +-
 runtime/tutor/tutor.ja.euc                         |   14 +-
 runtime/tutor/tutor.ja.sjis                        |   14 +-
 runtime/tutor/tutor.ja.utf-8                       |   14 +-
 src/Make_mvc.mak                                   |    2 +-
 src/Makefile                                       |   19 +-
 src/appveyor.bat                                   |    4 +-
 src/bigvim.bat                                     |    2 +-
 src/bigvim64.bat                                   |    4 +-
 src/buffer.c                                       |   70 +-
 src/channel.c                                      |   24 +-
 src/evalfunc.c                                     |   16 +-
 src/ex_cmds.c                                      |   30 +-
 src/ex_cmds2.c                                     |   23 +-
 src/ex_docmd.c                                     |   13 +-
 src/ex_getln.c                                     |   78 +-
 src/fileio.c                                       |   27 +-
 src/misc2.c                                        |   22 +
 src/move.c                                         |    1 +
 src/normal.c                                       |    9 +-
 src/ops.c                                          |    9 +-
 src/option.c                                       |    2 +-
 src/os_win32.c                                     |    8 +-
 src/po/fi.po                                       |    4 +-
 src/po/ja.euc-jp.po                                | 1151 +++++------
 src/po/ja.po                                       | 1151 +++++------
 src/po/ja.sjis.po                                  | 1151 +++++------
 src/proto/channel.pro                              |    1 +
 src/proto/ex_getln.pro                             |    1 +
 src/proto/misc2.pro                                |    1 +
 src/quickfix.c                                     |   78 +-
 src/search.c                                       |    1 +
 src/structs.h                                      |    4 +-
 src/testdir/Make_all.mak                           |   17 +-
 src/testdir/Makefile                               |    2 +-
 src/testdir/README.txt                             |    5 +-
 src/testdir/runtest.vim                            |    9 +-
 src/testdir/test102.in                             |   13 -
 src/testdir/test102.ok                             |    3 -
 src/testdir/test13.in                              |   64 -
 src/testdir/test13.ok                              |   31 -
 src/testdir/test46.in                              |   27 -
 src/testdir/test46.ok                              |   13 -
 src/testdir/test81.in                              |   22 -
 src/testdir/test81.ok                              |    6 -
 src/testdir/test_autocmd.vim                       |  136 ++
 src/testdir/test_channel.vim                       |  102 +-
 src/testdir/test_charsearch.in                     |   26 -
 src/testdir/test_charsearch.ok                     |    3 -
 src/testdir/test_charsearch.vim                    |   62 +
 src/testdir/test_expr.vim                          |    7 +
 src/testdir/test_fnameescape.vim                   |   21 +
 src/testdir/test_mapping.vim                       |    8 +
 src/testdir/test_marks.in                          |   34 -
 src/testdir/test_marks.ok                          |   16 -
 src/testdir/test_marks.vim                         |   26 +
 src/testdir/test_nested_function.in                |   34 -
 src/testdir/test_nested_function.ok                |    6 -
 src/testdir/test_nested_function.vim               |   32 +
 src/testdir/test_normal.vim                        | 2031 ++++++++++++++++++++
 src/testdir/test_popup.vim                         |   24 +-
 src/testdir/test_quickfix.vim                      |   35 +
 src/testdir/test_search.vim                        |   32 +-
 src/testdir/test_substitute.vim                    |   41 +
 src/testdir/test_tabpage.vim                       |   26 +
 src/testdir/test_timers.vim                        |   15 +
 src/testdir/test_undo.vim                          |   33 +
 src/testdir/test_writefile.in                      |   19 -
 src/testdir/test_writefile.ok                      |    5 -
 src/testdir/test_writefile.vim                     |   16 +
 src/version.c                                      |   70 +
 src/window.c                                       |   41 +-
 515 files changed, 15489 insertions(+), 16755 deletions(-)
 delete mode 100644 debian/patches/upstream/Remove-boilerplate-for-old-Vim-versions-from-Debian-runti.patch
 delete mode 100644 debian/patches/upstream/runtime-syntax-debcontrol.vim-Add-mips64el-as-a-recognize.patch
 delete mode 100644 debian/patches/upstream/runtime-syntax-debsources.vim-Update-Ubuntu-releases.patch
 delete mode 100644 src/testdir/test102.in
 delete mode 100644 src/testdir/test102.ok
 delete mode 100644 src/testdir/test13.in
 delete mode 100644 src/testdir/test13.ok
 delete mode 100644 src/testdir/test46.in
 delete mode 100644 src/testdir/test46.ok
 delete mode 100644 src/testdir/test81.in
 delete mode 100644 src/testdir/test81.ok
 delete mode 100644 src/testdir/test_charsearch.in
 delete mode 100644 src/testdir/test_charsearch.ok
 create mode 100644 src/testdir/test_charsearch.vim
 create mode 100644 src/testdir/test_fnameescape.vim
 delete mode 100644 src/testdir/test_marks.in
 delete mode 100644 src/testdir/test_marks.ok
 create mode 100644 src/testdir/test_marks.vim
 delete mode 100644 src/testdir/test_nested_function.in
 delete mode 100644 src/testdir/test_nested_function.ok
 create mode 100644 src/testdir/test_nested_function.vim
 create mode 100644 src/testdir/test_normal.vim
 create mode 100644 src/testdir/test_substitute.vim
 delete mode 100644 src/testdir/test_writefile.in
 delete mode 100644 src/testdir/test_writefile.ok
 create mode 100644 src/testdir/test_writefile.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