]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/map.el (map-inplace): Fix the message of the error.
authorNicolas Petton <nicolas@petton.fr>
Wed, 27 Mar 2019 09:22:33 +0000 (10:22 +0100)
committerNicolas Petton <nicolas@petton.fr>
Wed, 27 Mar 2019 09:23:08 +0000 (10:23 +0100)
lisp/emacs-lisp/map.el

index 9a86736fba10e2479c5bf66fb14e8bbd22b70663..54e802edf4f67335b44d10eadf299743b4774730 100644 (file)
@@ -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.