Clarify calculation precedence for '&' and '?'
Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
This commit is contained in:
		
				
					committed by
					
						
						Roberto E. Vargas Caballero
					
				
			
			
				
	
			
			
			
						parent
						
							3a5053f6c1
						
					
				
				
					commit
					4f21c41a1c
				
			
							
								
								
									
										6
									
								
								st.c
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								st.c
									
									
									
									
									
								
							@ -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;
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user