]> git.eshelyaron.com Git - emacs.git/commit
Don't rewrite (nconc X nil) -> X for any X (bug#63103)
authorMattias Engdegård <mattiase@acm.org>
Thu, 27 Apr 2023 10:38:58 +0000 (12:38 +0200)
committerMattias Engdegård <mattiase@acm.org>
Thu, 27 Apr 2023 12:20:45 +0000 (14:20 +0200)
commit1dcb737405a7a299fe6d01a5d9bd0c79328920b7
tree43af8f37e1185290b6a485ec936ad1463b4b7802
parent521386f9201d0cacfcc857f7ef7cc1e5e586705a
Don't rewrite (nconc X nil) -> X for any X (bug#63103)

Since the last cdr of a non-terminal argument to `nconc` is
overwritten no matter its value:

  (nconc (cons 1 2) nil) => (1)

a terminating nil arg cannot just be eliminated unconditionally.

* lisp/emacs-lisp/byte-opt.el (byte-optimize-nconc):
Only eliminate a terminal nil arg to `nconc` if preceded by
a nonempty proper list.  Right now we only bother to prove this
for `(list ...)`, so that

  (nconc (list 1 2 3) nil) -> (list 1 2 3)

* test/lisp/emacs-lisp/bytecomp-tests.el
(bytecomp-tests--test-cases): Add test cases.
lisp/emacs-lisp/byte-opt.el
test/lisp/emacs-lisp/bytecomp-tests.el