Function: c-mode-var

c-mode-var is a byte-compiled function defined in cc-defs.el.gz.

Signature

(c-mode-var SUFFIX)

Documentation

Prefix the current mode prefix (e.g. "c-") to SUFFIX and return the value of the variable with that name.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defsubst c-mode-var (suffix)
  "Prefix the current mode prefix (e.g. \"c-\") to SUFFIX and return
the value of the variable with that name."
  (symbol-value (c-mode-symbol suffix)))