diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-12-07 20:07:42 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-12-07 20:10:35 +0100 |
commit | f5b5cec3407e8e8d52ef50e54d91271e302207ee (patch) | |
tree | 63764de03ce771e71c3b8dee4927642bce67169f /nncmpp.c | |
parent | 1a671dfad5062ba265e873f7353c7d682943af98 (diff) | |
download | nncmpp-f5b5cec3407e8e8d52ef50e54d91271e302207ee.tar.gz nncmpp-f5b5cec3407e8e8d52ef50e54d91271e302207ee.tar.xz nncmpp-f5b5cec3407e8e8d52ef50e54d91271e302207ee.zip |
Clean up unreadable code
Diffstat (limited to 'nncmpp.c')
-rw-r--r-- | nncmpp.c | 23 |
1 files changed, 11 insertions, 12 deletions
@@ -154,6 +154,8 @@ xbasename (const char *path) return last_slash ? last_slash + 1 : path; } +static char *xstrdup0 (const char *s) { return s ? xstrdup (s) : NULL; } + static char * latin1_to_utf8 (const char *latin1) { @@ -4364,7 +4366,7 @@ mpd_find_pos_of_id (const char *desired_id) return -1; } -static char * +static const char * mpd_id_of_pos (int pos) { compact_map_t map = item_list_get (&g.playlist, pos); @@ -4374,24 +4376,21 @@ mpd_id_of_pos (int pos) static void mpd_process_info (const struct strv *data) { - int *selected = &g_current_tab.item_selected; - int *marked = &g_current_tab.item_mark; - char *prev_sel_id = mpd_id_of_pos (*selected); - char *prev_mark_id = mpd_id_of_pos (*marked); - if (prev_sel_id) prev_sel_id = xstrdup (prev_sel_id); - if (prev_mark_id) prev_mark_id = xstrdup (prev_mark_id); + char *prev_sel_id = xstrdup0 (mpd_id_of_pos (g_current_tab.item_selected)); + char *prev_mark_id = xstrdup0 (mpd_id_of_pos (g_current_tab.item_mark)); mpd_process_info_data (data); - const char *sel_id = mpd_id_of_pos (*selected); - const char *mark_id = mpd_id_of_pos (*marked); + const char *sel_id = mpd_id_of_pos (g_current_tab.item_selected); + const char *mark_id = mpd_id_of_pos (g_current_tab.item_mark); if (prev_mark_id && (!mark_id || strcmp (prev_mark_id, mark_id))) - *marked = mpd_find_pos_of_id (prev_mark_id); + g_current_tab.item_mark = mpd_find_pos_of_id (prev_mark_id); if (prev_sel_id && (!sel_id || strcmp (prev_sel_id, sel_id))) { - if ((*selected = mpd_find_pos_of_id (prev_sel_id)) < 0) - *marked = -1; + g_current_tab.item_selected = mpd_find_pos_of_id (prev_sel_id); + if (g_current_tab.item_selected < 0) + g_current_tab.item_mark = -1; app_move_selection (0); } |