annotate runtime/compiler/erlang.vim @ 29544:80b4c435450a
v9.0.0113
patch 9.0.0113: has() is not strict about parsing the patch version
Commit: https://github.com/vim/vim/commit/d90f91fe3075bb51668ed926182b2163da9df001
Author: K.Takata <kentkt@csc.jp>
Date: Sat Jul 30 15:43:59 2022 +0100
patch 9.0.0113: has() is not strict about parsing the patch version
Problem: has() is not strict about parsing the patch version.
Solution: Check the version more strictly. (Ken Takata, closes https://github.com/vim/vim/issues/10752)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 30 Jul 2022 16:45:05 +0200 |
parents |
2704c4e3e20a |
children |
e1df51f68736 |
rev |
line source |
3281
|
1 " Vim compiler file
|
3371
|
2 " Compiler: Erlang
|
|
3 " Maintainer: Dmitry Vasiliev <dima at hlabs dot org>
|
17571
|
4 " Last Change: 2019 Jul 23
|
3281
|
5
|
|
6 if exists("current_compiler")
|
|
7 finish
|
|
8 endif
|
|
9 let current_compiler = "erlang"
|
|
10
|
17571
|
11 CompilerSet makeprg=erlc\ -Wall\ %:S
|
3371
|
12
|
|
13 CompilerSet errorformat=%f:%l:\ %m
|