Browse Source

Clarify calculation precedence for '&' and '?'

Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
master
mvdan@mvdan.cc 9 years ago
committed by Roberto E. Vargas Caballero
parent
commit
4f21c41a1c
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      st.c

+ 3
- 3
st.c View File

@ -855,9 +855,9 @@ mousereport(XEvent *e) {
}
if(!IS_SET(MODE_MOUSEX10)) {
button += (state & ShiftMask ? 4 : 0)
+ (state & Mod4Mask ? 8 : 0)
+ (state & ControlMask ? 16 : 0);
button += ((state & ShiftMask ) ? 4 : 0)
+ ((state & Mod4Mask ) ? 8 : 0)
+ ((state & ControlMask) ? 16 : 0);
}
len = 0;


Loading…
Cancel
Save