Mercurial > hg > xemacs-beta
comparison src/device-tty.c @ 223:2c611d1463a6 r20-4b10
Import from CVS: tag r20-4b10
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:10:54 +0200 |
parents | 3d6bfa290dbd |
children | c5d627a313b1 |
comparison
equal
deleted
inserted
replaced
222:aae4c8b01452 | 223:2c611d1463a6 |
---|---|
119 static SIGTYPE | 119 static SIGTYPE |
120 tty_device_size_change_signal (int signo) | 120 tty_device_size_change_signal (int signo) |
121 { | 121 { |
122 int old_errno = errno; | 122 int old_errno = errno; |
123 asynch_device_change_pending++; | 123 asynch_device_change_pending++; |
124 #ifdef HAVE_UNIXOID_EVENT_LOOP | |
124 signal_fake_event (); | 125 signal_fake_event (); |
126 #endif | |
125 EMACS_REESTABLISH_SIGNAL (SIGWINCH, tty_device_size_change_signal); | 127 EMACS_REESTABLISH_SIGNAL (SIGWINCH, tty_device_size_change_signal); |
126 errno = old_errno; | 128 errno = old_errno; |
127 SIGRETURN; | 129 SIGRETURN; |
128 } | 130 } |
129 | 131 |