branch: externals/csharp-mode
commit 0de2bbcfc0a675213ce7829c57dda6820fabc5ef
Author: Theodor Thornhill <t...@thornhill.no>
Commit: Theodor Thornhill <t...@thornhill.no>

    Fix byte compilation errors
---
 csharp-mode.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/csharp-mode.el b/csharp-mode.el
index c416c32..c6485dd 100644
--- a/csharp-mode.el
+++ b/csharp-mode.el
@@ -660,7 +660,8 @@ compilation and evaluation time conflicts."
 ;;; Tree-sitter
 
 (defcustom csharp-mode-enable-tree-sitter nil
-  "Use tree sitter for font locking and indentation.")
+  "Use tree sitter for font locking and indentation."
+  :type 'boolean)
 
 (defvar-local csharp-mode-tree-sitter-patterns
   [ ;; Various constructs
@@ -842,6 +843,7 @@ compilation and evaluation time conflicts."
 
 (defcustom csharp-mode-indent-offset 4
   "Indent offset for csharp-mode"
+  :type 'integer
   :group 'csharp)
 
 (defcustom csharp-mode-indent-scopes

Reply via email to