diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-29 21:13:43 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-29 21:56:34 -0400 |
commit | 1e03e76dafb5d166bb3d9ed262695f306de6ac4d (patch) | |
tree | 6a56adadbd656a2fe074e558d9043e1337eabe5f /runtime/syntax/c.vim | |
parent | 9f54d125d2b601029cb2b6dbffcc361c2e8fb974 (diff) | |
download | rneovim-1e03e76dafb5d166bb3d9ed262695f306de6ac4d.tar.gz rneovim-1e03e76dafb5d166bb3d9ed262695f306de6ac4d.tar.bz2 rneovim-1e03e76dafb5d166bb3d9ed262695f306de6ac4d.zip |
vim-patch:207f009326c8
Update runtime files.
https://github.com/vim/vim/commit/207f009326c8f878defde0e594d7d9ed9860106e
Omit nl.po.
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 364886036a..7925e88aa5 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: 2020 Aug 11 +" Last Change: 2020 Aug 28 " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") @@ -346,6 +346,8 @@ if !exists("c_no_ansi") || exists("c_ansi_constants") || exists("c_gnu") syn keyword cConstant SIGSTOP SIGTERM SIGTRAP SIGTSTP SIGTTIN SIGTTOU SIGUSR1 SIGUSR2 syn keyword cConstant _IOFBF _IOLBF _IONBF BUFSIZ EOF WEOF FOPEN_MAX FILENAME_MAX L_tmpnam syn keyword cConstant SEEK_CUR SEEK_END SEEK_SET TMP_MAX stderr stdin stdout EXIT_FAILURE EXIT_SUCCESS RAND_MAX + " used in assert.h + syn keyword cConstant NDEBUG " POSIX 2001 syn keyword cConstant SIGBUS SIGPOLL SIGPROF SIGSYS SIGURG SIGVTALRM SIGXCPU SIGXFSZ " non-POSIX signals |