diff options
| author | Vibhav Pant | 2017-01-26 14:31:16 +0530 |
|---|---|---|
| committer | Vibhav Pant | 2017-01-26 14:31:16 +0530 |
| commit | a7e4870f165e9fd36d5cfcabb19b215b94373602 (patch) | |
| tree | 0d0ae9398765f42dfccda67262eed55b90340450 | |
| parent | 6a82d19db18f8480342cc4c1a0ad76c75df41941 (diff) | |
| download | emacs-a7e4870f165e9fd36d5cfcabb19b215b94373602.tar.gz 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.
| -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." | |||
| 4067 | (byte-compile-out-tag default-tag) | 4067 | (byte-compile-out-tag default-tag) |
| 4068 | (if default-case | 4068 | (if default-case |
| 4069 | (byte-compile-body-do-effect default-case) | 4069 | (byte-compile-body-do-effect default-case) |
| 4070 | (byte-compile-form 'nil)) | 4070 | (byte-compile-constant nil)) |
| 4071 | (byte-compile-out-tag donetag) | 4071 | (byte-compile-out-tag donetag) |
| 4072 | (push jump-table byte-compile-jump-tables)))) | 4072 | (push jump-table byte-compile-jump-tables)))) |
| 4073 | 4073 | ||