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.098 < prev    next >
Encoding:
Internet Message Format  |  2002-06-17  |  1.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.098
  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.098
  11. Problem:    MS-Windows: When the xxd program is under "c:\program files" the
  12.         "Convert to Hex" menu doesn't work. (Brian Mathis)
  13. Solution:   Put the path to xxd in double quotes.
  14. Files:        runtime/menu.vim
  15.  
  16.  
  17. *** ../vim61.097/runtime/menu.vim    Wed May 15 21:02:09 2002
  18. --- runtime/menu.vim    Fri Jun 14 23:22:57 2002
  19. ***************
  20. *** 435,441 ****
  21.       %!mc vim:xxd
  22.     else
  23.       call s:XxdFind()
  24. !     exe "%!" . g:xxdprogram
  25.     endif
  26.     set ft=xxd
  27.     let &mod = mod
  28. --- 435,441 ----
  29.       %!mc vim:xxd
  30.     else
  31.       call s:XxdFind()
  32. !     exe '%!"' . g:xxdprogram . '"'
  33.     endif
  34.     set ft=xxd
  35.     let &mod = mod
  36. ***************
  37. *** 447,453 ****
  38.       %!mc vim:xxd -r
  39.     else
  40.       call s:XxdFind()
  41. !     exe "%!" . g:xxdprogram . " -r"
  42.     endif
  43.     set ft=
  44.     doautocmd filetypedetect BufReadPost
  45. --- 447,453 ----
  46.       %!mc vim:xxd -r
  47.     else
  48.       call s:XxdFind()
  49. !     exe '%!"' . g:xxdprogram . '" -r'
  50.     endif
  51.     set ft=
  52.     doautocmd filetypedetect BufReadPost
  53. *** ../vim61.097/src/version.c    Tue Jun 18 21:13:31 2002
  54. --- src/version.c    Tue Jun 18 21:25:09 2002
  55. ***************
  56. *** 608,609 ****
  57. --- 608,611 ----
  58.   {   /* Add new patch number below this line */
  59. + /**/
  60. +     98,
  61.   /**/
  62.  
  63. -- 
  64. hundred-and-one symptoms of being an internet addict:
  65. 257. Your "hundred-and-one" lists include well over 101 items, since you
  66.      automatically interpret all numbers in hexadecimal notation.
  67.      (hex 101 = decimal 257)
  68.  
  69.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  70. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  71. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  72.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  73.