]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/bytecomp.el: Use correct function to push nil
authorVibhav Pant <vibhavp@gmail.com>
Thu, 26 Jan 2017 09:01:16 +0000 (14:31 +0530)
committerVibhav Pant <vibhavp@gmail.com>
Thu, 26 Jan 2017 09:01:16 +0000 (14:31 +0530)
* 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

index dff8bcfa20966b3195f0f6c424a9062360867b53..b955e9919de52439b2b0d8903f2ca051d494381c 100644 (file)
@@ -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))))