]> git.eshelyaron.com Git - emacs.git/commit
Byte-compiler warning about mutation of constant values
authorMattias Engdegård <mattiase@acm.org>
Thu, 11 May 2023 17:24:51 +0000 (19:24 +0200)
committerMattias Engdegård <mattiase@acm.org>
Sat, 13 May 2023 09:53:25 +0000 (11:53 +0200)
commitbfc07100d28d0f687da0a1dd5fdfa42a92a93f88
tree4ca024cacb42464e68c51f07bbbae3d1fe9af4eb
parentfa598571adab4858282f337b45984517e197f8a9
Byte-compiler warning about mutation of constant values

When we can easily detect mutation of constants (quoted lists, strings
and vectors), warn.  For example,

  (setcdr '(1 . 2) 3)
  (nreverse [1 2 3])
  (put-text-property 0 3 'face 'highlight "moo")

Such code can result in surprising behaviour and problems that
are difficult to debug.

* lisp/emacs-lisp/bytecomp.el (byte-compile-form, mutating-fns):
Add the warning and a list of functions to warn about.
* etc/NEWS: Announce.
* test/lisp/emacs-lisp/bytecomp-tests.el
(bytecomp-test--with-suppressed-warnings): Add test cases.
etc/NEWS
lisp/emacs-lisp/bytecomp.el
test/lisp/emacs-lisp/bytecomp-tests.el