summaryrefslogtreecommitdiff
path: root/uvim/runtime/compiler/irix5_cpp.vim
diff options
context:
space:
mode:
Diffstat (limited to 'uvim/runtime/compiler/irix5_cpp.vim')
-rw-r--r--uvim/runtime/compiler/irix5_cpp.vim23
1 files changed, 0 insertions, 23 deletions
diff --git a/uvim/runtime/compiler/irix5_cpp.vim b/uvim/runtime/compiler/irix5_cpp.vim
deleted file mode 100644
index 85ab8c67f2..0000000000
--- a/uvim/runtime/compiler/irix5_cpp.vim
+++ /dev/null
@@ -1,23 +0,0 @@
-" Vim compiler file
-" Compiler: SGI IRIX 5.3 CC or NCC
-" Maintainer: David Harrison <david_jr@users.sourceforge.net>
-" Last Change: 2012 Apr 30
-" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
-
-if exists("current_compiler")
- finish
-endif
-let current_compiler = "irix5_cpp"
-let s:keepcpo= &cpo
-set cpo&vim
-
-CompilerSet errorformat=%E\"%f\"\\,\ line\ %l:\ error(%n):\ ,
- \%E\"%f\"\\,\ line\ %l:\ error(%n):\ %m,
- \%W\"%f\"\\,\ line\ %l:\ warning(%n):\ %m,
- \%+IC++\ prelinker:\ %m,
- \%-Z\ \ %p%^,
- \%+C\ %\\{10}%.%#,
- \%-G%.%#
-
-let &cpo = s:keepcpo
-unlet s:keepcpo