blob: 2aaa93bc279e4b25f9a0c95aa503e81ab5d4db1e [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim compiler file
Bram Moolenaar214641f2017-03-05 17:04:09 +01002" Compiler: BDF to PCF Conversion
3" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
Enno18d730d2024-03-31 18:37:05 +02004" Contributors: Enno Nagel
5" Last Change: 2024 Mar 29
Doug Kearns408281e2024-04-04 22:00:58 +02006" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007
8if exists("current_compiler")
9 finish
10endif
11let current_compiler = "bdf"
12
Bram Moolenaar071d4272004-06-13 20:20:40 +000013let s:cpo_save = &cpo
14set cpo-=C
15
Enno18d730d2024-03-31 18:37:05 +020016CompilerSet makeprg=bdftopcf\ $*
17CompilerSet errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m,
Bram Moolenaar071d4272004-06-13 20:20:40 +000018 \%-Z%p^,
19 \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt,
20 \%-G%.%#
21
22let &cpo = s:cpo_save
23unlet s:cpo_save