diff options
author | Fran Burstall <fran.burstall@gmail.com> | 2018-10-20 10:12:51 +0100 |
---|---|---|
committer | Fran Burstall <fran.burstall@gmail.com> | 2018-10-20 10:12:51 +0100 |
commit | dfc2d4fd611054468b08f744d6b05f7e5cbc3877 (patch) | |
tree | c350d991fb986c9dc7641135b983eecce855f8ee /lisp | |
parent | 4437c84ee2b0b328255c5c417705fbef4c8906fc (diff) |
* lisp/emms-mark.el: Correct prompt in emms-mark-regexp
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emms-mark.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emms-mark.el b/lisp/emms-mark.el index de9d346..b7d2558 100644 --- a/lisp/emms-mark.el +++ b/lisp/emms-mark.el @@ -1,6 +1,6 @@ ;;; emms-mark.el --- mark track like dired -;; Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 2006, 2007, 2008, 2009, 2018 Free Software Foundation, Inc. ;; ;; Author: Ye Wenbin <wenbinye@163.com> @@ -137,8 +137,8 @@ unmark them instead." (interactive (list (read-from-minibuffer (if current-prefix-arg - "Mark tracks matching: " - "Unmark tracks matching: ")) + "Unmark tracks matching: " + "Mark tracks matching: ")) current-prefix-arg)) (let ((emms-mark-char (if arg ?\040 ?*))) (save-excursion |