Variable: latex-noindent-commands
latex-noindent-commands is a customizable variable defined in
tex-mode.el.gz.
Value
("emph" "footnote")
Documentation
Commands for which tex-indent-basic should not be used.
This variable was added, or its default value changed, in Emacs 27.1.
Probably introduced at or before Emacs version 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
(defcustom latex-noindent-commands '("emph" "footnote")
"Commands for which `tex-indent-basic' should not be used."
:type '(repeat string)
:safe (lambda (x) (not (memq nil (mapcar #'stringp x))))
:group 'tex-file
:version "27.1")