Function: pcomplete-expand-and-complete

pcomplete-expand-and-complete is an autoloaded, interactive and byte-compiled function defined in pcomplete.el.gz.

Signature

(pcomplete-expand-and-complete)

Documentation

Expand the textual value of the current argument.

This will modify the current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/pcomplete.el.gz
;;;###autoload
(defun pcomplete-expand-and-complete ()
  "Expand the textual value of the current argument.
This will modify the current buffer."
  (interactive)
  (let ((pcomplete-expand-before-complete t))
    (with-suppressed-warnings ((obsolete pcomplete))
      (pcomplete))))