Function: c-setup-doc-comment-style

c-setup-doc-comment-style is a byte-compiled function defined in cc-mode.el.gz.

Signature

(c-setup-doc-comment-style)

Documentation

Initialize the variables that depend on the value of c-doc-comment-style.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-mode.el.gz
         'c-extend-after-change-region))) ; Currently (2009-05) used by all
                          ; languages with #define (C, C++,; ObjC), and by AWK.

(defun c-setup-doc-comment-style ()
  "Initialize the variables that depend on the value of `c-doc-comment-style'."
  (when (and (featurep 'font-lock)
	     (symbol-value 'font-lock-mode))
    ;; Force font lock mode to reinitialize itself.
    (font-lock-mode 0)
    (font-lock-mode 1)))