]> git.pld-linux.org Git - packages/vim.git/commitdiff
- new
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 3 Apr 2005 14:49:29 +0000 (14:49 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    6.3.068 -> 1.1

6.3.068 [new file with mode: 0644]

diff --git a/6.3.068 b/6.3.068
new file mode 100644 (file)
index 0000000..a0caa88
--- /dev/null
+++ b/6.3.068
@@ -0,0 +1,70 @@
+To: vim-dev@vim.org
+Subject: Patch 6.3.068
+Fcc: outbox
+From: Bram Moolenaar <Bram@moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 6.3.068
+Problem:    When editing a compressed file xxx.gz which is a symbolic link to
+            the actual file a ":write" renames the link.
+Solution:   Resolve the link, so that the actual file is renamed and
+            compressed.
+Files:      runtime/plugin/gzip.vim
+    
+
+*** ../vim-6.3.025/runtime/plugin/gzip.vim     Wed Jun  9 14:56:33 2004
+--- runtime/plugin/gzip.vim    Thu Mar 24 10:56:30 2005
+***************
+*** 1,6 ****
+  " Vim plugin for editing compressed files.
+  " Maintainer: Bram Moolenaar <Bram@vim.org>
+! " Last Change: 2004 Jan 12
+  
+  " Exit quickly when:
+  " - this plugin was already loaded
+--- 1,6 ----
+  " Vim plugin for editing compressed files.
+  " Maintainer: Bram Moolenaar <Bram@vim.org>
+! " Last Change: 2005 Mar 24
+  
+  " Exit quickly when:
+  " - this plugin was already loaded
+***************
+*** 113,119 ****
+    " 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 nmt = s:tempname(nm)
+      if rename(nm, nmt) == 0
+        call system(a:cmd . " " . nmt)
+--- 113,119 ----
+    " don't do anything if the cmd is not supported
+    if s:check(a:cmd)
+      " Rename the file before compressing it.
+!     let nm = resolve(expand("<afile>"))
+      let nmt = s:tempname(nm)
+      if rename(nm, nmt) == 0
+        call system(a:cmd . " " . nmt)
+*** ../vim-6.3.025/src/version.c       Fri Mar 18 19:21:29 2005
+--- src/version.c      Thu Mar 24 10:59:13 2005
+***************
+*** 643,644 ****
+--- 643,646 ----
+  {   /* Add new patch number below this line */
++ /**/
++     68,
+  /**/
+
+-- 
+Are leaders born or made?  And if they're made, can we return them under
+warranty?
+                               (Scott Adams - The Dilbert principle)
+
+ /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
+ \\\     Buy LOTR 3 and help AIDS victims -- http://ICCF.nl/lotr.html   ///
This page took 0.171901 seconds and 4 git commands to generate.