Function: c-at-c++-raw-string-opener
c-at-c++-raw-string-opener is a macro defined in cc-defs.el.gz.
Signature
(c-at-c++-raw-string-opener &optional POS)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defmacro c-at-c++-raw-string-opener (&optional pos)
;; Return non-nil if POS (default point) is either at the start of a C++ raw
;; string opener, or after the introductory R of one. The match data is
;; overwritten. On success the opener's identifier will be (match-string
;; 1). Text properties on any characters are ignored.
(declare (debug t))
(if pos
`(save-excursion
(goto-char ,pos)
(c-sub-at-c++-raw-string-opener))
`(c-sub-at-c++-raw-string-opener)))