diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-06-12 09:34:07 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-06-12 09:34:10 -0400 |
commit | f419f914fc52fc86216b59e8ffa6fd510f79c6cd (patch) | |
tree | ceb3b3ec618f8bd10836b8e802f634ce9a2b767a | |
parent | 3c7ea8d619d77d303e9c51118b22c81a3ffbf550 (diff) | |
download | rneovim-f419f914fc52fc86216b59e8ffa6fd510f79c6cd.tar.gz rneovim-f419f914fc52fc86216b59e8ffa6fd510f79c6cd.tar.bz2 rneovim-f419f914fc52fc86216b59e8ffa6fd510f79c6cd.zip |
charset: include option_defs.h for breakat_flags
-rw-r--r-- | src/nvim/charset.h | 1 | ||||
-rw-r--r-- | src/nvim/globals.h | 2 | ||||
-rw-r--r-- | src/nvim/option_defs.h | 7 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/charset.h b/src/nvim/charset.h index cc9f3102f7..e657ce19b6 100644 --- a/src/nvim/charset.h +++ b/src/nvim/charset.h @@ -5,6 +5,7 @@ #include "nvim/pos.h" #include "nvim/buffer_defs.h" #include "nvim/eval/typval.h" +#include "nvim/option_defs.h" /// Return the folded-case equivalent of the given character /// diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 51bc3f1289..c2bba168e5 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -871,8 +871,6 @@ enum { }; -EXTERN char breakat_flags[256]; /* which characters are in 'breakat' */ - /* * Some file names are stored in pathdef.c, which is generated from the * Makefile to make their value depend on the Makefile. diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h index f7dfa65053..6a0d0e32e0 100644 --- a/src/nvim/option_defs.h +++ b/src/nvim/option_defs.h @@ -314,9 +314,10 @@ static char *(p_bkc_values[]) = # define BKC_NO 0x004 # define BKC_BREAKSYMLINK 0x008 # define BKC_BREAKHARDLINK 0x010 -EXTERN char_u *p_bdir; /* 'backupdir' */ -EXTERN char_u *p_bex; /* 'backupext' */ -EXTERN char_u *p_bo; // 'belloff' +EXTERN char_u *p_bdir; // 'backupdir' +EXTERN char_u *p_bex; // 'backupext' +EXTERN char_u *p_bo; // 'belloff' +EXTERN char breakat_flags[256]; // which characters are in 'breakat' EXTERN unsigned bo_flags; # ifdef IN_OPTION_C static char *(p_bo_values[]) = {"all", "backspace", "cursor", "complete", |