From: Mattias EngdegÄrd Date: Tue, 29 Nov 2022 16:20:16 +0000 (+0100) Subject: Allow csharp-mode in c-default-style X-Git-Tag: emacs-29.0.90~1428 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c43cdfd639518c5f2e7e7cbbaf1eca40ac957eb0;p=emacs.git 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. --- 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)