diff options
author | Yoni Rabkin <yrk@gnu.org> | 2016-02-28 22:03:16 -0500 |
---|---|---|
committer | Yoni Rabkin <yrk@gnu.org> | 2016-02-28 22:03:16 -0500 |
commit | 8ba0a5eb1991544ef91ea90772b614f9ab7d953c (patch) | |
tree | 7ff7cf77488de044c5e61b3a4c7191041ea58b1f | |
parent | f461c8ec3c5198384ca43b275155fb85c948326d (diff) |
* lisp/emms-show-all.el: new file
-rw-r--r-- | lisp/emms-show-all.el | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lisp/emms-show-all.el b/lisp/emms-show-all.el new file mode 100644 index 0000000..3ff7978 --- /dev/null +++ b/lisp/emms-show-all.el @@ -0,0 +1,36 @@ +;;; emms-show-all.el --- Detailed track information for Emms. + +;; Copyright (C) 2016 Free Software Foundation, Inc. + +;; Author: Yoni Rabkin <yrk@gnu.org> + +;; This file is part of EMMS. + +;; EMMS is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation; either version 3, or (at your option) +;; any later version. +;; +;; EMMS is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with EMMS; if not, write to the Free Software Foundation, +;; Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + +;;; Commentary: +;;; +;;; + +;;; Code: + +(require 'emms-tag-editor) + + + + +(provide 'emms-show-all) + +;;; emms-playlist-mode.el ends here |