Function: c-version
c-version is an interactive and byte-compiled function defined in
cc-mode.el.gz.
Signature
(c-version)
Documentation
Echo the current version of CC Mode in the minibuffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-mode.el.gz
(defun c-version ()
"Echo the current version of CC Mode in the minibuffer."
(interactive)
(message "Using CC Mode version %s" c-version)
(c-keep-region-active))