Mercurial > vim
view runtime/compiler/dartdevc.vim @ 32313:6761c71f4b25 v9.0.1488
patch 9.0.1488: xchacha20v2 crypt header is platform dependent
Commit: https://github.com/vim/vim/commit/35a2ec18d6560251e8164636bac6e21ea504648e
Author: ichizok <gclient.gaap@gmail.com>
Date: Tue Apr 25 15:27:27 2023 +0100
patch 9.0.1488: xchacha20v2 crypt header is platform dependent
Problem: xchacha20v2 crypt header is platform dependent.
Solution: Avoid using "size_t". (Ozaki Kiichi, closses https://github.com/vim/vim/issues/12296)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 25 Apr 2023 16:30:03 +0200 |
parents | d4c7b3e9cd17 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: Dart Development Compiler " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2019 May 08 if exists("current_compiler") finish endif let current_compiler = "dartdevc" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo&vim CompilerSet makeprg=dartdevc CompilerSet errorformat=%E%f:%l:%c:\ Error:\ %m, \%CTry\ %.%#, \%Z\ %#^%\\+, \%Z%$, \%C%.%#, \%E%f:\ %trror:\ %m, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save