diff --git a/lisp/progmodes/c-ts-mode.el b/lisp/progmodes/c-ts-mode.el index 1186bd5b8df..b042782efa7 100644 --- a/lisp/progmodes/c-ts-mode.el +++ b/lisp/progmodes/c-ts-mode.el @@ -504,10 +504,10 @@ NODE should be a labeled_statement. PARENT is its parent." "C/C++ keywords for tree-sitter font-locking. MODE is either `c' or `cpp'." (let ((c-keywords - '("break" "case" "const" "continue" + '("_Atomic" "break" "case" "const" "continue" "default" "do" "else" "enum" "extern" "for" "goto" "if" "inline" - "register" "return" + "register" "restrict" "return" "sizeof" "static" "struct" "switch" "typedef" "union" "volatile" "while")))