emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 23.0.60; OSX: isatty


From: Markus Triska
Subject: Re: 23.0.60; OSX: isatty
Date: Sat, 17 Nov 2007 12:07:58 +0100

Stefan Monnier <address@hidden> writes:

> Please try it with "emacs -Q".  If it's still nil, then try and figure
> where this is coming from.

It also happens with -Q. It's from init_process (process.c, l. 7152ff):

#if defined (DARWIN) || defined (MAC_OSX)
  /* PTYs are broken on Darwin < 6, but are sometimes useful for interactive
     processes.  As such, we only change the default value.  */
 if (initialized)
  {
    char *release = get_operating_system_release();
    if (!release || !release[0] || (release[0] < MIN_PTY_KERNEL_VERSION
                                    && release[1] == '.')) {
      Vprocess_connection_type = Qnil;
    }
  }
#endif

This is executed before init_editfns has had a chance to initialize
Voperating_system_release (MAC_OSX is defined on my platform).





reply via email to

[Prev in Thread] Current Thread [Next in Thread]