diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-05 19:26:55 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-06 11:49:59 -0400 |
commit | 4df0ea98dc4597d91168d239ca366d1d575e95e6 (patch) | |
tree | 61f72d8987fe86cab876b61911849fbd537de5a0 /src/nvim/globals.h | |
parent | 4ca2cf4b478733687d09f24965c03fb42020715b (diff) | |
download | rneovim-4df0ea98dc4597d91168d239ca366d1d575e95e6.tar.gz rneovim-4df0ea98dc4597d91168d239ca366d1d575e95e6.tar.bz2 rneovim-4df0ea98dc4597d91168d239ca366d1d575e95e6.zip |
globals: typebuf_was_filled is bool
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 3efc0838aa..735aa834e3 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -942,8 +942,8 @@ EXTERN int no_hlsearch INIT(= FALSE); EXTERN linenr_T printer_page_num; -EXTERN int typebuf_was_filled INIT(= FALSE); /* received text from client - or from feedkeys() */ +EXTERN bool typebuf_was_filled INIT(= false); // received text from client + // or from feedkeys() #ifdef BACKSLASH_IN_FILENAME |