diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-10-03 10:36:00 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-10-03 10:36:00 -0400 |
commit | 44dfa7a834c11897fd64dba7b15cb0dcce0af980 (patch) | |
tree | 2e4f011ca1f8a04dbd7d3688a0c8e7594a41ef23 /lisp/eshell | |
parent | c164f749794e7252887cce10cbfa31fd012351c3 (diff) | |
download | emacs-44dfa7a834c11897fd64dba7b15cb0dcce0af980.tar.gz |
* lisp/pcomplete.el: Mark 'pcomplete' command as obsolete
Remove redundant ':group's.
(pcomplete, pcomplete-help): Mark as obsolete.
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/em-cmpl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-cmpl.el b/lisp/eshell/em-cmpl.el index 7f203142589..d0e52f9651e 100644 --- a/lisp/eshell/em-cmpl.el +++ b/lisp/eshell/em-cmpl.el @@ -409,7 +409,7 @@ to writing a completion function." (let ((filename (pcomplete-arg)) glob-name) (if (file-name-directory filename) (if eshell-force-execution - (pcomplete-dirs-or-entries nil 'file-readable-p) + (pcomplete-dirs-or-entries nil #'file-readable-p) (pcomplete-executables)) (if (and (> (length filename) 0) (eq (aref filename 0) eshell-explicit-command-char)) |