Function: c-scope-operator
c-scope-operator is an interactive and byte-compiled function defined
in cc-cmds.el.gz.
Signature
(c-scope-operator)
Documentation
Insert a double colon scope operator at point.
No indentation or other "electric" behavior is performed.
Probably introduced at or before Emacs version 19.23.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-cmds.el.gz
(defun c-scope-operator ()
"Insert a double colon scope operator at point.
No indentation or other \"electric\" behavior is performed."
(interactive "*")
(insert-and-inherit "::"))