diff src/libvterm/src/mouse.c @ 11780:c76b672df584 v8.0.0772

patch 8.0.0772: other stdbool.h dependencies in libvterm commit https://github.com/vim/vim/commit/b2a76ec06bb1130cfb632bdfef64e479fa55dd5c Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 25 21:34:46 2017 +0200 patch 8.0.0772: other stdbool.h dependencies in libvterm Problem: Other stdbool.h dependencies in libvterm. Solution: Remove the dependency and use TRUE/FALSE/int. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Tue, 25 Jul 2017 21:45:04 +0200
parents b8299e742f41
children 4d4ee9c5803c
line wrap: on
line diff
--- a/src/libvterm/src/mouse.c
+++ b/src/libvterm/src/mouse.c
@@ -70,7 +70,7 @@ void vterm_mouse_move(VTerm *vt, int row
   }
 }
 
-void vterm_mouse_button(VTerm *vt, int button, bool pressed, VTermModifier mod)
+void vterm_mouse_button(VTerm *vt, int button, int pressed, VTermModifier mod)
 {
   VTermState *state = vt->state;