summaryrefslogtreecommitdiff
path: root/runtime/autoload/ada.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/autoload/ada.vim')
-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 8f525f486..1f8234a57 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}}}
"------------------------------------------------------------------------------