diff options
author | Yoni Rabkin <yoni@rabkins.net> | 2018-04-12 09:39:55 -0400 |
---|---|---|
committer | Yoni Rabkin <yoni@rabkins.net> | 2018-04-12 09:39:55 -0400 |
commit | e69e910843594a09d8e337b7724ae2e67cc73f84 (patch) | |
tree | c603a6ffc996a5b6a21c50ea4e05bef7d401f2f3 /lisp | |
parent | c90a7535ff1e6552274adf3a48b777316ff8d897 (diff) |
* lisp/emms-volume-pulse.el: bug fix
Regexp supported only single digits numbers. Bug fix by Eugene Sharygin.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emms-volume-pulse.el | 2 |
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") |