|
From: Ethan M. <merritt@u.washington.edu> - 2005-05-11 15:18:56
|
On Wednesday 11 May 2005 06:13 am, Robert Hart wrote: > On Wed, 2005-05-11 at 13:44 +0200, Petr Mikulik wrote: > > > Is there any non-screen terminal that has no output file? I wonder whether > > it makes sense to add flag TERM_SCREEN. > > Would it make more sense to add an implicit "set output" before a set > term? That would break some existing uses. For example, if you want to continue writing to an output pipe but change a characteristic such as the default font: set output '| display png:-' set term png font "verdana" plot <something> set term png font "Times" 20 plot <something_else> We are moving towards an alternative command that would let you do this without calling 'set term' set term png font "verdana" plot <something> set termoptions font "Times" 20 plot <something_else> But so far this only works for a small number of terminal options. > I guess we should only do that if the term type actually changes (rather > than if just the options change). Hmm. That comes closer. I don't know if that test is sufficient or not. What would happen in the case of "set term push" and "set term pop"? [I've never gotten those to work as I expect anyhow, so maybe it would be a small loss]. -- Ethan A Merritt merritt@u.washington.edu Biomolecular Structure Center Mailstop 357742 University of Washington, Seattle, WA 98195 |