aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/c.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-01-14 23:14:23 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-01-14 23:14:23 -0500
commit24fbb2c866039d61107fa1f6a2efe86bb6951e55 (patch)
treea4f58394b187f382e3ad9258448368a189c42454 /runtime/syntax/c.vim
parent403467056818dce535059c87f289db00b0d4216c (diff)
parentcf0ff1dd0ff93f6ce40af76d671f4d173258fab4 (diff)
downloadrneovim-24fbb2c866039d61107fa1f6a2efe86bb6951e55.tar.gz
rneovim-24fbb2c866039d61107fa1f6a2efe86bb6951e55.tar.bz2
rneovim-24fbb2c866039d61107fa1f6a2efe86bb6951e55.zip
Merge pull request #4014 from jusga/vim-2b8388b
vim-patch:2b8388b
Diffstat (limited to 'runtime/syntax/c.vim')
-rw-r--r--runtime/syntax/c.vim4
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/syntax/c.vim b/runtime/syntax/c.vim
index 128e1a2a4a..a520e6317f 100644
--- a/runtime/syntax/c.vim
+++ b/runtime/syntax/c.vim
@@ -1,7 +1,7 @@
" Vim syntax file
" Language: C
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2014 Nov 13
+" Last Change: 2015 Feb 27
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
@@ -330,6 +330,8 @@ if !exists("c_no_ansi") || exists("c_ansi_constants") || exists("c_gnu")
" POSIX 2001
syn keyword cConstant SIGBUS SIGPOLL SIGPROF SIGSYS SIGURG
syn keyword cConstant SIGVTALRM SIGXCPU SIGXFSZ
+ " non-POSIX signals
+ syn keyword cConstant SIGWINCH SIGINFO
" Add POSIX errors as well
syn keyword cConstant E2BIG EACCES EAGAIN EBADF EBADMSG EBUSY
syn keyword cConstant ECANCELED ECHILD EDEADLK EDOM EEXIST EFAULT