From 9822590ba8018dd651a01081957d6fb60191d38f Mon Sep 17 00:00:00 2001 From: Alexander Klimov Date: Wed, 28 Apr 2010 21:38:12 -0500 Subject: [PATCH] Use the proper form for gnuplot's set command --- lisp/ChangeLog | 5 +++++ lisp/calc/calc-graph.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fe31f2161fa..75c16683dca 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-04-28 Alexander Klimov (tiny change) + + * calc/calc-graph.el (calc-graph-plot): Use the proper form for + gnuplot's "set" command. + 2010-04-26 Juanma Barranquero * abbrev.el (last-abbrev-text): Doc fix. diff --git a/lisp/calc/calc-graph.el b/lisp/calc/calc-graph.el index 673f37b4bf0..9af89ab6c3a 100644 --- a/lisp/calc/calc-graph.el +++ b/lisp/calc/calc-graph.el @@ -345,7 +345,7 @@ "set xlabel\nset ylabel\nset title\n" "set noclip points\nset clip one\nset clip two\n" "set format \"%g\"\nset tics\nset xtics\nset ytics\n" - "set data style linespoints\n" + "set style data linespoints\n" "set nogrid\nset nokey\nset nopolar\n")) (if (>= ver 3) (insert "set surface\nset nocontour\n" -- 2.39.5