emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/pcomplete.el


From: John Wiegley
Subject: [Emacs-diffs] Changes to emacs/lisp/pcomplete.el
Date: Mon, 05 Aug 2002 16:07:13 -0400

Index: emacs/lisp/pcomplete.el
diff -c emacs/lisp/pcomplete.el:1.10 emacs/lisp/pcomplete.el:1.11
*** emacs/lisp/pcomplete.el:1.10        Wed Jul 31 19:32:14 2002
--- emacs/lisp/pcomplete.el     Mon Aug  5 16:07:12 2002
***************
*** 735,742 ****
                             (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))
        (sort completions
            (function
             (lambda (l r)
--- 735,743 ----
                             (string-match pcomplete-dir-ignore file))
                      (and pcomplete-file-ignore
                           (string-match pcomplete-file-ignore file))))))))
!       (setq above-cutoff (and pcomplete-cycle-cutoff-length
!                            (> (length completions)
!                               pcomplete-cycle-cutoff-length)))
        (sort completions
            (function
             (lambda (l r)



reply via email to

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