I have just done a `darcs send' on the attached patch. The patch should
allow more natural, Emacs style killing and yanking without destroying
the overlays (bugs included of course).
To avoid conflicts I pulled a pristine tree from forcer and did a
successful `darcs apply -o ...' on it.
But there is something I don't get. Maybe some darcs guru can explain.
When I do a `darcs changes' on forcer's pristine tree I see the
following patch:
Mon Dec 5 11:20:44 IST 2005 [EMAIL PROTECTED]
* Killing and yanking
So obviously it has already been commited. But when I issue a `darcs
send' in the exact same tree, darcs asks me if to send that exact same
patch! What am I doing wrong?
New patches:
[Killing and yanking
[EMAIL PROTECTED] {
hunk ./emms-playlist-mode.el 3
-;;; Copyright Yoni Rabkin under the GNU General Public License.
+;;; Copyright 2005 Yoni Rabkin under the GNU General Public License.
hunk ./emms-playlist-mode.el 8
-;;; I'm designing this as a method of displaying and manipulating the
-;;; different Emms playlist buffers defined by the user.
+;;; This is a method of displaying and manipulating the different Emms
+;;; playlist buffers.
hunk ./emms-playlist-mode.el 13
-
-;;; Todo:
-;;;
-;;; emms-add-m3u-playlist displays the first track on the
-;;; mode-line.
-;;;
-;;; Not all of the methods for adding tracks behave correctly in
-;;; regards to marking the current track. Stress test this.
hunk ./emms-playlist-mode.el 28
+
+(defvar emms-playlist-mode-window-width -25
+ "Width for the emms-playlist-mode pop-up window.")
hunk ./emms-playlist-mode.el 73
- (define-key emms-playlist-mode-map (kbd "n") 'emms-next)
- (define-key emms-playlist-mode-map (kbd "p") 'emms-previous)
hunk ./emms-playlist-mode.el 74
- (define-key emms-playlist-mode-map (kbd "C-k") 'emms-playlist-mode-kill-track)
hunk ./emms-playlist-mode.el 75
- (define-key emms-playlist-mode-map (kbd "d") 'emms-playlist-mode-kill-track)
+ (define-key emms-playlist-mode-map (kbd "C-k") 'emms-playlist-mode-kill-track)
+ (define-key emms-playlist-mode-map (kbd "C-w") 'emms-playlist-mode-kill)
+ (define-key emms-playlist-mode-map (kbd "C-n") 'next-line)
+ (define-key emms-playlist-mode-map (kbd "C-p") 'previous-line)
+ (define-key emms-playlist-mode-map (kbd "C-j") 'emms-playlist-mode-insert-newline)
+ (define-key emms-playlist-mode-map (kbd "M-y") 'emms-playlist-mode-yank-pop)
+ (define-key emms-playlist-mode-map (kbd "M-<") 'emms-playlist-mode-first)
+ (define-key emms-playlist-mode-map (kbd "M->") 'emms-playlist-mode-last)
+ (define-key emms-playlist-mode-map (kbd "n") 'emms-next)
+ (define-key emms-playlist-mode-map (kbd "p") 'emms-previous)
hunk ./emms-playlist-mode.el 88
- (define-key emms-playlist-mode-map (kbd "RET") 'emms-playlist-mode-play-current-track)
hunk ./emms-playlist-mode.el 89
- (define-key emms-playlist-mode-map (kbd "<mouse-2>") 'emms-playlist-mode-play-current-track)
hunk ./emms-playlist-mode.el 90
- (define-key emms-playlist-mode-map (kbd "M-<") 'emms-playlist-mode-first)
- (define-key emms-playlist-mode-map (kbd "M->") 'emms-playlist-mode-last)
- (define-key emms-playlist-mode-map (kbd "C-n") 'emms-playlist-mode-select-next)
- (define-key emms-playlist-mode-map (kbd "C-p") 'emms-playlist-mode-select-previous)
hunk ./emms-playlist-mode.el 91
+ (define-key emms-playlist-mode-map (kbd "<mouse-2>") 'emms-playlist-mode-play-current-track)
+ (define-key emms-playlist-mode-map (kbd "RET") 'emms-playlist-mode-play-current-track)
hunk ./emms-playlist-mode.el 138
-
-;; Buggy
-(defun emms-playlist-mode-yank ()
- "Yank the last Emms track killed into the buffer."
- (interactive)
- (let ((track nil)
- (start nil))
- (with-temp-buffer
- (yank)
- (setq track (get-text-property (point-min) 'emms-track)))
- (if track
- (funcall emms-playlist-insert-track-function track)
- (error "No playlist info to yank"))))
-
-;; The logic for killing tracks in an interactive manner is
-;; suprisingly annoying
-(defun emms-playlist-mode-kill-track ()
- "Kill the track at point."
- (interactive)
- (let ((region (emms-property-region (point) 'emms-track))
- (inhibit-read-only t))
- (cond ((not (emms-playlist-track-at))
- (kill-line 1) (current-kill 1))
- ((and (not (emms-playlist-mode-selected-at))
- (emms-playlist-track-at))
- (kill-region (car region)
- (cdr region))
- (emms-playlist-mode-kill-track))
- ((and emms-player-playing-p
- (emms-playlist-mode-selected-at))
- (emms-stop)
- (emms-next-noerror)
- (kill-region (car region)
- (cdr region))
- (emms-playlist-mode-kill-track))
- ((and (not emms-player-playing-p)
- (emms-playlist-mode-selected-at))
- (kill-region (car region)
- (cdr region))
- (emms-playlist-mode-kill-track))
- (t (error "Cannot kill content at point")))))
hunk ./emms-playlist-mode.el 151
+
+(defun emms-playlist-mode-insert-newline ()
+ "Insert a newline at point."
+ (interactive)
+ (let ((inhibit-read-only t))
+ (newline)))
+
+;;; --------------------------------------------------------
+;;; Killing and yanking
+;;; --------------------------------------------------------
+
+(defun emms-playlist-mode-between-p (p a b)
+ "Return t if P is a point between points A and B."
+ (if (eq a b)
+ nil
+ (eq p (cadr (sort (list a b p) #'<=)))))
+
+;; C-k
+(defun emms-playlist-mode-kill-track ()
+ "Kill track at point."
+ (interactive)
+ (let ((track (emms-playlist-track-at))
+ (inhibit-read-only t))
+ (if track
+ (let ((track-region (emms-property-region (point)
+ 'emms-track)))
+ (when (and emms-player-playing-p
+ (equal (emms-playlist-selected-track) track))
+ (emms-stop))
+ (remove-overlays (point-at-bol) (point-at-eol))
+ (kill-region (car track-region) (cdr track-region)))
+ (kill-line))))
+
+;; C-w
+(defun emms-playlist-mode-kill ()
+ "Kill from mark to point."
+ (interactive)
+ (let ((inhibit-read-only t)
+ (m (mark)) ; throw error if no mark
+ (p (point))
+ (sm emms-playlist-selected-marker))
+ (kill-region p m)
+ (when (emms-playlist-mode-between-p
+ (marker-position sm) p m)
+ (setq emms-playlist-selected-marker nil)
+ (setq emms-playlist-mode-selected-overlay-marker nil)
+ (emms-stop)))) ; regardless of state
+
+;; C-y
+(defun emms-playlist-mode-yank ()
+ "Yank into the playlist buffer."
+ (interactive)
+ (let ((inhibit-read-only t))
+ (emms-playlist-mode-remove-overlay-selected)
+ (yank)
+ (emms-playlist-mode-overlay-selected)))
+
+;; M-y
+(defun emms-playlist-mode-yank-pop ()
+ "Cycle through the kill-ring."
+ (interactive)
+ (let ((inhibit-read-only t))
+ (yank-pop)))
hunk ./emms-playlist-mode.el 241
- (unless (null emms-playlist-mode-selected-overlay-marker)
- (save-excursion
- (goto-char emms-playlist-mode-selected-overlay-marker)
- (remove-overlays (point-at-bol)
- (point-at-eol))
- (emms-playlist-mode-overlay-at-point
- 'emms-playlist-track-face 1)))
+ (emms-playlist-mode-remove-overlay-selected)
hunk ./emms-playlist-mode.el 247
- (emms-playlist-mode-overlay-at-point
+ (emms-playlist-mode-overlay-at-point
hunk ./emms-playlist-mode.el 249
+
+(defun emms-playlist-mode-remove-overlay-selected ()
+ "Remove the overlay from the currently selected track"
+ (unless (null emms-playlist-mode-selected-overlay-marker)
+ (save-excursion
+ (goto-char emms-playlist-mode-selected-overlay-marker)
+ (remove-overlays (point-at-bol)
+ (point-at-eol))
+ (emms-playlist-mode-overlay-at-point
+ 'emms-playlist-track-face 1))))
hunk ./emms-playlist-mode.el 357
-
-(defvar emms-playlist-window-width -25
- "Window width for the emms-playlist window when it's popuped.")
hunk ./emms-playlist-mode.el 360
-WINDOW-WIDTH is `emms-playlist-window-width'."
+WINDOW-WIDTH is `emms-playlist-mode-window-width'."
hunk ./emms-playlist-mode.el 362
- (setq emms-playlist-window-width
- (or window-width emms-playlist-window-width))
- (split-window-horizontally emms-playlist-window-width)
+ (setq emms-playlist-mode-window-width
+ (or window-width emms-playlist-mode-window-width))
+ (split-window-horizontally emms-playlist-mode-window-width)
}
[killing and yanking in the interactive playlist buffer
[EMAIL PROTECTED] {
hunk ./emms-playlist-mode.el 164
- (if (eq a b)
+ (if (or (eq a b)
+ (and (> b a)
+ (= p b)))
hunk ./emms-playlist-mode.el 171
+;;
+;; Currently this kills as regular GNU/Emacs would and not like a
+;; typical music player would.
hunk ./emms-playlist-mode.el 197
- (kill-region p m)
+ ;; Are we killing the playing/selected track?
hunk ./emms-playlist-mode.el 199
- (marker-position sm) p m)
+ (marker-position sm) m p)
hunk ./emms-playlist-mode.el 202
- (emms-stop)))) ; regardless of state
+ (emms-stop))
+ (kill-region p m)))
hunk ./emms-playlist-mode.el 210
- (emms-playlist-mode-remove-overlay-selected)
- (yank)
- (emms-playlist-mode-overlay-selected)))
+ (yank))
+ (emms-playlist-mode-overlay-refresh))
hunk ./emms-playlist-mode.el 247
- (save-excursion
- (goto-char emms-playlist-selected-marker)
- (setq emms-playlist-mode-selected-overlay-marker
- (point-marker))
- (setq emms-playlist-mode-selected-overlay
- (emms-playlist-mode-overlay-at-point
- 'emms-playlist-selected-face 2))))
+ (when (not (and (null emms-playlist-selected-marker)
+ (null emms-playlist-mode-selected-overlay-marker))) ; ugh
+ (save-excursion
+ (goto-char emms-playlist-selected-marker)
+ (setq emms-playlist-mode-selected-overlay-marker
+ (point-marker))
+ (setq emms-playlist-mode-selected-overlay
+ (emms-playlist-mode-overlay-at-point
+ 'emms-playlist-selected-face 2)))))
hunk ./emms-playlist-mode.el 259
- (unless (null emms-playlist-mode-selected-overlay-marker)
+ (when (not (null emms-playlist-mode-selected-overlay-marker))
hunk ./emms-playlist-mode.el 267
+(defun emms-playlist-mode-overlay-all ()
+ "Place an low-priority overlay over the entire buffer."
+ (emms-playlist-mode-overlay-track (point-min)
+ (point-max)
+ 'emms-playlist-track-face
+ 1))
+
+;; not graceful, but avoids growing as the number of tracks grow.
+(defun emms-playlist-mode-overlay-refresh ()
+ "Remove and re-apply all the overlays in the buffer."
+ (remove-overlays (point-min)
+ (point-max))
+ (emms-playlist-mode-overlay-all)
+ (setq emms-playlist-mode-selected-overlay-marker nil)
+ (emms-playlist-mode-overlay-selected))
+
hunk ./emms-playlist-mode.el 393
+ ;; when there is neither a current emms track or a playing one...
hunk ./emms-playlist-mode.el 396
+ ;; ...then stop the player.
hunk ./emms-playlist-mode.el 398
+ ;; why select the first track?
hunk ./emms-playlist-mode.el 401
+ ;; when there is a selected track.
}
Context:
[fix manual sectioning
[EMAIL PROTECTED]
[Fix conflicts in emms-playlist-mode.el
[EMAIL PROTECTED]
[Fix emms.texinfo for PDF output (thanks twb)
[EMAIL PROTECTED]
[Added `emms-playlist-mode-go-popup' for popuping emms-playlist as a side
[EMAIL PROTECTED]
window.
]
[emms-info-mp3info.el (emms-info-mp3find-arguments): use info-tracknumber instead of info-tracknum, so as to be consistent with ogginfo.
Trent Buck <[EMAIL PROTECTED]>**20051119150805
emms-info.el: Update documentation.
]
[emms-source-file.el: add missing third clause to AUTOLOAD calls.
Trent Buck <[EMAIL PROTECTED]>**20051028142538]
[emms-info-libtag.el: Fix a couple of typos.
Trent Buck <[EMAIL PROTECTED]>**20051119183945]
[Implement an emms-info function using the libtag package.
Trent Buck <[EMAIL PROTECTED]>**20051119181528]
[Finished rewriting manual
[EMAIL PROTECTED]
[More manual work, but still only 71 percent done
[EMAIL PROTECTED]
[Added support for toggling default action in streams
[EMAIL PROTECTED]
[Added a hook for emms-streams
[EMAIL PROTECTED]
[debian/emms.emacs-install: Leave symlinks in bytecode dir for find-library/function/variable.
Trent Buck <[EMAIL PROTECTED]>**20051027172739]
[debian/rules: swap binary-indep and binary-arch bodies, since emms is packages as source code.
Trent Buck <[EMAIL PROTECTED]>**20051027150418]
[Makefile (ChangeLog): Generate ChangeLog from darcs metadata.
Trent Buck <[EMAIL PROTECTED]>**20051027133919
debian/rules (build-stamp): Have make generate the ChangeLog.
(build-arch): Include ChangeLog and debian/changelog in debian package.
]
[Added simple player "playsound".
Trent Buck <[EMAIL PROTECTED]>**20051023012053]
[Remove TODO from debian/docs.
Trent Buck <[EMAIL PROTECTED]>**20050912133353]
[Don't attempt to dh_installchangelogs ChangeLog in debian/rules.
Trent Buck <[EMAIL PROTECTED]>**20050912125754]
[Add prefix keys support.
[EMAIL PROTECTED]
[manual 71% done
[EMAIL PROTECTED]
[fix emms-info-ogginfo laguange
[EMAIL PROTECTED]
[manual update (68% done)
[EMAIL PROTECTED]
[emms-metaplaylist fix requested by Lukhas
[EMAIL PROTECTED]
[A minor spell correction.
[EMAIL PROTECTED]
[Make emms-mode-line-icon use the good function to get the current track
[EMAIL PROTECTED]
[Rename `emms-playlist-save-active-as-m3u' to `emms-playlist-save-current-as-m3u'.
[EMAIL PROTECTED]
[emms-playlist-sort.el: New file containing various playlist sort
[EMAIL PROTECTED]
functions.
]
[emms-setup.el: Added `emms-playlist-sort' to `emms-devel'.
[EMAIL PROTECTED]
[emms-setup.el: Moved `emms-lyrics' and `emms-playing-time' into
[EMAIL PROTECTED]
`emms-all'.
]
[emms-lyrics.el: New function: `emms-lyrics-restore-mode-line'.
[EMAIL PROTECTED]
[emms-playing-time.el: New function: `emms-playing-time-restore-mode-line'.
[EMAIL PROTECTED]
[manual work (57% done)
[EMAIL PROTECTED]
[emms.el: Should initialize `emms-player-paused-p' to nil at start. Or a
[EMAIL PROTECTED]
pause + stop would make `emms-player-paused-p' be wrong.
]
[emms-mode-line.el: Made `emms-mode-line-alter' be compatible with
[EMAIL PROTECTED]
`emms-track-updated-functions'.
]
[emms-mode-line.el: When artist or title info cann't be achieved, show
[EMAIL PROTECTED]
file name without directory.
]
[emms-mode-line: Changed dead `emms-playlist-current-track-changed-hook'
[EMAIL PROTECTED]
to `emms-track-updated-functions'.
]
[emms-playlist-mode-switch-buffer
[EMAIL PROTECTED]
[Yet Another Installment of the manual re-write
[EMAIL PROTECTED]
[emms-setup.el re-write
[EMAIL PROTECTED]
[more manual re-writing
[EMAIL PROTECTED]
[manual work
[EMAIL PROTECTED]
[Another installment of manual changes
[EMAIL PROTECTED]
[some manual fixes (just the start)
[EMAIL PROTECTED]
[Rename emms-default.el to emms-setup.el.
[EMAIL PROTECTED]
[emms.el (emms-playlist-new): Use interactive-p rather than
Michael Olson <[EMAIL PROTECTED]>**20050925165342
called-interactively-p, since the latter is not available in Emacs21.
]
[emms-streams.el: Update `emms-info-file-info-song-artist' so that it
Michael Olson <[EMAIL PROTECTED]>**20050925160336
can deal with the new interface.
]
[emms-playlist-mode.el: 3rd attempt to not clobber
Michael Olson <[EMAIL PROTECTED]>**20050924183844
emms-playlist-buffer-p.
]
[List all the changes needed in the manual
[EMAIL PROTECTED]
[Update tracks with a specific function, and provide emms-track-updated-functions
[EMAIL PROTECTED]
[Adding emms-info-ogginfo.el and consiquently modifying emms-default
[EMAIL PROTECTED]
[add emms-metaplaylist-mode.el
[EMAIL PROTECTED]
[rollback patch to fix adding tracks.
[EMAIL PROTECTED]
[emms-playing-time.el:
[EMAIL PROTECTED]
1 New functions: `emms-playing-time-enable',
`emms-playing-time-disable', `emms-playing-time-toggle', for handling
hook stuffs.
2 Removed `emms-playing-time-display-p' where unnecessary now.
3 Updated commentary and author name. :-)
]
[eemms-lyrics.el:
[EMAIL PROTECTED]
1 New functions: `emms-lyrics-enable', `emms-lyrics-disable',
`emms-lyrics-toggle', for handling hook stuffs.
2 Removed `emms-lyrics-display-p' where unnecessary now.
3 Updated commentary and author name. :-)
]
[emms-lyrics.el: Fixed a bug in `emms-lyrics-start'.
[EMAIL PROTECTED]
[emms-playing-time.el: Applied standard customization definitions.
[EMAIL PROTECTED]
[emms-info-mp3info: Provide a way to configure the mp3info output coding system.
[EMAIL PROTECTED]
[Add documentation of the define symbols for emms-info.el.
[EMAIL PROTECTED]
[remove emms-metaplaylist-mode code from emms-playlist-mode
[EMAIL PROTECTED]
[emms-playing-time: Since 'info-playing-time is an int now, changed
[EMAIL PROTECTED]
`emms-playing-time-display' accordingly.
]
[emms-info-mp3info: Use number for 'info-playing-time.
[EMAIL PROTECTED]
[emms-playing-time.el: Updated the playing-time retrieval method, so as
[EMAIL PROTECTED]
to be able to display playing-time again.
]
[emms-playlist-mode: Make sure emms-playlist-buffer-p is set, since we
Michael Olson <[EMAIL PROTECTED]>**20050922132808
destroy all local variables.
]
[emms-playlist-mode-go: Add buffer-live-p check to circumvent a
Michael Olson <[EMAIL PROTECTED]>**20050922132424
"selecting deleted buffer" error.
]
[emms-player-mplayer.el: Set resume method to nil to just use pause.
[EMAIL PROTECTED]
[fix emms-score.el and emms-info-ogg.el borkage
[EMAIL PROTECTED]
[clean-up emms-info-ogg.el
[EMAIL PROTECTED]
[fix ogg-info
[EMAIL PROTECTED]
[emms-info-mp3info ignores files which are not mp3s
[EMAIL PROTECTED]
[Don't set values mp3info has nothing for
[EMAIL PROTECTED]
[later-do.el: Run timer after function did run to avoid stacking
[EMAIL PROTECTED]
[Inefficiency removed: Update each track only once :P
[EMAIL PROTECTED]
[Ignore read-onliness when updating a track in a playlist buffer
[EMAIL PROTECTED]
[Use time-less-p instead of <= for times
[EMAIL PROTECTED]
[later-do.el emms version
[EMAIL PROTECTED]
[emms-streams shouldn't overwrite `emms-track-initialize-functions'
[EMAIL PROTECTED]
[Typo fix (findo -> find)
[EMAIL PROTECTED]
[emms-info-track-description: Fall back to old behavior if no title and artist
[EMAIL PROTECTED]
[Hotfix for emms-streams due to info changed. Please fix later.
[EMAIL PROTECTED]
[Fix emms-default.el, and ignore ogg stuff for now.
[EMAIL PROTECTED]
[Remove emms-info-later-do.el
[EMAIL PROTECTED]
[Fix emms-default.el for new emms-info.el
[EMAIL PROTECTED]
[emms-info-mp3info.el updated for newest emms-info.el
[EMAIL PROTECTED]
[emms-info.el rewrite.
[EMAIL PROTECTED]
[later-do: Work even if the called function errors out.
[EMAIL PROTECTED]
[emms-random: Use `emms-playlist-current-select-random'.
[EMAIL PROTECTED]
[fixing track killing some more
[EMAIL PROTECTED]
[use insert function for yanking
[EMAIL PROTECTED]
[Fixed saving/loading for emms-playlist-mode, also added track updating
[EMAIL PROTECTED]
[Added track updating to emms.
[EMAIL PROTECTED]
[Added emms-playlist-mode-insert-function (fixed sorting and shuffling font-lock)
[EMAIL PROTECTED]
[Make emms-playlist-current-clear an interactive function.
[EMAIL PROTECTED]
[Fix bugs in lyrics and mode-line modes when switching songs, fix yanking in playlist buffer
[EMAIL PROTECTED]
[Fix track switching error and interactive playlist yanking
[EMAIL PROTECTED]
[Fix track switching error and interactive playlist yanking
[EMAIL PROTECTED]
[Added 'emms-playlist-clear to the default key-map for emms-playlist-mode
[EMAIL PROTECTED]
[Added 'emms-playlist-clear to default playlist keymap
[EMAIL PROTECTED]
[Make `emms-playlist-clear' interactive so that I can map it to a key.
[EMAIL PROTECTED]
[include streaming into emms-default and fix streaming info from within the *EMMS Streams* buffer
[EMAIL PROTECTED]
[Make `with-current-emms-playlist' disable read-onlyness.
[EMAIL PROTECTED]
[fix emms-streams.el and emms-player-mplayer.el
[EMAIL PROTECTED]
[comment out emms-info-playlist breakage
[EMAIL PROTECTED]
[emms-playlist-set-playlist-buffer: Ensure the selected buffer is a playlist.
[EMAIL PROTECTED]
[Ignore read-onliness when opening a playlist-mode-buffer.
[EMAIL PROTECTED]
[fixing errors after breakage
[EMAIL PROTECTED]
[Big renaming for current buffer/current playlist distinction.
[EMAIL PROTECTED]
All playlist functions which work on the current playlist now are named
`emms-playlist-current-...'. Other functions named `emms-playlist-...'
work on the current buffer.
This affects the following functions:
emms-playlist-clear => emms-playlist-current-clear
emms-playlist-selected-track => emms-playlist-current-selected-track
emms-playlist-select-next => emms-playlist-current-select-next
emms-playlist-select-previous => emms-playlist-current-select-previous
emms-playlist-select-random => emms-playlist-current-select-random
emms-playlist-select-first => emms-playlist-current-select-first
emms-playlist-select-last => emms-playlist-current-select-last
emms-playlist-insert-source => emms-playlist-current-insert-source
]
[emms-playlist-new: No, it's a major mode, DONT pass an argument!
[EMAIL PROTECTED]
[Making emms-default now emms-playlist-mode compatible
[EMAIL PROTECTED]
[emms-playlist-new: Pass positive argument to mode function.
[EMAIL PROTECTED]
[Renaming the "playlist" source to "streamlist".
[EMAIL PROTECTED]
Things might be broken.
]
[clean-up pseudo font-locking
[EMAIL PROTECTED]
["font-locking" for inserted, unselected tracks
[EMAIL PROTECTED]
[emms.el missing quote fix, emms-playlist-mode.el kill-track fix
[EMAIL PROTECTED]
[Adding a bunch of FIXME tags for the playlist source
[EMAIL PROTECTED]
When we come to a consensus on the naming, we'll just fix it.
Yrk should have a word about it, stream-playlist sounds good.
]
[Fixing emms-playlist-mode-open-buffer
[EMAIL PROTECTED]
[emms-playlist-select should not switch to the playlist buffer.
[EMAIL PROTECTED]
[Renaming emms-playlist-save to emms-playlist-mode-save-buffer
[EMAIL PROTECTED]
[Added docstrings and clean-up for emms-playlist-mode.el
[EMAIL PROTECTED]
[A kinder, gentler emms-playlist-mode-go
[EMAIL PROTECTED]
[clean-up and emms-playlist-mode-center-current
[EMAIL PROTECTED]
[emms-player-mplayer.el: mplayer also knows rm, rmvb, mp4, ...etc.
[EMAIL PROTECTED]
[multiple fixes to emms-playlist-mode.el
[EMAIL PROTECTED]
[emms-show now knows when nothing is playing.
[EMAIL PROTECTED]
[Inhibit read-only in `emms-playlist-insert-track'
[EMAIL PROTECTED]
[mpd-updates
Michael Olson <[EMAIL PROTECTED]>**20050917021138
emms-player-mpd.el: Add handler for 'resume.
(emms-player-mpd-paused-p): Remove, since we already have
emms-player-paused-p.
(emms-player-mpd-pause): Use toggle instead of either play or
pause.
]
[Making emms-playlist-mode-go respect emms-playlist-buffer
[EMAIL PROTECTED]
[Add `emms-ensure-player-playing-p'
[EMAIL PROTECTED]
[Adding emms-playlist-mode-save and -open
[EMAIL PROTECTED]
[Small fixes
[EMAIL PROTECTED]
[Be able to clear the playlist buffer even if it's killed.
[EMAIL PROTECTED]
[Adding emms-playlist-save-active-as-m3u
[EMAIL PROTECTED]
[Fixing a typo in emms-playlist-save-active
[EMAIL PROTECTED]
[Docstrings for playlist saving functions
[EMAIL PROTECTED]
[Adding m3u playlist format for saving.
[EMAIL PROTECTED]
[Added emms-playlist-mode.el
[EMAIL PROTECTED]
[Shuffle, sort and source-add don't move point anymore.
[EMAIL PROTECTED]
[Provide source insertion
[EMAIL PROTECTED]
[Cleaned up `emms-playlist-save' a bit
[EMAIL PROTECTED]
[Adding emms-playlist-save and -active-save
[EMAIL PROTECTED]
Opening will come soon.
]
[Fix emms-playlist-new and make emms-playlist-clear use it.
[EMAIL PROTECTED]
[Removing the old emms-save-playlist
[EMAIL PROTECTED]
[emms-source-add now checks for an as of yet unset marker, too.
[EMAIL PROTECTED]
[Add `emms-playlist-buffer-p'.
[EMAIL PROTECTED]
[emms-lyrics.el: Changed to `emms-player-seeked-hook' to
[EMAIL PROTECTED]
`emms-player-seeked-functions', defined in `emms.el'.
]
[emms-playing-time.el: Changed to `emms-player-seeked-hook' to
[EMAIL PROTECTED]
`emms-player-seeked-functions', defined in `emms.el'.
]
[emms.el: Fix seek bug in `emms-player-seek'.
[EMAIL PROTECTED]
[emms-lyrics.el: Updated commentary and applied standard customization
[EMAIL PROTECTED]
definitions.
]
[ogg-comment.el: Define macros before using them.
[EMAIL PROTECTED]
[Add more mikmod command line args.
[EMAIL PROTECTED]
[Added mikmod support (thanks to Martin Schoenmakers)
[EMAIL PROTECTED]
[emms-playlist-new, emms-playlist-set-playlist-buffer: New commands.
[EMAIL PROTECTED]
[Add `emms-player-simple-regexp'. Also, use it as appropriate.
[EMAIL PROTECTED]
[Fixing typo in file regexps for gstreamer
[EMAIL PROTECTED]
[Updated define-emms-simple-player examples in emms.texinfo
[EMAIL PROTECTED]
[Call widen in shuffle and sort.
[EMAIL PROTECTED]
[Added `emms-playlist-delete-track-function'.
[EMAIL PROTECTED]
[Remove emms-playlist-kill-track.
[EMAIL PROTECTED]
[Fix shuffling in combined sources.
[EMAIL PROTECTED]
[Call `emms-shuffle' to shuffle a source.
[EMAIL PROTECTED]
[Cleanup of the shuffle/sort stuff
[EMAIL PROTECTED]
[emms-shuffle-all: Depend on the value of current, not of emms-player-playing-p
[EMAIL PROTECTED]
[Don't make emms-playlist-sort and emms-playlist-shuffle interactive.
[EMAIL PROTECTED]
[Keep the selected song correct for shuffling and sorting
[EMAIL PROTECTED]
[Throw errors for `emms-next' and `emms-previous' at the end/beginning of the playlist
[EMAIL PROTECTED]
[Added `emms-randomÃ' (idea by twb)
[EMAIL PROTECTED]
[Add shuffling and sorting.
[EMAIL PROTECTED]
[Lots of condition-case fixes.
[EMAIL PROTECTED]
[First attempt at reading playing time for .ogg
[EMAIL PROTECTED]
Problem : it's a bit long to read the info now.
We need to optimize that.
]
[Move gstreamer support into simple player.
[EMAIL PROTECTED]
[Add pause and resume to the simple player.
[EMAIL PROTECTED]
[emms-stream-info.el: Use emms-playlist-selected-track.
[EMAIL PROTECTED]
[Removed old gstreamer wrappers
[EMAIL PROTECTED]
[Added new generic wrapper for gstreamer
[EMAIL PROTECTED]
[Fixed typo in emms.el
[EMAIL PROTECTED]
Non quoted hook variable
]
[Rewrote emms-player-gstreamer
[EMAIL PROTECTED]
[Typo: It's emms-playlist-insert-track, not ...-track-insert.
[EMAIL PROTECTED]
[emms-player-mpd doesn't need emms-player-extensions anymore.
[EMAIL PROTECTED]
[FAQ: Typo fix (Thes -> The)
[EMAIL PROTECTED]
[Fixing the extensions problem.
[EMAIL PROTECTED]
Just removed the requires, and added require mplayer
in emms-default.
]
[Select a track after adding, too, if none is selected.
[EMAIL PROTECTED]
[Rename emms-mpd.el to emms-player-mpd.el
[EMAIL PROTECTED]
[Rename emms-lyric.el to emms-lyrics.el
[EMAIL PROTECTED]
[Add speex support
[EMAIL PROTECTED]
[Add pause and seek support to emms.el.
[EMAIL PROTECTED]
This factors out the mplayer support into emms-player-mplayer.el,
and removes emms-player-extensions.el.
]
[renaming the provide, Emacs complains otherwise
[EMAIL PROTECTED]
[Fixed emms-mode-line-icon and -playing-time
[EMAIL PROTECTED]
[Rename emms-gstreamer.el to emms-player-gstreamer.el
[EMAIL PROTECTED]
[fixing emms-lyric.el and emms-mode-line.el
[EMAIL PROTECTED]
I don't have any lyric file, so I can't test it. But
there are no errors :)
]
[emms.el (with-current-emms-playlist): Also recreate when the buffer is
[EMAIL PROTECTED]
dead.
]
[emms.el (emms-next-noerror): Always return non-nil when
[EMAIL PROTECTED]
`emms-playlist-select-next' doesn't error out.
]
[Playlist buffer rewrite
[EMAIL PROTECTED]
[Initial commit (CVS 2005-09-11)
[EMAIL PROTECTED]
Patch bundle hash:
8ebde18f92193e73f781983110b30cd7cc4c0dfd
--
"Cut your own wood and it will warm you twice"
_______________________________________________
Emms-help mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emms-help