diff options
| author | Noam Postavsky | 2019-06-01 09:53:35 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2019-06-01 17:48:43 -0400 |
| commit | 04f13a5d9bc19cfe0382e4257f1a1d856aa354ed (patch) | |
| tree | 74d47b5d3ccff20583cd24d2bb042b47705ab3b2 | |
| parent | 2860285621eb890697ca122cd6ede8c3f03566d6 (diff) | |
| download | emacs-04f13a5d9bc19cfe0382e4257f1a1d856aa354ed.tar.gz emacs-04f13a5d9bc19cfe0382e4257f1a1d856aa354ed.zip | |
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.
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index e3b34c189f6..9273626c805 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -234,9 +234,9 @@ This includes variable references and calls to functions such as `car'." | |||
| 234 | :group 'bytecomp | 234 | :group 'bytecomp |
| 235 | :type 'boolean) | 235 | :type 'boolean) |
| 236 | 236 | ||
| 237 | (defcustom byte-compile-cond-use-jump-table t | 237 | (defcustom byte-compile-cond-use-jump-table nil |
| 238 | "Compile `cond' clauses to a jump table implementation (using a hash-table)." | 238 | "Compile `cond' clauses to a jump table implementation (using a hash-table)." |
| 239 | :version "26.1" | 239 | :version "26.3" ;; Disabled due to Bug#35770. |
| 240 | :group 'bytecomp | 240 | :group 'bytecomp |
| 241 | :type 'boolean) | 241 | :type 'boolean) |
| 242 | 242 | ||