home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.1.249 < prev    next >
Encoding:
Internet Message Format  |  2002-11-06  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.249
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.1.249
  11. Problem:    Can't expand a path on the command line if it includes a "|" as a
  12.         trail byte of a multi-byte character.
  13. Solution:   Check for multi-byte characters. (Yasuhiro Matsumoto)
  14. Files:        src/ex_docmd.c
  15.  
  16.  
  17. *** ../vim61.248/src/ex_docmd.c    Tue Oct 29 19:53:25 2002
  18. --- src/ex_docmd.c    Thu Nov  7 21:17:23 2002
  19. ***************
  20. *** 2428,2434 ****
  21.               return NULL;    /* It's a comment */
  22.           }
  23.           }
  24. !         ++p;
  25.       }
  26.       }
  27.   
  28. --- 2430,2441 ----
  29.               return NULL;    /* It's a comment */
  30.           }
  31.           }
  32. ! #ifdef FEAT_MBYTE
  33. !         if (has_mbyte)
  34. !         p += (*mb_ptr2len_check)(p);
  35. !         else
  36. ! #endif
  37. !         ++p;
  38.       }
  39.       }
  40.   
  41. *** ../vim61.248/src/version.c    Wed Nov  6 21:01:13 2002
  42. --- src/version.c    Thu Nov  7 21:18:50 2002
  43. ***************
  44. *** 608,609 ****
  45. --- 608,611 ----
  46.   {   /* Add new patch number below this line */
  47. + /**/
  48. +     249,
  49.   /**/
  50.  
  51. -- 
  52. Team-building exercises come in many forms but they all trace their roots back
  53. to the prison system.  In your typical team-building exercise the employees
  54. are subjected to a variety of unpleasant situations until they become either a
  55. cohesive team or a ring of car jackers.
  56.                 (Scott Adams - The Dilbert principle)
  57.  
  58.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  59. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  60. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  61.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  62.