diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-04-30 15:56:52 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-04-30 15:56:52 +0200 |
commit | 9a7224b5a0639c26c843c10afcafa5bf149271fd (patch) | |
tree | 9cafda4f3dd87f3ba177401248d65aa241f63ced /runtime/autoload | |
parent | e8938e507e5dbeea25accd3586cd9aca13e5bf64 (diff) | |
download | vim-git-9a7224b5a0639c26c843c10afcafa5bf149271fd.tar.gz |
Fixed compatible mode in most runtime files.
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/ada.vim | 5 |
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}}} "------------------------------------------------------------------------------ |