aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/arabic.c
diff options
context:
space:
mode:
authorPavel Platto <hinidu@gmail.com>2014-07-09 09:44:09 +0300
committerJustin M. Keyes <justinkz@gmail.com>2014-07-11 18:33:07 -0400
commit0868818d3ea403e99bed9cc34d0a2ea9b0aa02f2 (patch)
tree2583d92de3c4539d22b8fb7b2808cf4243119e00 /src/nvim/arabic.c
parentcf18687349e2e97f2d0a4c9cb40e494c33516d37 (diff)
downloadrneovim-0868818d3ea403e99bed9cc34d0a2ea9b0aa02f2.tar.gz
rneovim-0868818d3ea403e99bed9cc34d0a2ea9b0aa02f2.tar.bz2
rneovim-0868818d3ea403e99bed9cc34d0a2ea9b0aa02f2.zip
Include stdbool.h in some files which use it
Done by manual inspection of the output of this script: grep -r -l -w "bool\|true\|false" * | grep 'c$\|h$' > has_bool grep -r -l "stdbool.h" * | grep 'c$\|h$' > has_include grep -F -x -v -f has_include has_bool
Diffstat (limited to 'src/nvim/arabic.c')
-rw-r--r--src/nvim/arabic.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/arabic.c b/src/nvim/arabic.c
index 47f6f8d399..e39ee8012b 100644
--- a/src/nvim/arabic.c
+++ b/src/nvim/arabic.c
@@ -10,6 +10,8 @@
/// Final - unicode form-B final char denoted with a_f_*
/// Stand-Alone - unicode form-B isolated char denoted with a_s_* (NOT USED)
+#include <stdbool.h>
+
#include "nvim/vim.h"
#include "nvim/ascii.h"
#include "nvim/arabic.h"