aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ChangeLog6
-rw-r--r--src/screen_play.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 48042cb0c..e79f31393 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-12-12 Kalle Wallin <kaw@linux.se>
+ * screen_play.c: Fixed abort (Ctrl-G) handling in the save playlist prompt
+
+2004-12-09 Kalle Wallin <kaw@linux.se>
+ * strfsong.c: %time% format fix from Aurelien Foret (use %02d for seconds)
+
2004-11-14 Kalle Wallin <kaw@linux.se>
* Added a search screen
* screen_browse.c: added enqueue and play feature
diff --git a/src/screen_play.c b/src/screen_play.c
index a86ab0128..cdb8320e8 100644
--- a/src/screen_play.c
+++ b/src/screen_play.c
@@ -156,13 +156,14 @@ handle_save_playlist(screen_t *screen, mpdclient_t *c, char *name)
NULL,
NULL,
gcmp);
- filename=g_strstrip(filename);
/* destroy completion support */
wrln_pre_completion_callback = NULL;
wrln_post_completion_callback = NULL;
g_completion_free(gcmp);
list = string_list_free(list);
+ if( filename )
+ filename=g_strstrip(filename);
}
else
{