Add requested changes

This commit is contained in:
Reed Mullanix 2019-04-20 19:33:13 -07:00
parent 14f1a1e4e4
commit aa920103e6
2 changed files with 4 additions and 3 deletions

View file

@ -107,7 +107,7 @@
;;elm ; care for a cup of TEA? ;;elm ; care for a cup of TEA?
emacs-lisp ; drown in parentheses emacs-lisp ; drown in parentheses
;;ess ; emacs speaks statistics ;;ess ; emacs speaks statistics
;; fsharp ; ML stands for Microsoft's Language ;;fsharp ; ML stands for Microsoft's Language
;;go ; the hipster dialect ;;go ; the hipster dialect
;;(haskell +intero) ; a language that's lazier than I am ;;(haskell +intero) ; a language that's lazier than I am
;;hy ; readability of scheme w/ speed of python ;;hy ; readability of scheme w/ speed of python

View file

@ -1,4 +1,5 @@
;;; lang/fsharp/doctor.el -*- lexical-binding: t; -*- ;;; lang/fsharp/doctor.el -*- lexical-binding: t; -*-
(unless (-any #'fsharp-mode--executable-find '("fsharpc" "fsc")) (when (require 'fsharp-mode nil t)
(warn! "Cannot find the F# compiler. Most features will not work.")) (unless (cl-some #'fsharp-mode--executable-find '("fsharpc" "fsc"))
(warn! "Cannot find the F# compiler. Most features will not work.")))