emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r117513: Temporary fix for the MS-Windows build brok


From: Eli Zaretskii
Subject: [Emacs-diffs] trunk r117513: Temporary fix for the MS-Windows build broken by last commit.
Date: Fri, 11 Jul 2014 09:57:28 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117513
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/17839
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Fri 2014-07-11 12:56:58 +0300
message:
  Temporary fix for the MS-Windows build broken by last commit.
  
   src/minibuf.c (read_minibuf_noninteractive) [WINDOWSNT]: Don't
   reference termios structure members.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/minibuf.c                  minibuf.c-20091113204419-o5vbwnq5f7feedwu-242
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-07-11 09:09:54 +0000
+++ b/src/ChangeLog     2014-07-11 09:56:58 +0000
@@ -1,3 +1,8 @@
+2014-07-11  Eli Zaretskii  <address@hidden>
+
+       * minibuf.c (read_minibuf_noninteractive) [WINDOWSNT]: Don't
+       reference termios structure members.
+
 2014-07-11  Michael Albinus  <address@hidden>
 
        * sysdep.c (emacs_get_tty, emacs_set_tty): Make them externally visible.

=== modified file 'src/minibuf.c'
--- a/src/minibuf.c     2014-07-11 09:09:54 +0000
+++ b/src/minibuf.c     2014-07-11 09:56:58 +0000
@@ -240,8 +240,10 @@
     {
       emacs_get_tty (fileno (stdin), &old);
       new = old;
+#ifndef WINDOWSNT
       new.main.c_lflag &= ~ICANON;     /* Disable buffering */
       new.main.c_lflag &= ~ECHO;       /* Disable echoing */
+#endif
       emacs_set_tty (fileno (stdin), &new, 0);
     }
 


reply via email to

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