mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 09:26:05 +00:00 
			
		
		
		
	Style nits - return (x) not return x.
This commit is contained in:
		@@ -334,12 +334,12 @@ server_client_assume_paste(struct session *s)
 | 
			
		||||
	u_int		t;
 | 
			
		||||
 | 
			
		||||
	if ((t = options_get_number(&s->options, "assume-paste-time")) == 0)
 | 
			
		||||
		return 0;
 | 
			
		||||
		return (0);
 | 
			
		||||
 | 
			
		||||
	timersub(&s->activity_time, &s->last_activity_time, &tv);
 | 
			
		||||
	if (tv.tv_sec == 0 && tv.tv_usec < t * 1000)
 | 
			
		||||
		return 1;
 | 
			
		||||
	return 0;
 | 
			
		||||
		return (1);
 | 
			
		||||
	return (0);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Handle data key input from client. */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user