Merge pull request #1953 from darth10/develop

lang/org/doctor: warn if gnuplot is not installed
This commit is contained in:
Henrik Lissner
2019-10-25 05:17:44 -04:00
committed by GitHub

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")))