From: Richard M. Stallman Date: Sun, 1 May 1994 07:34:23 +0000 (+0000) Subject: (update_frame): Fix previous change: unconditionally bzero at the end. X-Git-Tag: emacs-19.34~8606 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f58434539e75f5ae6a125429bd14b1b7d0bdb8e1;p=emacs.git (update_frame): Fix previous change: unconditionally bzero at the end. --- diff --git a/src/dispnew.c b/src/dispnew.c index 856f0a149ed..d90562bab54 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -1335,8 +1335,7 @@ update_frame (f, force, inhibit_hairy_id) if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */ display_completed = !pause; - if (desired_frame) - bzero (desired_frame->enable, FRAME_HEIGHT (f)); + bzero (FRAME_DESIRED_GLYPHS (f)->enable, FRAME_HEIGHT (f)); return pause; }