From: Alan Third Date: Thu, 28 Oct 2021 10:21:00 +0000 (+0100) Subject: Remove debug logging X-Git-Tag: emacs-28.0.92~77 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=611736f3bc;p=emacs.git Remove debug logging * src/nsterm.m ([EmacsView copyRect:to:]): Remove logging as it's no longer required. --- diff --git a/src/nsterm.m b/src/nsterm.m index 08bec519dbc..40540c47be1 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -7892,25 +7892,6 @@ not_in_argv (NSString *arg) NSRect dstRect = NSMakeRect (dest.x, dest.y, NSWidth (srcRect), NSHeight (srcRect)); - NSRect frame = [self frame]; - - /* TODO: This check is an attempt to debug a rare graphical glitch - on macOS and should be removed before the Emacs 28 release. */ - if (!NSContainsRect (frame, srcRect) - || !NSContainsRect (frame, dstRect)) - { - NSLog (@"[EmacsView copyRect:to:] Attempting to copy to or " - "from an area outside the graphics buffer."); - NSLog (@" Frame: (%f, %f) %f×%f", - NSMinX (frame), NSMinY (frame), - NSWidth (frame), NSHeight (frame)); - NSLog (@" Source: (%f, %f) %f×%f", - NSMinX (srcRect), NSMinY (srcRect), - NSWidth (srcRect), NSHeight (srcRect)); - NSLog (@" Destination: (%f, %f) %f×%f", - NSMinX (dstRect), NSMinY (dstRect), - NSWidth (dstRect), NSHeight (dstRect)); - } #ifdef NS_IMPL_COCOA if ([self wantsLayer])