Function: c-init-language-vars
c-init-language-vars is a macro defined in cc-langs.el.gz.
Signature
(c-init-language-vars MODE)
Documentation
Initialize all the language dependent variables for the given mode.
This macro is expanded at compile time to a form tailored for the mode in question, so MODE must be a constant. Therefore MODE is not evaluated and should not be quoted.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-langs.el.gz
(defmacro c-init-language-vars (mode)
"Initialize all the language dependent variables for the given mode.
This macro is expanded at compile time to a form tailored for the mode
in question, so MODE must be a constant. Therefore MODE is not
evaluated and should not be quoted."
(declare (debug nil))
`(funcall #',(c-make-init-lang-vars-fun mode)))