forked from Lainports/freebsd-ports
29 lines
430 B
Text
29 lines
430 B
Text
*** src/screen.c.bak Thu Oct 30 06:12:34 1997
|
|
--- src/screen.c Tue Nov 4 10:39:41 1997
|
|
***************
|
|
*** 307,316 ****
|
|
ring_bell (void)
|
|
{
|
|
#if USE_CURSES
|
|
! beep();
|
|
! #else
|
|
my_fputc ('\007', stdout);
|
|
my_flush();
|
|
#endif
|
|
}
|
|
|
|
--- 307,320 ----
|
|
ring_bell (void)
|
|
{
|
|
#if USE_CURSES
|
|
! if (!cmd_line)
|
|
! beep();
|
|
! else {
|
|
! #endif
|
|
my_fputc ('\007', stdout);
|
|
my_flush();
|
|
+ #if USE_CURSES
|
|
+ }
|
|
#endif
|
|
}
|
|
|