Fix typo in c-ts-mode (bug#60932)

* lisp/progmodes/c-ts-mode.el (c-ts-mode-indent-block-type-regexp):
enumerator, not enumeratior.
This commit is contained in:
Theodor Thornhill 2023-01-20 22:16:25 +01:00
parent c6a7664f06
commit affdf79011

View file

@ -228,7 +228,7 @@ NODE should be a labeled_statement."
(defvar c-ts-mode-indent-block-type-regexp
(rx (or "compound_statement"
"field_declaration_list"
"enumeratior_list"))
"enumerator_list"))
"Regexp matching types of block nodes (i.e., {} blocks).")
(defun c-ts-mode--statement-offset (node parent &rest _)