From 615cc5fba6e5f7dd6a24e8d41747ed53391880b6 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 7 Aug 2009 14:52:56 +0000 Subject: [PATCH] (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as the default. --- lisp/calc/calc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index 59dde099828..b291969b7f5 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el @@ -393,7 +393,7 @@ This is not required to be present for user-written mode annotations." (string :tag "Closing annotation delimiter")))) (defcustom calc-gnuplot-name - "gnuplot" + (if (eq system-type 'windows-nt) "pgnuplot" "gnuplot") "Name of GNUPLOT program, for calc-graph features." :group 'calc :type '(string)) -- 2.39.5