diff options
author | Justin Gassner <justin.gassner@web.de> | 2016-01-14 17:18:12 +0100 |
---|---|---|
committer | Justin Gassner <justin.gassner@web.de> | 2016-01-14 17:58:15 +0100 |
commit | cf0ff1dd0ff93f6ce40af76d671f4d173258fab4 (patch) | |
tree | 4ce3b8688b5b1ba3a52b6dc2ea52269018dde268 /runtime/syntax/c.vim | |
parent | bf7bc4dcf0023eb493c0b1d7860e72f3dcd04d78 (diff) | |
download | rneovim-cf0ff1dd0ff93f6ce40af76d671f4d173258fab4.tar.gz rneovim-cf0ff1dd0ff93f6ce40af76d671f4d173258fab4.tar.bz2 rneovim-cf0ff1dd0ff93f6ce40af76d671f4d173258fab4.zip |
vim-patch:2b8388b
Updated runtime files.
https://github.com/vim/vim/commit/2b8388bd0175835eb751e6c58cd0b0b69465f0d9
Diffstat (limited to 'runtime/syntax/c.vim')
-rw-r--r-- | runtime/syntax/c.vim | 4 |
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 |