mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-19 02:10:10 +00:00
Turn off bytecode jumptables to avoid Bug#36447
* lisp/emacs-lisp/bytecomp.el (byte-compile-cond-use-jump-table): Set to nil. We can turn this back on again when Bug#36447 is solved and we handle dumped hash tables correctly.
This commit is contained in:
parent
ae87b76fb2
commit
122198d2f1
1 changed files with 2 additions and 1 deletions
|
@ -223,7 +223,8 @@ Possible values are:
|
|||
This includes variable references and calls to functions such as `car'."
|
||||
:type 'boolean)
|
||||
|
||||
(defcustom byte-compile-cond-use-jump-table t
|
||||
;; Switch to back to t after solving Bug#36447.
|
||||
(defcustom byte-compile-cond-use-jump-table nil
|
||||
"Compile `cond' clauses to a jump table implementation (using a hash-table)."
|
||||
:version "26.1"
|
||||
:type 'boolean)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue