|
From: Petr M. <mi...@ph...> - 2005-07-29 08:47:34
|
>>> I propose to switch on mouse also for this combination.
>>> That would make many people happy and gnuplot behaviour compatible.
It looks that with this this removal from plot.c
#ifdef PIPE_IPC
/* isatty_state is set here and nowhere else! (used in term/x11.trm) */
isatty_state = interactive;
if (!isatty_state) {
/* stdin is not from a tty --> Turn mouse off.
* can be turned on again, e.g. if the user
* wants to write on a pipe to gnuplot */
mouse_setting.on = 0;
}
#endif
I can also remove all other occurencies of the variable "isatty_state" which
is not used for any other purpose.
---
PM
|