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.0.033 < prev    next >
Encoding:
Internet Message Format  |  2001-10-28  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.033
  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.0.033
  11. Problem:    Using 'wildmenu' on MS-Windows, file names that include a space
  12.         are only displayed starting with that space. (Xie Yuheng)
  13. Solution:   Don't recognize a backslash before a space as a path separator.
  14. Files:        src/screen.c
  15.  
  16.  
  17. *** ../vim60.32/src/screen.c    Fri Sep 28 22:19:57 2001
  18. --- src/screen.c    Mon Oct 29 14:36:57 2001
  19. ***************
  20. *** 4324,4330 ****
  21.   
  22.       for (p = s; *p != NUL; )
  23.       {
  24. !     if (vim_ispathsep(*p))
  25.           had_sep = TRUE;
  26.       else if (had_sep)
  27.       {
  28. --- 4329,4339 ----
  29.   
  30.       for (p = s; *p != NUL; )
  31.       {
  32. !     if (vim_ispathsep(*p)
  33. ! #ifdef BACKSLASH_IN_FILENAME
  34. !         && !rem_backslash(p)
  35. ! #endif
  36. !        )
  37.           had_sep = TRUE;
  38.       else if (had_sep)
  39.       {
  40. *** ../vim60.32/src/version.c    Mon Oct 29 09:34:01 2001
  41. --- src/version.c    Mon Oct 29 14:39:33 2001
  42. ***************
  43. *** 608,609 ****
  44. --- 608,611 ----
  45.   {   /* Add new patch number below this line */
  46. + /**/
  47. +     33,
  48.   /**/
  49.  
  50. -- 
  51. CRONE:  Who sent you?
  52. ARTHUR: The Knights Who Say Ni!
  53. CRONE:  Aaaagh!  (she looks around in rear) No!  We have no shrubberies here.
  54.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  55.  
  56.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  57. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  58.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  59.