diff options
author | Pierre Neidhardt <ambrevar@gmail.com> | 2018-06-06 13:46:23 +0200 |
---|---|---|
committer | Pierre Neidhardt <ambrevar@gmail.com> | 2018-06-06 13:46:23 +0200 |
commit | 377bc595f51cedb0717bfe9fbe3da11db166fb09 (patch) | |
tree | 17138aac440b9ca00cdaae878f057a3ed42ad5af /lisp | |
parent | aefee6ddae1f50811921792ef8d0de8af5e4df89 (diff) |
* lisp/emms-player-mpv.el: Replace hex #xa with the more explicit ?\n
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emms-player-mpv.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emms-player-mpv.el b/lisp/emms-player-mpv.el index b22aa25..e3fb52e 100644 --- a/lisp/emms-player-mpv.el +++ b/lisp/emms-player-mpv.el @@ -431,7 +431,7 @@ MEDIA-ARGS are used instead of --idle, if specified." (goto-char p0) (end-of-line) (equal (following-char) - #xa)) + ?\n)) (let* ((p1 (point)) (json (buffer-substring p0 p1))) |