mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-26 11:52:44 -08:00
11 lines
462 B
EmacsLisp
11 lines
462 B
EmacsLisp
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
;;; lang/racket/doctor.el
|
|
|
|
(unless (executable-find "drracket")
|
|
(warn! "Could not find drracket executable; code-completion and syntax checking will not work."))
|
|
|
|
(unless (executable-find "racket")
|
|
(warn! "Could not find racket executable; REPL will not work."))
|
|
|
|
(unless (executable-find "raco")
|
|
(warn! "Could not find raco executable; commands for install packages and build libraries will not work."))
|