Mercurial > vim
annotate runtime/compiler/bdf.vim @ 7145:7669c1269190 v7.4.884
commit https://github.com/vim/vim/commit/c1d20998d71f3fa0aebeeee42007a337cd7e3d8a
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Sep 25 20:30:58 2015 +0200
patch 7.4.884
Problem: Travis also builds on a tag push.
Solution: Filter out tag pushes. (Kenichi Ito)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 25 Sep 2015 20:45:08 +0200 |
parents | 1f3b1021f002 |
children | 1218c5353e2b |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
375 | 2 " Compiler: BDF to PCF Conversion |
839 | 3 " Maintainer: Nikolai Weibull <now@bitwi.se> |
4 " Latest Revision: 2006-04-19 | |
7 | 5 |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "bdf" | |
10 | |
11 let s:cpo_save = &cpo | |
12 set cpo-=C | |
13 | |
839 | 14 setlocal makeprg=bdftopcf\ $* |
7 | 15 |
839 | 16 setlocal errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m, |
7 | 17 \%-Z%p^, |
18 \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt, | |
19 \%-G%.%# | |
20 | |
21 let &cpo = s:cpo_save | |
22 unlet s:cpo_save |