diff options
| author | Yoni Rabkin <yrk@gnu.org> | 2016-08-01 16:49:50 -0400 | 
|---|---|---|
| committer | Yoni Rabkin <yrk@gnu.org> | 2016-08-01 16:49:50 -0400 | 
| commit | ad03c9cf42733e9c8ba5be54d2fac452c12ad09b (patch) | |
| tree | aaccad9f3a9fa286dfe2c31ccaa758ff4fb176a1 | |
| parent | e63f143cce434aa17076ed6f437ed5bfd5db6d9d (diff) | |
* lisp/emms-tag-editor.el: fix "query-replace-read-args"
Author: Daniel Dehennin <daniel.dehennin@baby-gnu.org>
    emms-tag-editor: fix “query-replace-read-args” use
    Since emacs commit 3ee4cd6482abbabb06630a6c725277d42061eee7[1] the
    retult value of “query-replace-read-args” changed which broke
    “emms-tag-editor-replace-in-tag”.
    * lisp/emms-tag-editor.el: Remove last two elements from
      query-replace-read-args results.
    Footnotes:
    [1]  http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=3ee4cd6482abbabb06630a6c725277d42061eee7
| -rw-r--r-- | lisp/emms-tag-editor.el | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emms-tag-editor.el b/lisp/emms-tag-editor.el index 85baf7d..c57a111 100644 --- a/lisp/emms-tag-editor.el +++ b/lisp/emms-tag-editor.el @@ -341,7 +341,7 @@ changes will only take effect on the tracks in the region."                              "Query replace regexp in region"                            "Query replace regexp")                          t))) -           (butlast common)))) +           (butlast common 2))))    (let ((overlay (make-overlay (point-min) (1+ (point-min)))))      (overlay-put overlay 'face 'match)      (unwind-protect  | 
