aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/comp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index caea81fccca..936e47ff39a 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -2474,7 +2474,7 @@ PRE-LAMBDA and POST-LAMBDA are called in pre or post-order if non-nil."
2474 (pcase insn 2474 (pcase insn
2475 (`(,(pred comp-assign-op-p) ,(pred targetp) . ,_) 2475 (`(,(pred comp-assign-op-p) ,(pred targetp) . ,_)
2476 (let ((mvar (aref frame slot-n))) 2476 (let ((mvar (aref frame slot-n)))
2477 (setcdr insn (cl-nsubst-if mvar #'targetp (cdr insn)))) 2477 (setf (cddr insn) (cl-nsubst-if mvar #'targetp (cddr insn))))
2478 (new-lvalue)) 2478 (new-lvalue))
2479 (`(fetch-handler . ,_) 2479 (`(fetch-handler . ,_)
2480 ;; Clobber all no matter what! 2480 ;; Clobber all no matter what!