home *** CD-ROM | disk | FTP | other *** search
- To: vim-dev@vim.org
- Subject: Patch 6.1.098
- 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.1.098
- Problem: MS-Windows: When the xxd program is under "c:\program files" the
- "Convert to Hex" menu doesn't work. (Brian Mathis)
- Solution: Put the path to xxd in double quotes.
- Files: runtime/menu.vim
-
-
- *** ../vim61.097/runtime/menu.vim Wed May 15 21:02:09 2002
- --- runtime/menu.vim Fri Jun 14 23:22:57 2002
- ***************
- *** 435,441 ****
- %!mc vim:xxd
- else
- call s:XxdFind()
- ! exe "%!" . g:xxdprogram
- endif
- set ft=xxd
- let &mod = mod
- --- 435,441 ----
- %!mc vim:xxd
- else
- call s:XxdFind()
- ! exe '%!"' . g:xxdprogram . '"'
- endif
- set ft=xxd
- let &mod = mod
- ***************
- *** 447,453 ****
- %!mc vim:xxd -r
- else
- call s:XxdFind()
- ! exe "%!" . g:xxdprogram . " -r"
- endif
- set ft=
- doautocmd filetypedetect BufReadPost
- --- 447,453 ----
- %!mc vim:xxd -r
- else
- call s:XxdFind()
- ! exe '%!"' . g:xxdprogram . '" -r'
- endif
- set ft=
- doautocmd filetypedetect BufReadPost
- *** ../vim61.097/src/version.c Tue Jun 18 21:13:31 2002
- --- src/version.c Tue Jun 18 21:25:09 2002
- ***************
- *** 608,609 ****
- --- 608,611 ----
- { /* Add new patch number below this line */
- + /**/
- + 98,
- /**/
-
- --
- hundred-and-one symptoms of being an internet addict:
- 257. Your "hundred-and-one" lists include well over 101 items, since you
- automatically interpret all numbers in hexadecimal notation.
- (hex 101 = decimal 257)
-
- /// Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net \\\
- /// Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim \\\
- \\\ Project leader for A-A-P -- http://www.a-a-p.org ///
- \\\ Help me helping AIDS orphans in Uganda - http://iccf-holland.org ///
-