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 "/home/skangas/wip/emacs-tarball/28/emacs-28.2/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)))))