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
commit eb2a67d05f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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