diff options
Diffstat (limited to 'lisp/pcomplete.el')
-rw-r--r-- | lisp/pcomplete.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/pcomplete.el b/lisp/pcomplete.el index 4ac69df8e3a..4b25c1643af 100644 --- a/lisp/pcomplete.el +++ b/lisp/pcomplete.el @@ -523,8 +523,7 @@ Same as `pcomplete' but using the standard completion UI." (funcall norm-func (directory-file-name f)) seen))))))) (when pcomplete-ignore-case - (setq table - (apply-partially #'completion-table-case-fold table))) + (setq table (completion-table-case-fold table))) (list beg (point) table :predicate pred :exit-function |