projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2755cf1
)
* lisp/emacs-lisp/map.el (map-inplace): Fix the message of the error.
author
Nicolas Petton
<nicolas@petton.fr>
Wed, 27 Mar 2019 09:22:33 +0000
(10:22 +0100)
committer
Nicolas Petton
<nicolas@petton.fr>
Wed, 27 Mar 2019 09:23:08 +0000
(10:23 +0100)
lisp/emacs-lisp/map.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/map.el
b/lisp/emacs-lisp/map.el
index 9a86736fba10e2479c5bf66fb14e8bbd22b70663..54e802edf4f67335b44d10eadf299743b4774730 100644
(file)
--- 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.