Mercurial > emacs
changeset 108360:6b4205b02fd5
Use the proper form for gnuplot's set command
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Wed, 28 Apr 2010 21:38:12 -0500 |
parents | 5c0ae0e21681 |
children | c1fe9f79424a |
files | lisp/ChangeLog lisp/calc/calc-graph.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Tue Apr 27 11:36:16 2010 -0400 +++ b/lisp/ChangeLog Wed Apr 28 21:38:12 2010 -0500 @@ -1,3 +1,8 @@ +2010-04-28 Alexander Klimov <alserkli@inbox.ru> (tiny change) + + * calc/calc-graph.el (calc-graph-plot): Use the proper form for + gnuplot's "set" command. + 2010-04-26 Juanma Barranquero <lekktu@gmail.com> * abbrev.el (last-abbrev-text): Doc fix.
--- a/lisp/calc/calc-graph.el Tue Apr 27 11:36:16 2010 -0400 +++ b/lisp/calc/calc-graph.el Wed Apr 28 21:38:12 2010 -0500 @@ -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"