diff options
| author | Michael Olson <mwolson@gnu.org> | 2008-06-04 07:10:44 -0700 | 
|---|---|---|
| committer | Michael Olson <mwolson@gnu.org> | 2008-06-04 07:10:44 -0700 | 
| commit | 86a830f81a2688428ac03e0e4733866ff79b7e12 (patch) | |
| tree | 71e0cb96fe69756f00f5425048d4e5da56364e9f | |
| parent | bbefa2ae801843625389a80b7b28c7e579fab96d (diff) | |
emms-player-mpd.el: Quote argument to "update" command.
| -rw-r--r-- | emms-player-mpd.el | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/emms-player-mpd.el b/emms-player-mpd.el index c31c48b..ba31df4 100644 --- a/emms-player-mpd.el +++ b/emms-player-mpd.el @@ -1178,7 +1178,7 @@ order to prime the cache."    (unless (string= dir "")      (setq dir (emms-player-mpd-get-mpd-filename dir)))    (emms-player-mpd-send -   (concat "update " dir) nil +   (concat "update " (emms-player-mpd-quote-file dir)) nil     (lambda (closure response)       (let ((id (cdr (assoc "updating_db"                             (emms-player-mpd-get-alist  | 
