emacs-devel
[Top][All Lists]
Advanced

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

[patch] Re: 23.0.60; OSX: isatty


From: Markus Triska
Subject: [patch] Re: 23.0.60; OSX: isatty
Date: Mon, 19 Nov 2007 11:17:48 +0100

Stefan Monnier <address@hidden> writes:

> where this is coming from.

The following patch closes the issue.


2007-11-19  Markus Triska  <address@hidden>

        * emacs.c (main): call init_editfns before init_process, since
        init_process sets Vprocess_connection_type depending on OS release


diff --git a/src/emacs.c b/src/emacs.c
index 8a51b8c..af6a7b7 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1666,6 +1666,7 @@ main (argc, argv
 #endif  /* HAVE_NTGUI */
     }
 
+  init_editfns (); /* init_process uses Voperating_system_release. */
   init_process (); /* init_display uses add_keyboard_wait_descriptor. */
 #ifndef MAC_OS8
   /* Called before init_window_once for Mac OS Classic.  */
@@ -1688,7 +1689,6 @@ main (argc, argv
   init_image ();
 #endif /* HAVE_WINDOW_SYSTEM */
   init_macros ();
-  init_editfns ();
   init_floatfns ();
 #ifdef VMS
   init_vmsfns ();





reply via email to

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