aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/regexp-opt.el
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2001-12-01 22:04:12 +0000
committerStefan Monnier <[email protected]>2001-12-01 22:04:12 +0000
commit08cf00d8f75359c839ae9811705dfaf297c63225 (patch)
tree372c062944f98327b8915085b38e512966b0ef35 /lisp/emacs-lisp/regexp-opt.el
parentf1259a53b014c4b72c6fac5a166aac8e23f48a38 (diff)
(regexp-opt): Bind completion-regexp-list to nil.
Diffstat (limited to 'lisp/emacs-lisp/regexp-opt.el')
-rw-r--r--lisp/emacs-lisp/regexp-opt.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/regexp-opt.el b/lisp/emacs-lisp/regexp-opt.el
index 06dea3c843..9e95eeb8fc 100644
--- a/lisp/emacs-lisp/regexp-opt.el
+++ b/lisp/emacs-lisp/regexp-opt.el
@@ -102,6 +102,7 @@ by \\=\\< and \\>."
;; Recurse on the sorted list.
(let* ((max-lisp-eval-depth (* 1024 1024))
(completion-ignore-case nil)
+ (completion-regexp-list nil)
(words (eq paren 'words))
(open (cond ((stringp paren) paren) (paren "\\(")))
(sorted-strings (sort (copy-sequence strings) 'string-lessp))