|
From: Tatsuro M. <tma...@ya...> - 2010-01-28 23:33:58
|
Hello I have remembered that Benjamin have posted concerning issue of ctrl+c on gnuplot.exe for windows. http://old.nabble.com/MSWin-issues-holding-up-4.4.rc1-td25793940.html#a26015183 **************** --- gnuplot-4.3.0-2009-07-08-orig/src/plot.c 2009-09-20 20:16:47 +0200 +++ gnuplot-4.3.0-2009-07-08/src/plot.c 2009-10-18 13:06:08 +0200 @@ -684,7 +684,11 @@ setmatherr(purec_matherr); #endif +#if defined(WGP_CONSOLE) + (void) signal(SIGINT, SIG_IGN); +#else (void) signal(SIGINT, (sigfunc) inter); +#endif #ifdef SIGPIPE /* ignore pipe errors, this might happen with set output "|head" */ ****************** The above seems not to be applied yet. Regards Tatsuro -------------------------------------- Get the new Internet Explorer 8 optimized for Yahoo! JAPAN http://pr.mail.yahoo.co.jp/ie8/ |