Compare commits
	
		
			No commits in common. "da14bdbd394f00277cbc48433374386ae5ecfc29" and "a20e4c74d85b4fde4e7b75b46551383761659bbb" have entirely different histories.
		
	
	
		
			da14bdbd39
			...
			a20e4c74d8
		
	
		
							
								
								
									
										31
									
								
								nncmpp.c
									
									
									
									
									
								
							
							
						
						
									
										31
									
								
								nncmpp.c
									
									
									
									
									
								
							| @ -2508,17 +2508,6 @@ app_mpd_toggle (const char *name) | ||||
| 	return MPD_SIMPLE (name, value ? "0" : "1"); | ||||
| } | ||||
| 
 | ||||
| static void | ||||
| app_hide_message (void) | ||||
| { | ||||
| 	if (g.message) | ||||
| 	{ | ||||
| 		cstr_set (&g.message, NULL); | ||||
| 		poller_timer_reset (&g.message_timer); | ||||
| 		app_invalidate (); | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| static bool | ||||
| app_process_action (enum action action) | ||||
| { | ||||
| @ -2553,7 +2542,6 @@ app_process_action (enum action action) | ||||
| 		line_editor_start (&g.editor, ':'); | ||||
| 		g.editor.on_end = app_on_mpd_command_editor_end; | ||||
| 		app_invalidate (); | ||||
| 		app_hide_message (); | ||||
| 		return true; | ||||
| 	default: | ||||
| 		print_error ("can't do that here: %s", g_action_descriptions[action]); | ||||
| @ -2575,7 +2563,6 @@ app_process_action (enum action action) | ||||
| 		g.editor.on_changed = incremental_search_on_changed; | ||||
| 		g.editor.on_end = incremental_search_on_end; | ||||
| 		app_invalidate (); | ||||
| 		app_hide_message (); | ||||
| 		return true; | ||||
| 
 | ||||
| 	case ACTION_TAB_LAST: | ||||
| @ -2777,7 +2764,9 @@ app_process_left_mouse_click (struct widget *w, int x, int y, bool double_click) | ||||
| 		break; | ||||
| 	} | ||||
| 	case WIDGET_MESSAGE: | ||||
| 		app_hide_message (); | ||||
| 		cstr_set (&g.message, NULL); | ||||
| 		poller_timer_reset (&g.message_timer); | ||||
| 		app_invalidate (); | ||||
| 	} | ||||
| 	return true; | ||||
| } | ||||
| @ -3040,11 +3029,6 @@ app_process_termo_event (termo_key_t *event) | ||||
| 	struct binding dummy = { *event, 0, 0 }, *binding; | ||||
| 	if (g.editor.line) | ||||
| 	{ | ||||
| 		if (event->type == TERMO_TYPE_KEY | ||||
| 		 || event->type == TERMO_TYPE_FUNCTION | ||||
| 		 || event->type == TERMO_TYPE_KEYSYM) | ||||
| 			app_hide_message (); | ||||
| 
 | ||||
| 		if ((binding = bsearch (&dummy, g_editor_keys, g_editor_keys_len, | ||||
| 			sizeof *binding, app_binding_cmp))) | ||||
| 			return app_editor_process_action (binding->action); | ||||
| @ -4048,12 +4032,9 @@ help_tab_on_action (enum action action) | ||||
| 		return false; | ||||
| 
 | ||||
| 	action = g_help_tab.actions[tab->item_selected]; | ||||
| 	if (action == ACTION_NONE || action == ACTION_CHOOSE /* avoid recursion */) | ||||
| 		return false; | ||||
| 
 | ||||
| 	// XXX: We can't propagate failure, which produces beeps in the TUI, but we
 | ||||
| 	// don't want to let our caller show a bad "can't do that" message either.
 | ||||
| 	return app_process_action (action), true; | ||||
| 	return action != ACTION_NONE | ||||
| 		&& action != ACTION_CHOOSE  // avoid recursion
 | ||||
| 		&& app_process_action (action); | ||||
| } | ||||
| 
 | ||||
| static void | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user