From 7a1f1825fd3108479556c57f153d11f305da1736 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=ADn?= Date: Wed, 30 Nov 2022 19:58:42 +0100 Subject: [PATCH] Add inline to c-ts-mode--keywords * lisp/progmodes/c-ts-mode.el (c-ts-mode--keywords): Add "inline", a keyword available since C99 to define inline functions in C. --- lisp/progmodes/c-ts-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/c-ts-mode.el b/lisp/progmodes/c-ts-mode.el index 696e14f4d6e..f802a6ddb2d 100644 --- a/lisp/progmodes/c-ts-mode.el +++ b/lisp/progmodes/c-ts-mode.el @@ -168,7 +168,7 @@ MODE is either `c' or `cpp'." (let ((c-keywords '("break" "case" "const" "continue" "default" "do" "else" "enum" - "extern" "for" "goto" "if" + "extern" "for" "goto" "if" "inline" "long" "register" "return" "short" "signed" "sizeof" "static" "struct" "switch" "typedef" "union" "unsigned" -- 2.39.2