]> git.eshelyaron.com Git - emacs.git/commitdiff
Allow csharp-mode in c-default-style
authorMattias Engdegård <mattiase@acm.org>
Tue, 29 Nov 2022 16:20:16 +0000 (17:20 +0100)
committerMattias Engdegård <mattiase@acm.org>
Tue, 29 Nov 2022 16:35:28 +0000 (17:35 +0100)
* lisp/progmodes/cc-vars.el (c-default-style):
Add csharp-mode to the type.  This fixes test-custom-opts.

lisp/progmodes/cc-vars.el

index e0f5a7ee0218d1644d43be9660ed827b38f75541..60d568add566e840593ecd7c5a079cfb33886186 100644 (file)
@@ -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)