From a7e4870f165e9fd36d5cfcabb19b215b94373602 Mon Sep 17 00:00:00 2001 From: Vibhav Pant Date: Thu, 26 Jan 2017 14:31:16 +0530 Subject: [PATCH] * lisp/emacs-lisp/bytecomp.el: Use correct function to push nil * lisp/emacs-lisp/bytecomp.el: (byte-compile-cond-jump-table) Use byte-compile-constant instead of byte-compile-form to push nil. --- lisp/emacs-lisp/bytecomp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index dff8bcfa209..b955e9919de 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -4067,7 +4067,7 @@ that suppresses all warnings during execution of BODY." (byte-compile-out-tag default-tag) (if default-case (byte-compile-body-do-effect default-case) - (byte-compile-form 'nil)) + (byte-compile-constant nil)) (byte-compile-out-tag donetag) (push jump-table byte-compile-jump-tables)))) -- 2.39.5