diff options
author | bd <bdunahu@colostate.edu> | 2024-05-21 23:46:09 -0600 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-05-21 23:46:09 -0600 |
commit | 9004f1eb0087e1e345642e2f50f312c4a467b890 (patch) | |
tree | 24892ef788d4e47befb09c36e743d17f3f82f1d5 /.config/emacs/modules/bd--emms.el | |
parent | 8c4d353a989d44d7c95758ef3b5e21342783913a (diff) |
Fix bug in my emms configuration introduced with emms19
Diffstat (limited to '.config/emacs/modules/bd--emms.el')
-rw-r--r-- | .config/emacs/modules/bd--emms.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/emacs/modules/bd--emms.el b/.config/emacs/modules/bd--emms.el index cd86d1f..d16a8ac 100644 --- a/.config/emacs/modules/bd--emms.el +++ b/.config/emacs/modules/bd--emms.el @@ -17,7 +17,8 @@ playback." ("C-z C-p" . 'emms-play-playlist)) :config (emms-all) - (add-to-list 'emms-info-functions 'emms-info-functions 'emms-info-mpd) + (require 'emms-player-mpd) + (add-to-list 'emms-info-functions 'emms-info-mpd) (add-to-list 'emms-player-list 'emms-player-mpd) (keymap-global-set "C-z C-m" (lambda () (interactive) |