Variable: c-ts-mode-emacs-sources-support

c-ts-mode-emacs-sources-support is a customizable variable defined in c-ts-mode.el.gz.

Value

t

Documentation

Whether to enable Emacs source-specific features.

This enables detection of definitions of Lisp function using the DEFUN macro. This needs to be set before enabling c-ts-mode; if you change the value after enabling c-ts-mode, toggle the mode off and on again.

This variable was added, or its default value changed, in Emacs 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/c-ts-mode.el.gz
(defcustom c-ts-mode-emacs-sources-support t
  "Whether to enable Emacs source-specific features.
This enables detection of definitions of Lisp function using
the DEFUN macro.
This needs to be set before enabling `c-ts-mode'; if you change
the value after enabling `c-ts-mode', toggle the mode off and on
again."
  :version "29.1"
  :type 'boolean
  :safe 'booleanp
  :group 'c)