summaryrefslogtreecommitdiff
path: root/lisp/pcomplete.el
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2002-08-05 20:07:12 +0000
committerJohn Wiegley <johnw@newartisans.com>2002-08-05 20:07:12 +0000
commitd86e0c59ecb79289fc77f78e9888920d58176566 (patch)
treec20081eb2294aa9e328411a4deb20387fb91239b /lisp/pcomplete.el
parent86d98c330d16dbee063ce64e63cfa4f08c17ec27 (diff)
downloademacs-d86e0c59ecb79289fc77f78e9888920d58176566.tar.gz
(pcomplete-entries): Don't set `above-cutoff' to a value unless
pcomplete-cycle-cutoff-length is non-nil.
Diffstat (limited to 'lisp/pcomplete.el')
-rw-r--r--lisp/pcomplete.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/pcomplete.el b/lisp/pcomplete.el
index 9a1403cc104..cde0f07064f 100644
--- a/lisp/pcomplete.el
+++ b/lisp/pcomplete.el
@@ -735,8 +735,9 @@ component, DEFAULT-DIRECTORY is used as the basis for completion."
(string-match pcomplete-dir-ignore file))
(and pcomplete-file-ignore
(string-match pcomplete-file-ignore file))))))))
- (setq above-cutoff (> (length completions)
- pcomplete-cycle-cutoff-length))
+ (setq above-cutoff (and pcomplete-cycle-cutoff-length
+ (> (length completions)
+ pcomplete-cycle-cutoff-length)))
(sort completions
(function
(lambda (l r)