aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman2004-04-21 19:12:04 +0000
committerRichard M. Stallman2004-04-21 19:12:04 +0000
commit0a0eb031ad22316fc25b80afbf1595e5bcdb59ac (patch)
treecc045fa3d29350734c4b12c1e51c4372a41c0f10 /lisp
parentae122ad2d485518df1708303fa7fe1556315e916 (diff)
downloademacs-0a0eb031ad22316fc25b80afbf1595e5bcdb59ac.tar.gz
emacs-0a0eb031ad22316fc25b80afbf1595e5bcdb59ac.zip
(byte-compile-no-warnings): Handle multiple args: compile like progn.
Diffstat (limited to 'lisp')
-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