Mercurial > vim
annotate runtime/compiler/gcc.vim @ 5070:cf52d2a8c05c v7.3.1278
updated for version 7.3.1278
Problem: When someone sets the screen size to a huge value with "stty" Vim
runs out of memory before reducing the size.
Solution: Limit Rows and Columns in more places.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sun, 30 Jun 2013 17:51:51 +0200 |
parents | 91e53bcb7946 |
children | 7818ca6de3d0 |
rev | line source |
---|---|
375 | 1 " Vim compiler file |
2 " Compiler: GNU C Compiler | |
839 | 3 " Maintainer: Nikolai Weibull <now@bitwi.se> |
2608
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2236
diff
changeset
|
4 " Latest Revision: 2010-10-14 |
375 | 5 |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "gcc" | |
10 | |
11 let s:cpo_save = &cpo | |
3237 | 12 set cpo&vim |
375 | 13 |
1621 | 14 CompilerSet errorformat= |
2034 | 15 \%*[^\"]\"%f\"%*\\D%l:%c:\ %m, |
375 | 16 \%*[^\"]\"%f\"%*\\D%l:\ %m, |
2034 | 17 \\"%f\"%*\\D%l:%c:\ %m, |
375 | 18 \\"%f\"%*\\D%l:\ %m, |
19 \%-G%f:%l:\ %trror:\ (Each\ undeclared\ identifier\ is\ reported\ only\ once, | |
20 \%-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
|
21 \%f:%l:%c:\ %trror:\ %m, |
2236
dc2e5ec0500d
Added the undofile() function. Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
22 \%f:%l:%c:\ %tarning:\ %m, |
2034 | 23 \%f:%l:%c:\ %m, |
2608
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2236
diff
changeset
|
24 \%f:%l:\ %trror:\ %m, |
2236
dc2e5ec0500d
Added the undofile() function. Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
25 \%f:%l:\ %tarning:\ %m, |
375 | 26 \%f:%l:\ %m, |
27 \\"%f\"\\,\ line\ %l%*\\D%c%*[^\ ]\ %m, | |
28 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f', | |
29 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f', | |
1213 | 30 \%D%*\\a:\ Entering\ directory\ `%f', |
31 \%X%*\\a:\ Leaving\ directory\ `%f', | |
375 | 32 \%DMaking\ %*\\a\ in\ %f |
33 | |
1213 | 34 if exists('g:compiler_gcc_ignore_unmatched_lines') |
1621 | 35 CompilerSet errorformat+=%-G%.%# |
1213 | 36 endif |
37 | |
375 | 38 let &cpo = s:cpo_save |
39 unlet s:cpo_save |