From 1d25613265388fbe8ca2c2bf55504e01aae69354 Mon Sep 17 00:00:00 2001 From: Nicolas Petton Date: Wed, 27 Mar 2019 10:22:33 +0100 Subject: [PATCH] * lisp/emacs-lisp/map.el (map-inplace): Fix the message of the error. --- lisp/emacs-lisp/map.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/map.el b/lisp/emacs-lisp/map.el index 9a86736fba1..54e802edf4f 100644 --- a/lisp/emacs-lisp/map.el +++ b/lisp/emacs-lisp/map.el @@ -399,7 +399,7 @@ If you want to insert an element without modifying MAP, use `map-insert'." ;; and let `map-insert' grow the array? :array (aset map key value))) -(define-error 'map-inplace "Can only modify map in place: %S") +(define-error 'map-inplace "Can only modify map in place") (cl-defgeneric map-insert (map key value) "Return a new map like MAP except that it associates KEY with VALUE. -- 2.39.5