emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 04f13a5 2/3: Disable byte-compile-cond-use-jump-t


From: Noam Postavsky
Subject: [Emacs-diffs] emacs-26 04f13a5 2/3: Disable byte-compile-cond-use-jump-table (Bug#35770)
Date: Sat, 1 Jun 2019 17:50:24 -0400 (EDT)

branch: emacs-26
commit 04f13a5d9bc19cfe0382e4257f1a1d856aa354ed
Author: Noam Postavsky <address@hidden>
Commit: Noam Postavsky <address@hidden>

    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.
---
 lisp/emacs-lisp/bytecomp.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index e3b34c1..9273626 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'."
   :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)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]