Fixed compatible mode in most runtime files.
diff --git a/runtime/compiler/gnat.vim b/runtime/compiler/gnat.vim
index d7ec55b..3ad1eb4 100644
--- a/runtime/compiler/gnat.vim
+++ b/runtime/compiler/gnat.vim
@@ -17,11 +17,11 @@
" Help Page: compiler-gnat
"------------------------------------------------------------------------------
-if (exists("current_compiler") &&
- \ current_compiler == "gnat") ||
- \ version < 700
+if (exists("current_compiler")&& current_compiler == "gnat") || version < 700
finish
endif
+let s:keepcpo= &cpo
+set cpo&vim
let current_compiler = "gnat"
@@ -62,6 +62,9 @@
execute "CompilerSet makeprg=" . escape (g:gnat.Get_Command('Make'), ' ')
execute "CompilerSet errorformat=" . escape (g:gnat.Error_Format, ' ')
+let &cpo = s:keepcpo
+unlet s:keepcpo
+
finish " 1}}}
"------------------------------------------------------------------------------