aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-06 11:46:46 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-06 11:49:59 -0400
commit47d52e1578aa6dd0b55d397d24fc929b95d586f2 (patch)
treed6fe01a8f0cfcdb05d619ab867b8af272d84239f /src/nvim/globals.h
parentb9ab3636362c67bb49f8cd165006c97ffc9a00da (diff)
downloadrneovim-47d52e1578aa6dd0b55d397d24fc929b95d586f2.tar.gz
rneovim-47d52e1578aa6dd0b55d397d24fc929b95d586f2.tar.bz2
rneovim-47d52e1578aa6dd0b55d397d24fc929b95d586f2.zip
globals: did_ai is bool
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index 8ae422f21b..a31f6950e9 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -604,7 +604,7 @@ EXTERN pos_T where_paste_started;
* reset when any other editing is done on the line. If an <ESC> or <RETURN>
* is received, and did_ai is TRUE, the line is truncated.
*/
-EXTERN int did_ai INIT(= FALSE);
+EXTERN bool did_ai INIT(= false);
/*
* Column of first char after autoindent. 0 when no autoindent done. Used