aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1992-05-19 02:05:47 +0000
committerRichard M. Stallman1992-05-19 02:05:47 +0000
commit7fa788da36613e59dd189c26ebe3f6554b75a90c (patch)
tree1656bd6c75589e3285ead1b25a1799ad0b46c75a
parentffd56f97cf56501f7a6981c184192e9043e4eafd (diff)
downloademacs-7fa788da36613e59dd189c26ebe3f6554b75a90c.tar.gz
emacs-7fa788da36613e59dd189c26ebe3f6554b75a90c.zip
*** empty log message ***
-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