mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-03 16:46:18 +00:00 
			
		
		
		
	Fix <= operator.
This commit is contained in:
		
							
								
								
									
										2
									
								
								format.c
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								format.c
									
									
									
									
									
								
							@@ -3991,7 +3991,7 @@ format_replace_expression(struct format_modifier *mexp,
 | 
				
			|||||||
		result = (mleft < mright);
 | 
							result = (mleft < mright);
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	case LESS_THAN_EQUAL:
 | 
						case LESS_THAN_EQUAL:
 | 
				
			||||||
		result = (mleft > mright);
 | 
							result = (mleft >= mright);
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if (use_fp)
 | 
						if (use_fp)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user