Mercurial > vim
annotate runtime/compiler/se.vim @ 19691:60b5abfc4897 v8.2.0402
patch 8.2.0402: setting local instead of global flag
Commit: https://github.com/vim/vim/commit/30d53e2c11e670845830bdfc29bf8c1615df61a8
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Mar 18 21:10:44 2020 +0100
patch 8.2.0402: setting local instead of global flag
Problem: Setting local instead of global flag.
Solution: Prepend "g:" to "test_is_flaky".
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 18 Mar 2020 21:15:03 +0100 |
parents | f7add3891e95 |
children | e1df51f68736 |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
5161
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
2 " Compiler: se (Liberty Eiffel Compiler) |
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> |
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
4 " Last Change: 2013 Jun 29 |
7 | 5 |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "se" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
15 let s:cpo_save = &cpo | |
16 set cpo-=C | |
17 | |
5161
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
18 CompilerSet makeprg=se\ c |
7 | 19 |
20 CompilerSet errorformat=%W******\ Warning:\ %m, | |
21 \%E******\ Fatal\ Error:\ %m, | |
22 \%E******\ Error:\ %m, | |
5161
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
23 \%ZLine\ %l\ column\ %c\ in\ %.%#\ (%f)\ %\\=:, |
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
24 \%ZLine\ %l\ columns\ %c\\,\ %\\d%\\+\ %.%#\ (%f)\ %\\=:, |
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
25 \%+C%*[^\ ]%.%#, |
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
26 \%-GThe\ source\ lines\ involved, |
7 | 27 \%-G%.%# |
28 | |
29 let &cpo = s:cpo_save | |
30 unlet s:cpo_save |