mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	When removing a key table clear it out of clients, fixes issue with
unbind -a reported by Thomas Sattler.
This commit is contained in:
		@@ -138,12 +138,17 @@ void
 | 
			
		||||
key_bindings_remove_table(const char *name)
 | 
			
		||||
{
 | 
			
		||||
	struct key_table	*table;
 | 
			
		||||
	struct client		*c;
 | 
			
		||||
 | 
			
		||||
	table = key_bindings_get_table(name, 0);
 | 
			
		||||
	if (table != NULL) {
 | 
			
		||||
		RB_REMOVE(key_tables, &key_tables, table);
 | 
			
		||||
		key_bindings_unref_table(table);
 | 
			
		||||
	}
 | 
			
		||||
	TAILQ_FOREACH(c, &clients, entry) {
 | 
			
		||||
		if (c->keytable == table)
 | 
			
		||||
			server_client_set_key_table(c, NULL);
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user