diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/csharp-mode.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/csharp-mode.el b/lisp/progmodes/csharp-mode.el index 607360f737a..62bbbfe02ff 100644 --- a/lisp/progmodes/csharp-mode.el +++ b/lisp/progmodes/csharp-mode.el | |||
| @@ -689,7 +689,9 @@ compilation and evaluation time conflicts." | |||
| 689 | ((parent-is "binary_expression") parent 0) | 689 | ((parent-is "binary_expression") parent 0) |
| 690 | ((parent-is "block") parent-bol csharp-ts-mode-indent-offset) | 690 | ((parent-is "block") parent-bol csharp-ts-mode-indent-offset) |
| 691 | ((parent-is "local_function_statement") parent-bol 0) | 691 | ((parent-is "local_function_statement") parent-bol 0) |
| 692 | ((parent-is "if_statement") parent-bol 0) | 692 | ((match "block" "if_statement") parent-bol 0) |
| 693 | ((match "else" "if_statement") parent-bol 0) | ||
| 694 | ((parent-is "if_statement") parent-bol csharp-ts-mode-indent-offset) | ||
| 693 | ((parent-is "for_statement") parent-bol 0) | 695 | ((parent-is "for_statement") parent-bol 0) |
| 694 | ((parent-is "for_each_statement") parent-bol 0) | 696 | ((parent-is "for_each_statement") parent-bol 0) |
| 695 | ((parent-is "while_statement") parent-bol 0) | 697 | ((parent-is "while_statement") parent-bol 0) |