Variable: c-string-par-start
c-string-par-start is a variable defined in cc-vars.el.gz.
Value
"\f\\|[ ]*\\\\?$"
Documentation
Value of paragraph-start used when scanning strings.
It treats escaped EOLs as whitespace.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-vars.el.gz
;; N.B. The next three variables are initialized in
;; c-setup-paragraph-variables. Their initializations here are "just in
;; case". ACM, 2004/2/15. They are NOT buffer local (yet?).
(defvar c-string-par-start
;; (concat "\\(" (default-value 'paragraph-start) "\\)\\|[ \t]*\\\\$")
"\f\\|[ \t]*\\\\?$"
"Value of `paragraph-start' used when scanning strings.
It treats escaped EOLs as whitespace.")