From: Konfekt Date: Sat, 15 Nov 2025 17:18:41 +0000 (+0000) Subject: runtime(compiler): Remove version check in rustc compiler X-Git-Tag: v9.1.1916~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb8ebf1ee016cf8e942757f9efb9f706a0dbc08e;p=thirdparty%2Fvim.git runtime(compiler): Remove version check in rustc compiler closes: #18347 Signed-off-by: Konfekt Signed-off-by: Christian Brabandt --- diff --git a/runtime/compiler/rustc.vim b/runtime/compiler/rustc.vim index b3c8091987..ca261d857a 100644 --- a/runtime/compiler/rustc.vim +++ b/runtime/compiler/rustc.vim @@ -2,6 +2,7 @@ " Compiler: Rust Compiler " Maintainer: Chris Morgan " Latest Revision: 2023-09-11 +" 2025 Nov 15 by Vim project: remove test for Vim patch 7.4.191 " For bugs, patches and license go to https://github.com/rust-lang/rust.vim if exists("current_compiler") @@ -17,11 +18,7 @@ set cpo&vim if get(g:, 'rustc_makeprg_no_percent', 0) CompilerSet makeprg=rustc else - if has('patch-7.4.191') - CompilerSet makeprg=rustc\ \%:S - else - CompilerSet makeprg=rustc\ \"%\" - endif + CompilerSet makeprg=rustc\ \%:S endif " New errorformat (after nightly 2016/08/10)