mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
A few small changes to make the PuTTY source base more usable as a
basis for other terminal-involving applications: a stub implementation of the printing interface, an additional function in notiming.c, and also I've renamed the front-end function beep() to do_beep() so as not to clash with beep() in lib[n]curses. [originally from svn r6479]
This commit is contained in:
@ -2748,7 +2748,7 @@ static void term_out(Terminal *term)
|
||||
* Perform an actual beep if we're not overloaded.
|
||||
*/
|
||||
if (!term->cfg.bellovl || !term->beep_overloaded) {
|
||||
beep(term->frontend, term->cfg.beep);
|
||||
do_beep(term->frontend, term->cfg.beep);
|
||||
|
||||
if (term->cfg.beep == BELL_VISUAL) {
|
||||
term_schedule_vbell(term, FALSE, 0);
|
||||
|
Reference in New Issue
Block a user