aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index ed4321dfe72..5d3b8783291 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -1753,7 +1753,10 @@ terminate any keyboard macro currently executing.")
1753{ 1753{
1754 if (!NILP (arg)) 1754 if (!NILP (arg))
1755 { 1755 {
1756 ring_bell (); 1756 if (noninteractive)
1757 putchar (07);
1758 else
1759 ring_bell ();
1757 fflush (stdout); 1760 fflush (stdout);
1758 } 1761 }
1759 else 1762 else