Skip to content

Commit 87f2162

Browse files
juergenhoetzelyyoncho
authored andcommittedAug 22, 2019
Fix invalid quote of defcustom const value
1 parent 91cf8d7 commit 87f2162

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎lsp-fsharp.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
(defcustom lsp-fsharp-server-runtime 'net-core
3737
"The .NET runtime to use."
3838
:group 'lsp-fsharp
39-
:type '(choice (const :tag "Use .Net Core" 'net-core)
40-
(const :tag "Use Mono" 'mono)
41-
(const :tag "Use .Net Framework" 'net-framework))
39+
:type '(choice (const :tag "Use .Net Core" net-core)
40+
(const :tag "Use Mono" mono)
41+
(const :tag "Use .Net Framework" net-framework))
4242
:package-version '(lsp-mode . "6.1"))
4343

4444
(defcustom lsp-fsharp-server-install-dir (locate-user-emacs-file "fsautocomplete/")

0 commit comments

Comments
 (0)
Please sign in to comment.