mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Correctly handle -style options without all of a corresponding -fg/-bg/-attr.
This commit is contained in:
		@@ -647,11 +647,14 @@ options_style_update_old(struct options *oo, struct options_entry *o)
 | 
			
		||||
	size = strrchr(o->name, '-') - o->name;
 | 
			
		||||
 | 
			
		||||
	xsnprintf(newname, sizeof newname, "%.*s-bg", size, o->name);
 | 
			
		||||
	options_set_number(oo, newname, o->style.bg);
 | 
			
		||||
	if (options_get(oo, newname) != NULL)
 | 
			
		||||
		options_set_number(oo, newname, o->style.bg);
 | 
			
		||||
 | 
			
		||||
	xsnprintf(newname, sizeof newname, "%.*s-fg", size, o->name);
 | 
			
		||||
	options_set_number(oo, newname, o->style.fg);
 | 
			
		||||
	if (options_get(oo, newname) != NULL)
 | 
			
		||||
		options_set_number(oo, newname, o->style.fg);
 | 
			
		||||
 | 
			
		||||
	xsnprintf(newname, sizeof newname, "%.*s-attr", size, o->name);
 | 
			
		||||
	options_set_number(oo, newname, o->style.attr);
 | 
			
		||||
	if (options_get(oo, newname) != NULL)
 | 
			
		||||
		options_set_number(oo, newname, o->style.attr);
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user