diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-11-11 12:13:00 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-11-11 12:13:00 -0500 |
commit | b027e1ed0c92ed49961ecbd24228967d916c2bbd (patch) | |
tree | a8acc0594efe3d971cc55f12e6675c68c2fd73ca /src/nvim/keymap.c | |
parent | e450c541ddfe1266d3d56b594f83ab197e747584 (diff) | |
parent | 8eddceb14000a33282a493140ef3c008f385a461 (diff) | |
download | rneovim-b027e1ed0c92ed49961ecbd24228967d916c2bbd.tar.gz rneovim-b027e1ed0c92ed49961ecbd24228967d916c2bbd.tar.bz2 rneovim-b027e1ed0c92ed49961ecbd24228967d916c2bbd.zip |
Merge pull request #923 from splinterofchaos/normal-bool
Use bool in normal.h and .c.
Diffstat (limited to 'src/nvim/keymap.c')
-rw-r--r-- | src/nvim/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/keymap.c b/src/nvim/keymap.c index 963729215b..45977b96ae 100644 --- a/src/nvim/keymap.c +++ b/src/nvim/keymap.c @@ -740,7 +740,7 @@ char_u *get_key_name(int i) * Look up the given mouse code to return the relevant information in the other * arguments. Return which button is down or was released. */ -int get_mouse_button(int code, int *is_click, int *is_drag) +int get_mouse_button(int code, bool *is_click, bool *is_drag) { int i; |