2021-02-27 21:01:19 +01:00
|
|
|
;;; editor/parinfer/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
|
2021-09-02 11:54:14 -07:00
|
|
|
(unless (fboundp 'module-load)
|
|
|
|
(warn! "Your emacs wasn't built with dynamic modules support. `parinfer-rust-mode' won't work"))
|
|
|
|
(when (and (eq system-type 'berkeley-unix)
|
2021-09-16 21:16:32 -07:00
|
|
|
(not (file-readable-p parinfer-rust-library)))
|
|
|
|
(warn! (concat "Could not read " parinfer-rust-library ". `parinfer-rust-mode' won't work")))
|