mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Sync the entire xmalloc.[ch] with the other users, but with the addition
of xrealloc, xvasprintf, xvsnprintf.
This commit is contained in:
		@@ -556,7 +556,7 @@ tty_term_string(struct tty_term *term, enum tty_code_code code)
 | 
			
		||||
	if (!tty_term_has(term, code))
 | 
			
		||||
		return ("");
 | 
			
		||||
	if (term->codes[code].type != TTYCODE_STRING)
 | 
			
		||||
		log_fatalx("not a string: %d", code);
 | 
			
		||||
		fatalx("not a string: %d", code);
 | 
			
		||||
	return (term->codes[code].value.string);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -591,7 +591,7 @@ tty_term_number(struct tty_term *term, enum tty_code_code code)
 | 
			
		||||
	if (!tty_term_has(term, code))
 | 
			
		||||
		return (0);
 | 
			
		||||
	if (term->codes[code].type != TTYCODE_NUMBER)
 | 
			
		||||
		log_fatalx("not a number: %d", code);
 | 
			
		||||
		fatalx("not a number: %d", code);
 | 
			
		||||
	return (term->codes[code].value.number);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -601,7 +601,7 @@ tty_term_flag(struct tty_term *term, enum tty_code_code code)
 | 
			
		||||
	if (!tty_term_has(term, code))
 | 
			
		||||
		return (0);
 | 
			
		||||
	if (term->codes[code].type != TTYCODE_FLAG)
 | 
			
		||||
		log_fatalx("not a flag: %d", code);
 | 
			
		||||
		fatalx("not a flag: %d", code);
 | 
			
		||||
	return (term->codes[code].value.flag);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user