Function: c-c++-make-ml-string-opener-re

c-c++-make-ml-string-opener-re is a byte-compiled function defined in cc-engine.el.gz.

Signature

(c-c++-make-ml-string-opener-re CLOSER)

Documentation

Construct a regexp for a C++ raw string opener matching CLOSER.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-engine.el.gz
(defun c-c++-make-ml-string-opener-re (closer)
  "Construct a regexp for a C++ raw string opener matching CLOSER."
  (concat "\\(R\\(\"\\)" (regexp-quote (substring closer 1 -1)) "(\\)"))