diff options
author | dundargoc <gocdundar@gmail.com> | 2023-11-27 20:27:32 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-27 21:57:51 +0100 |
commit | 6c14ae6bfaf51415b555e9a6b85d1d280976358d (patch) | |
tree | 466b580b496ff7138407cf3187534a7cbf67a9d1 /src/nvim/regexp.c | |
parent | e3f735ef101d670555f44226614a5c3557053b1f (diff) | |
download | rneovim-6c14ae6bfaf51415b555e9a6b85d1d280976358d.tar.gz rneovim-6c14ae6bfaf51415b555e9a6b85d1d280976358d.tar.bz2 rneovim-6c14ae6bfaf51415b555e9a6b85d1d280976358d.zip |
refactor: rename types.h to types_defs.h
Diffstat (limited to 'src/nvim/regexp.c')
-rw-r--r-- | src/nvim/regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/regexp.c b/src/nvim/regexp.c index 55442817c1..3e6c7c159b 100644 --- a/src/nvim/regexp.c +++ b/src/nvim/regexp.c @@ -40,7 +40,7 @@ #include "nvim/regexp.h" #include "nvim/regexp_defs.h" #include "nvim/strings.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/vim.h" // Structure used to save the current input state, when it needs to be |