Function: c-populate-syntax-table

c-populate-syntax-table is a byte-compiled function defined in cc-mode.el.gz.

Signature

(c-populate-syntax-table ARG1)

Documentation

Cannot open doc string file "/tmp/nix-build-emacs-snapshot.drv-0/source/lisp/progmodes/cc-langs.elc"

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-mode.el.gz
;; Ugly hack to pull in the definition of `c-populate-syntax-table'
;; from cc-langs to make it available at runtime.  It's either this or
;; moving the definition for it to cc-defs, but that would mean to
;; break up the syntax table setup over two files.
(defalias 'c-populate-syntax-table
  (cc-eval-when-compile
    (let ((f (symbol-function 'c-populate-syntax-table)))
      (if (byte-code-function-p f) f (byte-compile f)))))