This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [BUG?] run.exe and pdflatex


On Jan 11 10:11, Igor Peshansky wrote:
> So, what was the reason, then, to remove "si.wShowWindow = SW_HIDE" from
> spawn_guts in CVS?  Having it makes it much easier to fix run.exe
> appropriately...

I would be somewhat surprised if this code would have any effect in
the trunk.  The code in question looked like this:

  if (!wincap.pty_needs_alloc_console () && newargv.iscui && myself->ctty == -1)
    {
      si.dwFlags |= STARTF_USESHOWWINDOW;
      si.wShowWindow = SW_HIDE;
    }

Given that pty_needs_alloc_console() is false only on 9x, and is always
true on NT, the above code was only executed on 9x.  Since 1.7 dropped
9x support, the code could go away.  Shoot if I missed something.


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]