diff options
author | yoni-r <yoni-r> | 2006-02-26 17:11:00 +0000 |
---|---|---|
committer | yoni-r <mwolson@gnu.org> | 2006-02-26 17:11:00 +0000 |
commit | 0d2dc943cd9d4b71e2428fa20e0e94b0d5d84012 (patch) | |
tree | cfc084cf37b02a14881a4c60e6eba72a8ea51100 | |
parent | 79f9c4209fe910df32fbd4e06e8f8254bb0b5589 (diff) |
playlist mode yank bug fix
darcs-hash:20060226171121-6ce53-3e11dc88eab5e66338855da2654cb3f8b742a776.gz
-rw-r--r-- | emms-playlist-mode.el | 5 |
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)) |