Function: pcomplete/stdbuf

pcomplete/stdbuf is an autoloaded and byte-compiled function defined in pcmpl-unix.el.gz.

Signature

(pcomplete/stdbuf)

Documentation

Completion for the stdbuf command.

Source Code

;; Defined in /usr/src/emacs/lisp/pcmpl-unix.el.gz
;;;###autoload
(defun pcomplete/stdbuf ()
  "Completion for the `stdbuf' command."
  (while (string-prefix-p "-" (pcomplete-arg 0))
    (pcomplete-here (pcomplete-from-help "stdbuf --help"))
    (when (pcomplete-match "\\`-[ioe]\\'") (pcomplete-here)))
  (funcall pcomplete-command-completion-function)
  (funcall (or (pcomplete-find-completion-function (pcomplete-arg 1))
	       pcomplete-default-completion-function)))