Mercurial > vim
view runtime/compiler/bdf.vim @ 19691:60b5abfc4897 v8.2.0402
patch 8.2.0402: setting local instead of global flag
Commit: https://github.com/vim/vim/commit/30d53e2c11e670845830bdfc29bf8c1615df61a8
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Mar 18 21:10:44 2020 +0100
patch 8.2.0402: setting local instead of global flag
Problem: Setting local instead of global flag.
Solution: Prepend "g:" to "test_is_flaky".
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 18 Mar 2020 21:15:03 +0100 |
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