Mercurial > vim
view runtime/compiler/bdf.vim @ 20411:23af9e1a5283 v8.2.0760
patch 8.2.0760: Vim9: dict member errors not tested
Commit: https://github.com/vim/vim/commit/4dac32caf38f7c35b707b7df104df03591bf6b14
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri May 15 21:44:19 2020 +0200
patch 8.2.0760: Vim9: dict member errors not tested
Problem: Vim9: dict member errors not tested.
Solution: Delete unreachable error. Add tests.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 15 May 2020 21:45:04 +0200 |
parents | 1218c5353e2b |
children | 2c3f939d46bf |
line wrap: on
line source
" Vim compiler file " Compiler: BDF to PCF Conversion " Previous Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2006-04-19 if exists("current_compiler") finish endif let current_compiler = "bdf" let s:cpo_save = &cpo set cpo-=C setlocal makeprg=bdftopcf\ $* setlocal errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m, \%-Z%p^, \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save