Mercurial > vim
diff runtime/indent/sdl.vim @ 3237:91e53bcb7946
Updated runtime files.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Fri, 30 Dec 2011 13:11:27 +0100 |
parents | 3fc0f57ecb91 |
children | 7ffc704cb7c1 |
line wrap: on
line diff
--- a/runtime/indent/sdl.vim +++ b/runtime/indent/sdl.vim @@ -1,7 +1,7 @@ " Vim indent file " Language: SDL -" Maintainer: Michael Piefel <piefel@informatik.hu-berlin.de> -" Last Change: 2001 Sep 17 +" Maintainer: Michael Piefel <entwurf@piefel.de> +" Last Change: 10 December 2011 " Shamelessly stolen from the Vim-Script indent file @@ -19,7 +19,8 @@ if exists("*GetSDLIndent") " finish endif -set cpo-=C +let s:cpo_save = &cpo +set cpo&vim function! GetSDLIndent() " Find a non-blank line above the current line. @@ -86,4 +87,7 @@ function! GetSDLIndent() return ind endfunction +let &cpo = s:cpo_save +unlet s:cpo_save + " vim:sw=2