Disable byte-compile-cond-use-jump-table (Bug#35770)

* lisp/emacs-lisp/bytecomp.el (byte-compile-cond-use-jump-table): Set
to nil by default.

Don't merge to master, the bug is already fixed there.
This commit is contained in:
Noam Postavsky 2019-06-01 09:53:35 -04:00
parent 2860285621
commit 04f13a5d9b

View file

@ -234,9 +234,9 @@ This includes variable references and calls to functions such as `car'."
:group 'bytecomp
:type 'boolean)
(defcustom byte-compile-cond-use-jump-table t
(defcustom byte-compile-cond-use-jump-table nil
"Compile `cond' clauses to a jump table implementation (using a hash-table)."
:version "26.1"
:version "26.3" ;; Disabled due to Bug#35770.
:group 'bytecomp
:type 'boolean)