comparison src/w32console.c @ 40656:cdfd4d09b79a

Update usage of CHECK_ macros (remove unused second argument).
author Pavel Jan?k <Pavel@Janik.cz>
date Fri, 02 Nov 2001 20:46:55 +0000
parents e62d3694acdc
children f66d09d1bb2f
comparison
equal deleted inserted replaced
40655:45453187feeb 40656:cdfd4d09b79a
426 prevents Emacs from making any sound at all.\n\ 426 prevents Emacs from making any sound at all.\n\
427 SOUND is nil to use the normal beep.") 427 SOUND is nil to use the normal beep.")
428 (sound) 428 (sound)
429 Lisp_Object sound; 429 Lisp_Object sound;
430 { 430 {
431 CHECK_SYMBOL (sound, 0); 431 CHECK_SYMBOL (sound);
432 432
433 if (NILP (sound)) 433 if (NILP (sound))
434 sound_type = 0xFFFFFFFF; 434 sound_type = 0xFFFFFFFF;
435 else if (EQ (sound, intern ("asterisk"))) 435 else if (EQ (sound, intern ("asterisk")))
436 sound_type = MB_ICONASTERISK; 436 sound_type = MB_ICONASTERISK;