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:
parent
2860285621
commit
04f13a5d9b
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue