More runtime file fixes for 'compatible' mode.
diff --git a/runtime/indent/ada.vim b/runtime/indent/ada.vim
index c7f8864..03fbaa3 100644
--- a/runtime/indent/ada.vim
+++ b/runtime/indent/ada.vim
@@ -28,8 +28,6 @@
if exists("b:did_indent") || version < 700
finish
endif
-let s:keepcpo= &cpo
-set cpo&vim
let b:did_indent = 45
@@ -41,6 +39,8 @@
if exists("*GetAdaIndent")
finish
endif
+let s:keepcpo= &cpo
+set cpo&vim
if exists("g:ada_with_gnat_project_files")
let s:AdaBlockStart = '^\s*\(if\>\|while\>\|else\>\|elsif\>\|loop\>\|for\>.*\<\(loop\|use\)\>\|declare\>\|begin\>\|type\>.*\<is\>[^;]*$\|\(type\>.*\)\=\<record\>\|procedure\>\|function\>\|accept\>\|do\>\|task\>\|package\>\|project\>\|then\>\|when\>\|is\>\)'
diff --git a/runtime/indent/python.vim b/runtime/indent/python.vim
index 838865f..54ed123 100644
--- a/runtime/indent/python.vim
+++ b/runtime/indent/python.vim
@@ -2,15 +2,13 @@
" Language: Python
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Original Author: David Bustos <bustos@caltech.edu>
-" Last Change: 2012 Apr 30
+" Last Change: 2012 May 01
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
finish
endif
let b:did_indent = 1
-let s:keepcpo= &cpo
-set cpo&vim
" Some preliminary settings
setlocal nolisp " Make sure lisp indenting doesn't supersede us
@@ -23,6 +21,8 @@
if exists("*GetPythonIndent")
finish
endif
+let s:keepcpo= &cpo
+set cpo&vim
" Come here when loading the script the first time.