We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44e2ee5 commit 8852053Copy full SHA for 8852053
inf-fsharp-mode.el
@@ -93,7 +93,11 @@ be sent from another buffer in fsharp mode.
93
(process-connection-type nil))
94
(with-current-buffer (apply (function make-comint)
95
inferior-fsharp-buffer-subname
96
- (car cmdlist) nil (cdr cmdlist))
+ (car cmdlist) nil
97
+ (cdr cmdlist))
98
+ (when (eq system-type 'windows-nt)
99
+ (set-process-coding-system (get-buffer-process (current-buffer))
100
+ 'utf-8 'utf-8))
101
(inferior-fsharp-mode))
102
(display-buffer inferior-fsharp-buffer-name))))
103
0 commit comments