From: Alexander Klimov Date: Thu, 29 Apr 2010 02:38:12 +0000 (-0500) Subject: Use the proper form for gnuplot's set command X-Git-Tag: emacs-pretest-23.1.97~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9822590ba8018dd651a01081957d6fb60191d38f;p=emacs.git Use the proper form for gnuplot's set command --- 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"