From: Vibhav Pant Date: Thu, 26 Jan 2017 09:01:16 +0000 (+0530) Subject: * lisp/emacs-lisp/bytecomp.el: Use correct function to push nil X-Git-Tag: emacs-26.0.90~872 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a7e4870f165e9fd36d5cfcabb19b215b94373602;p=emacs.git * 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. --- 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))))