diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-02 19:22:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-02 19:22:23 +0200 |
| commit | a270c33b3a49d7a47b1bb6e6b9eb2073d98e0602 (patch) | |
| tree | 7561e413d75fdb008c2bdf81dc63f31806116d5c /runtime/compiler/splint.vim | |
| parent | 1aedb9ed00e40f54bb3303ab6d2da4a0f6e2fbb6 (diff) | |
| parent | e2e220256e7e62b6b7df9ba65cd3fdf32390652b (diff) | |
| download | rneovim-a270c33b3a49d7a47b1bb6e6b9eb2073d98e0602.tar.gz rneovim-a270c33b3a49d7a47b1bb6e6b9eb2073d98e0602.tar.bz2 rneovim-a270c33b3a49d7a47b1bb6e6b9eb2073d98e0602.zip | |
Merge #10675 from justinmk/vim-runtime
fix #10572
Diffstat (limited to 'runtime/compiler/splint.vim')
| -rw-r--r-- | runtime/compiler/splint.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/compiler/splint.vim b/runtime/compiler/splint.vim index 6239ca7139..3d7ada6d1d 100644 --- a/runtime/compiler/splint.vim +++ b/runtime/compiler/splint.vim @@ -2,7 +2,7 @@ " Compiler: splint/lclint (C source code checker) " Maintainer: Ralf Wildenhues <Ralf.Wildenhues@gmx.de> " Splint Home: http://www.splint.org/ -" Last Change: 2005 Apr 21 +" Last Change: 2019 Jul 23 " $Revision: 1.3 $ if exists("current_compiler") @@ -19,7 +19,7 @@ set cpo-=C " adapt this if you want to check more than one file at a time. " put command line options in .splintrc or ~/.splintrc -CompilerSet makeprg=splint\ % +CompilerSet makeprg=splint\ %:S " Note: when using the new array bounds checking flags: Each warning " usually has several lines and several references to source code mostly |