|
From: Tatsuro M. <tma...@ya...> - 2017-03-06 05:54:32
|
----- Original Message ----- > From: Philipp K. Janert > To: gnuplot-beta> Cc: > Date: 2017/3/6, Mon 14:10 > Subject: Re: Regression when using gnuplot and loops? > > > [snip] > >> >> Is the below related for you ? >> https://sourceforge.net/p/gnuplot/bugs/1592/ >> > > Yes, I seem to have a problem similar to the > bug report in the link. > > I am on Linux Mint 18 (debian/Ubuntu based), and > I am using the gnuplot version that shipped with > the distro. > >> >> BTW, just from curiosity, how do you get Compile options? > > show version long > > This leaves the behavior of the "bind" command when > using qt. I saw that the qt terminal does run in a > separate process - does this mean that I should not > expect "bind" to work, because there is no good way > to send a msg back to the gnuplot proc from the qt > terminal? > I saw that the qt terminal does run in a > separate process - does this mean that I should not > expect "bind" to work, because there is no good way > to send a msg back to the gnuplot proc from the qt > terminal? Gnuplot process and gnuplot_qt process communicates each other. Bind command code is implemented source code for qt terminal so it should work. I execute a simple test on gnuplot-5.0.5 on windows and lubuntu 16.04 (built myself). gnuplot> bind d 'plot x*x' gnuplot> set term qt gnuplot> bind d d `plot x*x` gnuplot> plot x On qt plot windows, press d key => plot x*x executed. Bind command works for me on qt at least in the above simple example. Tatsuro |