annotate runtime/compiler/stack.vim @ 29228:24b7e14d55e2 v8.2.5133

patch 8.2.5133: MacOS: build fails Commit: https://github.com/vim/vim/commit/1f68d992cd2fd7f484fbdc14eb8a9feefe59bec8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 19 17:22:49 2022 +0100 patch 8.2.5133: MacOS: build fails Problem: MacOS: build fails. Solution: Remove "#if 0" from timer_delete().
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Jun 2022 18:30:04 +0200
parents 34fd018452ed
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14668
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Vim compiler file
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2 " Compiler: Haskell Stack
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 " Maintainer: Daniel Campoverde <alx@sillybytes.net>
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 " Latest Revision: 2018-08-27
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6 if exists("current_compiler")
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 finish
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 endif
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9 let current_compiler = "stack"
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11 let s:cpo_save = &cpo
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12 set cpo&vim
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
13
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 CompilerSet errorformat=
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 \%-G%.%#:\ build\ %.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
17 \%-G%.%#:\ configure\ %.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18 \%-G[%.%#]%.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
19 \%-G%.%#preprocessing\ %.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20 \%-G%.%#configuring\ %.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
21 \%-G%.%#building\ %.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22 \%-G%.%#linking\ %.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 \%-G%.%#installing\ %.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
24 \%-G%.%#registering\ %.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
25 \%-G%.%#:\ copy/register%.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
26 \%-G%.%#process\ exited\ %.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
27 \%-G%.%#--builddir=%.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
28 \%-G--%.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
29 \%-G%.%#\|%.%#,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
30 \%E%f:%l:%c:\ error:,%+Z\ \ \ \ %m,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
31 \%E%f:%l:%c:\ error:\ %m,%-Z,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
32 \%W%f:%l:%c:\ warning:,%+Z\ \ \ \ %m,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
33 \%W%f:%l:%c:\ warning:\ %m,%-Z,
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
35
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
36 let &cpo = s:cpo_save
34fd018452ed Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
37 unlet s:cpo_save