From: Illia Ostapyshyn Date: Mon, 7 Dec 2020 12:36:34 +0000 (+0100) Subject: Allow using newer versions of Gnuplot from calc again X-Git-Tag: emacs-28.0.90~4881 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=78017a6e598ed7663aa04bd19c426f16bbc05006;p=emacs.git Allow using newer versions of Gnuplot from calc again * lisp/calc/calc-graph.el (calc-graph-plot): Don't use the "time" abbreviation for "timestamp" (bug#39232) -- it's no longer valid after https://github.com/gnuplot/gnuplot/commit/b979b5371bc1c18bf8f5bd756e7c1fb54dafd8cc Copyright-paperwork-exempt: yes --- diff --git a/lisp/calc/calc-graph.el b/lisp/calc/calc-graph.el index 829fa44ca4f..b694a826ce5 100644 --- a/lisp/calc/calc-graph.el +++ b/lisp/calc/calc-graph.el @@ -351,7 +351,7 @@ (if (>= ver 3) (insert "set surface\nset nocontour\n" "set " (if calc-graph-is-splot "" "no") "parametric\n" - "set notime\nset border\nset ztics\nset zeroaxis\n" + "set notimestamp\nset border\nset ztics\nset zeroaxis\n" "set view 60,30,1,1\nset offsets 0,0,0,0\n")) (setq samples-pos (point)) (insert "\n\n" str))