diff options
| author | bfredl <bjorn.linse@gmail.com> | 2022-09-10 14:33:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-10 14:33:43 +0200 |
| commit | 4638fcf4fb688fa548b8ce337ec3b7c1327fbfe9 (patch) | |
| tree | b62862e24e506e0010852d23b68c79103637500c /src/nvim/regexp_defs.h | |
| parent | 40f9f479b746d0f76fbdd4bc0567d593ca7a6070 (diff) | |
| parent | 684bc749efef0fa31395d349f4495d79ec5f3fd5 (diff) | |
| download | rneovim-4638fcf4fb688fa548b8ce337ec3b7c1327fbfe9.tar.gz rneovim-4638fcf4fb688fa548b8ce337ec3b7c1327fbfe9.tar.bz2 rneovim-4638fcf4fb688fa548b8ce337ec3b7c1327fbfe9.zip | |
Merge pull request #20068 from dundargoc/refactor/char_u/10
refactor: replace char_u with char 10: remove `FNAMECMP`, `FNAMENCMP` and `STRLCAT`
Diffstat (limited to 'src/nvim/regexp_defs.h')
| -rw-r--r-- | src/nvim/regexp_defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/regexp_defs.h b/src/nvim/regexp_defs.h index 5d7175b89a..b24ed350e8 100644 --- a/src/nvim/regexp_defs.h +++ b/src/nvim/regexp_defs.h @@ -140,8 +140,8 @@ typedef struct { */ typedef struct { regprog_T *regprog; - char_u *startp[NSUBEXP]; - char_u *endp[NSUBEXP]; + char *startp[NSUBEXP]; + char *endp[NSUBEXP]; bool rm_ic; } regmatch_T; |