aboutsummaryrefslogtreecommitdiff
path: root/emms-tag-editor.el
diff options
context:
space:
mode:
authorYe Wenbin <wenbinye@gmail.com>2007-09-02 02:48:00 +0000
committerYe Wenbin <wenbinye@gmail.com>2007-09-02 02:48:00 +0000
commit9bd9bbd44f182e41428de04ee99f9ac957eda75e (patch)
tree95a596d4dd36b1b8483b4dc4ec7f2c1d18482630 /emms-tag-editor.el
parenta728137bf8409ddd144026f5f842d06c6535bc7b (diff)
format-spec expect spec character as a-zA-Z
darcs-hash:20070902024848-94065-92a423e34a493d7e9e278ace8e763301bc928cee.gz
Diffstat (limited to 'emms-tag-editor.el')
-rw-r--r--emms-tag-editor.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/emms-tag-editor.el b/emms-tag-editor.el
index 6091ca9..e97b246 100644
--- a/emms-tag-editor.el
+++ b/emms-tag-editor.el
@@ -40,7 +40,7 @@
(defvar emms-tag-editor-tags
'((info-artist . "a")
- (info-composer . "c")
+ (info-composer . "C")
(info-performer . "p")
(info-title . "t")
(info-album . "l")
@@ -48,7 +48,7 @@
(info-year . "y")
(info-genre . "g")
(info-date . "d")
- (info-note . ";"))
+ (info-note . "c"))
"An alist to determine the format of various info tags.")
(defvar emms-tag-editor-edit-buffer "*EMMS-TAGS*"
@@ -366,7 +366,6 @@ changes will only take effect on the tracks in the region."
(emms-track-set track 'tag-modified t)
(emms-tag-editor-insert-track track))))))
-;;;###autoload
(defun emms-tag-editor-guess-tag-filename (pattern fullname)
"A pattern is a string like \"%a-%t-%y\" which stand for
the file name is constructed by artist, title, year with seperator '-'.
@@ -429,7 +428,6 @@ Available tags are:
(cdr pattern)))
(emms-tag-editor-insert-track track))))))
-;;;###autoload
(defun emms-tag-editor-compile-pattern (pattern)
"A pattern to regexp convertor. \"%a-%{b:[a-z]+}\" will compile to
\"\\([^-]+\\)-\\([a-z]+\\)\"."