Function: eshell-arg-delimiter

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

Signature

(eshell-arg-delimiter &optional POS)

Documentation

Return non-nil if POS is an argument delimiter.

If POS is nil, the location of point is checked.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-arg.el.gz
(defsubst eshell-arg-delimiter (&optional pos)
  "Return non-nil if POS is an argument delimiter.
If POS is nil, the location of point is checked."
  (let ((pos (or pos (point))))
    (or (= pos (point-max))
	(memq (char-after pos) eshell-delimiter-argument-list))))