Mercurial > audlegacy
changeset 2776:63fbbe9775a6 trunk
[svn] - remove no-longer-necessary debugging notice
author | nenolod |
---|---|
date | Thu, 17 May 2007 01:54:13 -0700 |
parents | 7adb736cb824 |
children | 4b8caa739baf |
files | ChangeLog src/audacious/build_stamp.c src/audacious/playlist.c |
diffstat | 3 files changed, 11 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Wed May 16 22:50:52 2007 -0700 +++ b/ChangeLog Thu May 17 01:54:13 2007 -0700 @@ -1,3 +1,13 @@ +2007-05-17 05:50:52 +0000 Yoshiki Yazawa <yaz@cc.rim.or.jp> + revision [4576] + - auddrct: more calls implemented (part 7) + - almost all of playlist and playqueue functions are implemented. be careful in using new functions, these are not tested yet. + + trunk/src/audacious/auddrct.c | 98 ++++++++++++++++++++++++++++++++++++++++++ + trunk/src/audacious/auddrct.h | 21 +++++++++ + 2 files changed, 119 insertions(+) + + 2007-05-16 07:46:17 +0000 Stephen Sokolow <deitarion@gmail.com> revision [4574] xchat-audacious.py:
--- a/src/audacious/build_stamp.c Wed May 16 22:50:52 2007 -0700 +++ b/src/audacious/build_stamp.c Thu May 17 01:54:13 2007 -0700 @@ -1,2 +1,2 @@ #include <glib.h> -const gchar *svn_stamp = "20070516-4574"; +const gchar *svn_stamp = "20070517-4576";
--- a/src/audacious/playlist.c Wed May 16 22:50:52 2007 -0700 +++ b/src/audacious/playlist.c Thu May 17 01:54:13 2007 -0700 @@ -706,9 +706,6 @@ !str_has_prefix_nocase(filename, "https://")) dec = input_check_file(filename, TRUE); - printf("loading_playlist = %d filename = %s is_playlist_name = %d\n", - playlist->loading_playlist, filename, playlist->loading_playlist); - if (cfg.playlist_detect == TRUE || playlist->loading_playlist == TRUE || (playlist->loading_playlist == FALSE && dec != NULL) || (playlist->loading_playlist == FALSE && !is_playlist_name(filename) && str_has_prefix_nocase(filename, "http"))) { __playlist_ins(playlist, filename, pos, dec);