Function: c-c++-vsemi-p
c-c++-vsemi-p is a byte-compiled function defined in cc-engine.el.gz.
Signature
(c-c++-vsemi-p &optional POS)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-engine.el.gz
(defun c-c++-vsemi-p (&optional pos)
;; C++ Only - Is there a "virtual semicolon" at POS or point?
;; (See cc-defs.el for full details of "virtual semicolons".)
;;
;; This is true when point is at the last non syntactic WS position on the
;; line, and there is a "macro with semicolon" just before it (see
;; `c-at-macro-vsemi-p').
(c-at-macro-vsemi-p pos))