aboutsummaryrefslogtreecommitdiff
path: root/emms.el
diff options
context:
space:
mode:
Diffstat (limited to 'emms.el')
-rw-r--r--emms.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/emms.el b/emms.el
index 61119d4..2df7d43 100644
--- a/emms.el
+++ b/emms.el
@@ -564,7 +564,7 @@ If no playlist exists, a new one is generated."
(point-max)))
(run-hooks 'emms-playlist-cleared-hook))
-(defmacro with-widened-buffer (&rest body)
+(defmacro emms-with-widened-buffer (&rest body)
`(save-restriction
(widen)
,@body))
@@ -573,7 +573,7 @@ If no playlist exists, a new one is generated."
(defun emms-playlist-track-at (&optional pos)
"Return the track at POS (point if not given), or nil if none."
(emms-playlist-ensure-playlist-buffer)
- (with-widened-buffer
+ (emms-with-widened-buffer
(get-text-property (or pos (point))
'emms-track)))