r757 - in /trunk/packages/vim: debian/README debian/changelog upstream/patches/7.0.075 upstream/patches/7.0.076

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Wed Aug 30 15:00:11 UTC 2006


Author: jamessan
Date: Wed Aug 30 15:00:07 2006
New Revision: 757

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=757
Log:
Upstream patches 75 and 76.

Added:
    trunk/packages/vim/upstream/patches/7.0.075
    trunk/packages/vim/upstream/patches/7.0.076
Modified:
    trunk/packages/vim/debian/README
    trunk/packages/vim/debian/changelog

Modified: trunk/packages/vim/debian/README
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/README?rev=757&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Wed Aug 30 15:00:07 2006
@@ -99,3 +99,5 @@
   2791  7.0.072  can't specify anything to do when starting the GUI fails
   1597  7.0.073  CR in Insert mode completion may select original text
   6819  7.0.074  (extra) Win32: tooltips can be in the wrong encoding
+  1495  7.0.075  winsaveview() could store wrong desired cursor column
+  2635  7.0.076  (after 7.0.010) could not get spell files from non-ftp server

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=757&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Wed Aug 30 15:00:07 2006
@@ -1,7 +1,7 @@
-vim (1:7.0-074+1) UNRELEASED; urgency=medium
+vim (1:7.0-076+1) UNRELEASED; urgency=medium
 
   [ Debian Vim Maintainers ]
-  * New upstream patches (036 - 074), see README.gz for details.
+  * New upstream patches (036 - 076), see README.gz for details.
   * Urgency medium because of the fix to vim-lesstif's crash bug.
 
   [ James Vega ]
@@ -23,7 +23,7 @@
     better recognition of tex vs plaintex filetype (namely it recognizes as
     latex files containing sectioning commands). (closes: #384479)
 
- -- Matthijs Mohlmann <matthijs at cacholong.nl>  Tue, 29 Aug 2006 21:52:03 +0200
+ -- James Vega <jamessan at debian.org>  Wed, 30 Aug 2006 10:59:52 -0400
 
 vim (1:7.0-035+1) unstable; urgency=low
 

Added: trunk/packages/vim/upstream/patches/7.0.075
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.075?rev=757&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.075 (added)
+++ trunk/packages/vim/upstream/patches/7.0.075 Wed Aug 30 15:00:07 2006
@@ -1,0 +1,45 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.075
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.075
+Problem:    winsaveview() did not store the actual value of the desired cursor
+	    column.  This could move the cursor in the matchparen plugin.
+Solution:   Call update_curswant() before using the value w_curswant.
+Files:	    src/eval.c
+
+
+*** ../vim-7.0.074/src/eval.c	Tue Aug 29 17:28:56 2006
+--- src/eval.c	Tue Aug 29 21:53:26 2006
+***************
+*** 16232,16237 ****
+--- 16232,16238 ----
+  #ifdef FEAT_VIRTUALEDIT
+      dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
+  #endif
++     update_curswant();
+      dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
+  
+      dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
+*** ../vim-7.0.074/src/version.c	Tue Aug 29 21:30:15 2006
+--- src/version.c	Tue Aug 29 21:57:03 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     75,
+  /**/
+
+-- 
+Women are probably the main cause of free software starvation.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

Added: trunk/packages/vim/upstream/patches/7.0.076
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.076?rev=757&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.076 (added)
+++ trunk/packages/vim/upstream/patches/7.0.076 Wed Aug 30 15:00:07 2006
@@ -1,0 +1,76 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.076
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.076 (after 7.0.010)
+Problem:    Automatic downloading of spell files only works for ftp.
+Solution:   Don't add login and password for non-ftp URLs. (Alexander Patrakov)
+Files:      runtime/autoload/spellfile.vim
+
+
+*** ../vim-7.0.075/runtime/autoload/spellfile.vim	Sat May 13 14:29:16 2006
+--- runtime/autoload/spellfile.vim	Tue Aug 29 22:17:03 2006
+***************
+*** 1,6 ****
+  " Vim script to download a missing spell file
+  " Maintainer:	Bram Moolenaar <Bram at vim.org>
+! " Last Change:	2006 May 10
+  
+  if !exists('g:spellfile_URL')
+    let g:spellfile_URL = 'ftp://ftp.vim.org/pub/vim/runtime/spell'
+--- 1,6 ----
+  " Vim script to download a missing spell file
+  " Maintainer:	Bram Moolenaar <Bram at vim.org>
+! " Last Change:	2006 Aug 29
+  
+  if !exists('g:spellfile_URL')
+    let g:spellfile_URL = 'ftp://ftp.vim.org/pub/vim/runtime/spell'
+***************
+*** 110,118 ****
+    endif
+  endfunc
+  
+! " Read "fname" from the ftp server.
+  function! spellfile#Nread(fname)
+!   let machine = substitute(g:spellfile_URL, 'ftp://\([^/]*\).*', '\1', '')
+!   let dir = substitute(g:spellfile_URL, 'ftp://[^/]*/\(.*\)', '\1', '')
+!   exe 'Nread "' . machine . ' anonymous vim7user ' . dir . '/' . a:fname . '"'
+  endfunc
+--- 110,123 ----
+    endif
+  endfunc
+  
+! " Read "fname" from the server.
+  function! spellfile#Nread(fname)
+!   if g:spellfile_URL =~ '^ftp://'
+!     " for an ftp server use a default login and password to avoid a prompt
+!     let machine = substitute(g:spellfile_URL, 'ftp://\([^/]*\).*', '\1', '')
+!     let dir = substitute(g:spellfile_URL, 'ftp://[^/]*/\(.*\)', '\1', '')
+!     exe 'Nread "' . machine . ' anonymous vim7user ' . dir . '/' . a:fname . '"'
+!   else
+!     exe 'Nread ' g:spellfile_URL . '/' . a:fname
+!   endif
+  endfunc
+*** ../vim-7.0.075/src/version.c	Tue Aug 29 21:59:25 2006
+--- src/version.c	Tue Aug 29 22:31:45 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     76,
+  /**/
+
+-- 
+This sentence is not sure that it exists, but if it does, it will
+certainly consider the possibility that other sentences exist.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///




More information about the pkg-vim-maintainers mailing list