emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/flx dd4b4d50da 149/182: Hotfix: Raise recursion limits dyn


From: ELPA Syncer
Subject: [nongnu] elpa/flx dd4b4d50da 149/182: Hotfix: Raise recursion limits dynamically, fixes #79
Date: Tue, 13 Dec 2022 03:59:39 -0500 (EST)

branch: elpa/flx
commit dd4b4d50dac3a55752a12aaa19498554c5d91b34
Author: PythonNut <PythonNut@users.noreply.github.com>
Commit: PythonNut <PythonNut@users.noreply.github.com>

    Hotfix: Raise recursion limits dynamically, fixes #79
---
 flx.el | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/flx.el b/flx.el
index 006f10b4aa..e2c47ea5b4 100644
--- a/flx.el
+++ b/flx.el
@@ -347,6 +347,10 @@ For other parameters, see `flx-score'"
          (full-match-boost (and (< 1 query-length)
                                 (< query-length 5)))
 
+         ;; Raise recursion limit
+         (max-lisp-eval-depth 5000)
+         (max-specpdl-size 10000)
+
          ;; Dynamic Programming table for memoizing flx-find-best-match
          (match-cache (make-hash-table :test 'eql :size 10))
 



reply via email to

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