diff options
| author | Rasmus <rasmus@gmx.us> | 2016-02-07 13:08:33 +0100 | 
|---|---|---|
| committer | Rasmus <rasmus@gmx.us> | 2016-02-07 13:20:22 +0100 | 
| commit | 141ab95c2a0a2554b205f6eec991fa36d7d0531f (patch) | |
| tree | 7cb0e8e2066c0fdcaa42bc07ffd32bc3fa028fec | |
| parent | 489df29303fc89d4f80bffae91ad53f937ccd59a (diff) | |
Fix bug in emms-browser.el
* lisp/emms-browser.el: setq requires an even number of arguments now.
| -rw-r--r-- | lisp/emms-browser.el | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emms-browser.el b/lisp/emms-browser.el index 8a86bd2..23b1495 100644 --- a/lisp/emms-browser.el +++ b/lisp/emms-browser.el @@ -1272,7 +1272,7 @@ Return the previous point-max before adding."                  (forward-line (or direction 1)))        (unless (eq (emms-browser-bdata-type                     (emms-browser-bdata-at-point)) 'info-title) -        (setq continue))))) +        (setq continue nil)))))  (defun emms-browser-prev-non-track ()    "Jump to the previous non-track element."  | 
