projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2860285
)
Disable byte-compile-cond-use-jump-table (Bug#35770)
author
Noam Postavsky
<npostavs@gmail.com>
Sat, 1 Jun 2019 13:53:35 +0000
(09:53 -0400)
committer
Noam Postavsky
<npostavs@gmail.com>
Sat, 1 Jun 2019 21:48:43 +0000
(17:48 -0400)
* 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.
lisp/emacs-lisp/bytecomp.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/bytecomp.el
b/lisp/emacs-lisp/bytecomp.el
index e3b34c189f6c21eb90ec85ff0954266dd37e6f0a..9273626c805e405b843ee30208c547dace4133ed 100644
(file)
--- 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'."
: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)