Function: pcomplete-help

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

This command is obsolete since 27.1; use completion-help-at-point and pcomplete-completions-at-point

Signature

(pcomplete-help)

Documentation

Display any help information relative to the current argument.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/pcomplete.el.gz
;;;###autoload
(defun pcomplete-help ()
  "Display any help information relative to the current argument."
  (declare (obsolete "use completion-help-at-point and pcomplete-completions-at-point" "27.1"))
  (interactive)
  (let ((pcomplete-show-help t))
    (with-suppressed-warnings ((obsolete pcomplete))
      (pcomplete))))