diff options
author | Klemen Košir <klemen913@gmail.com> | 2014-04-30 11:06:52 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-07-08 17:25:48 +0000 |
commit | ef34a0ab132bca94bd16d8518c3333cf81cbf2c6 (patch) | |
tree | 9ae6122b7c3d941fdc237c51ef81f04e2bb737ac /src/nvim/globals.h | |
parent | 3cf435af363dc3585568e1213152e31ed6b1fc08 (diff) | |
download | rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.tar.gz rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.tar.bz2 rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.zip |
Replace int with bool in some files. #654
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 1035788d03..612609c2a5 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -359,8 +359,8 @@ EXTERN buf_T *au_pending_free_buf INIT(= NULL); */ EXTERN int mouse_row; EXTERN int mouse_col; -EXTERN int mouse_past_bottom INIT(= FALSE); /* mouse below last line */ -EXTERN int mouse_past_eol INIT(= FALSE); /* mouse right of line */ +EXTERN bool mouse_past_bottom INIT(= false); /* mouse below last line */ +EXTERN bool mouse_past_eol INIT(= false); /* mouse right of line */ EXTERN int mouse_dragging INIT(= 0); /* extending Visual area with mouse dragging */ /* @@ -720,7 +720,7 @@ EXTERN char_u *exe_name; /* the name of the executable */ EXTERN int dont_scroll INIT(= FALSE); /* don't use scrollbars when TRUE */ #endif EXTERN int mapped_ctrl_c INIT(= FALSE); /* CTRL-C is mapped */ -EXTERN int ctrl_c_interrupts INIT(= TRUE); /* CTRL-C sets got_int */ +EXTERN bool ctrl_c_interrupts INIT(= true); /* CTRL-C sets got_int */ EXTERN cmdmod_T cmdmod; /* Ex command modifiers */ |