From: Andrea Corallo Date: Sat, 5 Oct 2019 14:26:52 +0000 (+0200) Subject: fix comp.el compilation warning X-Git-Tag: emacs-28.0.90~2727^2~1088 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4a00e47d4d75528ec69291c03615bd669c58ed7e;p=emacs.git fix comp.el compilation warning --- diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index a026ba9b2bf..349db109918 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -1450,7 +1450,7 @@ This can run just once." (`(callref funcall ,f . ,rest) (when-let ((new-form (comp-call-optim-form-call (comp-mvar-constant f) rest self))) - (setcar insn-cell ,new-form))))))) + (setcar insn-cell new-form))))))) (defun comp-call-optim (_) "Given FUNCS try to avoid funcall trampoline usage when possible."