]> git.eshelyaron.com Git - emacs.git/commitdiff
Disable byte-compile-cond-use-jump-table (Bug#35770)
authorNoam Postavsky <npostavs@gmail.com>
Sat, 1 Jun 2019 13:53:35 +0000 (09:53 -0400)
committerNoam 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

index e3b34c189f6c21eb90ec85ff0954266dd37e6f0a..9273626c805e405b843ee30208c547dace4133ed 100644 (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)