blob: a30a9b6907a9b8cc1c6995127abc5b42a0f35935 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim compiler file
Bram Moolenaar42eeac32005-06-29 22:40:58 +00002" Compiler: BDF to PCF Conversion
3" Maintainer: Nikolai Weibull <nikolai+work.vim@bitwi.se>
4" Latest Revision: 2005-06-29
Bram Moolenaar071d4272004-06-13 20:20:40 +00005
6if exists("current_compiler")
7 finish
8endif
9let current_compiler = "bdf"
10
Bram Moolenaar071d4272004-06-13 20:20:40 +000011let s:cpo_save = &cpo
12set cpo-=C
13
Bram Moolenaarf4d11452005-12-02 00:46:37 +000014CompilerSet makeprg=bdftopcf\ $*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015
Bram Moolenaarf4d11452005-12-02 00:46:37 +000016CompilerSet errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m,
Bram Moolenaar071d4272004-06-13 20:20:40 +000017 \%-Z%p^,
18 \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt,
19 \%-G%.%#
20
21let &cpo = s:cpo_save
22unlet s:cpo_save