[org +gnuplot] Warn if gnuplot is not installed

This commit is contained in:
Akhil Wali 2019-10-25 22:13:01 +13:00
parent 7f317e32ca
commit e60db77511

View file

@ -0,0 +1,6 @@
;; -*- lexical-binding: t; no-byte-compile: t; -*-
;;; lang/org/doctor.el
(when (featurep! +gnuplot)
(unless (executable-find "gnuplot")
(warn! "Couldn't find gnuplot. org-plot/gnuplot will not work")))