summaryrefslogtreecommitdiffstats
path: root/runtime/autoload
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-04-30 15:56:52 +0200
committerBram Moolenaar <Bram@vim.org>2012-04-30 15:56:52 +0200
commit9a7224b5a0639c26c843c10afcafa5bf149271fd (patch)
tree9cafda4f3dd87f3ba177401248d65aa241f63ced /runtime/autoload
parente8938e507e5dbeea25accd3586cd9aca13e5bf64 (diff)
Fixed compatible mode in most runtime files.
Diffstat (limited to 'runtime/autoload')
-rw-r--r--runtime/autoload/ada.vim5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/autoload/ada.vim b/runtime/autoload/ada.vim
index 8f525f4866..1f8234a575 100644
--- a/runtime/autoload/ada.vim
+++ b/runtime/autoload/ada.vim
@@ -29,6 +29,8 @@
if version < 700
finish
endif
+let s:keepcpo= &cpo
+set cpo&vim
" Section: Constants {{{1
"
@@ -619,6 +621,9 @@ lockvar g:ada#Comment
lockvar! g:ada#Keywords
lockvar! g:ada#Ctags_Kinds
+let &cpo = s:keepcpo
+unlet s:keepcpo
+
finish " 1}}}
"------------------------------------------------------------------------------