From c2a5105e88758fc27fbcf49909c7790a75810e8a Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Mon, 27 Nov 2023 00:41:43 +0100 Subject: build(IWYU): remove arabic_defs.h (#26235) A _defs header is only needed if it's included by multiple files. --- src/nvim/arabic.h | 2 +- src/nvim/arabic_defs.h | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 src/nvim/arabic_defs.h (limited to 'src') diff --git a/src/nvim/arabic.h b/src/nvim/arabic.h index 9b3c5b6cee..ac27153a37 100644 --- a/src/nvim/arabic.h +++ b/src/nvim/arabic.h @@ -1,6 +1,6 @@ #pragma once -#include "nvim/arabic_defs.h" +#define ARABIC_CHAR(ch) (((ch) & 0xFF00) == 0x0600) #ifdef INCLUDE_GENERATED_DECLARATIONS # include "arabic.h.generated.h" diff --git a/src/nvim/arabic_defs.h b/src/nvim/arabic_defs.h deleted file mode 100644 index 605ae7603a..0000000000 --- a/src/nvim/arabic_defs.h +++ /dev/null @@ -1,3 +0,0 @@ -#pragma once - -#define ARABIC_CHAR(ch) (((ch) & 0xFF00) == 0x0600) -- cgit