Function: eshell-looking-at-backslash-return

eshell-looking-at-backslash-return is a byte-compiled function defined in esh-arg.el.gz.

Signature

(eshell-looking-at-backslash-return POS)

Documentation

Test whether a backslash-return sequence occurs at POS.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-arg.el.gz
(defsubst eshell-looking-at-backslash-return (pos)
  "Test whether a backslash-return sequence occurs at POS."
  (and (eq (char-after pos) ?\\)
       (or (= (1+ pos) (point-max))
	   (and (eq (char-after (1+ pos)) ?\n)
		(= (+ pos 2) (point-max))))))