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 / old / 5.6.009 < prev    next >
Encoding:
Internet Message Format  |  2000-01-24  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 5.6.009 (extra)
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. [If you want the new gvimext.dll, you can find it at
  8. ftp://ftp.vim.org/pub/vim/patches/gvimext-5.6.009.dll (in a short while) ]
  9.  
  10. Patch 5.6.009 (extra)
  11. Problem:    Win32 GUI: Garbage in Windows Explorer help line when selecting
  12.             "Edit with Vim" popup menu entry.
  13. Solution:   Only return the help line when called with the GCS_HELPTEXT flag.
  14.             (Tianmiao Hu)
  15. Files:      GvimExt/gvimext.cpp
  16.  
  17.  
  18. *** ../vim-5.6.8/GvimExt/gvimext.cpp    Wed Jan 12 12:38:21 2000
  19. --- GvimExt/gvimext.cpp    Tue Jan 25 12:56:52 2000
  20. ***************
  21. *** 361,372 ****
  22.                        LPSTR pszName,
  23.                        UINT cchMax)
  24.   {
  25. !     switch (idCmd)
  26. !     {
  27. !     case 0:
  28. !         lstrcpy(pszName, "Edits the selected file(s) with Vim");
  29. !         break;
  30. !     }
  31.   
  32.       return NOERROR;
  33.   }
  34. --- 361,368 ----
  35.                        LPSTR pszName,
  36.                        UINT cchMax)
  37.   {
  38. !     if (uFlags == GCS_HELPTEXT && cchMax > 35)
  39. !     lstrcpy(pszName, "Edits the selected file(s) with Vim");
  40.   
  41.       return NOERROR;
  42.   }
  43. *** ../vim-5.6.8/src/version.c    Mon Jan 24 13:12:12 2000
  44. --- src/version.c    Tue Jan 25 12:41:24 2000
  45. ***************
  46. *** 420,421 ****
  47. --- 420,423 ----
  48.   {   /* Add new patch number below this line */
  49. + /**/
  50. +     9,
  51.   /**/
  52.  
  53. -- 
  54. A mathematician is a device for turning coffee into theorems.
  55.                     P. Erdos
  56.  
  57. /-/-- Bram Moolenaar --- Bram@moolenaar.net --- http://www.moolenaar.net --\-\
  58. \ \   Vim: http://www.vim.org      ICCF Holland: http://www.vim.org/iccf   / /
  59.