aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-04-21 19:13:00 +0000
committerRichard M. Stallman2004-04-21 19:13:00 +0000
commita4f66531945826f4a12d6c41bfa80ef89eff33ed (patch)
tree90480023c57443531ef9bc5a7fe06ad64310f798
parent0a0eb031ad22316fc25b80afbf1595e5bcdb59ac (diff)
downloademacs-a4f66531945826f4a12d6c41bfa80ef89eff33ed.tar.gz
emacs-a4f66531945826f4a12d6c41bfa80ef89eff33ed.zip
Fix previous change.
-rw-r--r--lisp/emacs-lisp/bytecomp.el3
1 files changed, 1 insertions, 2 deletions
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."
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 (setcar form 'progn) 3719 (byte-compile-form (cons 'progn (cdr form)))))
3720 (byte-compile-form form)))
3721 3720
3722;;; tags 3721;;; tags
3723 3722