Mercurial > vim
annotate runtime/compiler/gcc.vim @ 24852:3c8bd1d392d1 v8.2.2964
patch 8.2.2964: Vim9: hang when using space after ->
Commit: https://github.com/vim/vim/commit/a733042b124357225e4081e10ef28591236c6077
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jun 8 20:46:45 2021 +0200
patch 8.2.2964: Vim9: hang when using space after ->
Problem: Vim9: hang when using space after ->. (Naohiro Ono)
Solution: Skip over white space to find the function name. (closes https://github.com/vim/vim/issues/8341)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 08 Jun 2021 21:00:03 +0200 |
parents | b9bc47742df6 |
children | e1df51f68736 |
rev | line source |
---|---|
375 | 1 " Vim compiler file |
11062 | 2 " Compiler: GNU C Compiler |
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> | |
4 " Latest Revision: 2010-10-14 | |
17372 | 5 " changed pattern for entering/leaving directories |
6 " by Daniel Hahler, 2019 Jul 12 | |
8869
b73f9ed65072
commit https://github.com/vim/vim/commit/939a1abe935a539f2d4c90a56cb0682cbaf3bbb0
Christian Brabandt <cb@256bit.org>
parents:
5555
diff
changeset
|
7 " added line suggested by Anton Lindqvist 2016 Mar 31 |
375 | 8 |
9 if exists("current_compiler") | |
10 finish | |
11 endif | |
12 let current_compiler = "gcc" | |
13 | |
14 let s:cpo_save = &cpo | |
3237 | 15 set cpo&vim |
375 | 16 |
1621 | 17 CompilerSet errorformat= |
2034 | 18 \%*[^\"]\"%f\"%*\\D%l:%c:\ %m, |
375 | 19 \%*[^\"]\"%f\"%*\\D%l:\ %m, |
2034 | 20 \\"%f\"%*\\D%l:%c:\ %m, |
375 | 21 \\"%f\"%*\\D%l:\ %m, |
22 \%-G%f:%l:\ %trror:\ (Each\ undeclared\ identifier\ is\ reported\ only\ once, | |
23 \%-G%f:%l:\ %trror:\ for\ each\ function\ it\ appears\ in.), | |
2608
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2236
diff
changeset
|
24 \%f:%l:%c:\ %trror:\ %m, |
2236
dc2e5ec0500d
Added the undofile() function. Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
25 \%f:%l:%c:\ %tarning:\ %m, |
2034 | 26 \%f:%l:%c:\ %m, |
2608
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2236
diff
changeset
|
27 \%f:%l:\ %trror:\ %m, |
2236
dc2e5ec0500d
Added the undofile() function. Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
28 \%f:%l:\ %tarning:\ %m, |
375 | 29 \%f:%l:\ %m, |
8869
b73f9ed65072
commit https://github.com/vim/vim/commit/939a1abe935a539f2d4c90a56cb0682cbaf3bbb0
Christian Brabandt <cb@256bit.org>
parents:
5555
diff
changeset
|
30 \%f:\\(%*[^\\)]\\):\ %m, |
375 | 31 \\"%f\"\\,\ line\ %l%*\\D%c%*[^\ ]\ %m, |
17372 | 32 \%D%*\\a[%*\\d]:\ Entering\ directory\ %*[`']%f', |
33 \%X%*\\a[%*\\d]:\ Leaving\ directory\ %*[`']%f', | |
34 \%D%*\\a:\ Entering\ directory\ %*[`']%f', | |
35 \%X%*\\a:\ Leaving\ directory\ %*[`']%f', | |
375 | 36 \%DMaking\ %*\\a\ in\ %f |
37 | |
1213 | 38 if exists('g:compiler_gcc_ignore_unmatched_lines') |
1621 | 39 CompilerSet errorformat+=%-G%.%# |
1213 | 40 endif |
41 | |
375 | 42 let &cpo = s:cpo_save |
43 unlet s:cpo_save |