r107 - in trunk/vim/debian: . patches

Norbert Tretkowski nobse@costa.debian.org
Thu, 24 Mar 2005 13:39:51 +0000


Author: nobse
Date: 2005-03-24 13:39:50 +0000 (Thu, 24 Mar 2005)
New Revision: 107

Removed:
   trunk/vim/debian/patches/115_gzip.vim.diff
Modified:
   trunk/vim/debian/changelog
Log:
removed James' patch for #269325, that fix is in 6.3.068


Modified: trunk/vim/debian/changelog
===================================================================
--- trunk/vim/debian/changelog	2005-03-24 13:30:30 UTC (rev 106)
+++ trunk/vim/debian/changelog	2005-03-24 13:39:50 UTC (rev 107)
@@ -1,6 +1,9 @@
 vim (1:6.3-068+1) UNRELEASED; urgency=low
 
   * New upstream patch (068), see README.gz for details.
+    + 6.3.068: When editing a compressed file xxx.gz which is a symbolic link
+      to the to the actual file a ":write" no longer renames the link.
+      (closes: #281630)
 
   * Norbert Tretkowski <nobse@debian.org>:
     + Added James Vega <jamessan@jamessan.com> to uploaders.
@@ -26,8 +29,6 @@
        postrm-does-not-call-updatemenus
 
   * James Vega <vega.james@gmail.com>:
-    + Closes: #281630: When a gzipped file is a symlink, vim removes the .gz
-      from the symlink filename and removes compression
     + Closes: #269325: [syntax/sh.vim] highlighting of comments containing
       right parenthesis wrong when comments occur between switches of case
 

Deleted: trunk/vim/debian/patches/115_gzip.vim.diff
===================================================================
--- trunk/vim/debian/patches/115_gzip.vim.diff	2005-03-24 13:30:30 UTC (rev 106)
+++ trunk/vim/debian/patches/115_gzip.vim.diff	2005-03-24 13:39:50 UTC (rev 107)
@@ -1,12 +0,0 @@
-diff -ur vim63.orig/runtime/plugin/gzip.vim vim63/runtime/plugin/gzip.vim
---- vim63.orig/runtime/plugin/gzip.vim	2004-01-12 11:39:39.000000000 -0500
-+++ vim63/runtime/plugin/gzip.vim	2005-03-22 22:31:09.196143840 -0500
-@@ -113,7 +113,7 @@
-   " don't do anything if the cmd is not supported
-   if s:check(a:cmd)
-     " Rename the file before compressing it.
--    let nm = expand("<afile>")
-+    let nm = resolve(expand("<afile>"))
-     let nmt = s:tempname(nm)
-     if rename(nm, nmt) == 0
-       call system(a:cmd . " " . nmt)