Variable: c-string-par-separate

c-string-par-separate is a variable defined in cc-vars.el.gz.

Value

"[      \f]*\\\\?$"

Documentation

Value of paragraph-separate used when scanning strings.

It treats escaped EOLs as whitespace.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-vars.el.gz
(defvar c-string-par-separate
  ;; (concat "\\(" (default-value 'paragraph-separate) "\\)\\|[ \t]*\\\\$")
  "[ \t\f]*\\\\?$"
  "Value of `paragraph-separate' used when scanning strings.
It treats escaped EOLs as whitespace.")