Mercurial > vim
annotate runtime/compiler/fortran_lf95.vim @ 8310:aec8f8ce8e4c v7.4.1447
commit https://github.com/vim/vim/commit/d6051b5eb83687f60bb4a2f3d5cd23fe8b290eb4
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 28 15:49:03 2016 +0100
patch 7.4.1447
Problem: Memory leak when using ch_read(). (Dominique Pelle)
No log message when stopping a job and a few other situations.
Too many "Nothing to read" messages. Channels are not freed.
Solution: Free the listtv. Add more log messages. Remove "Nothing to read"
message. Remove the channel from the job when its refcount
becomes zero.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 28 Feb 2016 16:00:05 +0100 |
parents | 3fc0f57ecb91 |
children | e1df51f68736 |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
2 " Compiler: Lahey/Fujitsu Fortran 95 | |
3 " URL: http://www.unb.ca/chem/ajit/compiler/fortran_lf95.vim | |
4 " Maintainer: Ajit J. Thakkar (ajit AT unb.ca); <http://www.unb.ca/chem/ajit/> | |
5 " Version: 0.2 | |
6 " Last Change: 2004 Mar 27 | |
7 | |
8 if exists("current_compiler") | |
9 finish | |
10 endif | |
11 let current_compiler = "fortran_lf95" | |
12 | |
13 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
14 command -nargs=* CompilerSet setlocal <args> | |
15 endif | |
16 | |
17 let s:cposet=&cpoptions | |
18 set cpoptions-=C | |
19 | |
20 CompilerSet errorformat=\ %#%n-%t:\ \"%f\"\\,\ line\ %l:%m, | |
21 \Error\ LINK\.%n:%m, | |
22 \Warning\ LINK\.%n:%m, | |
23 \%-G%.%# | |
24 CompilerSet makeprg=lf95 | |
25 | |
26 let &cpoptions=s:cposet | |
27 unlet s:cposet |