comparison src/w32term.c @ 91702:b7a5a89054dc

* configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code dealing with obsolete variables. * fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional. (main): Replace MAIL_PROGRAM_NAME with its value. * src/Makefile.in: * src/emacs.c: * src/gmalloc.c: * src/keyboard.c: * src/lisp.h: * src/m/ibm370aix.h: * src/process.c: * src/regex.c: * src/s/hpux.h: * src/sysdep.c: * src/sysselect.h: * src/systty.h: * src/unexec.c: * src/w32term.c: * src/xsmfns.c: * src/xterm.c: Remove code that deals with obsolete variables. * s/msdos.h (DONT_NEED_ENVIRON): Don't define. * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test, nothing else needs it anymore.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sat, 09 Feb 2008 18:03:10 +0000
parents 4bb19b57806d
children 4d9fc08769fa
comparison
equal deleted inserted replaced
91701:8fac5ad6ff83 91702:b7a5a89054dc
7055 horizontally reflected compared to how they appear on X, so we 7055 horizontally reflected compared to how they appear on X, so we
7056 need to bitswap and convert to unsigned shorts before creating 7056 need to bitswap and convert to unsigned shorts before creating
7057 the bitmaps. */ 7057 the bitmaps. */
7058 w32_init_fringe (terminal->rif); 7058 w32_init_fringe (terminal->rif);
7059 7059
7060 #ifndef F_SETOWN_BUG
7061 #ifdef F_SETOWN 7060 #ifdef F_SETOWN
7062 #ifdef F_SETOWN_SOCK_NEG
7063 /* stdin is a socket here */
7064 fcntl (connection, F_SETOWN, -getpid ());
7065 #else /* ! defined (F_SETOWN_SOCK_NEG) */
7066 fcntl (connection, F_SETOWN, getpid ()); 7061 fcntl (connection, F_SETOWN, getpid ());
7067 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
7068 #endif /* ! defined (F_SETOWN) */ 7062 #endif /* ! defined (F_SETOWN) */
7069 #endif /* F_SETOWN_BUG */
7070 7063
7071 #ifdef SIGIO 7064 #ifdef SIGIO
7072 if (interrupt_input) 7065 if (interrupt_input)
7073 init_sigio (connection); 7066 init_sigio (connection);
7074 #endif /* ! defined (SIGIO) */ 7067 #endif /* ! defined (SIGIO) */