Skip to content

Commit fb8ebf1

Browse files
Konfektchrisbra
authored andcommitted
runtime(compiler): Remove version check in rustc compiler
closes: #18347 Signed-off-by: Konfekt <[email protected]> Signed-off-by: Christian Brabandt <[email protected]>
1 parent d0dd561 commit fb8ebf1

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

runtime/compiler/rustc.vim

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
" Compiler: Rust Compiler
33
" Maintainer: Chris Morgan <[email protected]>
44
" Latest Revision: 2023-09-11
5+
" 2025 Nov 15 by Vim project: remove test for Vim patch 7.4.191
56
" For bugs, patches and license go to https://github.com/rust-lang/rust.vim
67

78
if exists("current_compiler")
@@ -17,11 +18,7 @@ set cpo&vim
1718
if get(g:, 'rustc_makeprg_no_percent', 0)
1819
CompilerSet makeprg=rustc
1920
else
20-
if has('patch-7.4.191')
21-
CompilerSet makeprg=rustc\ \%:S
22-
else
23-
CompilerSet makeprg=rustc\ \"%\"
24-
endif
21+
CompilerSet makeprg=rustc\ \%:S
2522
endif
2623

2724
" New errorformat (after nightly 2016/08/10)

0 commit comments

Comments
 (0)