Function: pcomplete-next-arg
pcomplete-next-arg is a byte-compiled function defined in
pcomplete.el.gz.
Signature
(pcomplete-next-arg)
Documentation
Move the various pointers to the next argument.
Source Code
;; Defined in /usr/src/emacs/lisp/pcomplete.el.gz
(defsubst pcomplete-next-arg ()
"Move the various pointers to the next argument."
(setq pcomplete-index (1+ pcomplete-index)
pcomplete-stub (pcomplete-arg))
(if (> pcomplete-index pcomplete-last)
(progn
(message "No completions")
(throw 'pcompleted nil))))