aboutsummaryrefslogtreecommitdiff
path: root/emms-playlist-mode.el
diff options
context:
space:
mode:
authoryoni-r <yoni-r>2006-02-26 17:11:00 +0000
committeryoni-r <mwolson@gnu.org>2006-02-26 17:11:00 +0000
commit0d2dc943cd9d4b71e2428fa20e0e94b0d5d84012 (patch)
treecfc084cf37b02a14881a4c60e6eba72a8ea51100 /emms-playlist-mode.el
parent79f9c4209fe910df32fbd4e06e8f8254bb0b5589 (diff)
playlist mode yank bug fix
darcs-hash:20060226171121-6ce53-3e11dc88eab5e66338855da2654cb3f8b742a776.gz
Diffstat (limited to 'emms-playlist-mode.el')
-rw-r--r--emms-playlist-mode.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/emms-playlist-mode.el b/emms-playlist-mode.el
index 8ad3311..a5c0746 100644
--- a/emms-playlist-mode.el
+++ b/emms-playlist-mode.el
@@ -1,7 +1,7 @@
;;; emms-playlist-mode.el --- Playlist mode for Emms.
-;;; Copyright 2005 Yoni Rabkin under the GNU General Public License.
-;;; This file is a part of the Emacs Multimedia system.
+;;; Copyright 2005, 2006, Yoni Rabkin under the GNU General Public
+;;; License. This file is a part of the Emacs Multimedia system.
;;; Commentary:
;;;
@@ -257,6 +257,7 @@ function switches back to the remembered buffer."
"Yank into the playlist buffer."
(interactive)
(with-inhibit-read-only-t
+ (goto-char (point-at-bol))
(yank))
(emms-playlist-mode-overlay-refresh))