branch: elpa/radio
commit b86348b73dff7852f9d2898bedb615e0cb685c89
Author: Roi Martin <[email protected]>
Commit: Roi Martin <[email protected]>
radio.el: fix minor style issue
---
radio.el | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/radio.el b/radio.el
index f76c0db070..2210ef59c7 100644
--- a/radio.el
+++ b/radio.el
@@ -126,9 +126,8 @@ effect."
(mapcar
(lambda (station)
(let* ((is-current (equal station current-station))
- (face (if is-current 'bold 'default))
- (status (if is-current "▶" "")))
- `(,station [,status
+ (face (if is-current 'bold 'default)))
+ `(,station [,(if is-current "▶" "")
,(propertize (car station) 'face face)
,(propertize (cdr station) 'face face)])))
radio-stations-alist)))