diff options
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
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 | ||