branch: elpa/flx commit dd4b4d50dac3a55752a12aaa19498554c5d91b34 Author: PythonNut <python...@users.noreply.github.com> Commit: PythonNut <python...@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))