diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-04-23 15:22:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-23 15:22:55 +0200 |
commit | e3f36377c156749bbdafc46d8a8cd017f378b4b5 (patch) | |
tree | acaaab31bc9e0bdaddc5765aa0b7d1acd11fbecf /runtime/syntax/c.vim | |
parent | f17bb4f41102ecec7989bc4c14c626dc595e2f0b (diff) | |
download | rneovim-e3f36377c156749bbdafc46d8a8cd017f378b4b5.tar.gz rneovim-e3f36377c156749bbdafc46d8a8cd017f378b4b5.tar.bz2 rneovim-e3f36377c156749bbdafc46d8a8cd017f378b4b5.zip |
vim-patch:71badf9547e8 (#23285)
Update runtime files
https://github.com/vim/vim/commit/71badf9547e8f89571b9a095183671cbb333d528
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'runtime/syntax/c.vim')
-rw-r--r-- | runtime/syntax/c.vim | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/runtime/syntax/c.vim b/runtime/syntax/c.vim index 50878a78ea..04b132d3ff 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: 2022 Oct 05 +" Last Change: 2023 Mar 08 " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") @@ -348,7 +348,10 @@ if !exists("c_no_ansi") || exists("c_ansi_constants") || exists("c_gnu") syn keyword cConstant SIGABRT SIGALRM SIGCHLD SIGCONT SIGFPE SIGHUP SIGILL SIGINT SIGKILL SIGPIPE SIGQUIT SIGSEGV 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 + syn keyword cConstant SEEK_CUR SEEK_END SEEK_SET TMP_MAX EXIT_FAILURE EXIT_SUCCESS RAND_MAX + syn keyword cConstant stdin stdout stderr + " POSIX 2001, in unistd.h + syn keyword cConstant STDIN_FILENO STDOUT_FILENO STDERR_FILENO " used in assert.h syn keyword cConstant NDEBUG " POSIX 2001 |