diff options
| author | Mattias EngdegÄrd | 2022-11-29 17:20:16 +0100 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2022-11-29 17:35:28 +0100 |
| commit | c43cdfd639518c5f2e7e7cbbaf1eca40ac957eb0 (patch) | |
| tree | 3c7e26472425a1510e126c7f2afa92da898402fe | |
| parent | 13bb49bc0b829cfd2ec713a27a81b19b3f749cd5 (diff) | |
| download | emacs-c43cdfd639518c5f2e7e7cbbaf1eca40ac957eb0.tar.gz emacs-c43cdfd639518c5f2e7e7cbbaf1eca40ac957eb0.zip | |
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.
| -rw-r--r-- | lisp/progmodes/cc-vars.el | 2 |
1 files changed, 2 insertions, 0 deletions
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 | |||
| @@ -1044,6 +1044,8 @@ can always override the use of `c-default-style' by making calls to | |||
| 1044 | (cons :format "%v" | 1044 | (cons :format "%v" |
| 1045 | (const :format "AWK " awk-mode) (string :format "%v")) | 1045 | (const :format "AWK " awk-mode) (string :format "%v")) |
| 1046 | (cons :format "%v" | 1046 | (cons :format "%v" |
| 1047 | (const :format "C# " csharp-mode) (string :format "%v")) | ||
| 1048 | (cons :format "%v" | ||
| 1047 | (const :format "Other " other) (string :format "%v")))) | 1049 | (const :format "Other " other) (string :format "%v")))) |
| 1048 | :group 'c) | 1050 | :group 'c) |
| 1049 | 1051 | ||