Function: sh-is-quoted-p
sh-is-quoted-p is a byte-compiled function defined in sh-script.el.gz.
Signature
(sh-is-quoted-p POS)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defun sh-is-quoted-p (pos)
(and (eq (char-before pos) ?\\)
(not (sh-is-quoted-p (1- pos)))))