el/dot-emacs.el: Don't try to select a track after the last line.
authorMark Wooding <mdw@distorted.org.uk>
Thu, 20 Jul 2017 00:18:46 +0000 (01:18 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 20 Jul 2017 00:18:46 +0000 (01:18 +0100)
el/dot-emacs.el

index 5f27085..6b2525f 100644 (file)
@@ -3857,7 +3857,8 @@ there is sadness."
               (decf n)))))))
 
 (defun mdw-mpc-select-one ()
-  (unless (get-char-property (point) 'mpc-select)
+  (when (and (get-char-property (point) 'mpc-file)
+            (not (get-char-property (point) 'mpc-select)))
     (mpc-select-toggle)))
 
 (defun mdw-mpc-unselect-one ()