From: Alan Mackenzie Date: Wed, 9 Nov 2022 21:28:18 +0000 (+0000) Subject: Optimize c-bs-interval, changing its value from 5000 to 2000 X-Git-Tag: emacs-29.0.90~1616^2~224 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=78144156b0fc8c8ed80e6bb04ab27b50eba01d23;p=emacs.git Optimize c-bs-interval, changing its value from 5000 to 2000 * lisp/progmodes/cc-engine.el (c-bs-interval): This optimization speeds forward scrolling in a C Mode buffer by ~2.4%, backward scrolling by ~1.8%. --- diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el index a13a0c838af..0ea722a9225 100644 --- a/lisp/progmodes/cc-engine.el +++ b/lisp/progmodes/cc-engine.el @@ -6052,7 +6052,7 @@ comment at the start of cc-engine.el for more info." ;; the like. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; The approximate interval at which we cache the value of the brace stack. -(defconst c-bs-interval 5000) +(defconst c-bs-interval 2000) ;; The list of cached values of the brace stack. Each value in the list is a ;; cons of the position it is valid for and the value of the stack as ;; described above.