all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "d.henman" <dhenman@gmail.com>
To: "d. henman" <dhenman@gmail.com>
Cc: Eli Zaretskii <eliz@gnu.org>, Dan Nicolaescu <dann@ics.uci.edu>,
	emacs-devel@gnu.org,
	Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>
Subject: Re: Failure in building Emacs 23.0.50 on Cygwin (fwd)
Date: Sat, 08 Sep 2007 16:21:21 +0900	[thread overview]
Message-ID: <20070908162121.1704@blackhawk> (raw)
In-Reply-To: Your message of Fri, 07 Sep 2007 08:26:41 +0900 <20070907082641.2052@blackhawk>


Having said that, the original supplied patch was more symmetrical, in the context it was given and easier to maintain and provided for a closure reference. 

So now we have #elif mixed with #else #ifdefs with #endif for the legacy items....

You might has well have made the whole code segment modern using #elifs...

Are there any conventions regarding this?

Regards,
  darel henman

d.henman <dhenman@gmail.com> wrote:

> 
> Thanks from all of us unfortunate ones who have to use cygwin.
> 
> In case you can't find the patch I will inline it below.  My papers are in, so there is no legal problem.
> 
> Regards,
>    Darel Henman
> 
> Dan Nicolaescu <dann@ics.uci.edu> wrote:
> 
> > Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> writes:
> > 
> >   > On Wed, 5 Sep 2007, Dan Nicolaescu wrote:
> >   > 
> >   > > Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> writes:
> >   > >
> >   > >   > As I said in the last replay, I can suspend/resume both (emacs,
> >   > >   > emacsclient).
> >   > >   >
> >   > >   > After resume, I can continue to edit files typing in the terminal.
> >   > >   >
> >   > >   > All these things with a build of Emacs checked out about 12 hours ago,
> >   > >   > having applied the 'famous' patch...
> >   > >
> >   > > Thanks! Then, IMO, the patch should go in.
> >   > >
> >   > >
> >   > 
> >   > Who should submit it ? If you can and if the patch is valid, may you ?
> > 
> > I will do it later today in case nobody beat me to it.
> --- term.c	2007-08-30 06:46:50.000000000 +0900
> +++ /tmp/term.c.fixed	2007-09-03 09:15:22.915209300 +0900
> @@ -3131,6 +3131,10 @@
>        setpgrp ();
>        no_controlling_tty = 1;
>  #else
> +#ifdef CYGWIN
> +      setsid ();
> +      no_controlling_tty = 1;
> +#else
>  #ifdef TIOCNOTTY                /* Try BSD ioctls. */
>        sigblock (sigmask (SIGTTOU));
>        fd = emacs_open ("/dev/tty", O_RDWR, 0);
> @@ -3145,6 +3149,7 @@
>        /* Unknown system. */
>        croak ();
>  #endif  /* ! TIOCNOTTY */
> +#endif  /* ! CYGWIN */
>  #endif  /* ! USG */
>      }
>  #endif

  parent reply	other threads:[~2007-09-08  7:21 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-09-02 22:10 Failure in building Emacs 23.0.50 on Cygwin (fwd) Angelo Graziosi
2007-09-02 22:50 ` d.henman
2007-09-02 23:40   ` Angelo Graziosi
2007-09-03  0:23     ` d.henman
2007-09-04 16:20       ` Dan Nicolaescu
2007-09-04 20:41         ` Angelo Graziosi
2007-09-04 20:53         ` Angelo Graziosi
2007-09-04 21:36           ` Dan Nicolaescu
2007-09-05  8:53             ` Angelo Graziosi
2007-09-05 17:38               ` Dan Nicolaescu
2007-09-05 19:58                 ` Angelo Graziosi
2007-09-05 20:22                   ` Dan Nicolaescu
2007-09-05 20:40                     ` Angelo Graziosi
2007-09-05 20:54                       ` Dan Nicolaescu
2007-09-06 10:09                         ` Angelo Graziosi
2007-09-06 16:26                           ` Dan Nicolaescu
2007-09-06 23:26                             ` d.henman
2007-09-07  4:06                               ` Jashy
2007-09-08  7:05                               ` d.henman
     [not found]                                 ` <E1IUCJM-0000k5-N0@fencepost.gnu.org>
2007-09-09  8:17                                   ` David Kastrup
2007-09-09 20:06                                     ` Richard Stallman
2007-09-09 21:31                                       ` Angelo Graziosi
2007-09-10 16:52                                         ` Richard Stallman
2007-09-09 22:27                                   ` d.henman
2007-09-10  1:13                                     ` Richard Stallman
2007-09-08  7:21                               ` d.henman [this message]
2007-09-07  3:58                           ` Dan Nicolaescu
2007-09-07  8:04                             ` NEW failure in building Emacs 23.0.50 on Cygwin Angelo Graziosi
2007-09-07 20:05                               ` Stefan Monnier
2007-09-07 23:38                                 ` Angelo Graziosi
2007-09-05  9:32           ` Failure in building Emacs 23.0.50 on Cygwin (fwd) Andreas Schwab
2007-09-05  9:44             ` d.henman
  -- strict thread matches above, loose matches on Subject: below --
2007-09-05 20:11 Angelo Graziosi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070908162121.1704@blackhawk \
    --to=dhenman@gmail.com \
    --cc=Angelo.Graziosi@roma1.infn.it \
    --cc=dann@ics.uci.edu \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.