Mercurial > vim
view runtime/compiler/xmllint.vim @ 19091:1c75e1974313 v8.2.0106
patch 8.2.0106: printf formats are not exactly right
Commit: https://github.com/vim/vim/commit/b16ad968499aeb29b6ff9be6cc64fb41522a4a5e
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jan 8 22:06:14 2020 +0100
patch 8.2.0106: printf formats are not exactly right
Problem: Printf formats are not exactly right.
Solution: Adjust signed/unsigned conversions. (Frazer Clews, closes https://github.com/vim/vim/issues/5456)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 08 Jan 2020 22:15:03 +0100 |
parents | f7add3891e95 |
children | d4c7b3e9cd17 |
line wrap: on
line source
" Vim compiler file " Compiler: xmllint " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2013 Jul 8 if exists("current_compiler") finish endif let current_compiler = "xmllint" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo-=C CompilerSet makeprg=xmllint\ --valid\ --noout CompilerSet errorformat=%+E%f:%l:\ %.%#\ error\ :\ %m, \%+W%f:%l:\ %.%#\ warning\ :\ %m, \%-Z%p^, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save