aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/bytecomp.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 43e0732104f..224fd366a41 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -3716,7 +3716,8 @@ being undefined will be suppressed."
3716(byte-defop-compiler-1 with-no-warnings byte-compile-no-warnings) 3716(byte-defop-compiler-1 with-no-warnings byte-compile-no-warnings)
3717(defun byte-compile-no-warnings (form) 3717(defun byte-compile-no-warnings (form)
3718 (let (byte-compile-warnings) 3718 (let (byte-compile-warnings)
3719 (byte-compile-form (cadr form)))) 3719 (setcar form 'progn)
3720 (byte-compile-form form)))
3720 3721
3721;;; tags 3722;;; tags
3722 3723