Mercurial > hg > xemacs-beta
comparison src/emacs.c @ 819:6504113e7c2d
[xemacs-hg @ 2002-04-25 18:03:23 by andyp]
sync up windows branch from 21.4
author | andyp |
---|---|
date | Thu, 25 Apr 2002 18:04:24 +0000 |
parents | a634e3b7acc8 |
children | 6728e641994e |
comparison
equal
deleted
inserted
replaced
818:accc481aef34 | 819:6504113e7c2d |
---|---|
3043 static void | 3043 static void |
3044 pause_so_user_can_read_messages (int allow_further) | 3044 pause_so_user_can_read_messages (int allow_further) |
3045 { | 3045 { |
3046 static int already_paused; | 3046 static int already_paused; |
3047 | 3047 |
3048 if (already_paused) | 3048 if (already_paused || !noninteractive) |
3049 return; | 3049 return; |
3050 if (!allow_further) | 3050 if (!allow_further) |
3051 already_paused = 1; | 3051 already_paused = 1; |
3052 /* If we displayed a message on the console, then we must allow the | 3052 /* If we displayed a message on the console, then we must allow the |
3053 user to see this message. This may be unnecessary, but can't hurt, | 3053 user to see this message. This may be unnecessary, but can't hurt, |