We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df635e7 commit c5eaeedCopy full SHA for c5eaeed
bash-completion.el
@@ -1702,13 +1702,6 @@ using the current Emacs completion style."
1702
(bash-completion--unparsed-stub comp)) "" str)))
1703
(cond
1704
((null action) (try-completion completion-string result predicate))
1705
- ((and (eq action t) (equal "" completion-string) predicate)
1706
- (delq nil (mapcar
1707
- (lambda (elt)
1708
- (when (funcall predicate elt) elt))
1709
- result)))
1710
- ((and (eq action t) (equal "" completion-string))
1711
- result)
1712
((eq action t)
1713
(all-completions completion-string result predicate))
1714
(t (test-completion str result predicate)))))))))
0 commit comments