diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-03-19 16:02:52 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-03-19 16:02:52 -0400 |
commit | 94d1c81cf0732da96b33cfc5c967afbcdf9cf1b9 (patch) | |
tree | dce7f84e73045cd7041499303b308bae4c36cd63 /lisp/mpc.el | |
parent | a4d97811ed4a6557ccac4b6a79a52993d8aa0fa3 (diff) | |
download | emacs-94d1c81cf0732da96b33cfc5c967afbcdf9cf1b9.tar.gz emacs-94d1c81cf0732da96b33cfc5c967afbcdf9cf1b9.tar.bz2 emacs-94d1c81cf0732da96b33cfc5c967afbcdf9cf1b9.zip |
* lisp/mpc.el (mpc-format): Fix oversight in commit 48b6cec61cf
Diffstat (limited to 'lisp/mpc.el')
-rw-r--r-- | lisp/mpc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mpc.el b/lisp/mpc.el index db1da2ac030..b937a6b5945 100644 --- a/lisp/mpc.el +++ b/lisp/mpc.el @@ -1104,7 +1104,7 @@ If PLAYLIST is t or nil or missing, use the main playlist." (interactive) (mpc-constraints-push 'noerror) (mpc-constraints-restore - ',(list (list tag text))))))))) + (list (list tag text))))))))) (funcall insert (concat (when size (propertize " " 'display |