diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-10-12 17:52:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 17:52:54 +0200 |
commit | 649b3160a10f0053747383f0703b0a5a94548570 (patch) | |
tree | 2898b7213ab1349717c360c8d7561a4606f3c8c2 /src/nvim/syntax.h | |
parent | 64f0fdc6822db4fc1ef5fadb892aab5bf04e75a7 (diff) | |
download | rneovim-649b3160a10f0053747383f0703b0a5a94548570.tar.gz rneovim-649b3160a10f0053747383f0703b0a5a94548570.tar.bz2 rneovim-649b3160a10f0053747383f0703b0a5a94548570.zip |
refactor: reduce number of unique char casts (#15995)
Diffstat (limited to 'src/nvim/syntax.h')
-rw-r--r-- | src/nvim/syntax.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.h b/src/nvim/syntax.h index e61c75c840..15fc084a0a 100644 --- a/src/nvim/syntax.h +++ b/src/nvim/syntax.h @@ -27,7 +27,7 @@ #define HL_CONCEAL 0x20000 // can be concealed #define HL_CONCEALENDS 0x40000 // can be concealed -#define SYN_GROUP_STATIC(s) syn_check_group((char_u *)S_LEN(s)) +#define SYN_GROUP_STATIC(s) syn_check_group(S_LEN(s)) typedef struct { char *name; |