summaryrefslogtreecommitdiff
path: root/lisp/calc/calc-graph.el
diff options
context:
space:
mode:
authorJay Belanger <jay.p.belanger@gmail.com>2005-04-01 21:44:53 +0000
committerJay Belanger <jay.p.belanger@gmail.com>2005-04-01 21:44:53 +0000
commitfa1c95dfe5306ae11cd14a4bb6432b4105d3e1b3 (patch)
tree971bc7251a82903e59d9bfb0d8a19159f228acb4 /lisp/calc/calc-graph.el
parent1f9d9bb9a2146e6de3aa0124e51ffa35a4d39dad (diff)
downloademacs-fa1c95dfe5306ae11cd14a4bb6432b4105d3e1b3.tar.gz
calc-graph.el
(calc-gnuplot-name, calc-gnuplot-plot-command, calc-gnuplot-print-command): Move definitions to calc.el.
Diffstat (limited to 'lisp/calc/calc-graph.el')
-rw-r--r--lisp/calc/calc-graph.el14
1 files changed, 5 insertions, 9 deletions
diff --git a/lisp/calc/calc-graph.el b/lisp/calc/calc-graph.el
index 662de5db867..6a58a6215fa 100644
--- a/lisp/calc/calc-graph.el
+++ b/lisp/calc/calc-graph.el
@@ -1,6 +1,6 @@
;;; calc-graph.el --- graph output functions for Calc
-;; Copyright (C) 1990, 1991, 1992, 1993, 2001 Free Software Foundation, Inc.
+;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2005 Free Software Foundation, Inc.
;; Author: David Gillespie <daveg@synaptics.com>
;; Maintainer: Jay Belanger <belanger@truman.edu>
@@ -33,14 +33,10 @@
;;; Graphics
-(defvar calc-gnuplot-name "gnuplot"
- "*Name of GNUPLOT program, for calc-graph features.")
-
-(defvar calc-gnuplot-plot-command nil
- "*Name of command for displaying GNUPLOT output; %s = file name to print.")
-
-(defvar calc-gnuplot-print-command "lp %s"
- "*Name of command for printing GNUPLOT output; %s = file name to print.")
+;; The following three variables are customizable and defined in calc.el.
+(defvar calc-gnuplot-name)
+(defvar calc-gnuplot-plot-command)
+(defvar calc-gnuplot-print-command)
(defvar calc-gnuplot-tempfile "calc")