Function: eshell-finish-arg

eshell-finish-arg is a byte-compiled function defined in esh-arg.el.gz.

Signature

(eshell-finish-arg &optional ARGUMENT)

Documentation

Finish the current ARGUMENT being processed.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-arg.el.gz
(defun eshell-finish-arg (&optional argument)
  "Finish the current ARGUMENT being processed."
  (if argument
      (setq eshell-current-argument argument))
  (throw 'eshell-arg-done t))