comparison src/keyboard.c @ 16220:02044b05d8e0

Replaced symbol BSD with BSD_SYSTEM.
author Karl Heuer <kwzh@gnu.org>
date Tue, 17 Sep 1996 03:43:54 +0000
parents cb91edbbe173
children c7913b6ba8da
comparison
equal deleted inserted replaced
16219:7f3f182f20a3 16220:02044b05d8e0
7319 7319
7320 stuff_buffered_input (stuffstring) 7320 stuff_buffered_input (stuffstring)
7321 Lisp_Object stuffstring; 7321 Lisp_Object stuffstring;
7322 { 7322 {
7323 /* stuff_char works only in BSD, versions 4.2 and up. */ 7323 /* stuff_char works only in BSD, versions 4.2 and up. */
7324 #ifdef BSD 7324 #ifdef BSD_SYSTEM
7325 #ifndef BSD4_1 7325 #ifndef BSD4_1
7326 register unsigned char *p; 7326 register unsigned char *p;
7327 7327
7328 if (STRINGP (stuffstring)) 7328 if (STRINGP (stuffstring))
7329 { 7329 {
7349 - kbd_buffer] 7349 - kbd_buffer]
7350 = Qnil); 7350 = Qnil);
7351 } 7351 }
7352 input_pending = 0; 7352 input_pending = 0;
7353 #endif 7353 #endif
7354 #endif /* BSD and not BSD4_1 */ 7354 #endif /* BSD_SYSTEM and not BSD4_1 */
7355 } 7355 }
7356 7356
7357 set_waiting_for_input (time_to_clear) 7357 set_waiting_for_input (time_to_clear)
7358 EMACS_TIME *time_to_clear; 7358 EMACS_TIME *time_to_clear;
7359 { 7359 {