Update parinfer module to comply with review.
Also add support for BSD systems. Signed-off-by: Johan Thoren <johan@thoren.xyz>
This commit is contained in:
parent
ec747395c6
commit
4ff23752f2
3 changed files with 59 additions and 43 deletions
11
modules/editor/parinfer/doctor.el
Normal file
11
modules/editor/parinfer/doctor.el
Normal file
|
@ -0,0 +1,11 @@
|
|||
;;; editor/parinfer/doctor.el -*- lexical-binding: t; -*-
|
||||
|
||||
(when (featurep! +rust)
|
||||
(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)
|
||||
(not (file-readable-p
|
||||
(concat user-emacs-directory ".local/etc/parinfer-rust/libparinfer_rust.so"))))
|
||||
(warn! (concat "Could not read " user-emacs-directory
|
||||
".local/etc/parinfer-rust/libparinfer_rust.so. "
|
||||
"`parinfer-rust-mode' won't work"))))
|
Loading…
Add table
Add a link
Reference in a new issue