Function: sh-quoted-p
sh-quoted-p is a byte-compiled function defined in sh-script.el.gz.
Signature
(sh-quoted-p)
Documentation
Is point preceded by an odd number of backslashes?
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defun sh-quoted-p ()
"Is point preceded by an odd number of backslashes?"
(eq -1 (% (save-excursion (skip-chars-backward "\\\\")) 2)))