Function: eshell-looking-at-backslash-return
eshell-looking-at-backslash-return is a byte-compiled function defined
in esh-arg.el.gz.
This function is obsolete since 30.1.
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."
(declare (obsolete nil "30.1"))
(and (eq (char-after pos) ?\\)
(or (= (1+ pos) (point-max))
(and (eq (char-after (1+ pos)) ?\n)
(= (+ pos 2) (point-max))))))