File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 3939(defvar inferior-fsharp-program
4040 (if fsharp-ac-using-mono
4141 " fsharpi --readline-"
42- (concat " \" " (fsharp-mode--executable-find " fsi.exe" ) " \" " ))
42+ (concat " \" " (fsharp-mode--executable-find " fsi.exe" ) " \" --fsi-server-input-codepage:65001 " ))
4343 " *Program name for invoking an inferior fsharp from Emacs." )
4444
4545; ; End of User modifiable variables
@@ -93,7 +93,11 @@ be sent from another buffer in fsharp mode.
9393 (process-connection-type nil ))
9494 (with-current-buffer (apply (function make-comint)
9595 inferior-fsharp-buffer-subname
96- (car cmdlist) nil (cdr cmdlist))
96+ (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 ))
97101 (inferior-fsharp-mode))
98102 (display-buffer inferior-fsharp-buffer-name))))
99103
You can’t perform that action at this time.
0 commit comments