diff options
author | Yoni Rabkin <yoni@rabkins.net> | 2018-06-20 16:22:13 -0400 |
---|---|---|
committer | Yoni Rabkin <yoni@rabkins.net> | 2018-06-20 16:22:13 -0400 |
commit | 94d26e10954765e079bde3c98d67ccb535b4c3a7 (patch) | |
tree | 04502e289007d47bc5bb58e385efa5d938a11658 | |
parent | ab3012ebc5da166ef242b8ebd63de53b738c4f96 (diff) |
* lisp/emms-history.el: bug fix
`emms-history-load' -> /a -> // would empty the buffer
One line patch by Fran Burstall.
-rw-r--r-- | lisp/emms-history.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emms-history.el b/lisp/emms-history.el index 9b913b2..2f75571 100644 --- a/lisp/emms-history.el +++ b/lisp/emms-history.el @@ -120,6 +120,7 @@ Emacs." (setq buf (current-buffer))) (mapc 'emms-playlist-insert-track (nth 2 playlist)) + (run-hooks 'emms-playlist-source-inserted-hook) (ignore-errors (emms-playlist-select (cadr playlist))))) (setq emms-playlist-buffer buf) |