|
Karsten Hopp |
e74cc6 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
e74cc6 |
Subject: patch 7.1.002
|
|
Karsten Hopp |
e74cc6 |
Fcc: outbox
|
|
Karsten Hopp |
e74cc6 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
e74cc6 |
Mime-Version: 1.0
|
|
Karsten Hopp |
e74cc6 |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
e74cc6 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
e74cc6 |
------------
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
Patch 7.1.002
|
|
Karsten Hopp |
e74cc6 |
Problem: Oracle Pro*C/C++ files are not detected.
|
|
Karsten Hopp |
e74cc6 |
Solution: Add the missing star. (Micah J. Cowan)
|
|
Karsten Hopp |
e74cc6 |
Files: runtime/filetype.vim
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
*** ../vim-7.1.001/runtime/filetype.vim Thu May 10 20:42:30 2007
|
|
Karsten Hopp |
e74cc6 |
--- runtime/filetype.vim Tue May 15 09:12:06 2007
|
|
Karsten Hopp |
e74cc6 |
***************
|
|
Karsten Hopp |
e74cc6 |
*** 1,7 ****
|
|
Karsten Hopp |
e74cc6 |
" Vim support file to detect file types
|
|
Karsten Hopp |
e74cc6 |
"
|
|
Karsten Hopp |
e74cc6 |
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
Karsten Hopp |
e74cc6 |
! " Last Change: 2007 May 10
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
" Listen very carefully, I will say this only once
|
|
Karsten Hopp |
e74cc6 |
if exists("did_load_filetypes")
|
|
Karsten Hopp |
e74cc6 |
--- 1,7 ----
|
|
Karsten Hopp |
e74cc6 |
" Vim support file to detect file types
|
|
Karsten Hopp |
e74cc6 |
"
|
|
Karsten Hopp |
e74cc6 |
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
Karsten Hopp |
e74cc6 |
! " Last Change: 2007 May 15
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
" Listen very carefully, I will say this only once
|
|
Karsten Hopp |
e74cc6 |
if exists("did_load_filetypes")
|
|
Karsten Hopp |
e74cc6 |
***************
|
|
Karsten Hopp |
e74cc6 |
*** 1286,1292 ****
|
|
Karsten Hopp |
e74cc6 |
au BufNewFile,BufRead *.it,*.ih setf ppwiz
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
" Oracle Pro*C/C++
|
|
Karsten Hopp |
e74cc6 |
! au BufNewFile,BufRead .pc setf proc
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
" Privoxy actions file
|
|
Karsten Hopp |
e74cc6 |
au BufNewFile,BufRead *.action setf privoxy
|
|
Karsten Hopp |
e74cc6 |
--- 1286,1292 ----
|
|
Karsten Hopp |
e74cc6 |
au BufNewFile,BufRead *.it,*.ih setf ppwiz
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
" Oracle Pro*C/C++
|
|
Karsten Hopp |
e74cc6 |
! au BufNewFile,BufRead *.pc setf proc
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
" Privoxy actions file
|
|
Karsten Hopp |
e74cc6 |
au BufNewFile,BufRead *.action setf privoxy
|
|
Karsten Hopp |
e74cc6 |
*** ../vim-7.1.001/src/version.c Mon May 14 19:35:51 2007
|
|
Karsten Hopp |
e74cc6 |
--- src/version.c Tue May 15 09:13:11 2007
|
|
Karsten Hopp |
e74cc6 |
***************
|
|
Karsten Hopp |
e74cc6 |
*** 668,669 ****
|
|
Karsten Hopp |
e74cc6 |
--- 668,671 ----
|
|
Karsten Hopp |
e74cc6 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
e74cc6 |
+ /**/
|
|
Karsten Hopp |
e74cc6 |
+ 2,
|
|
Karsten Hopp |
e74cc6 |
/**/
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
--
|
|
Karsten Hopp |
e74cc6 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
e74cc6 |
132. You come back and check this list every half-hour.
|
|
Karsten Hopp |
e74cc6 |
|
|
Karsten Hopp |
e74cc6 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
e74cc6 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
e74cc6 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
e74cc6 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|