Function: eshell-parse-whitespace
eshell-parse-whitespace is a byte-compiled function defined in
esh-arg.el.gz.
Signature
(eshell-parse-whitespace)
Documentation
Parse any whitespace, finishing the current argument.
These are treated as argument delimiters and so finish the current argument.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-arg.el.gz
(defun eshell-parse-whitespace ()
"Parse any whitespace, finishing the current argument.
These are treated as argument delimiters and so finish the current argument."
(when (looking-at "[ \t]+")
(goto-char (match-end 0))
(eshell-finish-arg)))