[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] feature/byte-switch a7e4870 2/2: * lisp/emacs-lisp/bytecom
From: |
Vibhav Pant |
Subject: |
[Emacs-diffs] feature/byte-switch a7e4870 2/2: * lisp/emacs-lisp/bytecomp.el: Use correct function to push nil |
Date: |
Thu, 26 Jan 2017 09:01:27 +0000 (UTC) |
branch: feature/byte-switch
commit a7e4870f165e9fd36d5cfcabb19b215b94373602
Author: Vibhav Pant <address@hidden>
Commit: Vibhav Pant <address@hidden>
* 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 dff8bcf..b955e99 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))))