From: Richard M. Stallman Date: Wed, 21 Apr 2004 19:13:00 +0000 (+0000) Subject: Fix previous change. X-Git-Tag: ttn-vms-21-2-B4~6684 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a4f66531945826f4a12d6c41bfa80ef89eff33ed;p=emacs.git Fix previous change. --- diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 224fd366a41..07c361fc054 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -3716,8 +3716,7 @@ being undefined will be suppressed." (byte-defop-compiler-1 with-no-warnings byte-compile-no-warnings) (defun byte-compile-no-warnings (form) (let (byte-compile-warnings) - (setcar form 'progn) - (byte-compile-form form))) + (byte-compile-form (cons 'progn (cdr form))))) ;;; tags