Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fsharp-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,8 @@ Otherwise, treat as a stand-alone file."
(file-exists-p (concat dname "/makefile")))))
(cond
(makefile compile-command)
(proj (combine-and-quote-strings (list fsharp-build-command "/nologo" proj)))
((or (equal ext "fs") (equal ext "fsx")) (combine-and-quote-strings (list fsharp-compile-command "--nologo" file)))
((and fsharp-build-command proj) (combine-and-quote-strings `(,fsharp-build-command "/nologo" ,proj)))
((and fsharp-compile-command (member ext '("fs" "fsx"))) (combine-and-quote-strings `(,fsharp-compile-command "--nologo" ,file)))
((equal ext "fsl") (combine-and-quote-strings (list "fslex" file)))
((equal ext "fsy") (combine-and-quote-strings (list "fsyacc" file)))
(t compile-command))))
Expand Down