#1006591 emacs calc fails to produce any plot

#1006591#5
Date:
2022-02-28 00:40:07 UTC
From:
To:
Dear Maintainer,

The Emacs calculator in version 27.1 is unable to produce any plot
because it uses commands that are obsolete and deprecated in gnuplot
version 5.4. One command in particular prevents any plot from showing
up. This is the "set notime" on line 354 of the file
"/usr/share/emacs/27.1/lisp/calc/calc-graph.el.gz".

Entering this command on the gnuplot REPL shows the following output

gnuplot> set notime
             ^
         warning: deprecated syntax, use "unset"
               ^
         Unrecognized option.  See 'help unset'

As described in this post
https://emacs.stackexchange.com/questions/63751/i-cant-get-the-most-basic-calc-mode-gnuplot-example-to-work
replacing "set notime" with "set notimestamp" does make plots in Emacs
calc work again. However "set" set seems to be deprecated so the
equivalent "unset" command may be preferable.