From c43cdfd639518c5f2e7e7cbbaf1eca40ac957eb0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Tue, 29 Nov 2022 17:20:16 +0100 Subject: [PATCH] Allow csharp-mode in c-default-style * lisp/progmodes/cc-vars.el (c-default-style): Add csharp-mode to the type. This fixes test-custom-opts. --- lisp/progmodes/cc-vars.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/progmodes/cc-vars.el b/lisp/progmodes/cc-vars.el index e0f5a7ee021..60d568add56 100644 --- a/lisp/progmodes/cc-vars.el +++ b/lisp/progmodes/cc-vars.el @@ -1043,6 +1043,8 @@ can always override the use of `c-default-style' by making calls to (const :format "Pike " pike-mode) (string :format "%v")) (cons :format "%v" (const :format "AWK " awk-mode) (string :format "%v")) + (cons :format "%v" + (const :format "C# " csharp-mode) (string :format "%v")) (cons :format "%v" (const :format "Other " other) (string :format "%v")))) :group 'c) -- 2.39.5