|
From: Ethan M. <merritt@u.washington.edu> - 2009-08-22 22:58:51
|
On Saturday 22 August 2009, you wrote: > Ralf Juengling wrote: > > > > On Sat, 22 Aug 2009, Ethan Merritt wrote: > >> echo "gnuplot*exportselection: off" | xrdb -merge > > > > There also is not directory /usr/local/lib/X11/app-defaults/ > > on my system (Ubuntu 8.04). > > > Here, most such settings are in /usr/lib/X11/app-defaults/ > but my cvs build to /usr/local did create the above mentioned. Long ago (X11R3? - I don't recall) there was a convention for loading per session values for things like appdefaults and Xmodmap. Or maybe that convention only existed on the particular systems I was using in those days. Regardless, the evolution of x11 implementations and the proliferation of system configurations seems to have destoyed any consensus that may have previously existed. We distribute the Resources file so that you can see what can be changed. It's up to you or your distribution whether to configure the system so that these changes are always in effect. > in fact what feature have I turned off here? What can I not do with > gnuplot*exportselection: off ? No idea. I've never had it turned on to the best of my knowledge :-) Looking at the code in gplt_x11.c, I see that it causes the following request to be issued: XSetSelectionOwner(dpy, EXPORT_SELECTION, plot->window, CurrentTime); But that by itself shouldn't do much of anything other than to allow you to make a subsequent selection in the plot window. I don't see why it would erase your paste buffer or prevent another window from regaining focus and reclaiming ownership of the selection token. |