diff options
author | Vibhav Pant <vibhavp@gmail.com> | 2017-01-26 14:31:16 +0530 |
---|---|---|
committer | Vibhav Pant <vibhavp@gmail.com> | 2017-01-26 14:31:16 +0530 |
commit | a7e4870f165e9fd36d5cfcabb19b215b94373602 (patch) | |
tree | 0d0ae9398765f42dfccda67262eed55b90340450 /lisp/emacs-lisp | |
parent | 6a82d19db18f8480342cc4c1a0ad76c75df41941 (diff) | |
download | emacs-a7e4870f165e9fd36d5cfcabb19b215b94373602.tar.gz emacs-a7e4870f165e9fd36d5cfcabb19b215b94373602.tar.bz2 emacs-a7e4870f165e9fd36d5cfcabb19b215b94373602.zip |
* 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.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)))) |