;;; emus.el --- Simple music player for Emacs ;; Author: T. G. Vaughan ;; Version: 1.0 ;; Keywords: multimedia ;; URL: http://github.com/tgvaughan/emus ;; Commentary: ;; This is a simple package for playing audio from a local library ;; of audio files. ;;;###autoload (defun emus () "Switch to *emus* audio library buffer." (interactive) (switch-to-buffer "*emus*") (emus-mode))