(regexp-opt): Reduce max-lisp-eval-depth and max-specpdl-size to
10000.
This commit is contained in:
parent
51876899bb
commit
dbf3ef782e
1 changed files with 2 additions and 2 deletions
|
@ -101,8 +101,8 @@ If PAREN is `words', then the resulting regexp is additionally surrounded
|
|||
by \\=\\< and \\>."
|
||||
(save-match-data
|
||||
;; Recurse on the sorted list.
|
||||
(let* ((max-lisp-eval-depth (* 1024 1024))
|
||||
(max-specpdl-size (* 1024 1024))
|
||||
(let* ((max-lisp-eval-depth 10000)
|
||||
(max-specpdl-size 10000)
|
||||
(completion-ignore-case nil)
|
||||
(completion-regexp-list nil)
|
||||
(words (eq paren 'words))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue