]> git.eshelyaron.com Git - emacs.git/commitdiff
Include blockinput.h.
authorRichard M. Stallman <rms@gnu.org>
Tue, 23 Apr 1996 20:32:58 +0000 (20:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 23 Apr 1996 20:32:58 +0000 (20:32 +0000)
(change_frame_size_1): Block input around the real work.

src/dispnew.c

index 25ac26dd951f8c0499b4408a7c5913fd694888ea..165a5dce3bb8d86d8552da935d4402ccf22c7066 100644 (file)
@@ -40,6 +40,7 @@ Boston, MA 02111-1307, USA.  */
 #include "disptab.h"
 #include "indent.h"
 #include "intervals.h"
+#include "blockinput.h"
 
 #include "systty.h"
 #include "syssignal.h"
@@ -2129,6 +2130,8 @@ change_frame_size_1 (frame, newheight, newwidth, pretend, delay)
       return;
     }
 
+  BLOCK_INPUT;
+
   /* This size-change overrides any pending one for this frame.  */
   FRAME_NEW_HEIGHT (frame) = 0;
   FRAME_NEW_WIDTH  (frame) = 0;
@@ -2210,6 +2213,8 @@ change_frame_size_1 (frame, newheight, newwidth, pretend, delay)
 
   remake_frame_glyphs (frame);
   calculate_costs (frame);
+
+  UNBLOCK_INPUT;
 }
 \f
 DEFUN ("send-string-to-terminal", Fsend_string_to_terminal,