Mercurial > vim
view runtime/compiler/stack.vim @ 20917:5c6a6b5a3330 v8.2.1010
patch 8.2.1010: build failure in libvterm with debug enabled
Commit: https://github.com/vim/vim/commit/128d3079635ae62786a13adc435d0063a64a014a
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jun 19 17:20:41 2020 +0200
patch 8.2.1010: build failure in libvterm with debug enabled
Problem: Build failure in libvterm with debug enabled. (John Little)
Solution: Use "->" instead of ".".
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 19 Jun 2020 17:30:03 +0200 |
parents | 34fd018452ed |
children |
line wrap: on
line source
" Vim compiler file " Compiler: Haskell Stack " Maintainer: Daniel Campoverde <alx@sillybytes.net> " Latest Revision: 2018-08-27 if exists("current_compiler") finish endif let current_compiler = "stack" let s:cpo_save = &cpo set cpo&vim CompilerSet errorformat= \%-G%.%#:\ build\ %.%#, \%-G%.%#:\ configure\ %.%#, \%-G[%.%#]%.%#, \%-G%.%#preprocessing\ %.%#, \%-G%.%#configuring\ %.%#, \%-G%.%#building\ %.%#, \%-G%.%#linking\ %.%#, \%-G%.%#installing\ %.%#, \%-G%.%#registering\ %.%#, \%-G%.%#:\ copy/register%.%#, \%-G%.%#process\ exited\ %.%#, \%-G%.%#--builddir=%.%#, \%-G--%.%#, \%-G%.%#\|%.%#, \%E%f:%l:%c:\ error:,%+Z\ \ \ \ %m, \%E%f:%l:%c:\ error:\ %m,%-Z, \%W%f:%l:%c:\ warning:,%+Z\ \ \ \ %m, \%W%f:%l:%c:\ warning:\ %m,%-Z, let &cpo = s:cpo_save unlet s:cpo_save