comparison src/os_beos.c @ 62:4a6de0783bb5

updated for version 7.0030
author vimboss
date Tue, 04 Jan 2005 21:19:20 +0000
parents 3fc0f57ecb91
children e6d8b44065bc
comparison
equal deleted inserted replaced
61:9e4064826a20 62:4a6de0783bb5
190 } 190 }
191 #endif 191 #endif
192 } 192 }
193 #endif 193 #endif
194 194
195 #if FEAT_GUI_BEOS
196 /*
197 * If not reading from terminal, pretend there is input.
198 * This makes the pty reading (for the GUI) "work" for
199 * :!ls but not for :r !ls ... weird.
200 */
201 if (gui.in_use && State == EXTERNCMD)
202 return 1;
203 #endif
204 return 0; 195 return 0;
205 } 196 }
206 197