Removing another fake nested function.
This commit is contained in:
		
							parent
							
								
									0b524e6ef8
								
							
						
					
					
						commit
						346238a4ba
					
				@ -92,16 +92,19 @@ bindingInit (const System mysys)
 | 
				
			|||||||
  dependInit (sys);
 | 
					  dependInit (sys);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//! Close up
 | 
					//! Destroy a binding and return true for iterator
 | 
				
			||||||
void
 | 
					int
 | 
				
			||||||
bindingDone ()
 | 
					binding_destroy_rtrue (Binding b)
 | 
				
			||||||
{
 | 
					 | 
				
			||||||
  int delete (Binding b)
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  binding_destroy (b);
 | 
					  binding_destroy (b);
 | 
				
			||||||
  return true;
 | 
					  return true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
  list_iterate (sys->bindings, delete);
 | 
					
 | 
				
			||||||
 | 
					//! Close up
 | 
				
			||||||
 | 
					void
 | 
				
			||||||
 | 
					bindingDone ()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  list_iterate (sys->bindings, binding_destroy_rtrue);
 | 
				
			||||||
  list_destroy (sys->bindings);
 | 
					  list_destroy (sys->bindings);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  dependDone (sys);
 | 
					  dependDone (sys);
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user