Mercurial > vim
annotate runtime/compiler/bdf.vim @ 18315:6e8b7c58c526 v8.1.2152
patch 8.1.2152: problems navigating tags file on MacOS Catalina
Commit: https://github.com/vim/vim/commit/27fc8cab227e30f649f52e74efd58ad56d21e9bb
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Oct 15 22:23:37 2019 +0200
patch 8.1.2152: problems navigating tags file on MacOS Catalina
Problem: Problems navigating tags file on MacOS Catalina.
Solution: Use fseek instead of lseek. (John Lamb, fixes https://github.com/vim/vim/issues/5061)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 15 Oct 2019 22:30:04 +0200 |
parents | 1218c5353e2b |
children | 2c3f939d46bf |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
11062 | 2 " Compiler: BDF to PCF Conversion |
3 " Previous 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 |