(clear_to_end): Fix reversed condition.

This commit is contained in:
Karl Heuer 1994-09-16 23:35:43 +00:00
parent e82c28f979
commit 759d9005b9

View file

@ -594,7 +594,7 @@ clear_to_end ()
{
register int i;
if (clear_to_end_hook && FRAME_TERMCAP_P (updating_frame))
if (clear_to_end_hook && ! FRAME_TERMCAP_P (updating_frame))
{
(*clear_to_end_hook) ();
return;