Mercurial > vim
view runtime/compiler/rspec.vim @ 12867:6c199b02c933 v8.0.1310
patch 8.0.1310: cproto generates errors because of missing type
commit https://github.com/vim/vim/commit/0f1e643138d47bfc94a7050c5bd25493c2153960
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Nov 18 20:22:24 2017 +0100
patch 8.0.1310: cproto generates errors because of missing type
Problem: Cproto generates errors because of missing type.
Solution: Define _Float128 when generating prototypes.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 18 Nov 2017 20:30:05 +0100 |
parents | 43efa4f5a8ea |
children | f0f06837a699 |
line wrap: on
line source
" Vim compiler file " Language: RSpec " Maintainer: Tim Pope <vimNOSPAM@tpope.org> " URL: https://github.com/vim-ruby/vim-ruby " Release Coordinator: Doug Kearns <dougkearns@gmail.com> if exists("current_compiler") finish endif let current_compiler = "rspec" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo-=C CompilerSet makeprg=rspec CompilerSet errorformat= \%f:%l:\ %tarning:\ %m, \%E%.%#:in\ `load':\ %f:%l:%m, \%E%f:%l:in\ `%*[^']':\ %m, \%-Z\ \ \ \ \ %\\+\#\ %f:%l:%.%#, \%E\ \ %\\d%\\+)%.%#, \%C\ \ \ \ \ %m, \%C%\\s%#, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save " vim: nowrap sw=2 sts=2 ts=8: