From: Nicolas Petton Date: Wed, 27 Mar 2019 09:22:33 +0000 (+0100) Subject: * lisp/emacs-lisp/map.el (map-inplace): Fix the message of the error. X-Git-Tag: emacs-27.0.90~3324 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1d25613265388fbe8ca2c2bf55504e01aae69354;p=emacs.git * lisp/emacs-lisp/map.el (map-inplace): Fix the message of the error. --- 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.