From: Theodor Thornhill Date: Fri, 20 Jan 2023 21:16:25 +0000 (+0100) Subject: Fix typo in c-ts-mode (bug#60932) X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=affdf7901190789616eb40d4c2857974d5394491;p=emacs.git Fix typo in c-ts-mode (bug#60932) * lisp/progmodes/c-ts-mode.el (c-ts-mode-indent-block-type-regexp): enumerator, not enumeratior. --- diff --git a/lisp/progmodes/c-ts-mode.el b/lisp/progmodes/c-ts-mode.el index b3d162cd3ab..348d027af19 100644 --- a/lisp/progmodes/c-ts-mode.el +++ b/lisp/progmodes/c-ts-mode.el @@ -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 _)