aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuan Fu2022-11-21 13:17:16 -0800
committerYuan Fu2022-11-21 13:17:16 -0800
commitabf40a41aaa71354eee50bedc04fe2123dd3836f (patch)
tree37629de6be1784862b23d4ceaa246834ec718608
parentaaeaa310f0391f5a5193e1a3d6e026986c4f2c0c (diff)
downloademacs-abf40a41aaa71354eee50bedc04fe2123dd3836f.tar.gz
emacs-abf40a41aaa71354eee50bedc04fe2123dd3836f.zip
; Fix typo in c-ts-mode--font-lock-settings
* lisp/progmodes/c-ts-mode.el (c-ts-mode--font-lock-settings): Fix typo.
-rw-r--r--lisp/progmodes/c-ts-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/c-ts-mode.el b/lisp/progmodes/c-ts-mode.el
index 65419cca7d4..6eaf200182d 100644
--- a/lisp/progmodes/c-ts-mode.el
+++ b/lisp/progmodes/c-ts-mode.el
@@ -272,14 +272,14 @@ MODE is either `c' or `cpp'."
272 declarator: (_) @font-lock-variable-name-face) 272 declarator: (_) @font-lock-variable-name-face)
273 273
274 (field_declaration 274 (field_declaration
275 declarator: (_) @c-ts-mode--fontify-struct-declarator) 275 declarator: (_) @c-ts-mode--fontify-declarator)
276 276
277 (function_definition 277 (function_definition
278 declarator: (_) @c-ts-mode--fontify-struct-declarator)) 278 declarator: (_) @c-ts-mode--fontify-declarator))
279 279
280 ;; Should we highlight identifiers in the parameter list? 280 ;; Should we highlight identifiers in the parameter list?
281 ;; (parameter_declaration 281 ;; (parameter_declaration
282 ;; declarator: (_) @c-ts-mode--fontify-struct-declarator)) 282 ;; declarator: (_) @c-ts-mode--fontify-declarator))
283 283
284 :language mode 284 :language mode
285 :feature 'assignment 285 :feature 'assignment