emms: Fix end-of-buffer error in -paste-after

This commit is contained in:
Pierre Neidhardt 2018-07-15 17:36:16 +02:00
parent 378200a9cd
commit 0deb319515
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ The return value is the yanked text."
"Pastes the latest yanked playlist items behind point. "Pastes the latest yanked playlist items behind point.
The return value is the yanked text." The return value is the yanked text."
(interactive) (interactive)
(evil-next-line) (unless (eobp) (evil-next-line))
(evil-collection-emms-playlist-mode-paste-before)) (evil-collection-emms-playlist-mode-paste-before))
(defun evil-collection-emms-browser-setup () (defun evil-collection-emms-browser-setup ()