Mercurial > vim
view runtime/compiler/gfortran.vim @ 10753:4961e7acdd8c v8.0.0266
patch 8.0.0266: compiler warning for using uninitialized variable
commit https://github.com/vim/vim/commit/c625155ea42da2d7cefd853837f18115713b439c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 29 21:42:20 2017 +0100
patch 8.0.0266: compiler warning for using uninitialized variable
Problem: Compiler warning for using uninitialized variable.
Solution: Set tab_number also when there is an error.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 29 Jan 2017 21:45:05 +0100 |
parents | d1e4abe8342c |
children | e1df51f68736 |
line wrap: on
line source
" Compiler: GNU Fortran Compiler " Maintainer: H Xu <xuhdev@gmail.com> " Version: 0.1.3 " Last Change: 2012 Apr 30 " Homepage: http://www.vim.org/scripts/script.php?script_id=3496 " https://bitbucket.org/xuhdev/compiler-gfortran.vim " License: Same as Vim if exists('current_compiler') finish endif let current_compiler = 'gfortran' let s:keepcpo= &cpo set cpo&vim if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif CompilerSet errorformat= \%A%f:%l.%c:, \%-Z%trror:\ %m, \%-Z%tarning:\ %m, \%-C%.%# let &cpo = s:keepcpo unlet s:keepcpo