]> git.pld-linux.org Git - packages/vim.git/commitdiff
- new
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Tue, 7 Mar 2006 17:39:38 +0000 (17:39 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    6.4.007 -> 1.1
    6.4.008 -> 1.1

6.4.007 [new file with mode: 0644]
6.4.008 [new file with mode: 0644]

diff --git a/6.4.007 b/6.4.007
new file mode 100644 (file)
index 0000000..13341e1
--- /dev/null
+++ b/6.4.007
@@ -0,0 +1,54 @@
+To: vim-dev@vim.org
+Subject: Patch 6.4.007
+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.4.007
+Problem:    Crash when expanding a file name argument in backticks. (Adri
+           Verhoef)
+Solution:   Check for the NUL after the expansion result.
+Files:     src/os_unix.c
+
+
+*** ../vim-6.4.006/src/os_unix.c       Sat Oct  8 16:39:10 2005
+--- src/os_unix.c      Thu Feb  2 12:48:28 2006
+***************
+*** 5051,5057 ****
+       /* Space or NL separates */
+       if (shell_style == STYLE_ECHO || shell_style == STYLE_BT)
+       {
+!          while (!(shell_style == STYLE_ECHO && *p == ' ') && *p != '\n')
+               ++p;
+           if (p == buffer + len)              /* last entry */
+               *p = NUL;
+--- 5051,5058 ----
+       /* Space or NL separates */
+       if (shell_style == STYLE_ECHO || shell_style == STYLE_BT)
+       {
+!          while (!(shell_style == STYLE_ECHO && *p == ' ')
+!                                                 && *p != '\n' && *p != NUL)
+               ++p;
+           if (p == buffer + len)              /* last entry */
+               *p = NUL;
+*** ../vim-6.4.006/src/version.c       Thu Dec 22 22:39:11 2005
+--- src/version.c      Wed Feb  8 11:10:30 2006
+***************
+*** 643,644 ****
+--- 643,646 ----
+  {   /* Add new patch number below this line */
++ /**/
++     7,
+  /**/
+
+-- 
+"My particular problem is with registry entries, which seem to just accumulate
+like plastic coffee cups..."           -- Paul Moore
+
+ /// Bram Moolenaar -- Bram@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://www.ICCF.nl         ///
diff --git a/6.4.008 b/6.4.008
new file mode 100644 (file)
index 0000000..f759a7a
--- /dev/null
+++ b/6.4.008
@@ -0,0 +1,75 @@
+To: vim-dev@vim.org
+Subject: Patch 6.4.008
+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.4.008
+Problem:    Hang in search for 'hlsearch' highlighting. (Yukihiro Nakadaira)
+Solution:   Skip over (multi-byte) character instead of single byte.
+Files:     src/screen.c
+
+
+*** ../vim-6.4.007/src/screen.c        Wed Jan 19 11:03:00 2005
+--- src/screen.c       Sat Feb 25 14:34:41 2006
+***************
+*** 5803,5814 ****
+               || (shl->rm.endpos[0].lnum == 0
+                   && shl->rm.endpos[0].col == shl->rm.startpos[0].col))
+       {
+!          matchcol = shl->rm.startpos[0].col + 1;
+!          if (ml_get_buf(shl->buf, lnum, FALSE)[matchcol - 1] == NUL)
+           {
+               shl->lnum = 0;
+               break;
+           }
+       }
+       else
+           matchcol = shl->rm.endpos[0].col;
+--- 5803,5824 ----
+               || (shl->rm.endpos[0].lnum == 0
+                   && shl->rm.endpos[0].col == shl->rm.startpos[0].col))
+       {
+!          char_u      *ml;
+! 
+!          matchcol = shl->rm.startpos[0].col;
+!          ml = ml_get_buf(shl->buf, lnum, FALSE) + matchcol;
+!          if (*ml == NUL)
+           {
++              ++matchcol;
+               shl->lnum = 0;
+               break;
+           }
++ #ifdef FEAT_MBYTE
++          if (has_mbyte)
++              matchcol += mb_ptr2len_check(ml);
++          else
++ #endif
++              ++matchcol;
+       }
+       else
+           matchcol = shl->rm.endpos[0].col;
+*** ../vim-6.4.007/src/version.c       Wed Feb  8 11:11:51 2006
+--- src/version.c      Sat Feb 25 14:37:36 2006
+***************
+*** 643,644 ****
+--- 643,646 ----
+  {   /* Add new patch number below this line */
++ /**/
++     8,
+  /**/
+
+-- 
+Team-building exercises come in many forms but they all trace their roots back
+to the prison system.  In your typical team-building exercise the employees
+are subjected to a variety of unpleasant situations until they become either a
+cohesive team or a ring of car jackers.
+                               (Scott Adams - The Dilbert principle)
+
+ /// Bram Moolenaar -- Bram@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://www.ICCF.nl         ///
This page took 0.039347 seconds and 4 git commands to generate.