diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-01-25 21:14:57 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-01-25 21:14:57 +0100 |
commit | e0e3917554327f2524066f89fbbef9c83c1535da (patch) | |
tree | 8cea7343dbb8e20c6bc3248152ddb94fad59eac0 /runtime/indent/fortran.vim | |
parent | e5ea346a07a7750c02a89996b67716b43c767d06 (diff) | |
download | vim-git-e0e3917554327f2524066f89fbbef9c83c1535da.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/indent/fortran.vim')
-rw-r--r-- | runtime/indent/fortran.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/indent/fortran.vim b/runtime/indent/fortran.vim index 696320288..26ed33a54 100644 --- a/runtime/indent/fortran.vim +++ b/runtime/indent/fortran.vim @@ -74,11 +74,15 @@ endif if (b:fortran_fixed_source == 1) setlocal indentexpr=FortranGetFixedIndent() if exists("*FortranGetFixedIndent") + let &cpoptions = s:cposet + unlet s:cposet finish endif else setlocal indentexpr=FortranGetFreeIndent() if exists("*FortranGetFreeIndent") + let &cpoptions = s:cposet + unlet s:cposet finish endif endif @@ -213,7 +217,7 @@ function FortranGetFixedIndent() return ind endfunction -let &cpoptions=s:cposet +let &cpoptions = s:cposet unlet s:cposet " vim:sw=2 tw=130 |