From: Christoph Lohmann <20h@r-36.net> Date: Sat, 1 Jun 2013 11:17:20 +0000 (+0200) Subject: This is a shorter bit handling in MODE_MOUSE. X-Git-Url: https://jasonwoof.com/gitweb/?p=st.git;a=commitdiff_plain;h=d743b93fdaee4900052a94b37c24073008888002 This is a shorter bit handling in MODE_MOUSE. --- diff --git a/st.c b/st.c index a032474..bcb36a2 100644 --- a/st.c +++ b/st.c @@ -1784,8 +1784,7 @@ tsetmode(bool priv, bool set, int *args, int narg) { MODBIT(term.mode, 0, MODE_MOUSEBTN); break; case 1003: /* 1003: enable all mouse reports */ - MODBIT(term.mode, set, MODE_MOUSEMOTION); - MODBIT(term.mode, set, MODE_MOUSEBTN); + MODBIT(term.mode, set, MODE_MOUSE); break; case 1004: MODBIT(term.mode, set, MODE_FOCUS);