aboutsummaryrefslogtreecommitdiff
path: root/lisp/emms-volume-pulse.el
diff options
context:
space:
mode:
authorYoni Rabkin <yoni@rabkins.net>2018-04-12 09:39:55 -0400
committerYoni Rabkin <yoni@rabkins.net>2018-04-12 09:39:55 -0400
commite69e910843594a09d8e337b7724ae2e67cc73f84 (patch)
treec603a6ffc996a5b6a21c50ea4e05bef7d401f2f3 /lisp/emms-volume-pulse.el
parentc90a7535ff1e6552274adf3a48b777316ff8d897 (diff)
* lisp/emms-volume-pulse.el: bug fix
Regexp supported only single digits numbers. Bug fix by Eugene Sharygin.
Diffstat (limited to 'lisp/emms-volume-pulse.el')
-rw-r--r--lisp/emms-volume-pulse.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emms-volume-pulse.el b/lisp/emms-volume-pulse.el
index a3f9620..440ab7f 100644
--- a/lisp/emms-volume-pulse.el
+++ b/lisp/emms-volume-pulse.el
@@ -80,7 +80,7 @@ See full list of devices on your system by running
(cl-loop while
(string-match
(mapconcat 'identity
- '(".*Sink[ \t]+\\#\\([0-9]\\)"
+ '(".*Sink[ \t]+\\#\\([0-9]+\\)"
".*Name:[ \t]\\([^\n]+\\)"
".*Volume:.*?\\([0-9]+\\)%.*\n?")
"\n")